Class: SyntaxTree::ConstPathRef
Overview
ConstPathRef represents referencing a constant by a path.
object::Const
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#constant ⇒ Object
readonly
- Const
-
the constant itself.
-
#parent ⇒ Object
readonly
- untyped
-
the source of the constant.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(parent:, constant:, location:, comments: []) ⇒ ConstPathRef
constructor
A new instance of ConstPathRef.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(parent:, constant:, location:, comments: []) ⇒ ConstPathRef
Returns a new instance of ConstPathRef.
3321 3322 3323 3324 3325 3326 |
# File 'lib/syntax_tree/node.rb', line 3321 def initialize(parent:, constant:, location:, comments: []) @parent = parent @constant = constant @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
3319 3320 3321 |
# File 'lib/syntax_tree/node.rb', line 3319 def comments @comments end |
#constant ⇒ Object (readonly)
- Const
-
the constant itself
3316 3317 3318 |
# File 'lib/syntax_tree/node.rb', line 3316 def constant @constant end |
#parent ⇒ Object (readonly)
- untyped
-
the source of the constant
3313 3314 3315 |
# File 'lib/syntax_tree/node.rb', line 3313 def parent @parent end |
Instance Method Details
#accept(visitor) ⇒ Object
3328 3329 3330 |
# File 'lib/syntax_tree/node.rb', line 3328 def accept(visitor) visitor.visit_const_path_ref(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
3332 3333 3334 |
# File 'lib/syntax_tree/node.rb', line 3332 def child_nodes [parent, constant] end |
#deconstruct_keys(_keys) ⇒ Object
3338 3339 3340 3341 3342 3343 3344 3345 |
# File 'lib/syntax_tree/node.rb', line 3338 def deconstruct_keys(_keys) { parent: parent, constant: constant, location: location, comments: comments } end |
#format(q) ⇒ Object
3347 3348 3349 3350 3351 |
# File 'lib/syntax_tree/node.rb', line 3347 def format(q) q.format(parent) q.text("::") q.format(constant) end |