Lines Matching refs:exception
11 async function thrower() { throw 'Exception'; }
15 var exception = null;
24 exception = e;
41 if (exception) {
42 exception.message = `${name} / ${exception.message}`;
43 print(exception.stack);
86 CheckScopeContent({e: 'Exception'}, 0, exec_state);
124 CheckScopeContent({ e: 'Exception' }, 0, exec_state);
163 CheckScopeContent({ e: 'Exception' }, 0, exec_state);
202 CheckScopeContent({e: 'Exception'}, 0, exec_state);
241 CheckScopeContent({ e: 'Exception' }, 0, exec_state);
280 CheckScopeContent({e: 'Exception' }, 0, exec_state);
325 CheckScopeContent({e: 'Exception'}, 0, exec_state);
375 CheckScopeContent({ e: 'Exception'}, 0, exec_state);
423 CheckScopeContent({e: 'Exception'}, 0, exec_state);
430 async function() { try { throw 'Exception'; } catch (e) { debugger; } }, [],
437 CheckScopeContent({e:'Exception'}, 0, exec_state);
444 try { throw 'Exception'; } catch (e) { let y = await 2; debugger; } }, [],
453 CheckScopeContent({e:'Exception'}, 1, exec_state);
461 try { throw 'Exception!'; } catch (e) {
470 CheckScopeContent({e:'Exception'}, 0, exec_state);
471 CheckScopeContent({e:'Exception!'}, 1, exec_state);