Beans_Lessc::pushEnv PHP Method

pushEnv() protected method

the state of execution
protected pushEnv ( $block = null )
    protected function pushEnv($block = null)
    {
        $e = new stdclass();
        $e->parent = $this->env;
        $e->store = array();
        $e->block = $block;
        $this->env = $e;
        return $e;
    }