class YARP::AssocSplatNode
^^^^^
{ **foo }
Represents a splat in a hash literal.
def accept(visitor)
def accept(visitor) visitor.visit_assoc_splat_node(self) end
def child_nodes
def child_nodes [value] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { value: value, operator_loc: operator_loc, location: location } end
def initialize(value, operator_loc, location)
def initialize(value, operator_loc, location) @value = value @operator_loc = operator_loc @location = location end
def operator
def operator operator_loc.slice end