Class heritage expression is not transpiled
Open
bug
- Dominant language
- JavaScript
- Stars
- 874
- Forks
- 62
- PR merge metrics
- No merged PRs in 30d
Description
[Spec](https://tc39.github.io/ecma262/#prod-ClassHeritage). Examples:
```js
var B;
class C extends (B = class {}) {}
return new C() instanceof B
&& B.isPrototypeOf(C);
```
```js
class X extends (function ([x]) { console.log(x); }) {
}
new X("ab")
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.