blob: 975f9e3b76a336810cef2a6f963d7e28a8de408f [file] [log] [blame]
TryToCatch();
TryToCatch();
function Thrower( v ) {
throw "Caught";
}
function Eval( v ) {
SECTION : Thrower(TryToCatch, v, ': 3')
}
function TryToCatch( value, expect ) {
try {
Eval( value )
} catch (e) { }
}