Class: SyntaxTree::TopConstRef

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

TopConstRef is very similar to TopConstField except that it is not involved in an assignment.

::Constant

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:) ⇒ TopConstRef

Returns a new instance of TopConstRef.



10866
10867
10868
10869
10870
# File 'lib/syntax_tree/node.rb', line 10866

def initialize(constant:, location:)
  @constant = constant
  @location = location
  @comments = []
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



10864
10865
10866
# File 'lib/syntax_tree/node.rb', line 10864

def comments
  @comments
end

#constantObject (readonly)

Const

the constant being referenced



10861
10862
10863
# File 'lib/syntax_tree/node.rb', line 10861

def constant
  @constant
end

Instance Method Details

#===(other) ⇒ Object



10902
10903
10904
# File 'lib/syntax_tree/node.rb', line 10902

def ===(other)
  other.is_a?(TopConstRef) && constant === other.constant
end

#accept(visitor) ⇒ Object



10872
10873
10874
# File 'lib/syntax_tree/node.rb', line 10872

def accept(visitor)
  visitor.visit_top_const_ref(self)
end

#child_nodesObject Also known as: deconstruct



10876
10877
10878
# File 'lib/syntax_tree/node.rb', line 10876

def child_nodes
  [constant]
end

#copy(constant: nil, location: nil) ⇒ Object



10880
10881
10882
10883
10884
10885
10886
10887
10888
10889
# File 'lib/syntax_tree/node.rb', line 10880

def copy(constant: nil, location: nil)
  node =
    TopConstRef.new(
      constant: constant || self.constant,
      location: location || self.location
    )

  node.comments.concat(comments.map(&:copy))
  node
end

#deconstruct_keys(_keys) ⇒ Object



10893
10894
10895
# File 'lib/syntax_tree/node.rb', line 10893

def deconstruct_keys(_keys)
  { constant: constant, location: location, comments: comments }
end

#format(q) ⇒ Object



10897
10898
10899
10900
# File 'lib/syntax_tree/node.rb', line 10897

def format(q)
  q.text("::")
  q.format(constant)
end