{"ScriptPreparationCode":null,"TestCases":[{"Name":"direct assignment","Code":"class Vector2 {\r\n constructor(x, y) {\r\n this.x = x;\r\n this.y = y;\r\n }\r\n}\r\n\r\nvar a = new Vector2(0, 0);\r\n\r\nfor(i=0; i\u003C10000; i\u002B\u002B){\r\n a.x = i;\r\n a.y = i;\r\n}","IsDeferred":false},{"Name":"new instance","Code":"class Vector2 {\r\n constructor(x, y) {\r\n this.x = x;\r\n this.y = y;\r\n }\r\n}\r\n\r\nvar a = new Vector2(0, 0);\r\n\r\nfor(i=0; i\u003C10000; i\u002B\u002B){\r\n a = new Vector2(i,i);\r\n}","IsDeferred":false}]}