public static function SassFunctionDefinitionNode::isa in Sassy 7.3
Returns a value indicating if the token represents this type of node.
Parameters
object token:
Return value
boolean true if the token represents this type of node, false if not
Overrides SassNode::isa
1 call to SassFunctionDefinitionNode::isa()
- SassParser::getNode in phpsass/
SassParser.php - Creates and returns the next SassNode. The tpye of SassNode depends on the content of the SassToken.
File
- phpsass/
tree/ SassFunctionDefinitionNode.php, line 87
Class
- SassFunctionDefinitionNode
- SassFunctionDefinitionNode class. Represents a Function definition. @package PHamlP @subpackage Sass.tree
Code
public static function isa($token) {
return $token->source[0] === self::NODE_IDENTIFIER;
}