gems.sass-3.2.8.lib.sass.tree.visitors.extend.rb Maven / Gradle / Ivy
Go to download
Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector
inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a
web-framework plugin.
This is a repackaged GEM in a JAR format of the sass-lang.gem package. The sass-gems package version
follows the sass-lang.gem versions located http://rubyforge.org/frs/?group_id=9702. Simply change
the version of this package to download and repackage the same GEM version.
# A visitor for performing selector inheritance on a static CSS tree.
#
# Destructively modifies the tree.
class Sass::Tree::Visitors::Extend < Sass::Tree::Visitors::Base
# Performs the given extensions on the static CSS tree based in `root`, then
# validates that all extends matched some selector.
#
# @param root [Tree::Node] The root node of the tree to visit.
# @param extends [Sass::Util::SubsetMap{Selector::Simple =>
# Sass::Tree::Visitors::Cssize::Extend}]
# The extensions to perform on this tree.
# @return [Object] The return value of \{#visit} for the root node.
def self.visit(root, extends)
return if extends.empty?
new(extends).send(:visit, root)
check_extends_fired! extends
end
protected
def initialize(extends)
@parent_directives = []
@extends = extends
end
# If an exception is raised, this adds proper metadata to the backtrace.
def visit(node)
super(node)
rescue Sass::SyntaxError => e
e.modify_backtrace(:filename => node.filename, :line => node.line)
raise e
end
# Keeps track of the current parent directives.
def visit_children(parent)
@parent_directives.push parent if parent.is_a?(Sass::Tree::DirectiveNode)
super
ensure
@parent_directives.pop if parent.is_a?(Sass::Tree::DirectiveNode)
end
# Applies the extend to a single rule's selector.
def visit_rule(node)
node.resolved_rules = node.resolved_rules.do_extend(@extends, @parent_directives)
end
private
def self.check_extends_fired!(extends)
extends.each_value do |ex|
next if ex.result == :succeeded || ex.node.optional?
warn = "\"#{ex.extender}\" failed to @extend \"#{ex.target.join}\"."
reason =
if ex.result == :not_found
"The selector \"#{ex.target.join}\" was not found."
else
"No selectors matching \"#{ex.target.join}\" could be unified with \"#{ex.extender}\"."
end
Sass::Util.sass_warn <