titanscssc::makeOutputBlock PHP Method

makeOutputBlock() protected method

protected makeOutputBlock ( $type, $selectors = null )
    protected function makeOutputBlock($type, $selectors = null)
    {
        $out = new stdClass();
        $out->type = $type;
        $out->lines = array();
        $out->children = array();
        $out->parent = $this->scope;
        $out->selectors = $selectors;
        $out->depth = $this->env->depth;
        return $out;
    }
titanscssc