From 2c757813b8254b5bcd5a7a848ac50e858356fff8 Mon Sep 17 00:00:00 2001 From: Terrence Cole Date: Thu, 20 Feb 2014 13:16:18 -0800 Subject: [PATCH] Bug 952818 - Add regression test for the referenced bug; r=sfink --HG-- extra : rebase_source : b1add4ba4b88a8cc95c562ea0878b93158bd71f1 --- js/src/jit-test/tests/ion/bug-952818.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 js/src/jit-test/tests/ion/bug-952818.js diff --git a/js/src/jit-test/tests/ion/bug-952818.js b/js/src/jit-test/tests/ion/bug-952818.js new file mode 100644 index 000000000000..21c48f8f8306 --- /dev/null +++ b/js/src/jit-test/tests/ion/bug-952818.js @@ -0,0 +1,9 @@ +(function() { + eval("\ + (function() {\ + var f = function(){\ + f\ + }\ + })()\ + ") +})()