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