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

16 lines
259 B
Markdown

---
name: Feature request
about: Use this when you want a new feature
title: ''
labels: ''
assignees: ''
---
**Describe the feature**
**Babel plugin or link to the feature description**
**Additional context**
Add any other context about the problem here.