Sha256: 171d33a40007fef9f17f8732a687d9ee0a01745cb046cbba85c13cd273069b1e
Contents?: true
Size: 1.62 KB
Versions: 4
Compression:
Stored size: 1.62 KB
Contents
module Sass module SCSS # A parser for a static SCSS tree. # Parses with SCSS extensions, like nested rules and parent selectors, # but without dynamic SassScript. # This is useful for e.g. \{#parse\_selector parsing selectors} # after resolving the interpolation. class StaticParser < Parser # Parses the text as a selector. # # @param line [Fixnum] The line on which the selector appears. # Used for error reporting # @param filename [String, nil] The file in which the selector appears, # or nil if there is no such file. # Used for error reporting # @return [Selector::CommaSequence] The parsed selector # @raise [Sass::SyntaxError] if there's a syntax error in the selector def parse_selector(line, filename) init_scanner! selectors = [expr!(:_selector)] while tok(/,/) ws = str{ss} selectors << expr!(:_selector) selectors[-1] = Selector::Sequence.new(["\n"] + selectors.last.members) if ws.include?("\n") end expected("selector") unless @scanner.eos? seq = Selector::CommaSequence.new(selectors) seq.line = line seq.filename = filename seq end private def variable; nil; end def script_value; nil; end def interpolation; nil; end def interp_string; s = tok(STRING) and [s]; end def interp_ident(ident = IDENT); s = tok(ident) and [s]; end def use_css_import?; true; end def special_directive(name) return unless name == 'media' || name == 'import' super end end end end
Version data entries
4 entries across 4 versions & 2 rubygems