refactor: re-enable dynamic queries migration (#32992)

Re-enables the dynamic queries migration, now that we have all of the necessary framework changes in place.

Also moves the logic that identifies static queries out of the compiler and into the static queries migration, because that's the only place left that's using it.

PR Close #32992
This commit is contained in:
Kristiyan Kostadinov
2019-10-04 09:38:51 +02:00
committed by Alex Rickabaugh
parent 94b9b7e154
commit 7f6429d802
7 changed files with 60 additions and 64 deletions

View File

@ -86,7 +86,7 @@ export * from './schema/dom_element_schema_registry';
export * from './selector';
export * from './style_compiler';
export * from './template_parser/template_parser';
export {ViewCompiler, findStaticQueryIds, staticViewQueryIds} from './view_compiler/view_compiler';
export {ViewCompiler} from './view_compiler/view_compiler';
export {getParseErrors, isSyntaxError, syntaxError, Version} from './util';
export {SourceMap} from './output/source_map';
export * from './injectable_compiler_2';