FOF30\Less\Parser\Parser::pushBlock PHP Method

pushBlock() protected method

[pushBlock description]
protected pushBlock ( [type] $selectors = null, [type] $type = null ) : stdClass
$selectors [type]
$type [type]
return stdClass
    protected function pushBlock($selectors = null, $type = null)
    {
        $b = new \stdClass();
        $b->parent = $this->env;
        $b->type = $type;
        $b->id = self::$nextBlockId++;
        // TODO: kill me from here
        $b->isVararg = false;
        $b->tags = $selectors;
        $b->props = array();
        $b->children = array();
        $this->env = $b;
        return $b;
    }