public static function SassNode::isa in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/tree/SassNode.php \SassNode::isa()
* Returns a value indicating if the token represents this type of node. *
Parameters
object token: * @return boolean true if the token represents this type of node, false if not
7 methods override SassNode::isa()
- SassCommentNode::isa in phamlp/
sass/ tree/ SassCommentNode.php - * Returns a value indicating if the token represents this type of node. *
- SassDirectiveNode::isa in phamlp/
sass/ tree/ SassDirectiveNode.php - * Returns a value indicating if the token represents this type of node. *
- SassMixinDefinitionNode::isa in phamlp/
sass/ tree/ SassMixinDefinitionNode.php - * Returns a value indicating if the token represents this type of node. *
- SassMixinNode::isa in phamlp/
sass/ tree/ SassMixinNode.php - * Returns a value indicating if the token represents this type of node. *
- SassPropertyNode::isa in phamlp/
sass/ tree/ SassPropertyNode.php - * Returns a value indicating if the token represents this type of node. *
File
- phamlp/
sass/ tree/ SassNode.php, line 342
Class
- SassNode
- SassNode class. Base class for all Sass nodes. @package PHamlP @subpackage Sass.tree
Code
public static function isa($token) {
throw new SassNodeException('Child classes must override this method');
}