class YARP::Token

def ==(other)

def ==(other)
  other.is_a?(Token) &&
    other.type == type &&
    other.value == value
end