강동윤
|
8615d69ac3
|
Fix bugs (#758)
swc_ecma_transforms:
- Module passes resolver pass now shares 'global' context (Closes #724)
- TypeScript enums are treated as concrete (Closes #757)
|
2020-04-30 23:48:52 +09:00 |
|
강동윤
|
05be89c198
|
Smaller runtime (#631)
Replace babel-runtime with regenerator-runtime
|
2020-02-07 11:19:23 +09:00 |
|
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 |
|
강동윤
|
806a6d97da
|
Regenerator (#554)
swc_ecma_transforms:
- implement regenerator pass
- add regenerator pass to es2015 preset
swc_ecma_preset_env:
- add regenerator
|
2020-01-02 20:53:06 +09:00 |
|