bug1985224.js (305B)
1 // |jit-test| --baseline-offthread-compile=on; --setpref=experimental.self_hosted_cache=true 2 Object.defineProperty(this, "x", { 3 value: { 4 c: function*() {}.constructor 5 } 6 }) 7 x.c()().next(); 8 setJitCompilerOption("offthread-compilation.enable", 1); 9 for (var i = 0; i < 500; i++) { 10 x.c()().next(); 11 }