summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/oomInOffTheadCompile3.js
blob: 38dc523b65a07cfccd2087a6b3472ee732deee6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if (!('oomTest' in this) || helperThreadCount() === 0)
    quit();

oomTest(() => {
    offThreadCompileScript(`
        function f(x) {
            class of extends ("ABCDEFGHIJK") {
                test() { return true; };
                static get() {};
                static get() {};
            }
            return 1 + f(x - 1);
        }
        return g("try{}catch(e){}", n);
        `);
    runOffThreadScript();
});