Class: SyntaxTree::IVar

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

IVar represents an instance variable literal.

@variable

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ IVar

Returns a new instance of IVar.



5691
5692
5693
5694
5695
# File 'lib/syntax_tree/node.rb', line 5691

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5689
5690
5691
# File 'lib/syntax_tree/node.rb', line 5689

def comments
  @comments
end

#valueObject (readonly)

String

the name of the instance variable



5686
5687
5688
# File 'lib/syntax_tree/node.rb', line 5686

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5697
5698
5699
# File 'lib/syntax_tree/node.rb', line 5697

def accept(visitor)
  visitor.visit_ivar(self)
end

#child_nodesObject Also known as: deconstruct



5701
5702
5703
# File 'lib/syntax_tree/node.rb', line 5701

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5707
5708
5709
# File 'lib/syntax_tree/node.rb', line 5707

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



5711
5712
5713
# File 'lib/syntax_tree/node.rb', line 5711

def format(q)
  q.text(value)
end