frameType = $this->readUnsignedByte(); $this->offsetDelta = $this->readUnsignedShort(); $this->numberOfLocals = $this->readUnsignedShort(); for ($i = 0; $i < $this->numberOfLocals; $i++) { $local = new \PHPJava\Kernel\Structures\VerificationTypeInfo($this->reader); $local->execute(); $this->locals = $local; } $this->numberOfStackItems = $this->readUnsignedShort(); for ($i = 0; $i < $this->numberOfStackItems; $i++) { $stack = new \PHPJava\Kernel\Structures\VerificationTypeInfo($this->reader); $stack->execute(); $this->stack[] = $stack; } } }