class Prism::SplatNode

def ===(other)

comparing the value of locations. Locations are checked only for presence.
Implements case-equality for the node. This is effectively == but without
def ===(other)
  other.is_a?(SplatNode) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (expression === other.expression)
end