Class: Prism::SelfNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::SelfNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the ‘self` keyword.
self
^^^^
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) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer) -> SelfNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location }.
-
#initialize(source, node_id, location, flags) ⇒ SelfNode
constructor
Initialize a new SelfNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags) ⇒ SelfNode
Initialize a new SelfNode node.
14619 14620 14621 14622 14623 14624 |
# File 'lib/prism/node.rb', line 14619 def initialize(source, node_id, location, flags) @source = source @node_id = node_id @location = location @flags = flags end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
14670 14671 14672 |
# File 'lib/prism/node.rb', line 14670 def self.type :self_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.
14676 14677 14678 |
# File 'lib/prism/node.rb', line 14676 def ===(other) other.is_a?(SelfNode) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
14627 14628 14629 |
# File 'lib/prism/node.rb', line 14627 def accept(visitor) visitor.visit_self_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
14632 14633 14634 |
# File 'lib/prism/node.rb', line 14632 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
14642 14643 14644 |
# File 'lib/prism/node.rb', line 14642 def comment_targets [] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
14637 14638 14639 |
# File 'lib/prism/node.rb', line 14637 def compact_child_nodes [] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer) -> SelfNode
14647 14648 14649 |
# File 'lib/prism/node.rb', line 14647 def copy(node_id: self.node_id, location: self.location, flags: self.flags) SelfNode.new(source, node_id, location, flags) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location }
14655 14656 14657 |
# File 'lib/prism/node.rb', line 14655 def deconstruct_keys(keys) { node_id: node_id, location: location } end |
#inspect ⇒ Object
def inspect -> String
14660 14661 14662 |
# File 'lib/prism/node.rb', line 14660 def inspect InspectVisitor.compose(self) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
14665 14666 14667 |
# File 'lib/prism/node.rb', line 14665 def type :self_node end |