diff options
-rw-r--r-- | test/sandbox.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/sandbox.js b/test/sandbox.js index 80cbc3bf..c477a8a2 100644 --- a/test/sandbox.js +++ b/test/sandbox.js @@ -39,7 +39,11 @@ var FUNC_TOSTRING = [ " });", ] : [], [ " }", - ' return "function " + n + "() {...}";', + ' return "function " + n + "() {' + function() { + var s = "\7"; + for (var i = 10; --i >= 0;) s += s; + return s; + }() + '}";', " }", "}();", ]).join("\n"); |