swc/.github/ISSUE_TEMPLATE/bug_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

421 B

name about title labels assignees
Bug report Use this when swc breaks something C-bug

Describe the bug

Input code

Config

{
    // Please copy and paste your .swcrc file here
}

Expected behavior A clear and concise description of what you expected to happen.

Version The version of @swc/core:

Additional context Add any other context about the problem here.