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.
10830
10831
10832
10833
10834
|
# File 'lib/syntax_tree/node.rb', line 10830
def initialize(constant:, location:)
@constant = constant
@location = location
@comments = []
end
|
Instance Attribute Details
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
10828
10829
10830
|
# File 'lib/syntax_tree/node.rb', line 10828
def
@comments
end
|
#constant ⇒ Object
- Const
-
the constant being assigned
10825
10826
10827
|
# File 'lib/syntax_tree/node.rb', line 10825
def constant
@constant
end
|
Instance Method Details
#===(other) ⇒ Object
10866
10867
10868
|
# File 'lib/syntax_tree/node.rb', line 10866
def ===(other)
other.is_a?(TopConstField) && constant === other.constant
end
|
#accept(visitor) ⇒ Object
10836
10837
10838
|
# File 'lib/syntax_tree/node.rb', line 10836
def accept(visitor)
visitor.visit_top_const_field(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
10840
10841
10842
|
# File 'lib/syntax_tree/node.rb', line 10840
def child_nodes
[constant]
end
|
#copy(constant: nil, location: nil) ⇒ Object
10844
10845
10846
10847
10848
10849
10850
10851
10852
10853
|
# File 'lib/syntax_tree/node.rb', line 10844
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
10857
10858
10859
|
# File 'lib/syntax_tree/node.rb', line 10857
def deconstruct_keys(_keys)
{ constant: constant, location: location, comments: }
end
|
10861
10862
10863
10864
|
# File 'lib/syntax_tree/node.rb', line 10861
def format(q)
q.text("::")
q.format(constant)
end
|