class ActionDispatch::Journey::Scanner

def next_token

def next_token
  return if @ss.eos?
  until token = scan || @ss.eos?; end
  token
end