class Sass::Script::Lexer

def done?

Returns:
  • (Boolean) - Whether or not there's more source text to lex.
def done?
  whitespace unless after_interpolation?
  @scanner.eos? && @tok.nil?
end