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.



6375
6376
6377
6378
6379
# File 'lib/syntax_tree/node.rb', line 6375

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



6373
6374
6375
# File 'lib/syntax_tree/node.rb', line 6373

def comments
  @comments
end

#valueObject (readonly)

String

the left parenthesis



6370
6371
6372
# File 'lib/syntax_tree/node.rb', line 6370

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6381
6382
6383
# File 'lib/syntax_tree/node.rb', line 6381

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

#child_nodesObject Also known as: deconstruct



6385
6386
6387
# File 'lib/syntax_tree/node.rb', line 6385

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6391
6392
6393
# File 'lib/syntax_tree/node.rb', line 6391

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

#format(q) ⇒ Object



6395
6396
6397
# File 'lib/syntax_tree/node.rb', line 6395

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