summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug842316.js
blob: 028f5ead71d56997f75a6980091cac44f0e7c58f (plain)
1
2
3
4
5
6
7
8
9
DoWhile( new DoWhileObject( false, true, true, true ) );
function DoWhileObject( out1, out2, out3, in1 ) {}
function DoWhile( object ) {
    if ( object.breakOutOne ) {}
  innie:
    do {
	if ( object.breakOutThree ) {}
    } while ( false );
}