| [6a3a178] | 1 | /**
|
|---|
| 2 | * @license
|
|---|
| 3 | * Copyright Google LLC All Rights Reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Use of this source code is governed by an MIT-style license that can be
|
|---|
| 6 | * found in the LICENSE file at https://angular.io/license
|
|---|
| 7 | */
|
|---|
| 8 | /**
|
|---|
| 9 | * @module
|
|---|
| 10 | * @description
|
|---|
| 11 | * Entry point for all APIs of the compiler package.
|
|---|
| 12 | *
|
|---|
| 13 | * <div class="callout is-critical">
|
|---|
| 14 | * <header>Unstable APIs</header>
|
|---|
| 15 | * <p>
|
|---|
| 16 | * All compiler apis are currently considered experimental and private!
|
|---|
| 17 | * </p>
|
|---|
| 18 | * <p>
|
|---|
| 19 | * We expect the APIs in this package to keep on changing. Do not rely on them.
|
|---|
| 20 | * </p>
|
|---|
| 21 | * </div>
|
|---|
| 22 | */
|
|---|
| 23 | import * as core from './core';
|
|---|
| 24 | export { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, SchemaMetadata } from './core';
|
|---|
| 25 | export { core };
|
|---|
| 26 | export * from './version';
|
|---|
| 27 | export * from './template_parser/template_ast';
|
|---|
| 28 | export { CompilerConfig, preserveWhitespacesDefault } from './config';
|
|---|
| 29 | export * from './compile_metadata';
|
|---|
| 30 | export * from './aot/compiler_factory';
|
|---|
| 31 | export * from './aot/compiler';
|
|---|
| 32 | export * from './aot/generated_file';
|
|---|
| 33 | export * from './aot/compiler_options';
|
|---|
| 34 | export * from './aot/compiler_host';
|
|---|
| 35 | export * from './aot/formatted_error';
|
|---|
| 36 | export * from './aot/partial_module';
|
|---|
| 37 | export * from './aot/static_reflector';
|
|---|
| 38 | export * from './aot/static_symbol';
|
|---|
| 39 | export * from './aot/static_symbol_resolver';
|
|---|
| 40 | export * from './aot/summary_resolver';
|
|---|
| 41 | export { isLoweredSymbol, createLoweredSymbol } from './aot/util';
|
|---|
| 42 | export { LazyRoute } from './aot/lazy_routes';
|
|---|
| 43 | export * from './ast_path';
|
|---|
| 44 | export * from './summary_resolver';
|
|---|
| 45 | export { Identifiers } from './identifiers';
|
|---|
| 46 | export { JitCompiler } from './jit/compiler';
|
|---|
| 47 | export * from './compile_reflector';
|
|---|
| 48 | export * from './url_resolver';
|
|---|
| 49 | export * from './resource_loader';
|
|---|
| 50 | export { ConstantPool } from './constant_pool';
|
|---|
| 51 | export { DirectiveResolver } from './directive_resolver';
|
|---|
| 52 | export { PipeResolver } from './pipe_resolver';
|
|---|
| 53 | export { NgModuleResolver } from './ng_module_resolver';
|
|---|
| 54 | export { DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig } from './ml_parser/interpolation_config';
|
|---|
| 55 | export * from './schema/element_schema_registry';
|
|---|
| 56 | export * from './i18n/index';
|
|---|
| 57 | export * from './directive_normalizer';
|
|---|
| 58 | export * from './expression_parser/ast';
|
|---|
| 59 | export * from './expression_parser/lexer';
|
|---|
| 60 | export * from './expression_parser/parser';
|
|---|
| 61 | export * from './metadata_resolver';
|
|---|
| 62 | export * from './ml_parser/ast';
|
|---|
| 63 | export * from './ml_parser/html_parser';
|
|---|
| 64 | export * from './ml_parser/html_tags';
|
|---|
| 65 | export * from './ml_parser/interpolation_config';
|
|---|
| 66 | export * from './ml_parser/tags';
|
|---|
| 67 | export { LexerRange } from './ml_parser/lexer';
|
|---|
| 68 | export * from './ml_parser/xml_parser';
|
|---|
| 69 | export { NgModuleCompiler } from './ng_module_compiler';
|
|---|
| 70 | export { ArrayType, AssertNotNull, DYNAMIC_TYPE, BinaryOperator, BinaryOperatorExpr, BuiltinMethod, BuiltinType, BuiltinTypeName, BuiltinVar, CastExpr, ClassField, ClassMethod, ClassStmt, CommaExpr, ConditionalExpr, DeclareFunctionStmt, DeclareVarStmt, Expression, ExpressionStatement, ExpressionType, ExpressionVisitor, ExternalExpr, ExternalReference, literalMap, FunctionExpr, IfStmt, InstantiateExpr, InvokeFunctionExpr, InvokeMethodExpr, LiteralArrayExpr, LiteralExpr, LiteralMapExpr, MapType, NotExpr, NONE_TYPE, ReadKeyExpr, ReadPropExpr, ReadVarExpr, ReturnStatement, StatementVisitor, TaggedTemplateExpr, TemplateLiteral, TemplateLiteralElement, ThrowStmt, TryCatchStmt, Type, TypeVisitor, WrappedNodeExpr, WriteKeyExpr, WritePropExpr, WriteVarExpr, StmtModifier, Statement, STRING_TYPE, TypeofExpr, collectExternalReferences, jsDocComment, leadingComment, LeadingComment, JSDocComment, UnaryOperator, UnaryOperatorExpr, LocalizedString } from './output/output_ast';
|
|---|
| 71 | export { EmitterVisitorContext } from './output/abstract_emitter';
|
|---|
| 72 | export { JitEvaluator } from './output/output_jit';
|
|---|
| 73 | export * from './output/ts_emitter';
|
|---|
| 74 | export * from './parse_util';
|
|---|
| 75 | export * from './schema/dom_element_schema_registry';
|
|---|
| 76 | export * from './selector';
|
|---|
| 77 | export * from './style_compiler';
|
|---|
| 78 | export * from './template_parser/template_parser';
|
|---|
| 79 | export { ViewCompiler } from './view_compiler/view_compiler';
|
|---|
| 80 | export { Version } from './util';
|
|---|
| 81 | export { SourceMap } from './output/source_map';
|
|---|
| 82 | export * from './injectable_compiler_2';
|
|---|
| 83 | export * from './render3/partial/api';
|
|---|
| 84 | export * from './render3/view/api';
|
|---|
| 85 | export { BoundAttribute as TmplAstBoundAttribute, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Content as TmplAstContent, Element as TmplAstElement, Icu as TmplAstIcu, Node as TmplAstNode, RecursiveVisitor as TmplAstRecursiveVisitor, Reference as TmplAstReference, Template as TmplAstTemplate, Text as TmplAstText, TextAttribute as TmplAstTextAttribute, Variable as TmplAstVariable } from './render3/r3_ast';
|
|---|
| 86 | export * from './render3/view/t2_api';
|
|---|
| 87 | export * from './render3/view/t2_binder';
|
|---|
| 88 | export { Identifiers as R3Identifiers } from './render3/r3_identifiers';
|
|---|
| 89 | export { R3ClassMetadata, CompileClassMetadataFn, compileClassMetadata } from './render3/r3_class_metadata_compiler';
|
|---|
| 90 | export { compileFactoryFunction, R3DependencyMetadata, R3FactoryMetadata, FactoryTarget } from './render3/r3_factory';
|
|---|
| 91 | export { compileNgModule, R3NgModuleMetadata } from './render3/r3_module_compiler';
|
|---|
| 92 | export { compileInjector, R3InjectorMetadata } from './render3/r3_injector_compiler';
|
|---|
| 93 | export { compilePipeFromMetadata, R3PipeMetadata } from './render3/r3_pipe_compiler';
|
|---|
| 94 | export { makeBindingParser, ParsedTemplate, parseTemplate, ParseTemplateOptions } from './render3/view/template';
|
|---|
| 95 | export { R3CompiledExpression, R3Reference, devOnlyGuardedExpression, getSafePropertyAccessString } from './render3/util';
|
|---|
| 96 | export { compileComponentFromMetadata, compileDirectiveFromMetadata, parseHostBindings, ParsedHostBindings, verifyHostBindings } from './render3/view/compiler';
|
|---|
| 97 | export { compileDeclareClassMetadata } from './render3/partial/class_metadata';
|
|---|
| 98 | export { compileDeclareComponentFromMetadata, DeclareComponentTemplateInfo } from './render3/partial/component';
|
|---|
| 99 | export { compileDeclareDirectiveFromMetadata } from './render3/partial/directive';
|
|---|
| 100 | export { compileDeclareFactoryFunction } from './render3/partial/factory';
|
|---|
| 101 | export { compileDeclareInjectableFromMetadata } from './render3/partial/injectable';
|
|---|
| 102 | export { compileDeclareInjectorFromMetadata } from './render3/partial/injector';
|
|---|
| 103 | export { compileDeclareNgModuleFromMetadata } from './render3/partial/ng_module';
|
|---|
| 104 | export { compileDeclarePipeFromMetadata } from './render3/partial/pipe';
|
|---|
| 105 | export { publishFacade } from './jit_compiler_facade';
|
|---|