Method: Sass::Script::Lexer#next_char

Defined in:
lib/sass/script/lexer.rb

#next_charString

Consumes and returns single raw character from the input stream.

Returns:

  • (String)
[View source]

196
197
198
199
# File 'lib/sass/script/lexer.rb', line 196

def next_char
  unpeek!
  scan(/./)
end