{"ScriptPreparationCode":"let total = 0;\r\n\r\nfunction foo() {\r\n total \u002B= 1;\r\n}","TestCases":[{"Name":"With Try/Catch","Code":"for (let t = 0; t \u003C 10000; \u002B\u002Bt) {\r\n try { foo(); } catch { total \u002B= 2; }\r\n}","IsDeferred":false},{"Name":"Without Try/Catch","Code":"for (let t = 0; t \u003C 10000; \u002B\u002Bt) {\r\n foo();\r\n}\r\n","IsDeferred":false}]}