Class: SyntaxTree::VarAlias
Overview
VarAlias represents when you’re using the alias keyword with global variable arguments.
alias $new $old
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#left ⇒ Object
readonly
- GVar
-
the new alias of the variable.
-
#right ⇒ Object
readonly
- Backref | GVar
-
the current name of the variable to be aliased.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(left:, right:, location:, comments: []) ⇒ VarAlias
constructor
A new instance of VarAlias.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(left:, right:, location:, comments: []) ⇒ VarAlias
Returns a new instance of VarAlias.
9450 9451 9452 9453 9454 9455 |
# File 'lib/syntax_tree/node.rb', line 9450 def initialize(left:, right:, location:, comments: []) @left = left @right = right @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
9448 9449 9450 |
# File 'lib/syntax_tree/node.rb', line 9448 def comments @comments end |
#left ⇒ Object (readonly)
- GVar
-
the new alias of the variable
9442 9443 9444 |
# File 'lib/syntax_tree/node.rb', line 9442 def left @left end |
#right ⇒ Object (readonly)
- Backref | GVar
-
the current name of the variable to be aliased
9445 9446 9447 |
# File 'lib/syntax_tree/node.rb', line 9445 def right @right end |
Instance Method Details
#accept(visitor) ⇒ Object
9457 9458 9459 |
# File 'lib/syntax_tree/node.rb', line 9457 def accept(visitor) visitor.visit_var_alias(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
9461 9462 9463 |
# File 'lib/syntax_tree/node.rb', line 9461 def child_nodes [left, right] end |
#deconstruct_keys(_keys) ⇒ Object
9467 9468 9469 |
# File 'lib/syntax_tree/node.rb', line 9467 def deconstruct_keys(_keys) { left: left, right: right, location: location, comments: comments } end |
#format(q) ⇒ Object
9471 9472 9473 9474 9475 9476 9477 9478 |
# File 'lib/syntax_tree/node.rb', line 9471 def format(q) keyword = "alias " q.text(keyword) q.format(left) q.text(" ") q.format(right) end |