refactor(ivy): move the expr/stmt translator to a separate target (#26203)

Template type-checking will make use of expression and statement
translation as well as the ImportManager, so this code needs to
live in a separate build target which can be depended on by both
the main ngtsc transform as well as the template type-checking
mechanism. This refactor introduces a separate build target
for that code.

PR Close #26203
This commit is contained in:
Alex Rickabaugh
2018-09-21 12:15:06 -07:00
committed by Jason Aden
parent 79466baef8
commit 4c615f7de7
9 changed files with 29 additions and 4 deletions

View File

@ -10,4 +10,3 @@ export * from './src/api';
export {IvyCompilation} from './src/compilation';
export {DtsFileTransformer} from './src/declaration';
export {ivyTransformFactory} from './src/transform';
export {ImportManager, translateStatement} from './src/translator';