summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug647199.js
blob: b9d330f8fc169a0f94eecbe9c20a57374c58aca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
TryInWhile( new TryObject( "hello", ThrowException, true ) );
function TryObject( value, throwFunction, result ) {
  this.thrower=throwFunction
}
function ThrowException() TryInWhile(1);
function TryInWhile( object ) {
    try {
      object.thrower()
    } catch ( e ) {
    }  
}