Class: SyntaxTree::Label

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

Overview

Label represents the use of an identifier to associate with an object. You can find it in a hash key, as in:

{ key: value }

In this case “key:” would be the body of the label. You can also find it in pattern matching, as in:

case value
in key:
end

In this case “key:” would be the body of the label.

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(value:, location:, comments: []) ⇒ Label

Returns a new instance of Label.



5907
5908
5909
5910
5911
# File 'lib/syntax_tree/node.rb', line 5907

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5905
5906
5907
# File 'lib/syntax_tree/node.rb', line 5905

def comments
  @comments
end

#valueObject (readonly)

String

the value of the label



5902
5903
5904
# File 'lib/syntax_tree/node.rb', line 5902

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5913
5914
5915
# File 'lib/syntax_tree/node.rb', line 5913

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

#child_nodesObject Also known as: deconstruct



5917
5918
5919
# File 'lib/syntax_tree/node.rb', line 5917

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5923
5924
5925
# File 'lib/syntax_tree/node.rb', line 5923

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

#format(q) ⇒ Object



5927
5928
5929
# File 'lib/syntax_tree/node.rb', line 5927

def format(q)
  q.text(value)
end