angular-cn/packages/compiler-cli/ngcc/test/rendering
Pete Bacon Darwin d21471e24e fix(ngcc): remove `__decorator` calls even when part of the IIFE return statement (#33777)
Previously we only removed `__decorate()` calls that looked like:

```
SomeClass = __decorate(...);
```

But in some minified scenarios this call gets wrapped up with the
return statement of the IIFE.

```
return SomeClass = __decorate(...);
```

This is now removed also, leaving just the return statement:

```
return SomeClass;
```

PR Close #33777
2019-11-13 11:11:48 -08:00
..
commonjs_rendering_formatter_spec.ts fix(ngcc): render adjacent statements after static properties (#33630) 2019-11-06 19:54:05 +00:00
dts_renderer_spec.ts fix(ngcc): render adjacent statements after static properties (#33630) 2019-11-06 19:54:05 +00:00
esm5_rendering_formatter_spec.ts fix(ngcc): remove `__decorator` calls even when part of the IIFE return statement (#33777) 2019-11-13 11:11:48 -08:00
esm_rendering_formatter_spec.ts fix(ngcc): render adjacent statements after static properties (#33630) 2019-11-06 19:54:05 +00:00
renderer_spec.ts fix(ngcc): render adjacent statements after static properties (#33630) 2019-11-06 19:54:05 +00:00
umd_rendering_formatter_spec.ts fix(ngcc): render adjacent statements after static properties (#33630) 2019-11-06 19:54:05 +00:00