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.



6139
6140
6141
6142
6143
# File 'lib/syntax_tree/node.rb', line 6139

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



6137
6138
6139
# File 'lib/syntax_tree/node.rb', line 6137

def comments
  @comments
end

#valueObject (readonly)

String

the left brace



6134
6135
6136
# File 'lib/syntax_tree/node.rb', line 6134

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6145
6146
6147
# File 'lib/syntax_tree/node.rb', line 6145

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

#child_nodesObject Also known as: deconstruct



6149
6150
6151
# File 'lib/syntax_tree/node.rb', line 6149

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6155
6156
6157
# File 'lib/syntax_tree/node.rb', line 6155

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

#format(q) ⇒ Object



6159
6160
6161
# File 'lib/syntax_tree/node.rb', line 6159

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