blob: b9d330f8fc169a0f94eecbe9c20a57374c58aca1 [file] [log] [blame]
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 ) {
}
}