@angular/compiler 13.2.3 → 14.0.0-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,5 +11,5 @@
11
11
  * Entry point for all public APIs of the compiler package.
12
12
  */
13
13
  import { Version } from './util';
14
- export const VERSION = new Version('13.2.3');
14
+ export const VERSION = new Version('14.0.0-next.3');
15
15
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVIOzs7O0dBSUc7QUFFSCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sUUFBUSxDQUFDO0FBRS9CLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbi8qKlxuICogQG1vZHVsZVxuICogQGRlc2NyaXB0aW9uXG4gKiBFbnRyeSBwb2ludCBmb3IgYWxsIHB1YmxpYyBBUElzIG9mIHRoZSBjb21waWxlciBwYWNrYWdlLlxuICovXG5cbmltcG9ydCB7VmVyc2lvbn0gZnJvbSAnLi91dGlsJztcblxuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbignMC4wLjAtUExBQ0VIT0xERVInKTtcbiJdfQ==
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v13.2.3
2
+ * @license Angular v14.0.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -6157,33 +6157,6 @@ class ASTWithName extends AST {
6157
6157
  this.nameSpan = nameSpan;
6158
6158
  }
6159
6159
  }
6160
- /**
6161
- * Represents a quoted expression of the form:
6162
- *
6163
- * quote = prefix `:` uninterpretedExpression
6164
- * prefix = identifier
6165
- * uninterpretedExpression = arbitrary string
6166
- *
6167
- * A quoted expression is meant to be pre-processed by an AST transformer that
6168
- * converts it into another AST that no longer contains quoted expressions.
6169
- * It is meant to allow third-party developers to extend Angular template
6170
- * expression language. The `uninterpretedExpression` part of the quote is
6171
- * therefore not interpreted by the Angular's own expression parser.
6172
- */
6173
- class Quote extends AST {
6174
- constructor(span, sourceSpan, prefix, uninterpretedExpression, location) {
6175
- super(span, sourceSpan);
6176
- this.prefix = prefix;
6177
- this.uninterpretedExpression = uninterpretedExpression;
6178
- this.location = location;
6179
- }
6180
- visit(visitor, context = null) {
6181
- return visitor.visitQuote(this, context);
6182
- }
6183
- toString() {
6184
- return 'Quote';
6185
- }
6186
- }
6187
6160
  class EmptyExpr extends AST {
6188
6161
  visit(visitor, context = null) {
6189
6162
  // do nothing
@@ -6564,7 +6537,6 @@ class RecursiveAstVisitor {
6564
6537
  this.visit(ast.receiver, context);
6565
6538
  this.visitAll(ast.args, context);
6566
6539
  }
6567
- visitQuote(ast, context) { }
6568
6540
  // This is not part of the AstVisitor interface, just a helper method
6569
6541
  visitAll(asts, context) {
6570
6542
  for (const ast of asts) {
@@ -6647,9 +6619,6 @@ class AstTransformer {
6647
6619
  visitChain(ast, context) {
6648
6620
  return new Chain(ast.span, ast.sourceSpan, this.visitAll(ast.expressions));
6649
6621
  }
6650
- visitQuote(ast, context) {
6651
- return new Quote(ast.span, ast.sourceSpan, ast.prefix, ast.uninterpretedExpression, ast.location);
6652
- }
6653
6622
  visitSafeKeyedRead(ast, context) {
6654
6623
  return new SafeKeyedRead(ast.span, ast.sourceSpan, ast.receiver.visit(this), ast.key.visit(this));
6655
6624
  }
@@ -6812,9 +6781,6 @@ class AstMemoryEfficientTransformer {
6812
6781
  }
6813
6782
  return ast;
6814
6783
  }
6815
- visitQuote(ast, context) {
6816
- return ast;
6817
- }
6818
6784
  visitSafeKeyedRead(ast, context) {
6819
6785
  const obj = ast.receiver.visit(this);
6820
6786
  const key = ast.key.visit(this);
@@ -7288,10 +7254,6 @@ class _AstToIrVisitor {
7288
7254
  visitAll(asts, mode) {
7289
7255
  return asts.map(ast => this._visit(ast, mode));
7290
7256
  }
7291
- visitQuote(ast, mode) {
7292
- throw new Error(`Quotes are not supported for evaluation!
7293
- Statement: ${ast.uninterpretedExpression} located at ${ast.location}`);
7294
- }
7295
7257
  visitCall(ast, mode) {
7296
7258
  const leftMostSafe = this.leftMostSafeNode(ast);
7297
7259
  if (leftMostSafe) {
@@ -7477,9 +7439,6 @@ class _AstToIrVisitor {
7477
7439
  visitPropertyWrite(ast) {
7478
7440
  return null;
7479
7441
  },
7480
- visitQuote(ast) {
7481
- return null;
7482
- },
7483
7442
  visitSafePropertyRead(ast) {
7484
7443
  return visit(this, ast.receiver) || ast;
7485
7444
  },
@@ -7556,9 +7515,6 @@ class _AstToIrVisitor {
7556
7515
  visitPropertyWrite(ast) {
7557
7516
  return false;
7558
7517
  },
7559
- visitQuote(ast) {
7560
- return false;
7561
- },
7562
7518
  visitSafePropertyRead(ast) {
7563
7519
  return false;
7564
7520
  },
@@ -9495,31 +9451,12 @@ class Parser$1 {
9495
9451
  this.errors.push(new ParserError(message, input, errLocation, ctxLocation));
9496
9452
  }
9497
9453
  _parseBindingAst(input, location, absoluteOffset, interpolationConfig) {
9498
- // Quotes expressions use 3rd-party expression language. We don't want to use
9499
- // our lexer or parser for that, so we check for that ahead of time.
9500
- const quote = this._parseQuote(input, location, absoluteOffset);
9501
- if (quote != null) {
9502
- return quote;
9503
- }
9504
9454
  this._checkNoInterpolation(input, location, interpolationConfig);
9505
9455
  const sourceToLex = this._stripComments(input);
9506
9456
  const tokens = this._lexer.tokenize(sourceToLex);
9507
9457
  return new _ParseAST(input, location, absoluteOffset, tokens, 0 /* None */, this.errors, 0)
9508
9458
  .parseChain();
9509
9459
  }
9510
- _parseQuote(input, location, absoluteOffset) {
9511
- if (input == null)
9512
- return null;
9513
- const prefixSeparatorIndex = input.indexOf(':');
9514
- if (prefixSeparatorIndex == -1)
9515
- return null;
9516
- const prefix = input.substring(0, prefixSeparatorIndex).trim();
9517
- if (!isIdentifier(prefix))
9518
- return null;
9519
- const uninterpretedExpression = input.substring(prefixSeparatorIndex + 1);
9520
- const span = new ParseSpan(0, input.length);
9521
- return new Quote(span, span.toAbsolute(absoluteOffset), prefix, uninterpretedExpression, location);
9522
- }
9523
9460
  /**
9524
9461
  * Parse microsyntax template expression and return a list of bindings or
9525
9462
  * parsing errors in case the given expression is invalid.
@@ -19267,6 +19204,7 @@ class CompilerFacadeImpl {
19267
19204
  deps: null,
19268
19205
  pipeName: facade.pipeName,
19269
19206
  pure: facade.pure,
19207
+ isStandalone: facade.isStandalone,
19270
19208
  };
19271
19209
  const res = compilePipeFromMetadata(metadata);
19272
19210
  return this.jitExpression(res.expression, angularCoreEnv, sourceMapUrl, []);
@@ -19477,7 +19415,7 @@ function convertDirectiveFacadeToMetadata(facade) {
19477
19415
  return Object.assign(Object.assign({}, facade), { typeArgumentCount: 0, typeSourceSpan: facade.typeSourceSpan, type: wrapReference(facade.type), internalType: new WrappedNodeExpr(facade.type), deps: null, host: extractHostBindings(facade.propMetadata, facade.typeSourceSpan, facade.host), inputs: Object.assign(Object.assign({}, inputsFromMetadata), inputsFromType), outputs: Object.assign(Object.assign({}, outputsFromMetadata), outputsFromType), queries: facade.queries.map(convertToR3QueryMetadata), providers: facade.providers != null ? new WrappedNodeExpr(facade.providers) : null, viewQueries: facade.viewQueries.map(convertToR3QueryMetadata), fullInheritance: false });
19478
19416
  }
19479
19417
  function convertDeclareDirectiveFacadeToMetadata(declaration, typeSourceSpan) {
19480
- var _a, _b, _c, _d, _e, _f, _g, _h;
19418
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
19481
19419
  return {
19482
19420
  name: declaration.type.name,
19483
19421
  type: wrapReference(declaration.type),
@@ -19497,6 +19435,7 @@ function convertDeclareDirectiveFacadeToMetadata(declaration, typeSourceSpan) {
19497
19435
  deps: null,
19498
19436
  typeArgumentCount: 0,
19499
19437
  fullInheritance: false,
19438
+ isStandalone: (_j = declaration.isStandalone) !== null && _j !== void 0 ? _j : false,
19500
19439
  };
19501
19440
  }
19502
19441
  function convertHostDeclarationToMetadata(host = {}) {
@@ -19660,7 +19599,7 @@ function parseInputOutputs(values) {
19660
19599
  }, {});
19661
19600
  }
19662
19601
  function convertDeclarePipeFacadeToMetadata(declaration) {
19663
- var _a;
19602
+ var _a, _b;
19664
19603
  return {
19665
19604
  name: declaration.type.name,
19666
19605
  type: wrapReference(declaration.type),
@@ -19669,6 +19608,7 @@ function convertDeclarePipeFacadeToMetadata(declaration) {
19669
19608
  pipeName: declaration.name,
19670
19609
  deps: null,
19671
19610
  pure: (_a = declaration.pure) !== null && _a !== void 0 ? _a : true,
19611
+ isStandalone: (_b = declaration.isStandalone) !== null && _b !== void 0 ? _b : false,
19672
19612
  };
19673
19613
  }
19674
19614
  function convertDeclareInjectorFacadeToMetadata(declaration) {
@@ -19695,7 +19635,7 @@ function publishFacade(global) {
19695
19635
  * Use of this source code is governed by an MIT-style license that can be
19696
19636
  * found in the LICENSE file at https://angular.io/license
19697
19637
  */
19698
- const VERSION = new Version('13.2.3');
19638
+ const VERSION = new Version('14.0.0-next.3');
19699
19639
 
19700
19640
  /**
19701
19641
  * @license
@@ -21722,7 +21662,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
21722
21662
  function compileDeclareClassMetadata(metadata) {
21723
21663
  const definitionMap = new DefinitionMap();
21724
21664
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
21725
- definitionMap.set('version', literal('13.2.3'));
21665
+ definitionMap.set('version', literal('14.0.0-next.3'));
21726
21666
  definitionMap.set('ngImport', importExpr(Identifiers.core));
21727
21667
  definitionMap.set('type', metadata.type);
21728
21668
  definitionMap.set('decorators', metadata.decorators);
@@ -21839,7 +21779,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
21839
21779
  function createDirectiveDefinitionMap(meta) {
21840
21780
  const definitionMap = new DefinitionMap();
21841
21781
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
21842
- definitionMap.set('version', literal('13.2.3'));
21782
+ definitionMap.set('version', literal('14.0.0-next.3'));
21843
21783
  // e.g. `type: MyDirective`
21844
21784
  definitionMap.set('type', meta.internalType);
21845
21785
  // e.g. `selector: 'some-dir'`
@@ -22060,7 +22000,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
22060
22000
  function compileDeclareFactoryFunction(meta) {
22061
22001
  const definitionMap = new DefinitionMap();
22062
22002
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
22063
- definitionMap.set('version', literal('13.2.3'));
22003
+ definitionMap.set('version', literal('14.0.0-next.3'));
22064
22004
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22065
22005
  definitionMap.set('type', meta.internalType);
22066
22006
  definitionMap.set('deps', compileDependencies(meta.deps));
@@ -22102,7 +22042,7 @@ function compileDeclareInjectableFromMetadata(meta) {
22102
22042
  function createInjectableDefinitionMap(meta) {
22103
22043
  const definitionMap = new DefinitionMap();
22104
22044
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
22105
- definitionMap.set('version', literal('13.2.3'));
22045
+ definitionMap.set('version', literal('14.0.0-next.3'));
22106
22046
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22107
22047
  definitionMap.set('type', meta.internalType);
22108
22048
  // Only generate providedIn property if it has a non-null value
@@ -22160,7 +22100,7 @@ function compileDeclareInjectorFromMetadata(meta) {
22160
22100
  function createInjectorDefinitionMap(meta) {
22161
22101
  const definitionMap = new DefinitionMap();
22162
22102
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
22163
- definitionMap.set('version', literal('13.2.3'));
22103
+ definitionMap.set('version', literal('14.0.0-next.3'));
22164
22104
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22165
22105
  definitionMap.set('type', meta.internalType);
22166
22106
  definitionMap.set('providers', meta.providers);
@@ -22197,7 +22137,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
22197
22137
  function createNgModuleDefinitionMap(meta) {
22198
22138
  const definitionMap = new DefinitionMap();
22199
22139
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
22200
- definitionMap.set('version', literal('13.2.3'));
22140
+ definitionMap.set('version', literal('14.0.0-next.3'));
22201
22141
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22202
22142
  definitionMap.set('type', meta.internalType);
22203
22143
  // We only generate the keys in the metadata if the arrays contain values.
@@ -22255,7 +22195,7 @@ function compileDeclarePipeFromMetadata(meta) {
22255
22195
  function createPipeDefinitionMap(meta) {
22256
22196
  const definitionMap = new DefinitionMap();
22257
22197
  definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
22258
- definitionMap.set('version', literal('13.2.3'));
22198
+ definitionMap.set('version', literal('14.0.0-next.3'));
22259
22199
  definitionMap.set('ngImport', importExpr(Identifiers.core));
22260
22200
  // e.g. `type: MyPipe`
22261
22201
  definitionMap.set('type', meta.internalType);
@@ -22305,5 +22245,5 @@ publishFacade(_global);
22305
22245
  * found in the LICENSE file at https://angular.io/license
22306
22246
  */
22307
22247
 
22308
- export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, AstMemoryEfficientTransformer, AstTransformer, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingPipe, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy, CommaExpr, Comment, CompilerConfig, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclareFunctionStmt, DeclareVarStmt, DomElementSchemaRegistry, EOF, Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget$1 as FactoryTarget, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead, KeyedWrite, LeadingComment, Lexer, LiteralArray, LiteralArrayExpr, LiteralExpr, LiteralMap, LiteralMapExpr, LiteralPrimitive, LocalizedString, MapType, MessageBundle, NONE_TYPE, NO_ERRORS_SCHEMA, NodeWithI18n, NonNullAssert, NotExpr, ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan, ParseSpan, ParseTreeResult, ParsedEvent, ParsedProperty, ParsedPropertyType, ParsedVariable, Parser$1 as Parser, ParserError, PrefixNot, PropertyRead, PropertyWrite, Quote, R3BoundTarget, Identifiers as R3Identifiers, R3TargetBinder, ReadKeyExpr, ReadPropExpr, ReadVarExpr, RecursiveAstVisitor, RecursiveVisitor, ResourceLoader, ReturnStatement, STRING_TYPE, SafeCall, SafeKeyedRead, SafePropertyRead, SelectorContext, SelectorListContext, SelectorMatcher, Serializer, SplitInterpolation, Statement, StmtModifier, TagContentType, TaggedTemplateExpr, TemplateBindingParseResult, TemplateLiteral, TemplateLiteralElement, Text, ThisReceiver, BoundAttribute as TmplAstBoundAttribute, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Content as TmplAstContent, Element$1 as TmplAstElement, Icu$1 as TmplAstIcu, RecursiveVisitor$1 as TmplAstRecursiveVisitor, Reference as TmplAstReference, Template as TmplAstTemplate, Text$3 as TmplAstText, TextAttribute as TmplAstTextAttribute, Variable as TmplAstVariable, Token, TokenType, TreeError, Type, TypeModifier, TypeofExpr, Unary, UnaryOperator, UnaryOperatorExpr, VERSION, VariableBinding, Version, ViewEncapsulation, WrappedNodeExpr, WriteKeyExpr, WritePropExpr, WriteVarExpr, Xliff, Xliff2, Xmb, XmlParser, Xtb, _ParseAST, compileClassMetadata, compileComponentFromMetadata, compileDeclareClassMetadata, compileDeclareComponentFromMetadata, compileDeclareDirectiveFromMetadata, compileDeclareFactoryFunction, compileDeclareInjectableFromMetadata, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileDeclarePipeFromMetadata, compileDirectiveFromMetadata, compileFactoryFunction, compileInjectable, compileInjector, compileNgModule, compilePipeFromMetadata, computeMsgId, core, createInjectableType, createMayBeForwardRefExpression, devOnlyGuardedExpression, emitDistinctChangesOnlyDefaultValue, getHtmlTagDefinition, getNsPrefix, getSafePropertyAccessString, identifierName, isIdentifier, isNgContainer, isNgContent, isNgTemplate, jsDocComment, leadingComment, literalMap, makeBindingParser, mergeNsAndName, output_ast as outputAst, parseHostBindings, parseTemplate, preserveWhitespacesDefault, publishFacade, r3JitTypeSourceSpan, sanitizeIdentifier, splitNsName, verifyHostBindings, visitAll };
22248
+ export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, AstMemoryEfficientTransformer, AstTransformer, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingPipe, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy, CommaExpr, Comment, CompilerConfig, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclareFunctionStmt, DeclareVarStmt, DomElementSchemaRegistry, EOF, Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget$1 as FactoryTarget, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead, KeyedWrite, LeadingComment, Lexer, LiteralArray, LiteralArrayExpr, LiteralExpr, LiteralMap, LiteralMapExpr, LiteralPrimitive, LocalizedString, MapType, MessageBundle, NONE_TYPE, NO_ERRORS_SCHEMA, NodeWithI18n, NonNullAssert, NotExpr, ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan, ParseSpan, ParseTreeResult, ParsedEvent, ParsedProperty, ParsedPropertyType, ParsedVariable, Parser$1 as Parser, ParserError, PrefixNot, PropertyRead, PropertyWrite, R3BoundTarget, Identifiers as R3Identifiers, R3TargetBinder, ReadKeyExpr, ReadPropExpr, ReadVarExpr, RecursiveAstVisitor, RecursiveVisitor, ResourceLoader, ReturnStatement, STRING_TYPE, SafeCall, SafeKeyedRead, SafePropertyRead, SelectorContext, SelectorListContext, SelectorMatcher, Serializer, SplitInterpolation, Statement, StmtModifier, TagContentType, TaggedTemplateExpr, TemplateBindingParseResult, TemplateLiteral, TemplateLiteralElement, Text, ThisReceiver, BoundAttribute as TmplAstBoundAttribute, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Content as TmplAstContent, Element$1 as TmplAstElement, Icu$1 as TmplAstIcu, RecursiveVisitor$1 as TmplAstRecursiveVisitor, Reference as TmplAstReference, Template as TmplAstTemplate, Text$3 as TmplAstText, TextAttribute as TmplAstTextAttribute, Variable as TmplAstVariable, Token, TokenType, TreeError, Type, TypeModifier, TypeofExpr, Unary, UnaryOperator, UnaryOperatorExpr, VERSION, VariableBinding, Version, ViewEncapsulation, WrappedNodeExpr, WriteKeyExpr, WritePropExpr, WriteVarExpr, Xliff, Xliff2, Xmb, XmlParser, Xtb, _ParseAST, compileClassMetadata, compileComponentFromMetadata, compileDeclareClassMetadata, compileDeclareComponentFromMetadata, compileDeclareDirectiveFromMetadata, compileDeclareFactoryFunction, compileDeclareInjectableFromMetadata, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileDeclarePipeFromMetadata, compileDirectiveFromMetadata, compileFactoryFunction, compileInjectable, compileInjector, compileNgModule, compilePipeFromMetadata, computeMsgId, core, createInjectableType, createMayBeForwardRefExpression, devOnlyGuardedExpression, emitDistinctChangesOnlyDefaultValue, getHtmlTagDefinition, getNsPrefix, getSafePropertyAccessString, identifierName, isIdentifier, isNgContainer, isNgContent, isNgTemplate, jsDocComment, leadingComment, literalMap, makeBindingParser, mergeNsAndName, output_ast as outputAst, parseHostBindings, parseTemplate, preserveWhitespacesDefault, publishFacade, r3JitTypeSourceSpan, sanitizeIdentifier, splitNsName, verifyHostBindings, visitAll };
22309
22249
  //# sourceMappingURL=compiler.mjs.map