class YARP::HashPatternNode
^^^^^^^^^^^^^^^^^^^
foo => { a: 1, b: 2, **c }
^^^^^^^^^^^^^^
foo => { a: 1, b: 2 }
Represents a hash pattern in pattern matching.
def accept(visitor)
def accept(visitor) visitor.visit_hash_pattern_node(self) end
def child_nodes
def child_nodes [constant, *assocs, kwrest] end
def closing
def closing closing_loc&.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { constant: constant, assocs: assocs, kwrest: kwrest, opening_loc: opening_loc, closing_loc: closing_loc, location: location } end
def initialize(constant, assocs, kwrest, opening_loc, closing_loc, location)
def initialize(constant, assocs, kwrest, opening_loc, closing_loc, location) @constant = constant @assocs = assocs @kwrest = kwrest @opening_loc = opening_loc @closing_loc = closing_loc @location = location end
def opening
def opening opening_loc&.slice end