operands !== null) { return $this->operands; } return $this->operands = new Operands(); } public function execute(): void { parent::execute(); $value = Normalizer::getPrimitiveValue( $this->popFromOperandStack() ); $this->pushToOperandStack(Int_::get($value)); } }