1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/generators/bug908920.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +if (typeof schedulegc != 'undefined') { 1.5 + Function("\ 1.6 + x = (function() { yield })();\ 1.7 + Set(x);\ 1.8 + schedulegc(1);\ 1.9 + print( /x/ );\ 1.10 + for (p in x) {}\ 1.11 + ")(); 1.12 +}