class Sass::Tree::Node
def perform(environment)
- See: Sass::Tree -
Raises:
-
(Sass::SyntaxError)
- if some element of the tree is invalid
Returns:
-
(Tree::Node)
- The resulting tree of static nodes
Parameters:
-
environment
(Sass::Environment
) -- The lexical environment containing
def perform(environment) environment.options = @options if self.class == Tree::Node _perform(environment) rescue Sass::SyntaxError => e; e.add_metadata(filename, line) end