1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/jaeger/recompile/bug647199.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +TryInWhile( new TryObject( "hello", ThrowException, true ) ); 1.5 +function TryObject( value, throwFunction, result ) { 1.6 + this.thrower=throwFunction 1.7 +} 1.8 +function ThrowException() TryInWhile(1); 1.9 +function TryInWhile( object ) { 1.10 + try { 1.11 + object.thrower() 1.12 + } catch ( e ) { 1.13 + } 1.14 +}