titanscssc::compileRoot PHP Method

compileRoot() protected method

protected compileRoot ( $rootBlock )
    protected function compileRoot($rootBlock)
    {
        $this->pushEnv($rootBlock);
        $this->scope = $this->makeOutputBlock("root");
        $this->compileChildren($rootBlock->children, $this->scope);
        $this->flattenSelectors($this->scope);
        $this->popEnv();
    }
titanscssc