Adds new abstraction `Compiler` with methods `compileComponentAsync` and `compileComponentSync`. This is in preparation of deprecating `ComponentResolver`. `compileComponentSync` is able to compile components synchronously given all components either have an inline template or they have been compiled before. Also changes `TestComponentBuilder.createSync` to take a `Type` and use the new `compileComponentSync` method. Also supports overriding the component metadata even if the component has already been compiled. Also fixes #7084 in a better way. BREAKING CHANGE: `TestComponentBuilder.createSync` now takes a component type and throws if not all templates are either inlined are compiled before via `createAsync`. Closes #9594
22 lines
1.0 KiB
TypeScript
22 lines
1.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
// Public API for compiler
|
|
export {Compiler} from './linker/compiler';
|
|
export {ComponentFactory, ComponentRef} from './linker/component_factory';
|
|
export {ComponentFactoryResolver, NoComponentFactoryError} from './linker/component_factory_resolver';
|
|
export {ComponentResolver} from './linker/component_resolver';
|
|
export {DynamicComponentLoader} from './linker/dynamic_component_loader';
|
|
export {ElementRef} from './linker/element_ref';
|
|
export {ExpressionChangedAfterItHasBeenCheckedException} from './linker/exceptions';
|
|
export {QueryList} from './linker/query_list';
|
|
export {SystemJsCmpFactoryResolver, SystemJsComponentResolver} from './linker/systemjs_component_resolver';
|
|
export {TemplateRef} from './linker/template_ref';
|
|
export {ViewContainerRef} from './linker/view_container_ref';
|
|
export {EmbeddedViewRef, ViewRef} from './linker/view_ref';
|