2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-07-21 16:56:58 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
2016-08-30 21:07:40 -04:00
|
|
|
* Entry point for all APIs of the compiler package.
|
|
|
|
*
|
|
|
|
* <div class="callout is-critical">
|
|
|
|
* <header>Unstable APIs</header>
|
|
|
|
* <p>
|
|
|
|
* All compiler apis are currently considered experimental and private!
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* We expect the APIs in this package to keep on changing. Do not rely on them.
|
|
|
|
* </p>
|
|
|
|
* </div>
|
2016-07-21 16:56:58 -04:00
|
|
|
*/
|
2016-12-06 19:21:07 -05:00
|
|
|
export {VERSION} from './src/version';
|
2016-10-18 11:03:49 -04:00
|
|
|
export * from './src/template_parser/template_ast';
|
|
|
|
export {TEMPLATE_TRANSFORMS} from './src/template_parser/template_parser';
|
|
|
|
export {CompilerConfig, RenderTypes} from './src/config';
|
|
|
|
export * from './src/compile_metadata';
|
2016-11-15 14:13:20 -05:00
|
|
|
export * from './src/aot/compiler_factory';
|
2016-11-14 20:37:47 -05:00
|
|
|
export * from './src/aot/compiler';
|
2016-11-15 11:49:23 -05:00
|
|
|
export * from './src/aot/compiler_host';
|
2016-11-14 20:37:47 -05:00
|
|
|
export * from './src/aot/static_reflector';
|
|
|
|
export * from './src/aot/static_reflection_capabilities';
|
|
|
|
export * from './src/aot/static_symbol';
|
2016-12-15 12:12:40 -05:00
|
|
|
export * from './src/aot/static_symbol_resolver';
|
2016-11-29 18:36:33 -05:00
|
|
|
export * from './src/aot/summary_resolver';
|
2016-12-15 12:12:40 -05:00
|
|
|
export * from './src/summary_resolver';
|
2016-11-14 20:37:47 -05:00
|
|
|
export {JitCompiler} from './src/jit/compiler';
|
|
|
|
export * from './src/jit/compiler_factory';
|
2016-10-18 11:03:49 -04:00
|
|
|
export * from './src/url_resolver';
|
|
|
|
export * from './src/resource_loader';
|
|
|
|
export {DirectiveResolver} from './src/directive_resolver';
|
|
|
|
export {PipeResolver} from './src/pipe_resolver';
|
|
|
|
export {NgModuleResolver} from './src/ng_module_resolver';
|
|
|
|
export {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from './src/ml_parser/interpolation_config';
|
2016-10-24 12:58:52 -04:00
|
|
|
export * from './src/schema/element_schema_registry';
|
2016-10-18 11:03:49 -04:00
|
|
|
export * from './src/i18n/index';
|
|
|
|
export * from './src/directive_normalizer';
|
|
|
|
export * from './src/expression_parser/lexer';
|
|
|
|
export * from './src/expression_parser/parser';
|
|
|
|
export * from './src/metadata_resolver';
|
|
|
|
export * from './src/ml_parser/html_parser';
|
|
|
|
export * from './src/ml_parser/interpolation_config';
|
|
|
|
export {NgModuleCompiler} from './src/ng_module_compiler';
|
2016-10-13 19:34:37 -04:00
|
|
|
export {DirectiveWrapperCompiler} from './src/directive_wrapper_compiler';
|
2016-10-18 11:03:49 -04:00
|
|
|
export * from './src/output/path_util';
|
|
|
|
export * from './src/output/ts_emitter';
|
|
|
|
export * from './src/parse_util';
|
|
|
|
export * from './src/schema/dom_element_schema_registry';
|
|
|
|
export * from './src/selector';
|
|
|
|
export * from './src/style_compiler';
|
|
|
|
export * from './src/template_parser/template_parser';
|
|
|
|
export {ViewCompiler} from './src/view_compiler/view_compiler';
|
2016-11-08 18:45:30 -05:00
|
|
|
export {AnimationParser} from './src/animation/animation_parser';
|
2016-12-15 16:07:12 -05:00
|
|
|
export {SyntaxError} from './src/util';
|
2016-08-30 21:07:40 -04:00
|
|
|
// This file only reexports content of the `src` folder. Keep it that way.
|