class Sass::Script::Lexer
The lexical analyzer for SassScript. It takes a raw string and converts it to individual tokens that are easier to parse.
Constants
- IDENT_OP_NAMES
A sub-list of {OP_NAMES} that only includes operators with identifier names.
- OPERATORS
A hash from operator strings to the corresponding token types.
- OPERATORS_REVERSE
- OP_NAMES
A list of operator strings ordered with longer names first so that `>` and `<` don't clobber `>=` and `<=`.
- PARSEABLE_NUMBER
- REGULAR_EXPRESSIONS
A hash of regular expressions that are used for tokenizing.
- STRING_REGULAR_EXPRESSIONS
A hash of regular expressions that are used for tokenizing strings.
The key is a `[Symbol, Boolean]` pair. The symbol represents which style of quotation to use, while the boolean represents whether or not the string is following an interpolated segment.
- TOKEN_NAMES
- Token
A struct containing information about an individual token.
`type`: [`Symbol`] : The type of token.
`value`: [`Object`] : The Ruby object corresponding to the value of the token.
`source_range`: [`Sass::Source::Range`] : The range in the source file in which the token appeared.
`pos`: [`Fixnum`] : The scanner position at which the SassScript token appeared.
Public Class Methods
@param str [String, StringScanner] The source text to lex @param line [Fixnum] The 1-based line on which the SassScript appears.
Used for error reporting and sourcemap building
@param offset [Fixnum] The 1-based character (not byte) offset in the line in the source.
Used for error reporting and sourcemap building
@param options [{Symbol => Object}] An options hash;
see {file:SASS_REFERENCE.md#sass_options the Sass options documentation}
# File lib/sass/script/lexer.rb, line 151 def initialize(str, line, offset, options) @scanner = str.is_a?(StringScanner) ? str : Sass::Util::MultibyteStringScanner.new(str) @line = line @offset = offset @options = options @interpolation_stack = [] @prev = nil end
Private Class Methods
# File lib/sass/script/lexer.rb, line 108 def string_re(open, close) /#{open}((?:\.|\#(?!\{)|[^#{close}\#])*)(#{close}|#\{)/m end
Public Instance Methods
@return [Boolean] Whether or not the last token lexed was `:end_interpolation`.
# File lib/sass/script/lexer.rb, line 214 def after_interpolation? @prev && @prev.type == :end_interpolation end
Returns the given character.
@return [String]
# File lib/sass/script/lexer.rb, line 185 def char(pos = @scanner.pos) @scanner.string[pos, 1] end
@return [Boolean] Whether or not there's more source text to lex.
# File lib/sass/script/lexer.rb, line 207 def done? return if @next_tok whitespace unless after_interpolation? && !@interpolation_stack.empty? @scanner.eos? && @tok.nil? end
Raise an error to the effect that `name` was expected in the input stream and wasn't found.
This calls {#unpeek!} to rewind the scanner to immediately after the last returned token.
@param name [String] The name of the entity that was expected but not found @raise [Sass::SyntaxError]
# File lib/sass/script/lexer.rb, line 226 def expected!(name) unpeek! Sass::SCSS::Parser.expected(@scanner, name, @line) end
The line number of the lexer's current position.
@return [Fixnum]
# File lib/sass/script/lexer.rb, line 29 def line return @line unless @tok @tok.source_range.start_pos.line end
Moves the lexer forward one token.
@return [Token] The token that was moved past
# File lib/sass/script/lexer.rb, line 163 def next @tok ||= read_token @tok, tok = nil, @tok @prev = tok tok end
The number of bytes into the current line of the lexer's current position (1-based).
@return [Fixnum]
# File lib/sass/script/lexer.rb, line 38 def offset return @offset unless @tok @tok.source_range.start_pos.offset end
Returns the next token without moving the lexer forward.
@return [Token] The next token
# File lib/sass/script/lexer.rb, line 192 def peek @tok ||= read_token end
Records all non-comment text the lexer consumes within the block and returns it as a string.
@yield A block in which text is recorded @return [String]
# File lib/sass/script/lexer.rb, line 236 def str old_pos = @tok ? @tok.pos : @scanner.pos yield new_pos = @tok ? @tok.pos : @scanner.pos @scanner.string[old_pos...new_pos] end
Rewinds the underlying StringScanner to before the token returned by {#peek}.
# File lib/sass/script/lexer.rb, line 198 def unpeek! if @tok @scanner.pos = @tok.pos @line = @tok.source_range.start_pos.line @offset = @tok.source_range.start_pos.offset end end
Returns whether or not there's whitespace before the next token.
@return [Boolean]
# File lib/sass/script/lexer.rb, line 173 def whitespace?(tok = @tok) if tok @scanner.string[0...tok.pos] =~ /\s\Z/ else @scanner.string[@scanner.pos, 1] =~ /^\s/ || @scanner.string[@scanner.pos - 1, 1] =~ /\s\Z/ end end
Private Instance Methods
# File lib/sass/script/lexer.rb, line 285 def _variable(rx) return unless scan(rx) [:const, @scanner[2]] end
# File lib/sass/script/lexer.rb, line 291 def ident return unless scan(REGULAR_EXPRESSIONS[:ident]) [@scanner[2] ? :funcall : :ident, @scanner[1]] end
# File lib/sass/script/lexer.rb, line 245 def read_token if (tok = @next_tok) @next_tok = nil return tok end return if done? start_pos = source_position value = token return unless value type, val = value Token.new(type, val, range(start_pos), @scanner.pos - @scanner.matched_size) end
# File lib/sass/script/lexer.rb, line 296 def string(re, open) line, offset = @line, @offset return unless scan(STRING_REGULAR_EXPRESSIONS[re][open]) if @scanner[0] =~ /([^\]|^)\n/ filename = @options[:filename] Sass::Util.sass_warn <<MESSAGE DEPRECATION WARNING on line #{line}, column #{offset}#{" of #{filename}" if filename}: Unescaped multiline strings are deprecated and will be removed in a future version of Sass. To include a newline in a string, use "\\a" or "\\a " as in CSS. MESSAGE end if @scanner[2] == '#{' # ' @interpolation_stack << [:string, re] start_pos = Sass::Source::Position.new(@line, @offset - 2) @next_tok = Token.new(:string_interpolation, range(start_pos), @scanner.pos - 2) end str = if re == :uri url = "#{'url(' unless open}#{@scanner[1]}#{')' unless @scanner[2] == '#{'}" Script::Value::String.new(url) else Script::Value::String.new(Sass::Script::Value::String.value(@scanner[1]), :string) end [:string, str] end def number # Handling unary minus is complicated by the fact that whitespace is an # operator in SassScript. We want "1-2" to be parsed as "1 - 2", but we # want "1 -2" to be parsed as "1 (-2)". To accomplish this, we only # parse a unary minus as part of a number literal if there's whitespace # before and not after it. Cases like "(-2)" are handled by the unary # minus logic in the parser instead. if @scanner.peek(1) == '-' return if @scanner.pos == 0 unary_minus_allowed = case @scanner.string[@scanner.pos - 1, 1] when /\s/; true when '/'; @scanner.pos != 1 && @scanner.string[@scanner.pos - 2, 1] == '*' else; false end return unless unary_minus_allowed return unless scan(REGULAR_EXPRESSIONS[:unary_minus_number]) minus = true else return unless scan(REGULAR_EXPRESSIONS[:number]) minus = false end value = (@scanner[1] ? @scanner[1].to_f : @scanner[2].to_i) * (minus ? -1 : 1) value *= 10**@scanner[3].to_i if @scanner[3] script_number = Script::Value::Number.new(value, Array(@scanner[4])) [:number, script_number] end def id # Colors and ids are tough to tell apart, because they overlap but # neither is a superset of the other. "#xyz" is an id but not a color, # "#000" is a color but not an id, "#abc" is both, and "#0" is neither. # We need to handle all these cases correctly. # # To do so, we first try to parse something as an id. If this works and # the id is also a valid color, we return the color. Otherwise, we # return the id. If it didn't parse as an id, we then try to parse it as # a color. If *this* works, we return the color, and if it doesn't we # give up and throw an error. # # IDs in properties are used in the Basic User Interface Module # (http://www.w3.org/TR/css3-ui/). return unless scan(REGULAR_EXPRESSIONS[:id]) if @scanner[0] =~ /^\#[0-9a-fA-F]+$/ && (@scanner[0].length == 4 || @scanner[0].length == 7) return [:color, Script::Value::Color.from_hex(@scanner[0])] end [:ident, @scanner[0]] end def color return unless @scanner.match?(REGULAR_EXPRESSIONS[:color]) return unless @scanner[0].length == 4 || @scanner[0].length == 7 script_color = Script::Value::Color.from_hex(scan(REGULAR_EXPRESSIONS[:color])) [:color, script_color] end def selector start_pos = source_position return unless scan(REGULAR_EXPRESSIONS[:selector]) script_selector = Script::Tree::Selector.new script_selector.source_range = range(start_pos) [:selector, script_selector] end def special_fun prefix = scan(/((-[\w-]+-)?(calc|element)|expression|progid:[a-z\.]*)\(/i) return unless prefix special_fun_body(1, prefix) end def special_fun_body(parens, prefix = nil) str = prefix || '' while (scanned = scan(/.*?([()]|\#\{)/m)) str << scanned if scanned[-1] == ?( parens += 1 next elsif scanned[-1] == ?) parens -= 1 next unless parens == 0 else raise "[BUG] Unreachable" unless @scanner[1] == '#{' # ' str.slice!(-2..-1) @interpolation_stack << [:special_fun, parens] start_pos = Sass::Source::Position.new(@line, @offset - 2) @next_tok = Token.new(:string_interpolation, range(start_pos), @scanner.pos - 2) end return [:special_fun, Sass::Script::Value::String.new(str)] end scan(/.*/) expected!('")"') end def special_val return unless scan(/!important/i) [:string, Script::Value::String.new("!important")] end def ident_op op = scan(REGULAR_EXPRESSIONS[:ident_op]) return unless op [OPERATORS[op]] end def op op = scan(REGULAR_EXPRESSIONS[:op]) return unless op name = OPERATORS[op] @interpolation_stack << nil if name == :begin_interpolation [name] end def raw(rx) val = scan(rx) return unless val [:raw, val] end def scan(re) str = @scanner.scan(re) return unless str c = str.count("\n") @line += c @offset = (c == 0 ? @offset + str.size : str.size - str.rindex("\n")) str end def range(start_pos, end_pos = source_position) Sass::Source::Range.new(start_pos, end_pos, @options[:filename], @options[:importer]) end def source_position Sass::Source::Position.new(@line, @offset) end end end end
# File lib/sass/script/lexer.rb, line 265 def token if after_interpolation? && (interp = @interpolation_stack.pop) interp_type, interp_value = interp if interp_type == :special_fun return special_fun_body(interp_value) else raise "[BUG]: Unknown interp_type #{interp_type}" unless interp_type == :string return string(interp_value, true) end end variable || string(:double, false) || string(:single, false) || number || id || color || selector || string(:uri, false) || raw(UNICODERANGE) || special_fun || special_val || ident_op || ident || op end
# File lib/sass/script/lexer.rb, line 281 def variable _variable(REGULAR_EXPRESSIONS[:variable]) end
# File lib/sass/script/lexer.rb, line 259 def whitespace nil while scan(REGULAR_EXPRESSIONS[:whitespace]) || scan(REGULAR_EXPRESSIONS[:comment]) || scan(REGULAR_EXPRESSIONS[:single_line_comment]) end