js/src/jit-test/tests/basic/bug631082.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:3c88b99fc395
1 var t;
2 (function () {
3 t = (function() {
4 yield k();
5 })();
6 function h() {
7 }
8 function k() {
9 return function() { h(); };
10 }
11 })();
12 t.next();
13

mercurial