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-11-15 11:49:23 -05:00
|
|
|
export {AotCompilerHost, AotCompilerHost as StaticReflectorHost, StaticReflector, StaticSymbol} from '@angular/compiler';
|
2017-09-13 19:55:42 -04:00
|
|
|
export {DiagnosticTemplateInfo, getExpressionScope, getTemplateExpressionDiagnostics} from './src/diagnostics/expression_diagnostics';
|
2017-05-09 19:16:50 -04:00
|
|
|
export {AstType, ExpressionDiagnosticsContext} from './src/diagnostics/expression_type';
|
|
|
|
export {BuiltinType, DeclarationKind, Definition, PipeInfo, Pipes, Signature, Span, Symbol, SymbolDeclaration, SymbolQuery, SymbolTable} from './src/diagnostics/symbols';
|
2017-09-13 19:55:42 -04:00
|
|
|
export {getClassMembersFromDeclaration, getPipesTable, getSymbolQuery} from './src/diagnostics/typescript_symbols';
|
|
|
|
export {VERSION} from './src/version';
|
2016-12-13 20:35:06 -05:00
|
|
|
|
2017-09-26 16:31:59 -04:00
|
|
|
export * from './src/metadata';
|
2017-06-09 17:50:57 -04:00
|
|
|
export * from './src/transformers/api';
|
|
|
|
export * from './src/transformers/entry_points';
|
|
|
|
|
2017-08-31 13:02:27 -04:00
|
|
|
export * from './src/perform_compile';
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2017-10-20 12:46:41 -04:00
|
|
|
// TODO(tbosch): remove this once cli 1.5 is fully released,
|
|
|
|
// and usages in G3 are changed to `CompilerOptions`.
|
2017-09-13 19:55:42 -04:00
|
|
|
export {CompilerOptions as AngularCompilerOptions} from './src/transformers/api';
|
2017-05-09 19:16:50 -04:00
|
|
|
export {NgTools_InternalApi_NG_2 as __NGTOOLS_PRIVATE_API_2} from './src/ngtools_api';
|
2017-11-02 17:49:38 -04:00
|
|
|
|
|
|
|
export {ngToTsDiagnostic} from './src/transformers/util';
|