blob: d474995d4e76bdfe9ef9c7af62d7939bf78d44aa (
plain)
1
2
3
4
5
6
7
8
|
// |jit-test| allow-overrecursed; skip-if: helperThreadCount() === 0
function eval(source) {
offThreadCompileModuleToStencil(source);
let get = (eval("function w(){}") ++);
};
gczeal(21, 10);
gczeal(11, 8);
eval("");
|