dash icon indicating copy to clipboard operation
dash copied to clipboard

Nested try-catch is buggy

Open y21 opened this issue 1 year ago • 0 comments

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

y21 avatar May 10 '24 16:05 y21