Beans_Lessc::makeOutputBlock PHP Method

makeOutputBlock() protected method

* environment functions
protected makeOutputBlock ( $type, $selectors = null )
    protected function makeOutputBlock($type, $selectors = null)
    {
        $b = new stdclass();
        $b->lines = array();
        $b->children = array();
        $b->selectors = $selectors;
        $b->type = $type;
        $b->parent = $this->scope;
        return $b;
    }