Class: SyntaxTree::LBrace

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

Overview

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

Returns a new instance of LBrace.



5961
5962
5963
5964
5965
# File 'lib/syntax_tree/node.rb', line 5961

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



5959
5960
5961
# File 'lib/syntax_tree/node.rb', line 5959

def comments
  @comments
end

#valueObject (readonly)

String

the left brace



5956
5957
5958
# File 'lib/syntax_tree/node.rb', line 5956

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5967
5968
5969
# File 'lib/syntax_tree/node.rb', line 5967

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

#child_nodesObject Also known as: deconstruct



5971
5972
5973
# File 'lib/syntax_tree/node.rb', line 5971

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5977
5978
5979
# File 'lib/syntax_tree/node.rb', line 5977

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

#format(q) ⇒ Object



5981
5982
5983
# File 'lib/syntax_tree/node.rb', line 5981

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