Class: SyntaxTree::IVar
Overview
IVar represents an instance variable literal.
@variable
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the name of the instance variable.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ IVar
constructor
A new instance of IVar.
Methods inherited from Node
Constructor Details
#initialize(value:, location:, comments: []) ⇒ IVar
Returns a new instance of IVar.
5607 5608 5609 5610 5611 |
# File 'lib/syntax_tree/node.rb', line 5607 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
5605 5606 5607 |
# File 'lib/syntax_tree/node.rb', line 5605 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the instance variable
5602 5603 5604 |
# File 'lib/syntax_tree/node.rb', line 5602 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5613 5614 5615 |
# File 'lib/syntax_tree/node.rb', line 5613 def accept(visitor) visitor.visit_ivar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5617 5618 5619 |
# File 'lib/syntax_tree/node.rb', line 5617 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
5623 5624 5625 |
# File 'lib/syntax_tree/node.rb', line 5623 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5627 5628 5629 |
# File 'lib/syntax_tree/node.rb', line 5627 def format(q) q.text(value) end |