{"ScriptPreparationCode":"V = class Variant {\r\n constructor(s, v, t) {\r\n this.s = s;\r\n this.v = v;\r\n this.t = t;\r\n }\r\n}\r\n\r\nN = 10000;\r\ns = \u0027s\u0027;\r\nv = 5;\r\nt = true;","TestCases":[{"Name":"Object","Code":"for(let n = 0; n \u003C N; n\u002B\u002B) {\r\n\tconst o = {\r\n s,\r\n v,\r\n t\r\n }\r\n}","IsDeferred":false},{"Name":"Class","Code":"for(let n = 0; n \u003C N; n\u002B\u002B) {\r\n\tconst o = new V(s,v,t);\r\n}","IsDeferred":false}]}