Class: SyntaxTree::ConstRef
Overview
ConstRef represents the name of the constant being used in a class or module declaration.
class Container
end
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#constant ⇒ Object
readonly
- Const
-
the constant itself.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(constant:, location:, comments: []) ⇒ ConstRef
constructor
A new instance of ConstRef.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(constant:, location:, comments: []) ⇒ ConstRef
Returns a new instance of ConstRef.
3339 3340 3341 3342 3343 |
# File 'lib/syntax_tree/node.rb', line 3339 def initialize(constant:, location:, comments: []) @constant = constant @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
3337 3338 3339 |
# File 'lib/syntax_tree/node.rb', line 3337 def comments @comments end |
#constant ⇒ Object (readonly)
- Const
-
the constant itself
3334 3335 3336 |
# File 'lib/syntax_tree/node.rb', line 3334 def constant @constant end |
Instance Method Details
#accept(visitor) ⇒ Object
3345 3346 3347 |
# File 'lib/syntax_tree/node.rb', line 3345 def accept(visitor) visitor.visit_const_ref(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3349 3350 3351 |
# File 'lib/syntax_tree/node.rb', line 3349 def child_nodes [constant] end |
#deconstruct_keys(_keys) ⇒ Object
3355 3356 3357 |
# File 'lib/syntax_tree/node.rb', line 3355 def deconstruct_keys(_keys) { constant: constant, location: location, comments: comments } end |
#format(q) ⇒ Object
3359 3360 3361 |
# File 'lib/syntax_tree/node.rb', line 3359 def format(q) q.format(constant) end |