SassMixinDefinitionNode::parse PHP Method

parse() public method

Add this mixin to the current context.
public parse ( SassContext $context ) : array
$context SassContext the context in which this node is parsed
return array the parsed node - an empty array
    public function parse($context)
    {
        $context->addMixin($this->name, $this);
        return array();
    }