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.
-
#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.
428 429 430 431 432 433 434 435 436 |
# File 'lib/prism/node.rb', line 428 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}"
^^^^^^^^^
481 482 483 |
# File 'lib/prism/node.rb', line 481 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}"
^^^^^^^^^
493 494 495 |
# File 'lib/prism/node.rb', line 493 def old_name @old_name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
527 528 529 |
# File 'lib/prism/node.rb', line 527 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.
533 534 535 536 537 538 |
# File 'lib/prism/node.rb', line 533 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
439 440 441 |
# File 'lib/prism/node.rb', line 439 def accept(visitor) visitor.visit_alias_method_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
444 445 446 |
# File 'lib/prism/node.rb', line 444 def child_nodes [new_name, old_name] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
454 455 456 |
# File 'lib/prism/node.rb', line 454 def comment_targets [new_name, old_name, keyword_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
449 450 451 |
# File 'lib/prism/node.rb', line 449 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
459 460 461 |
# File 'lib/prism/node.rb', line 459 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 }
467 468 469 |
# File 'lib/prism/node.rb', line 467 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
517 518 519 |
# File 'lib/prism/node.rb', line 517 def inspect InspectVisitor.compose(self) end |
#keyword ⇒ Object
def keyword: () -> String
512 513 514 |
# File 'lib/prism/node.rb', line 512 def keyword keyword_loc.slice end |
#keyword_loc ⇒ Object
Represents the location of the ‘alias` keyword.
alias foo bar
^^^^^
499 500 501 502 503 |
# File 'lib/prism/node.rb', line 499 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.
507 508 509 |
# File 'lib/prism/node.rb', line 507 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`.
522 523 524 |
# File 'lib/prism/node.rb', line 522 def type :alias_method_node end |