Class: SyntaxTree::VarAlias

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

Overview

VarAlias represents when you’re using the alias keyword with global variable arguments.

alias $new $old

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(left:, right:, location:, comments: []) ⇒ VarAlias

Returns a new instance of VarAlias.



9363
9364
9365
9366
9367
9368
# File 'lib/syntax_tree/node.rb', line 9363

def initialize(left:, right:, location:, comments: [])
  @left = left
  @right = right
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



9361
9362
9363
# File 'lib/syntax_tree/node.rb', line 9361

def comments
  @comments
end

#leftObject (readonly)

GVar

the new alias of the variable



9355
9356
9357
# File 'lib/syntax_tree/node.rb', line 9355

def left
  @left
end

#rightObject (readonly)

Backref | GVar

the current name of the variable to be aliased



9358
9359
9360
# File 'lib/syntax_tree/node.rb', line 9358

def right
  @right
end

Instance Method Details

#accept(visitor) ⇒ Object



9370
9371
9372
# File 'lib/syntax_tree/node.rb', line 9370

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

#child_nodesObject Also known as: deconstruct



9374
9375
9376
# File 'lib/syntax_tree/node.rb', line 9374

def child_nodes
  [left, right]
end

#deconstruct_keys(_keys) ⇒ Object



9380
9381
9382
# File 'lib/syntax_tree/node.rb', line 9380

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

#format(q) ⇒ Object



9384
9385
9386
9387
9388
9389
9390
9391
# File 'lib/syntax_tree/node.rb', line 9384

def format(q)
  keyword = "alias "

  q.text(keyword)
  q.format(left)
  q.text(" ")
  q.format(right)
end