Class: SyntaxTree::IVar

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

Overview

IVar represents an instance variable literal.

@variable

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: []) ⇒ IVar

Returns a new instance of IVar.



5737
5738
5739
5740
5741
# File 'lib/syntax_tree/node.rb', line 5737

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



5735
5736
5737
# File 'lib/syntax_tree/node.rb', line 5735

def comments
  @comments
end

#valueObject (readonly)

String

the name of the instance variable



5732
5733
5734
# File 'lib/syntax_tree/node.rb', line 5732

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5743
5744
5745
# File 'lib/syntax_tree/node.rb', line 5743

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

#child_nodesObject Also known as: deconstruct



5747
5748
5749
# File 'lib/syntax_tree/node.rb', line 5747

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5753
5754
5755
# File 'lib/syntax_tree/node.rb', line 5753

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

#format(q) ⇒ Object



5757
5758
5759
# File 'lib/syntax_tree/node.rb', line 5757

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