Represents the use of the ^ operator for pinning an expression in a pattern matching expression.

foo in ^(bar)
       ^^^^^^
Attributes
Read

The expression used in the pinned expression

foo in ^(bar)
         ^^^
Class Methods

Initialize a new PinnedExpressionNode node.

Return a symbol representation of this node type. See Node::type.

Instance Methods

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.

def accept: (Visitor visitor) -> void

def child_nodes: () -> Array

def comment_targets: () -> Array[Node | Location]

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?expression: Prism::node, ?operator_loc: Location, ?lparen_loc: Location, ?rparen_loc: Location) -> PinnedExpressionNode

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, expression: Prism::node, operator_loc: Location, lparen_loc: Location, rparen_loc: Location }

def inspect -> String

def lparen: () -> String

The location of the opening parenthesis.

foo in ^(bar)
        ^

def operator: () -> String

The location of the ^ operator

foo in ^(bar)
       ^

def rparen: () -> String

The location of the closing parenthesis.

foo in ^(bar)
            ^

Save the lparen_loc location using the given saved source so that it can be retrieved later.

Save the operator_loc location using the given saved source so that it can be retrieved later.

Save the rparen_loc location using the given saved source so that it can be retrieved later.

Return a symbol representation of this node type. See Node#type.