class Prism::LocalVariableReadNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(LocalVariableReadNode) && (name === other.name) && (depth === other.depth) end
def ===(other) other.is_a?(LocalVariableReadNode) && (name === other.name) && (depth === other.depth) end