You are here

public function SassExtendNode::parse in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tree/SassExtendNode.php \SassExtendNode::parse()

* Parse this node. *

Return value

array An empty array

File

phamlp/sass/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) {
  $this->root
    ->extend($this->value, $this->parent->selectors);
  return array();
}