{"ScriptPreparationCode":"function doSomething() {\r\n let k = 0;\r\n for (let i = 0; i \u003C 100000; i\u002B\u002B) {\r\n k \u002B= i;\r\n }\r\n}","TestCases":[{"Name":"try loop","Code":"for(let i=0;i\u003C1000;i\u002B\u002B){\r\n try{\r\n doSomething();\r\n } catch(e) {\r\n console.log(e);\r\n }\r\n}","IsDeferred":false},{"Name":"try callback loop","Code":" function tryCb(callback, ref) {\r\n try {\r\n callback();\r\n } catch (e) {\r\n log.error(\u0060unhandled exception at ${\u0027\u0027 \u002B callback} ${ref ? \u0060(ref: ${ref})\u0060 : \u0022\u0022}: \\n\u0060\r\n \u002B e.name \u002B \u0027\\n\u0027 \u002B e.stack);\r\n }\r\n }\r\n\r\nfor(let i=0;i\u003C1000;i\u002B\u002B){\r\n tryCb(()=\u003EdoSomething());\r\n}","IsDeferred":false}]}