{"ScriptPreparationCode":"class Ints {\r\n #raw = 0\r\n #arr = [0]\r\n #buf = new Uint32Array([0])\r\n incrementRaw() { \u002B\u002Bthis.#raw; }\r\n incrementRaw2() { this.#raw = (this.#raw|0)\u002B1; }\r\n incrementArr() { \u002B\u002Bthis.#arr[0]; }\r\n incrementBuf() { \u002B\u002Bthis.#buf[0]; }\r\n}\r\nglobalThis.i = new Ints();","TestCases":[{"Name":"Raw int","Code":"globalThis.i.incrementRaw();","IsDeferred":false},{"Name":"Array int","Code":"globalThis.i.incrementArr();","IsDeferred":false},{"Name":"ArrayBuf","Code":"globalThis.i.incrementBuf();","IsDeferred":false},{"Name":"raw2","Code":"globalThis.i.incrementRaw2();","IsDeferred":false}]}