• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import '../common/index.mjs';
2import four from '../fixtures/async-error.js';
3
4async function main() {
5  try {
6    await four();
7  } catch (e) {
8    console.error(e);
9  }
10}
11
12main();
13