Class: SyntaxTree::LBracket

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

Overview

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

Returns a new instance of LBracket.



6116
6117
6118
6119
6120
# File 'lib/syntax_tree/node.rb', line 6116

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



6114
6115
6116
# File 'lib/syntax_tree/node.rb', line 6114

def comments
  @comments
end

#valueObject (readonly)

String

the left bracket



6111
6112
6113
# File 'lib/syntax_tree/node.rb', line 6111

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6122
6123
6124
# File 'lib/syntax_tree/node.rb', line 6122

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

#child_nodesObject Also known as: deconstruct



6126
6127
6128
# File 'lib/syntax_tree/node.rb', line 6126

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6132
6133
6134
# File 'lib/syntax_tree/node.rb', line 6132

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

#format(q) ⇒ Object



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

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