PHPCompiler\Backend\PHP7\PECL::initState PHP Method

initState() protected method

protected initState ( )
    protected function initState()
    {
        $this->state = new \StdClass();
        $this->state->name = "compiled_123";
        $this->state->uppername = strtoupper($this->state->name);
        $this->state->classEntries = [];
        $this->state->methodEntries = [];
        $this->state->functions = [];
        $this->state->functionHeaders = [];
        $this->state->functionEntry = [];
        $this->state->argInfo = [];
        $this->state->scope = new \SplObjectStorage();
        $this->state->labels = new \SplObjectStorage();
        $this->state->seen = new \SplObjectStorage();
        $this->state->stringConstants = [];
        $this->state->decl = [];
        $this->state->freeFlags = [];
    }