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.



5994
5995
5996
5997
5998
# File 'lib/syntax_tree/node.rb', line 5994

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



5992
5993
5994
# File 'lib/syntax_tree/node.rb', line 5992

def comments
  @comments
end

#valueObject (readonly)

String

the left bracket



5989
5990
5991
# File 'lib/syntax_tree/node.rb', line 5989

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6000
6001
6002
# File 'lib/syntax_tree/node.rb', line 6000

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

#child_nodesObject Also known as: deconstruct



6004
6005
6006
# File 'lib/syntax_tree/node.rb', line 6004

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6010
6011
6012
# File 'lib/syntax_tree/node.rb', line 6010

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

#format(q) ⇒ Object



6014
6015
6016
# File 'lib/syntax_tree/node.rb', line 6014

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