Leafo\ScssPhp\Compiler::compileRoot PHP 메소드

compileRoot() 보호된 메소드

Compile root
protected compileRoot ( Leafo\ScssPhp\Block $rootBlock )
$rootBlock Leafo\ScssPhp\Block
    protected function compileRoot(Block $rootBlock)
    {
        $this->rootBlock = $this->scope = $this->makeOutputBlock(Type::T_ROOT);
        $this->compileChildrenNoReturn($rootBlock->children, $this->scope);
        $this->flattenSelectors($this->scope);
        $this->missingSelectors();
    }
Compiler