{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"direct access","Code":"const bigObject = {\r\n // primitives\r\n key1: 42,\r\n key2: \u0022hello\u0022,\r\n key3: true,\r\n key4: null,\r\n key5: undefined,\r\n key6: 3.14,\r\n \r\n // nested objects\r\n key7: { a: 1, b: 2 },\r\n key8: { nested: { deeper: \u0022value\u0022 } },\r\n key9: { x: \u0022foo\u0022, y: \u0022bar\u0022 },\r\n \r\n // arrays\r\n key10: [1, 2, 3],\r\n key11: [\u0022a\u0022, \u0022b\u0022, \u0022c\u0022],\r\n key12: [true, false, true],\r\n \r\n // functions (methods)\r\n key13: function () { return \u0022method13\u0022; },\r\n key14: () =\u003E \u0022method14\u0022,\r\n \r\n // more primitives and mixtures\r\n key15: \u0022world\u0022,\r\n key16: 0,\r\n key17: false,\r\n key18: \u0022sample\u0022,\r\n key19: 100,\r\n key20: [4, 5, 6],\r\n \r\n // additional nested objects\r\n key21: { name: \u0022Alice\u0022, age: 30 },\r\n key22: { x: [1,2], y: { z: \u0022end\u0022 } },\r\n key23: { flag: true },\r\n \r\n // more arrays\r\n key24: [\u0022x\u0022, \u0022y\u0022, \u0022z\u0022],\r\n key25: [7, 8, 9],\r\n \r\n // more functions\r\n key26: function () { return this.key2; },\r\n key27: () =\u003E 27,\r\n \r\n // additional primitive values\r\n key28: \u0022test\u0022,\r\n key29: 999,\r\n key30: false\r\n};\r\n\r\n\r\nconst a = bigObject.key1;\r\nconst b = bigObject.key2;\r\nconst c = bigObject.key3;\r\nconst d = bigObject.key4;\r\nconst e = bigObject.key5;\r\nconst f = bigObject.key6;\r\nconst g = bigObject.key7;\r\nconst h = bigObject.key8;\r\nconst i = bigObject.key9;\r\nconst j = bigObject.key10;\r\nconst k = bigObject.key11;\r\nconst l = bigObject.key12;\r\nconst m = bigObject.key13;\r\nconst n = bigObject.key14;\r\nconst o = bigObject.key15;\r\nconst p = bigObject.key16;\r\nconst q = bigObject.key17;\r\nconst r = bigObject.key18;\r\nconst s = bigObject.key19;\r\nconst t = bigObject.key20;\r\nconst u = bigObject.key21;\r\nconst v = bigObject.key22;\r\nconst w = bigObject.key23;\r\nconst x = bigObject.key24;\r\nconst y = bigObject.key25;\r\nconst z = bigObject.key26; \r\nconst aa = bigObject.key27;\r\nconst bb = bigObject.key28;\r\nconst cc = bigObject.key29;\r\nconst dd = bigObject.key30;","IsDeferred":false},{"Name":"destructuringTest","Code":"const bigObject = {\r\n // primitives\r\n key1: 42,\r\n key2: \u0022hello\u0022,\r\n key3: true,\r\n key4: null,\r\n key5: undefined,\r\n key6: 3.14,\r\n \r\n // nested objects\r\n key7: { a: 1, b: 2 },\r\n key8: { nested: { deeper: \u0022value\u0022 } },\r\n key9: { x: \u0022foo\u0022, y: \u0022bar\u0022 },\r\n \r\n // arrays\r\n key10: [1, 2, 3],\r\n key11: [\u0022a\u0022, \u0022b\u0022, \u0022c\u0022],\r\n key12: [true, false, true],\r\n \r\n // functions (methods)\r\n key13: function () { return \u0022method13\u0022; },\r\n key14: () =\u003E \u0022method14\u0022,\r\n \r\n // more primitives and mixtures\r\n key15: \u0022world\u0022,\r\n key16: 0,\r\n key17: false,\r\n key18: \u0022sample\u0022,\r\n key19: 100,\r\n key20: [4, 5, 6],\r\n \r\n // additional nested objects\r\n key21: { name: \u0022Alice\u0022, age: 30 },\r\n key22: { x: [1,2], y: { z: \u0022end\u0022 } },\r\n key23: { flag: true },\r\n \r\n // more arrays\r\n key24: [\u0022x\u0022, \u0022y\u0022, \u0022z\u0022],\r\n key25: [7, 8, 9],\r\n \r\n // more functions\r\n key26: function () { return this.key2; },\r\n key27: () =\u003E 27,\r\n \r\n // additional primitive values\r\n key28: \u0022test\u0022,\r\n key29: 999,\r\n key30: false\r\n};\r\n\r\nconst {\r\n key1, key2, key3, key4, key5, key6,\r\n key7, key8, key9, key10, key11, key12,\r\n key13, key14, key15, key16, key17, key18,\r\n key19, key20, key21, key22, key23, key24,\r\n key25, key26, key27, key28, key29, key30\r\n } = bigObject;","IsDeferred":false}]}