1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/sass/scss/static_parser.rb

48 lines
1.6 KiB
Ruby

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(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