Method: Sass::Script::Lexer#peek
- Defined in:
- lib/sass/script/lexer.rb
#peek ⇒ Token
Returns the next token without moving the lexer forward.
204 205 206 |
# File 'lib/sass/script/lexer.rb', line 204
def peek
@tok ||= read_token
end
|