Class: Transpec::Syntax::Its::AttributeExpression

Inherits:
Object
  • Object
show all
Defined in:
lib/transpec/syntax/its.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node) ⇒ AttributeExpression

Returns a new instance of AttributeExpression.



128
129
130
# File 'lib/transpec/syntax/its.rb', line 128

def initialize(node)
  @node = node
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node.



126
127
128
# File 'lib/transpec/syntax/its.rb', line 126

def node
  @node
end

Instance Method Details

#attributesObject



140
141
142
143
144
145
146
# File 'lib/transpec/syntax/its.rb', line 140

def attributes
  @attributes ||= if brackets?
                    brackets_attributes
                  else
                    non_brackets_attributes
                  end
end

#brackets?Boolean

Returns:

  • (Boolean)


132
133
134
# File 'lib/transpec/syntax/its.rb', line 132

def brackets?
  node.array_type?
end

#literal?Boolean

Returns:

  • (Boolean)


136
137
138
# File 'lib/transpec/syntax/its.rb', line 136

def literal?
  Util.literal?(node)
end