class SyntaxTree::Int

def ===(other)

def ===(other)
  other.is_a?(Int) && value === other.value
end