Class: Prism::AliasMethodNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::AliasMethodNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘alias` keyword to alias a method.
alias foo bar
^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#new_name ⇒ Object
readonly
Represents the new name of the method that will be aliased.
-
#old_name ⇒ Object
readonly
Represents the old name of the method that will be aliased.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, new_name: self.new_name, old_name: self.old_name, keyword_loc: self.keyword_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?new_name: SymbolNode | InterpolatedSymbolNode, ?old_name: SymbolNode | InterpolatedSymbolNode | GlobalVariableReadNode | MissingNode, ?keyword_loc: Location) -> AliasMethodNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, new_name: SymbolNode | InterpolatedSymbolNode, old_name: SymbolNode | InterpolatedSymbolNode | GlobalVariableReadNode | MissingNode, keyword_loc: Location }.
-
#initialize(source, node_id, location, flags, new_name, old_name, keyword_loc) ⇒ AliasMethodNode
constructor
Initialize a new AliasMethodNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#keyword ⇒ Object
def keyword: () -> String.
-
#keyword_loc ⇒ Object
Represents the location of the ‘alias` keyword.
-
#save_keyword_loc(repository) ⇒ Object
Save the keyword_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, new_name, old_name, keyword_loc) ⇒ AliasMethodNode
Initialize a new AliasMethodNode node.
425 426 427 428 429 430 431 432 433 |
# File 'lib/prism/node.rb', line 425 def initialize(source, node_id, location, flags, new_name, old_name, keyword_loc) @source = source @node_id = node_id @location = location @flags = flags @new_name = new_name @old_name = old_name @keyword_loc = keyword_loc end |
Instance Attribute Details
#new_name ⇒ Object (readonly)
Represents the new name of the method that will be aliased.
alias foo bar
^^^
alias :foo :bar
^^^^
alias :"#{foo}" :"#{bar}"
^^^^^^^^^
478 479 480 |
# File 'lib/prism/node.rb', line 478 def new_name @new_name end |
#old_name ⇒ Object (readonly)
Represents the old name of the method that will be aliased.
alias foo bar
^^^
alias :foo :bar
^^^^
alias :"#{foo}" :"#{bar}"
^^^^^^^^^
490 491 492 |
# File 'lib/prism/node.rb', line 490 def old_name @old_name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
524 525 526 |
# File 'lib/prism/node.rb', line 524 def self.type :alias_method_node end |
Instance Method Details
#===(other) ⇒ Object
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
530 531 532 533 534 535 |
# File 'lib/prism/node.rb', line 530 def ===(other) other.is_a?(AliasMethodNode) && (new_name === other.new_name) && (old_name === other.old_name) && (keyword_loc.nil? == other.keyword_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
436 437 438 |
# File 'lib/prism/node.rb', line 436 def accept(visitor) visitor.visit_alias_method_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
441 442 443 |
# File 'lib/prism/node.rb', line 441 def child_nodes [new_name, old_name] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
451 452 453 |
# File 'lib/prism/node.rb', line 451 def comment_targets [new_name, old_name, keyword_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
446 447 448 |
# File 'lib/prism/node.rb', line 446 def compact_child_nodes [new_name, old_name] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, new_name: self.new_name, old_name: self.old_name, keyword_loc: self.keyword_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?new_name: SymbolNode | InterpolatedSymbolNode, ?old_name: SymbolNode | InterpolatedSymbolNode | GlobalVariableReadNode | MissingNode, ?keyword_loc: Location) -> AliasMethodNode
456 457 458 |
# File 'lib/prism/node.rb', line 456 def copy(node_id: self.node_id, location: self.location, flags: self.flags, new_name: self.new_name, old_name: self.old_name, keyword_loc: self.keyword_loc) AliasMethodNode.new(source, node_id, location, flags, new_name, old_name, keyword_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, new_name: SymbolNode | InterpolatedSymbolNode, old_name: SymbolNode | InterpolatedSymbolNode | GlobalVariableReadNode | MissingNode, keyword_loc: Location }
464 465 466 |
# File 'lib/prism/node.rb', line 464 def deconstruct_keys(keys) { node_id: node_id, location: location, new_name: new_name, old_name: old_name, keyword_loc: keyword_loc } end |
#inspect ⇒ Object
def inspect -> String
514 515 516 |
# File 'lib/prism/node.rb', line 514 def inspect InspectVisitor.compose(self) end |
#keyword ⇒ Object
def keyword: () -> String
509 510 511 |
# File 'lib/prism/node.rb', line 509 def keyword keyword_loc.slice end |
#keyword_loc ⇒ Object
Represents the location of the ‘alias` keyword.
alias foo bar
^^^^^
496 497 498 499 500 |
# File 'lib/prism/node.rb', line 496 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_keyword_loc(repository) ⇒ Object
Save the keyword_loc location using the given saved source so that it can be retrieved later.
504 505 506 |
# File 'lib/prism/node.rb', line 504 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
519 520 521 |
# File 'lib/prism/node.rb', line 519 def type :alias_method_node end |