dash
dash copied to clipboard
Nested try-catch is buggy
Found while implementing #86
try {
try {
throw 1;
} catch(e) { }
throw 1;
} catch(e) {
console.log('Error caught');
}
it should catch the second exception thrown after the inner try-catch but nothing catches it