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