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
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ IVar
Returns a new instance of IVar.
5779 5780 5781 5782 5783 |
# File 'lib/syntax_tree/node.rb', line 5779 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
5777 5778 5779 |
# File 'lib/syntax_tree/node.rb', line 5777 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the name of the instance variable
5774 5775 5776 |
# File 'lib/syntax_tree/node.rb', line 5774 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5785 5786 5787 |
# File 'lib/syntax_tree/node.rb', line 5785 def accept(visitor) visitor.visit_ivar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5789 5790 5791 |
# File 'lib/syntax_tree/node.rb', line 5789 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
5795 5796 5797 |
# File 'lib/syntax_tree/node.rb', line 5795 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5799 5800 5801 |
# File 'lib/syntax_tree/node.rb', line 5799 def format(q) q.text(value) end |