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.



6027
6028
6029
6030
6031
# File 'lib/syntax_tree/node.rb', line 6027

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



6025
6026
6027
# File 'lib/syntax_tree/node.rb', line 6025

def comments
  @comments
end

#valueObject (readonly)

String

the left parenthesis



6022
6023
6024
# File 'lib/syntax_tree/node.rb', line 6022

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6033
6034
6035
# File 'lib/syntax_tree/node.rb', line 6033

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

#child_nodesObject Also known as: deconstruct



6037
6038
6039
# File 'lib/syntax_tree/node.rb', line 6037

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6043
6044
6045
# File 'lib/syntax_tree/node.rb', line 6043

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

#format(q) ⇒ Object



6047
6048
6049
# File 'lib/syntax_tree/node.rb', line 6047

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