All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.sass-3.4.19.lib.sass.scss.script_lexer.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
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