class Prism::CapturePatternNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(CapturePatternNode) && (value === other.value) && (target === other.target) && (operator_loc.nil? == other.operator_loc.nil?) end