summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug861439.js
blob: 2b3ab88215d0750d1600f6c44e0736d347604e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

try {
    x = evalcx('')
    toSource = (function() {
        x = (new WeakMap).get(function() {})
    })
    valueOf = (function() {
        schedulegc(x)
    })
    this + ''
    for (v of this) {}
} catch (e) {}
gc()
this + 1