Method: Sass::Script::Lexer#after_interpolation?

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

#after_interpolation?Boolean

Returns Whether or not the last token lexed was :end_interpolation.

Returns:

  • (Boolean)

    Whether or not the last token lexed was :end_interpolation.


226
227
228
# File 'lib/sass/script/lexer.rb', line 226

def after_interpolation?
  @prev && @prev.type == :end_interpolation
end