{"ScriptPreparationCode":"var a = [];\r\nfor (var i = 0; i \u003C= 10000; i\u002B\u002B) {\r\n a.push(i);\r\n}\r\nvar b = new Set(a);","TestCases":[{"Name":"array for-of","Code":"for (const x of a) { let z = x; }","IsDeferred":false},{"Name":"set for-of","Code":"for (const x of b) { let z = x; }","IsDeferred":false},{"Name":"array for","Code":"for (let i = 0; i \u003C a.length; i\u002B\u002B) { let x = a[i]; }","IsDeferred":false},{"Name":"set values for-of","Code":"const v = b.values();\r\nfor (const x of v) { let z = x }","IsDeferred":false}]}