class YARP::PinnedVariableNode
^^^^
foo in ^bar
matching expression.
Represents the use of the ‘^` operator for pinning a variable in a pattern
def accept(visitor)
def accept(visitor) visitor.visit_pinned_variable_node(self) end
def child_nodes
def child_nodes [variable] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { variable: variable, operator_loc: operator_loc, location: location } end
def initialize(variable, operator_loc, location)
def initialize(variable, operator_loc, location) @variable = variable @operator_loc = operator_loc @location = location end
def operator
def operator operator_loc.slice end