Leafo\ScssPhp\Compiler::compileChildren PHP Method

compileChildren() protected method

Compile children and return result
protected compileChildren ( array $stms, Leafo\ScssPhp\Formatter\OutputBlock $out ) : array
$stms array
$out Leafo\ScssPhp\Formatter\OutputBlock
return array
    protected function compileChildren($stms, OutputBlock $out)
    {
        foreach ($stms as $stm) {
            $ret = $this->compileChild($stm, $out);
            if (isset($ret)) {
                return $ret;
            }
        }
    }
Compiler