operands !== null) { return $this->operands; } return $this->operands = new Operands(); } /** * load a reference onto the stack from local variable 1. */ public function execute(): void { parent::execute(); $index = 1; $this->pushToOperandStack($this->getLocalStorage($index)); } }