angular-cn/packages/core/schematics/migrations
Paul Gschwendtner 8d3365e4fc fix(core): static-query usage migration strategy should detect ambiguous query usage (#30215)
Currently we always just set the timing to `false` if we aren't
able to analyze a given call expression or new expression. e.g.

```ts
ngOnInit() {
  thirdPartyCallSync(() => this.query.doSomething())
}
```

In that case the `thirdPartyCallSync` function comes from the `node_modules`
and is only defined through types while there is no code for the
actual function logic that can be analyzed. This makes it impossible
to tell whether the given call expression actually causes the specified
arrow function to be executed synchronously or not. In order to be able
to make this better, we now peek into the passed arrow function and
check for a synchronous query usage. If so, we set the query timing to
static and mark it as ambiguous. This ensures that the usage strategy is
less "magical" and more correct with third-party code.

Additionally since functions like `setTimeout` are not analyzable but known
to be asynchronous, there is a hard-coded list of known functions which
shouldn't be marked as ambiguous.

Resolves FW-1214. As planned within https://hackmd.io/hPiLWpPlQ4uynC1luIBdfQ

PR Close #30215
2019-05-09 14:39:06 -07:00
..
injectable-pipe fix(core): migrations not always migrating all files (#30269) 2019-05-08 11:54:33 -07:00
move-document fix(core): migrations not always migrating all files (#30269) 2019-05-08 11:54:33 -07:00
static-queries fix(core): static-query usage migration strategy should detect ambiguous query usage (#30215) 2019-05-09 14:39:06 -07:00
template-var-assignment fix(core): migrations not always migrating all files (#30269) 2019-05-08 11:54:33 -07:00