Class: SyntaxTree::TopConstField
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::TopConstField
show all
- Defined in:
- lib/syntax_tree/node.rb
Overview
TopConstField is always the child node of some kind of assignment. It represents when you’re assigning to a constant that is being referenced at the top level.
::Constant = value
Instance Attribute Summary collapse
Attributes inherited from Node
#location
Instance Method Summary
collapse
Methods inherited from Node
#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(constant:, location:) ⇒ TopConstField
Returns a new instance of TopConstField.
10846
10847
10848
10849
10850
|
# File 'lib/syntax_tree/node.rb', line 10846
def initialize(constant:, location:)
@constant = constant
@location = location
@comments = []
end
|
Instance Attribute Details
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
10844
10845
10846
|
# File 'lib/syntax_tree/node.rb', line 10844
def
@comments
end
|
#constant ⇒ Object
- Const
-
the constant being assigned
10841
10842
10843
|
# File 'lib/syntax_tree/node.rb', line 10841
def constant
@constant
end
|
Instance Method Details
#===(other) ⇒ Object
10882
10883
10884
|
# File 'lib/syntax_tree/node.rb', line 10882
def ===(other)
other.is_a?(TopConstField) && constant === other.constant
end
|
#accept(visitor) ⇒ Object
10852
10853
10854
|
# File 'lib/syntax_tree/node.rb', line 10852
def accept(visitor)
visitor.visit_top_const_field(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
10856
10857
10858
|
# File 'lib/syntax_tree/node.rb', line 10856
def child_nodes
[constant]
end
|
#copy(constant: nil, location: nil) ⇒ Object
10860
10861
10862
10863
10864
10865
10866
10867
10868
10869
|
# File 'lib/syntax_tree/node.rb', line 10860
def copy(constant: nil, location: nil)
node =
TopConstField.new(
constant: constant || self.constant,
location: location || self.location
)
node..concat(.map(&:copy))
node
end
|
#deconstruct_keys(_keys) ⇒ Object
10873
10874
10875
|
# File 'lib/syntax_tree/node.rb', line 10873
def deconstruct_keys(_keys)
{ constant: constant, location: location, comments: }
end
|
10877
10878
10879
10880
|
# File 'lib/syntax_tree/node.rb', line 10877
def format(q)
q.text("::")
q.format(constant)
end
|