Beans_Lessc::compileNestedBlock PHP Method

compileNestedBlock() protected method

protected compileNestedBlock ( $block, $selectors )
    protected function compileNestedBlock($block, $selectors)
    {
        $this->pushEnv($block);
        $this->scope = $this->makeOutputBlock($block->type, $selectors);
        $this->scope->parent->children[] = $this->scope;
        $this->compileProps($block, $this->scope);
        $this->scope = $this->scope->parent;
        $this->popEnv();
    }