swc/.github/ISSUE_TEMPLATE/crash_report.md
kdy1 20e37eae5d regenerator: allow nested finally block (#601)
Previously, 

```js
function *foo() {
    try {
    } finally {
        try {
        } finally {
             throw new Error('foo');
        }
    }
}

```

make swc panic

Closes #600.
2020-01-23 01:04:08 +00:00

235 B

name about title labels assignees
Crash report Use this when swc panics panic: C-bug
  1. Source code

  2. .swcrc file

  3. Error message gained from swc --sync <input.js> (--sync is required to get panic message)