1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/basic/testOverRecursed4.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +function tryItOut(code) { 1.5 + f = eval("(function(){" + code + "})") 1.6 + try { 1.7 + f() 1.8 + } catch (e) {} 1.9 +} 1.10 +tryItOut("x=7"); 1.11 +tryItOut("\"use strict\";for(d in[x=arguments]){}"); 1.12 +tryItOut("for(v in((Object.seal)(x)));x.length=Function")