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

30 lines
421 B
Markdown

---
name: Bug report
about: Use this when swc breaks something
title: ''
labels: C-bug
assignees: ''
---
**Describe the bug**
**Input code**
**Config**
```json
{
// 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.