class Prism::Token

def initialize(source, type, value, location)

Create a new token object with the given type, value, and location.
def initialize(source, type, value, location)
  @source = source
  @type = type
  @value = value
  @location = location
end