2017-01-27 20:39:48 -05: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* 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>
|
|
|
|
*/
|
2017-08-16 12:00:03 -04:00
|
|
|
|
|
|
|
import * as core from './core';
|
|
|
|
|
|
|
|
export {core};
|
|
|
|
|
|
|
|
export * from './version';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './template_parser/template_ast';
|
2017-07-28 09:58:28 -04:00
|
|
|
export {CompilerConfig, preserveWhitespacesDefault} from './config';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './compile_metadata';
|
|
|
|
export * from './aot/compiler_factory';
|
|
|
|
export * from './aot/compiler';
|
2017-03-14 12:16:15 -04:00
|
|
|
export * from './aot/generated_file';
|
2017-02-19 00:28:27 -05:00
|
|
|
export * from './aot/compiler_options';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './aot/compiler_host';
|
|
|
|
export * from './aot/static_reflector';
|
|
|
|
export * from './aot/static_symbol';
|
|
|
|
export * from './aot/static_symbol_resolver';
|
|
|
|
export * from './aot/summary_resolver';
|
2017-05-09 19:16:50 -04:00
|
|
|
export * from './ast_path';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './summary_resolver';
|
2017-08-16 12:00:03 -04:00
|
|
|
export {Identifiers} from './identifiers';
|
2017-01-27 20:39:48 -05:00
|
|
|
export {JitCompiler} from './jit/compiler';
|
2017-05-18 16:46:51 -04:00
|
|
|
export * from './compile_reflector';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './url_resolver';
|
|
|
|
export * from './resource_loader';
|
|
|
|
export {DirectiveResolver} from './directive_resolver';
|
|
|
|
export {PipeResolver} from './pipe_resolver';
|
|
|
|
export {NgModuleResolver} from './ng_module_resolver';
|
|
|
|
export {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from './ml_parser/interpolation_config';
|
|
|
|
export * from './schema/element_schema_registry';
|
|
|
|
export * from './i18n/index';
|
|
|
|
export * from './directive_normalizer';
|
|
|
|
export * from './expression_parser/ast';
|
|
|
|
export * from './expression_parser/lexer';
|
|
|
|
export * from './expression_parser/parser';
|
|
|
|
export * from './metadata_resolver';
|
|
|
|
export * from './ml_parser/ast';
|
|
|
|
export * from './ml_parser/html_parser';
|
|
|
|
export * from './ml_parser/html_tags';
|
|
|
|
export * from './ml_parser/interpolation_config';
|
|
|
|
export * from './ml_parser/tags';
|
|
|
|
export {NgModuleCompiler} from './ng_module_compiler';
|
2017-05-30 13:43:13 -04:00
|
|
|
export {AssertNotNull, BinaryOperator, BinaryOperatorExpr, BuiltinMethod, BuiltinVar, CastExpr, ClassStmt, CommaExpr, CommentStmt, ConditionalExpr, DeclareFunctionStmt, DeclareVarStmt, ExpressionStatement, ExpressionVisitor, ExternalExpr, ExternalReference, FunctionExpr, IfStmt, InstantiateExpr, InvokeFunctionExpr, InvokeMethodExpr, LiteralArrayExpr, LiteralExpr, LiteralMapExpr, NotExpr, ReadKeyExpr, ReadPropExpr, ReadVarExpr, ReturnStatement, StatementVisitor, ThrowStmt, TryCatchStmt, WriteKeyExpr, WritePropExpr, WriteVarExpr, StmtModifier, Statement} from './output/output_ast';
|
2017-06-01 13:13:50 -04:00
|
|
|
export {EmitterVisitorContext} from './output/abstract_emitter';
|
2017-01-27 20:39:48 -05:00
|
|
|
export * from './output/ts_emitter';
|
|
|
|
export * from './parse_util';
|
|
|
|
export * from './schema/dom_element_schema_registry';
|
|
|
|
export * from './selector';
|
|
|
|
export * from './style_compiler';
|
|
|
|
export * from './template_parser/template_parser';
|
|
|
|
export {ViewCompiler} from './view_compiler/view_compiler';
|
2017-08-16 12:00:03 -04:00
|
|
|
export {getParseErrors, isSyntaxError, syntaxError, Version} from './util';
|
2017-01-27 20:39:48 -05:00
|
|
|
// This file only reexports content of the `src` folder. Keep it that way.
|