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