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

compileComment() 보호된 메소드

Compile root level comment
protected compileComment ( array $block )
$block array
    protected function compileComment($block)
    {
        $out = $this->makeOutputBlock(Type::T_COMMENT);
        $out->lines[] = $block[1];
        $this->scope->children[] = $out;
    }
Compiler