titanscssc::compileNestedBlock PHP Method

compileNestedBlock() protected method

TODO refactor compileNestedBlock and compileMedia into same thing
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->compileChildren($block->children, $this->scope);
        $this->scope = $this->scope->parent;
        $this->popEnv();
    }
titanscssc