{"ScriptPreparationCode":null,"TestCases":[{"Name":"good","Code":"var list = [1,2,3,4,5,6,7,8,9,10];\r\n\r\nvar nextListItem = function() {\r\n var item = list.pop();\r\n\r\n if (item) {\r\n // process the list item...\r\n setTimeout( nextListItem, 0);\r\n }\r\n};","IsDeferred":false},{"Name":"bad","Code":"var list = [1,2,3,4,5,6,7,8,9,10];\r\n\r\nvar nextListItem = function() {\r\n var item = list.pop();\r\n\r\n if (item) {\r\n // process the list item...\r\n nextListItem();\r\n }\r\n};","IsDeferred":false}]}