class Prism::AliasGlobalVariableNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(AliasGlobalVariableNode) && (new_name === other.new_name) && (old_name === other.old_name) && (keyword_loc.nil? == other.keyword_loc.nil?) end