Method: Sass::Script::Lexer#done?
- Defined in:
- lib/sass/script/lexer.rb
#done? ⇒ Boolean
Returns Whether or not there's more source text to lex.
219 220 221 222 223 |
# File 'lib/sass/script/lexer.rb', line 219
def done?
return if @next_tok
whitespace unless after_interpolation? && !@interpolation_stack.empty?
@scanner.eos? && @tok.nil?
end
|