()
| 494 | result.push(function (jsonObject){ |
| 495 | var depth = 0; |
| 496 | function toDeepVirtualJSONObject() { |
| 497 | if (++depth >= 700) |
| 498 | return {}; |
| 499 | var r = {}; |
| 500 | r.toJSON = toDeepVirtualJSONObject; |
| 501 | return {recurse: r}; |
| 502 | } |
| 503 | return jsonObject.stringify(toDeepVirtualJSONObject()); |
| 504 | }); |
| 505 | result.push(function (jsonObject){ |