Sha256: 3cf90374a64a757f62e58e33f27a8710ef82afcfd98731c86968c455b28a9887
Contents?: true
Size: 755 Bytes
Versions: 96
Compression:
Stored size: 755 Bytes
Contents
module Sass module Script # This is a subclass of {Lexer} for use in parsing plain CSS properties. # # @see Sass::SCSS::CssParser class CssLexer < Lexer private def token important || super end def string(re, *args) if re == :uri uri = scan(URI) return unless uri return [:string, Script::Value::String.new(uri)] end return unless scan(STRING) string_value = Sass::Script::Value::String.value(@scanner[1] || @scanner[2]) value = Script::Value::String.new(string_value, :string) [:string, value] end def important s = scan(IMPORTANT) return unless s [:raw, s] end end end end
Version data entries
96 entries across 93 versions & 9 rubygems