You are here

public static function SassRootNode::isa in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/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

phpsass/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');
}