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

#format, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:) ⇒ RBracket



7093
7094
7095
7096
# File 'lib/syntax_tree/node.rb', line 7093

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

Instance Attribute Details

#valueObject (readonly)

String

the right bracket



7091
7092
7093
# File 'lib/syntax_tree/node.rb', line 7091

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7098
7099
7100
# File 'lib/syntax_tree/node.rb', line 7098

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

#child_nodesObject Also known as: deconstruct



7102
7103
7104
# File 'lib/syntax_tree/node.rb', line 7102

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



7108
7109
7110
# File 'lib/syntax_tree/node.rb', line 7108

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