Leafo\ScssPhp\Compiler::compileComment PHP Method

compileComment() protected method

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