Class: SyntaxTree::VarField

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

Overview

VarField represents a variable that is being assigned a value. As such, it is always a child of an assignment type node.

variable = value

In the example above, the VarField node represents the variable token.

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

Returns a new instance of VarField.



9452
9453
9454
9455
9456
# File 'lib/syntax_tree/node.rb', line 9452

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



9450
9451
9452
# File 'lib/syntax_tree/node.rb', line 9450

def comments
  @comments
end

#valueObject (readonly)

nil | Const | CVar | GVar | Ident | IVar

the target of this node



9447
9448
9449
# File 'lib/syntax_tree/node.rb', line 9447

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



9458
9459
9460
# File 'lib/syntax_tree/node.rb', line 9458

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

#child_nodesObject Also known as: deconstruct



9462
9463
9464
# File 'lib/syntax_tree/node.rb', line 9462

def child_nodes
  [value]
end

#deconstruct_keys(_keys) ⇒ Object



9468
9469
9470
# File 'lib/syntax_tree/node.rb', line 9468

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

#format(q) ⇒ Object



9472
9473
9474
9475
9476
9477
9478
# File 'lib/syntax_tree/node.rb', line 9472

def format(q)
  if value == :nil
    q.text("nil")
  elsif value
    q.format(value)
  end
end