You are here

public function SassExtendNode::parse in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/tree/SassExtendNode.php \SassExtendNode::parse()

Parse this node.

Return value

array An empty array

File

phpsass/tree/SassExtendNode.php, line 43

Class

SassExtendNode
SassExtendNode class. Represents a Sass @debug or @warn directive. @package PHamlP @subpackage Sass.tree

Code

public function parse($context) {

  # Richard Lyon, 25/10/2011 - resolve selectors in relation to variables

  # allows extend inside nested loops.
  $this->root
    ->extend($this->value, $this->parent
    ->resolveSelectors($context));
  return array();
}