Class: SyntaxTree::LParen

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

Overview

LParen represents the use of a left parenthesis, 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: []) ⇒ LParen

Returns a new instance of LParen.



6188
6189
6190
6191
6192
# File 'lib/syntax_tree/node.rb', line 6188

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



6186
6187
6188
# File 'lib/syntax_tree/node.rb', line 6186

def comments
  @comments
end

#valueObject (readonly)

String

the left parenthesis



6183
6184
6185
# File 'lib/syntax_tree/node.rb', line 6183

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6194
6195
6196
# File 'lib/syntax_tree/node.rb', line 6194

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

#child_nodesObject Also known as: deconstruct



6198
6199
6200
# File 'lib/syntax_tree/node.rb', line 6198

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6204
6205
6206
# File 'lib/syntax_tree/node.rb', line 6204

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

#format(q) ⇒ Object



6208
6209
6210
# File 'lib/syntax_tree/node.rb', line 6208

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