gems.sass-3.4.13.lib.sass.scss.script_lexer.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
module Sass
module SCSS
# A mixin for subclasses of {Sass::Script::Lexer}
# that makes them usable by {SCSS::Parser} to parse SassScript.
# In particular, the lexer doesn't support `!` for a variable prefix.
module ScriptLexer
private
def variable
return [:raw, "!important"] if scan(Sass::SCSS::RX::IMPORTANT)
_variable(Sass::SCSS::RX::VARIABLE)
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy