angular-cn/packages/compiler-cli/ngcc/test
George Kalpakas bb6a3632f6 refactor(ivy): correctly type class declarations in `ngtsc`/`ngcc` (#29209)
Previously, several `ngtsc` and `ngcc` APIs dealing with class
declaration nodes used inconsistent types. For example, some methods of
the `DecoratorHandler` interface expected a `ts.Declaration` argument,
but actual `DecoratorHandler` implementations specified a stricter
`ts.ClassDeclaration` type.

As a result, the stricter methods would operate under the incorrect
assumption that their arguments were of type `ts.ClassDeclaration`,
while the actual arguments might be of different types (e.g. `ngcc`
would call them with `ts.FunctionDeclaration` or
`ts.VariableDeclaration` arguments, when compiling ES5 code).

Additionally, since we need those class declarations to be referenced in
other parts of the program, `ngtsc`/`ngcc` had to either repeatedly
check for `ts.isIdentifier(node.name)` or assume there was a `name`
identifier and use `node.name!`. While this assumption happens to be
true in the current implementation, working around type-checking is
error-prone (e.g. the assumption might stop being true in the future).

This commit fixes this by introducing a new type to be used for such
class declarations (`ts.Declaration & {name: ts.Identifier}`) and using
it consistently throughput the code.

PR Close #29209
2019-03-21 22:20:23 +00:00
..
analysis refactor(ivy): move ngcc into a higher level folder (#29092) 2019-03-20 14:45:54 -04:00
helpers feat(ivy): ngcc - support creating a new copy of the entry-point format (#29092) 2019-03-20 14:45:55 -04:00
host refactor(ivy): correctly type class declarations in `ngtsc`/`ngcc` (#29209) 2019-03-21 22:20:23 +00:00
integration feat(ivy): ngcc - support creating a new copy of the entry-point format (#29092) 2019-03-20 14:45:55 -04:00
packages refactor(ivy): ngcc - mark target entry-point as processed even if ngcc was a noop (#29092) 2019-03-20 14:45:55 -04:00
rendering feat(ivy): ngcc - support creating a new copy of the entry-point format (#29092) 2019-03-20 14:45:55 -04:00
writing feat(ivy): ngcc - support creating a new copy of the entry-point format (#29092) 2019-03-20 14:45:55 -04:00
BUILD.bazel refactor(ivy): ngcc - extract file writing out into a class (#29092) 2019-03-20 14:45:55 -04:00