class Prism::MatchWriteNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(MatchWriteNode) && (call === other.call) && (targets.length == other.targets.length) && targets.zip(other.targets).all? { |left, right| left === right } end