Getters and setters with computed names emit invalid code
Open
bug
- Dominant language
- JavaScript
- Stars
- 874
- Forks
- 62
- PR merge metrics
- No merged PRs in 30d
Description
```js
obj = {
get [x] () { return 1 },
set [x] (value) { valueSet = value }
};
```
emits
```js
obj = {};
objget [x] = () { return 1 };
objset [x] = (value) { valueSet = value };
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.