Class: SyntaxTree::TopConstField

Inherits:
Node
  • Object
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, #pretty_print, #to_json

Constructor Details

#initialize(constant:, location:, comments: []) ⇒ TopConstField

Returns a new instance of TopConstField.



8761
8762
8763
8764
8765
# File 'lib/syntax_tree/node.rb', line 8761

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



8759
8760
8761
# File 'lib/syntax_tree/node.rb', line 8759

def comments
  @comments
end

#constantObject (readonly)

Const

the constant being assigned



8756
8757
8758
# File 'lib/syntax_tree/node.rb', line 8756

def constant
  @constant
end

Instance Method Details

#accept(visitor) ⇒ Object



8767
8768
8769
# File 'lib/syntax_tree/node.rb', line 8767

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

#child_nodesObject Also known as: deconstruct



8771
8772
8773
# File 'lib/syntax_tree/node.rb', line 8771

def child_nodes
  [constant]
end

#deconstruct_keys(_keys) ⇒ Object



8777
8778
8779
# File 'lib/syntax_tree/node.rb', line 8777

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

#format(q) ⇒ Object



8781
8782
8783
8784
# File 'lib/syntax_tree/node.rb', line 8781

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