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 comment_targets
def comment_targets [variable, operator_loc] end
def copy(**params)
def copy(**params) PinnedVariableNode.new( params.fetch(:variable) { variable }, params.fetch(:operator_loc) { operator_loc }, params.fetch(:location) { location }, ) 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 inspect(inspector = NodeInspector.new)
def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── variable:\n" inspector << inspector.child_node(variable, "│ ") inspector << "└── operator_loc: #{inspector.location(operator_loc)}\n" inspector.to_str end
def operator
def operator operator_loc.slice end