summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/loops/bug654393.js
blob: e603392a40670963f6ced148e8afa1c23e291329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var VERSION = "ECMA_2";
DoWhile(
    new DoWhileObject(false, false, false, VERSION)
);
function DoWhileObject( out1, out2, out3, in1 ) {
    this.breakIn = in1
}
function DoWhile(object) {
    do {
        if (object.breakIn) {}
    } while(false);
}