Class: SyntaxTree::LBrace

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

Overview

LBrace represents the use of a left brace, i.e., {.

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: []) ⇒ LBrace

Returns a new instance of LBrace.



6083
6084
6085
6086
6087
# File 'lib/syntax_tree/node.rb', line 6083

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



6081
6082
6083
# File 'lib/syntax_tree/node.rb', line 6081

def comments
  @comments
end

#valueObject (readonly)

String

the left brace



6078
6079
6080
# File 'lib/syntax_tree/node.rb', line 6078

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6089
6090
6091
# File 'lib/syntax_tree/node.rb', line 6089

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

#child_nodesObject Also known as: deconstruct



6093
6094
6095
# File 'lib/syntax_tree/node.rb', line 6093

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6099
6100
6101
# File 'lib/syntax_tree/node.rb', line 6099

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

#format(q) ⇒ Object



6103
6104
6105
# File 'lib/syntax_tree/node.rb', line 6103

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