Class: SyntaxTree::VCall

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

Overview

VCall represent any plain named object with Ruby that could be either a local variable or a method call.

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

Returns a new instance of VCall.



9619
9620
9621
9622
9623
# File 'lib/syntax_tree/node.rb', line 9619

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



9617
9618
9619
# File 'lib/syntax_tree/node.rb', line 9617

def comments
  @comments
end

#valueObject (readonly)

Ident

the value of this expression



9614
9615
9616
# File 'lib/syntax_tree/node.rb', line 9614

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



9625
9626
9627
# File 'lib/syntax_tree/node.rb', line 9625

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

#child_nodesObject Also known as: deconstruct



9629
9630
9631
# File 'lib/syntax_tree/node.rb', line 9629

def child_nodes
  [value]
end

#deconstruct_keys(_keys) ⇒ Object



9635
9636
9637
# File 'lib/syntax_tree/node.rb', line 9635

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

#format(q) ⇒ Object



9639
9640
9641
# File 'lib/syntax_tree/node.rb', line 9639

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