class RBS::Parser::Token

def comment?

def comment?
  @type == :tCOMMENT || @type == :tLINECOMMENT
end

def initialize(type:, location:)

def initialize(type:, location:)
  @type = type
  @location = location
end

def value

def value
  @location.source
end