Class: SyntaxTree::RBracket

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

Overview

RBracket represents the use of a right bracket, i.e., ].

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #format, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:) ⇒ RBracket

Returns a new instance of RBracket.



7346
7347
7348
7349
# File 'lib/syntax_tree/node.rb', line 7346

def initialize(value:, location:)
  @value = value
  @location = location
end

Instance Attribute Details

#valueObject (readonly)

String

the right bracket



7344
7345
7346
# File 'lib/syntax_tree/node.rb', line 7344

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7351
7352
7353
# File 'lib/syntax_tree/node.rb', line 7351

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

#child_nodesObject Also known as: deconstruct



7355
7356
7357
# File 'lib/syntax_tree/node.rb', line 7355

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7361
7362
7363
# File 'lib/syntax_tree/node.rb', line 7361

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