You are here

public static function SassRootNode::isa in Sassy 7

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

* Returns a value indicating if the line represents this type of node. * Child classes must override this method. *

Throws

SassNodeException if not overriden

Overrides SassNode::isa

File

phamlp/sass/tree/SassRootNode.php, line 97

Class

SassRootNode
SassRootNode class. Also the root node of a document. @package PHamlP @subpackage Sass.tree

Code

public static function isa($line) {
  throw new SassNodeException('Child classes must override this method');
}