summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug704351.js
blob: 16b13146868bc29a2c734fe467f721ed4c45f6b8 (plain)
1
2
3
4
5
6
if (this.dis !== undefined) {
    var generatorPrototype = (function() { yield 3; })().__proto__;
    try {
        this.dis(generatorPrototype);
    } catch(e) {}
}