Method: Sass::Script::Lexer#next_char
- Defined in:
- lib/sass/script/lexer.rb
permalink #next_char ⇒ String
Consumes and returns single raw character from the input stream.
196 197 198 199 |
# File 'lib/sass/script/lexer.rb', line 196
def next_char
unpeek!
scan(/./)
end
|