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