{"ScriptPreparationCode":null,"TestCases":[{"Name":"int and string","Code":"var n = 0;\r\nvar m = \u0022100000\u0022;\r\n\r\nwhile(true) {\r\n n\u002B\u002B;\r\n if(n==m) \r\n break;\r\n}","IsDeferred":false},{"Name":"int and int","Code":"var n = 0;\r\nvar m = 100000;\r\n\r\nwhile(true) {\r\n n\u002B\u002B;\r\n if(n==m) \r\n break;\r\n}","IsDeferred":false},{"Name":"int and int, strict equality","Code":"var n = 0;\r\nvar m = 100000;\r\n\r\nwhile(true) {\r\n n\u002B\u002B;\r\n if(n===m) \r\n break;\r\n}","IsDeferred":false}]}