class Prism::ConstantPathTargetNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(ConstantPathTargetNode) && (parent === other.parent) && (name === other.name) && (delimiter_loc.nil? == other.delimiter_loc.nil?) && (name_loc.nil? == other.name_loc.nil?) end