Exakat\Tasks\Load::processHalt PHP Метод

processHalt() приватный Метод

private processHalt ( )
    private function processHalt()
    {
        $haltId = $this->addAtom('Halt');
        $this->setAtom($haltId, array('code' => $this->tokens[$this->id][1], 'fullcode' => $this->tokens[$this->id][1], 'line' => $this->tokens[$this->id][2], 'token' => $this->getToken($this->tokens[$this->id][0])));
        ++$this->id;
        // skip halt
        ++$this->id;
        // skip (
        // Skipping all arguments. This is not a function!
        $this->pushExpression($haltId);
        ++$this->id;
        // skip (
        $this->processSemicolon();
        return $haltId;
    }
Load