public static function SassMixinDefinitionNode::isa in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/tree/SassMixinDefinitionNode.php \SassMixinDefinitionNode::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
Overrides SassNode::isa
1 call to SassMixinDefinitionNode::isa()
- SassParser::getNode in phamlp/
sass/ SassParser.php - * Creates and returns the next SassNode. * The tpye of SassNode depends on the content of the SassToken. *
File
- phamlp/
sass/ tree/ SassMixinDefinitionNode.php, line 85
Class
- SassMixinDefinitionNode
- SassMixinDefinitionNode class. Represents a Mixin definition. @package PHamlP @subpackage Sass.tree
Code
public static function isa($token) {
return $token->source[0] === self::NODE_IDENTIFIER;
}