@angular/compiler-cli 18.1.0-next.4 → 18.1.0-rc.0

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.
Files changed (39) hide show
  1. package/bundles/{chunk-LGWSLF7E.js → chunk-2T3WTZXW.js} +15 -14
  2. package/bundles/{chunk-LGWSLF7E.js.map → chunk-2T3WTZXW.js.map} +1 -1
  3. package/bundles/{chunk-XNL3EK5H.js → chunk-3W345P4E.js} +7 -7
  4. package/bundles/{chunk-AQFTVE7F.js → chunk-JZQHA4E7.js} +5 -5
  5. package/bundles/{chunk-KMM3BVFD.js → chunk-LM7LLDVD.js} +5 -5
  6. package/bundles/{chunk-SBDNBITT.js → chunk-LYJKWJUC.js} +3 -3
  7. package/bundles/{chunk-6WTRMS6V.js → chunk-OZ2N4CUX.js} +137 -84
  8. package/bundles/{chunk-6WTRMS6V.js.map → chunk-OZ2N4CUX.js.map} +3 -3
  9. package/bundles/{chunk-WR7TUJ7M.js → chunk-QYV344EV.js} +7 -7
  10. package/bundles/{chunk-74EXNMDD.js → chunk-S6XWL3LN.js} +142 -132
  11. package/bundles/{chunk-74EXNMDD.js.map → chunk-S6XWL3LN.js.map} +1 -1
  12. package/bundles/{chunk-K3J755TX.js → chunk-TNEE4FUS.js} +31 -31
  13. package/bundles/{chunk-RX2PJSXB.js → chunk-WTQ7UQOL.js} +46 -44
  14. package/bundles/chunk-WTQ7UQOL.js.map +6 -0
  15. package/bundles/index.js +11 -11
  16. package/bundles/linker/babel/index.js +12 -12
  17. package/bundles/linker/index.js +4 -4
  18. package/bundles/ngcc/index.js +1 -1
  19. package/bundles/private/bazel.js +1 -1
  20. package/bundles/private/localize.js +3 -3
  21. package/bundles/private/migrations.js +4 -4
  22. package/bundles/private/tooling.js +5 -5
  23. package/bundles/src/bin/ng_xi18n.js +9 -9
  24. package/bundles/src/bin/ngc.js +7 -7
  25. package/bundles_metadata.json +1 -1
  26. package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
  27. package/package.json +2 -2
  28. package/src/ngtsc/diagnostics/src/error_code.d.ts +14 -2
  29. package/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.d.ts +1 -0
  30. package/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.d.ts +10 -0
  31. package/src/ngtsc/typecheck/src/oob.d.ts +5 -6
  32. package/src/ngtsc/typecheck/src/type_check_block.d.ts +2 -0
  33. package/bundles/chunk-RX2PJSXB.js.map +0 -6
  34. /package/bundles/{chunk-XNL3EK5H.js.map → chunk-3W345P4E.js.map} +0 -0
  35. /package/bundles/{chunk-AQFTVE7F.js.map → chunk-JZQHA4E7.js.map} +0 -0
  36. /package/bundles/{chunk-KMM3BVFD.js.map → chunk-LM7LLDVD.js.map} +0 -0
  37. /package/bundles/{chunk-SBDNBITT.js.map → chunk-LYJKWJUC.js.map} +0 -0
  38. /package/bundles/{chunk-WR7TUJ7M.js.map → chunk-QYV344EV.js.map} +0 -0
  39. /package/bundles/{chunk-K3J755TX.js.map → chunk-TNEE4FUS.js.map} +0 -0
@@ -5,12 +5,12 @@
5
5
  import {
6
6
  Context,
7
7
  ExpressionTranslatorVisitor
8
- } from "./chunk-RX2PJSXB.js";
8
+ } from "./chunk-WTQ7UQOL.js";
9
9
  import {
10
10
  SourceFileLoader
11
- } from "./chunk-WR7TUJ7M.js";
11
+ } from "./chunk-QYV344EV.js";
12
12
 
13
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
13
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
14
14
  var FatalLinkerError = class extends Error {
15
15
  constructor(node, message) {
16
16
  super(message);
@@ -22,14 +22,14 @@ function isFatalLinkerError(e) {
22
22
  return e && e.type === "FatalLinkerError";
23
23
  }
24
24
 
25
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
25
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
26
26
  function assert(node, predicate, expected) {
27
27
  if (!predicate(node)) {
28
28
  throw new FatalLinkerError(node, `Unsupported syntax, expected ${expected}.`);
29
29
  }
30
30
  }
31
31
 
32
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
32
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
33
33
  import * as o from "@angular/compiler";
34
34
  var AstObject = class {
35
35
  static parse(expression, host) {
@@ -162,10 +162,10 @@ var AstValue = class {
162
162
  }
163
163
  };
164
164
 
165
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
165
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
166
166
  import { ConstantPool } from "@angular/compiler";
167
167
 
168
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
168
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
169
169
  var LinkerImportGenerator = class {
170
170
  constructor(factory, ngImport) {
171
171
  this.factory = factory;
@@ -185,7 +185,7 @@ var LinkerImportGenerator = class {
185
185
  }
186
186
  };
187
187
 
188
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
188
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
189
189
  var EmitScope = class {
190
190
  constructor(ngImport, translator, factory) {
191
191
  this.ngImport = ngImport;
@@ -214,7 +214,7 @@ var EmitScope = class {
214
214
  }
215
215
  };
216
216
 
217
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
217
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
218
218
  var LocalEmitScope = class extends EmitScope {
219
219
  translateDefinition(definition) {
220
220
  return super.translateDefinition({
@@ -227,10 +227,10 @@ var LocalEmitScope = class extends EmitScope {
227
227
  }
228
228
  };
229
229
 
230
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
230
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
231
231
  import semver2 from "semver";
232
232
 
233
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
233
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
234
234
  function createGetSourceFile(sourceUrl, code, loader) {
235
235
  if (loader === null) {
236
236
  return () => null;
@@ -245,7 +245,7 @@ function createGetSourceFile(sourceUrl, code, loader) {
245
245
  }
246
246
  }
247
247
 
248
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_async_linker_1.mjs
248
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_async_linker_1.mjs
249
249
  import { compileOpaqueAsyncClassMetadata } from "@angular/compiler";
250
250
  var PartialClassMetadataAsyncLinkerVersion1 = class {
251
251
  linkPartialDeclaration(constantPool, metaObj) {
@@ -270,7 +270,7 @@ var PartialClassMetadataAsyncLinkerVersion1 = class {
270
270
  }
271
271
  };
272
272
 
273
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
273
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
274
274
  import { compileClassMetadata } from "@angular/compiler";
275
275
  var PartialClassMetadataLinkerVersion1 = class {
276
276
  linkPartialDeclaration(constantPool, metaObj) {
@@ -290,16 +290,16 @@ function toR3ClassMetadata(metaObj) {
290
290
  };
291
291
  }
292
292
 
293
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
293
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
294
294
  import { ChangeDetectionStrategy, compileComponentFromMetadata, DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, makeBindingParser as makeBindingParser2, parseTemplate, R3TargetBinder, R3TemplateDependencyKind, SelectorMatcher, ViewEncapsulation } from "@angular/compiler";
295
295
  import semver from "semver";
296
296
 
297
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
297
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
298
298
  import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSourceFile, ParseSourceSpan } from "@angular/compiler";
299
299
 
300
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
300
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
301
301
  import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
302
- var PLACEHOLDER_VERSION = "18.1.0-next.4";
302
+ var PLACEHOLDER_VERSION = "18.1.0-rc.0";
303
303
  function wrapReference(wrapped) {
304
304
  return { value: wrapped, type: wrapped };
305
305
  }
@@ -346,7 +346,7 @@ function extractForwardRef(expr) {
346
346
  return createMayBeForwardRefExpression(wrapperFn.getFunctionReturnValue().getOpaque(), 2);
347
347
  }
348
348
 
349
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
349
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
350
350
  var PartialDirectiveLinkerVersion1 = class {
351
351
  constructor(sourceUrl, code) {
352
352
  this.sourceUrl = sourceUrl;
@@ -493,7 +493,7 @@ function createSourceSpan(range, code, sourceUrl) {
493
493
  return new ParseSourceSpan(startLocation, startLocation.moveBy(range.endPos - range.startPos));
494
494
  }
495
495
 
496
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
496
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
497
497
  function makeDirectiveMetadata(directiveExpr, typeExpr, isComponentByDefault = null) {
498
498
  return {
499
499
  kind: R3TemplateDependencyKind.Directive,
@@ -708,7 +708,7 @@ function parseChangeDetectionStrategy(changeDetectionStrategy) {
708
708
  return enumValue;
709
709
  }
710
710
 
711
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
711
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
712
712
  import { compileFactoryFunction, FactoryTarget } from "@angular/compiler";
713
713
  var PartialFactoryLinkerVersion1 = class {
714
714
  linkPartialDeclaration(constantPool, metaObj) {
@@ -744,7 +744,7 @@ function getDependencies(metaObj, propName) {
744
744
  return null;
745
745
  }
746
746
 
747
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
747
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
748
748
  import { compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression2, outputAst as o3 } from "@angular/compiler";
749
749
  var PartialInjectableLinkerVersion1 = class {
750
750
  linkPartialDeclaration(constantPool, metaObj) {
@@ -782,7 +782,7 @@ function toR3InjectableMeta(metaObj) {
782
782
  return meta;
783
783
  }
784
784
 
785
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
785
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
786
786
  import { compileInjector } from "@angular/compiler";
787
787
  var PartialInjectorLinkerVersion1 = class {
788
788
  linkPartialDeclaration(constantPool, metaObj) {
@@ -804,7 +804,7 @@ function toR3InjectorMeta(metaObj) {
804
804
  };
805
805
  }
806
806
 
807
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
807
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
808
808
  import { compileNgModule, R3NgModuleMetadataKind, R3SelectorScopeMode } from "@angular/compiler";
809
809
  var PartialNgModuleLinkerVersion1 = class {
810
810
  constructor(emitInline) {
@@ -876,7 +876,7 @@ function wrapReferences(values) {
876
876
  return values.getArray().map((i) => wrapReference(i.getOpaque()));
877
877
  }
878
878
 
879
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
879
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
880
880
  import { compilePipeFromMetadata } from "@angular/compiler";
881
881
  var PartialPipeLinkerVersion1 = class {
882
882
  constructor() {
@@ -905,7 +905,7 @@ function toR3PipeMeta(metaObj) {
905
905
  };
906
906
  }
907
907
 
908
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
908
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
909
909
  var \u0275\u0275ngDeclareDirective = "\u0275\u0275ngDeclareDirective";
910
910
  var \u0275\u0275ngDeclareClassMetadata = "\u0275\u0275ngDeclareClassMetadata";
911
911
  var \u0275\u0275ngDeclareComponent = "\u0275\u0275ngDeclareComponent";
@@ -1007,7 +1007,7 @@ function getRange(comparator, versionStr) {
1007
1007
  return new semver2.Range(`${comparator}${version.format()}`);
1008
1008
  }
1009
1009
 
1010
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
1010
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
1011
1011
  var FileLinker = class {
1012
1012
  constructor(linkerEnvironment, sourceUrl, code) {
1013
1013
  this.linkerEnvironment = linkerEnvironment;
@@ -1050,14 +1050,14 @@ var FileLinker = class {
1050
1050
  }
1051
1051
  };
1052
1052
 
1053
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
1053
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
1054
1054
  var DEFAULT_LINKER_OPTIONS = {
1055
1055
  sourceMapping: true,
1056
1056
  linkerJitMode: false,
1057
1057
  unknownDeclarationVersionHandling: "error"
1058
1058
  };
1059
1059
 
1060
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
1060
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
1061
1061
  var Translator = class {
1062
1062
  constructor(factory) {
1063
1063
  this.factory = factory;
@@ -1070,7 +1070,7 @@ var Translator = class {
1070
1070
  }
1071
1071
  };
1072
1072
 
1073
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
1073
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
1074
1074
  var LinkerEnvironment = class {
1075
1075
  constructor(fileSystem, logger, host, factory, options) {
1076
1076
  this.fileSystem = fileSystem;
@@ -1091,7 +1091,7 @@ var LinkerEnvironment = class {
1091
1091
  }
1092
1092
  };
1093
1093
 
1094
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1094
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1095
1095
  function needsLinking(path, source) {
1096
1096
  return declarationFunctions.some((fn) => source.includes(fn));
1097
1097
  }
@@ -1112,4 +1112,4 @@ export {
1112
1112
  * Use of this source code is governed by an MIT-style license that can be
1113
1113
  * found in the LICENSE file at https://angular.io/license
1114
1114
  */
1115
- //# sourceMappingURL=chunk-K3J755TX.js.map
1115
+ //# sourceMappingURL=chunk-TNEE4FUS.js.map
@@ -12,12 +12,12 @@ import {
12
12
  resolve,
13
13
  stripExtension,
14
14
  toRelativeImport
15
- } from "./chunk-XNL3EK5H.js";
15
+ } from "./chunk-3W345P4E.js";
16
16
 
17
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
17
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18
18
  import ts from "typescript";
19
19
 
20
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
20
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
21
21
  var ErrorCode;
22
22
  (function(ErrorCode2) {
23
23
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -90,7 +90,7 @@ var ErrorCode;
90
90
  ErrorCode2[ErrorCode2["DEFERRED_DEPENDENCY_IMPORTED_EAGERLY"] = 8014] = "DEFERRED_DEPENDENCY_IMPORTED_EAGERLY";
91
91
  ErrorCode2[ErrorCode2["ILLEGAL_LET_WRITE"] = 8015] = "ILLEGAL_LET_WRITE";
92
92
  ErrorCode2[ErrorCode2["LET_USED_BEFORE_DEFINITION"] = 8016] = "LET_USED_BEFORE_DEFINITION";
93
- ErrorCode2[ErrorCode2["DUPLICATE_LET_DECLARATION"] = 8017] = "DUPLICATE_LET_DECLARATION";
93
+ ErrorCode2[ErrorCode2["CONFLICTING_LET_DECLARATION"] = 8017] = "CONFLICTING_LET_DECLARATION";
94
94
  ErrorCode2[ErrorCode2["INVALID_BANANA_IN_BOX"] = 8101] = "INVALID_BANANA_IN_BOX";
95
95
  ErrorCode2[ErrorCode2["NULLISH_COALESCING_NOT_NULLABLE"] = 8102] = "NULLISH_COALESCING_NOT_NULLABLE";
96
96
  ErrorCode2[ErrorCode2["MISSING_CONTROL_FLOW_DIRECTIVE"] = 8103] = "MISSING_CONTROL_FLOW_DIRECTIVE";
@@ -101,6 +101,7 @@ var ErrorCode;
101
101
  ErrorCode2[ErrorCode2["SKIP_HYDRATION_NOT_STATIC"] = 8108] = "SKIP_HYDRATION_NOT_STATIC";
102
102
  ErrorCode2[ErrorCode2["INTERPOLATED_SIGNAL_NOT_INVOKED"] = 8109] = "INTERPOLATED_SIGNAL_NOT_INVOKED";
103
103
  ErrorCode2[ErrorCode2["UNSUPPORTED_INITIALIZER_API_USAGE"] = 8110] = "UNSUPPORTED_INITIALIZER_API_USAGE";
104
+ ErrorCode2[ErrorCode2["UNINVOKED_FUNCTION_IN_EVENT_BINDING"] = 8111] = "UNINVOKED_FUNCTION_IN_EVENT_BINDING";
104
105
  ErrorCode2[ErrorCode2["INLINE_TCB_REQUIRED"] = 8900] = "INLINE_TCB_REQUIRED";
105
106
  ErrorCode2[ErrorCode2["INLINE_TYPE_CTOR_REQUIRED"] = 8901] = "INLINE_TYPE_CTOR_REQUIRED";
106
107
  ErrorCode2[ErrorCode2["INJECTABLE_DUPLICATE_PROV"] = 9001] = "INJECTABLE_DUPLICATE_PROV";
@@ -110,7 +111,7 @@ var ErrorCode;
110
111
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
111
112
  })(ErrorCode || (ErrorCode = {}));
112
113
 
113
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
114
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
114
115
  var ERROR_CODE_MATCHER = /(\u001b\[\d+m ?)TS-99(\d+: ?\u001b\[\d+m)/g;
115
116
  function replaceTsWithNgInErrors(errors) {
116
117
  return errors.replace(ERROR_CODE_MATCHER, "$1NG$2");
@@ -119,7 +120,7 @@ function ngErrorCode(code) {
119
120
  return parseInt("-99" + code);
120
121
  }
121
122
 
122
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
123
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
123
124
  var FatalDiagnosticError = class extends Error {
124
125
  constructor(code, node, diagnosticMessage, relatedInformation) {
125
126
  super(`FatalDiagnosticError: Code: ${code}, Message: ${ts.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
@@ -183,7 +184,7 @@ function isLocalCompilationDiagnostics(diagnostic) {
183
184
  return diagnostic.code === ngErrorCode(ErrorCode.LOCAL_COMPILATION_UNRESOLVED_CONST) || diagnostic.code === ngErrorCode(ErrorCode.LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION);
184
185
  }
185
186
 
186
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
187
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
187
188
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
188
189
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
189
190
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -195,10 +196,10 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
195
196
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
196
197
  ]);
197
198
 
198
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
199
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
199
200
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
200
201
 
201
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
202
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
202
203
  var ExtendedTemplateDiagnosticName;
203
204
  (function(ExtendedTemplateDiagnosticName2) {
204
205
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -206,6 +207,7 @@ var ExtendedTemplateDiagnosticName;
206
207
  ExtendedTemplateDiagnosticName2["OPTIONAL_CHAIN_NOT_NULLABLE"] = "optionalChainNotNullable";
207
208
  ExtendedTemplateDiagnosticName2["MISSING_CONTROL_FLOW_DIRECTIVE"] = "missingControlFlowDirective";
208
209
  ExtendedTemplateDiagnosticName2["TEXT_ATTRIBUTE_NOT_BINDING"] = "textAttributeNotBinding";
210
+ ExtendedTemplateDiagnosticName2["UNINVOKED_FUNCTION_IN_EVENT_BINDING"] = "uninvokedFunctionInEventBinding";
209
211
  ExtendedTemplateDiagnosticName2["MISSING_NGFOROF_LET"] = "missingNgForOfLet";
210
212
  ExtendedTemplateDiagnosticName2["SUFFIX_NOT_SUPPORTED"] = "suffixNotSupported";
211
213
  ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
@@ -213,10 +215,10 @@ var ExtendedTemplateDiagnosticName;
213
215
  ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
214
216
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
215
217
 
216
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
218
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
217
219
  import ts5 from "typescript";
218
220
 
219
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
221
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
220
222
  import ts2 from "typescript";
221
223
  function isDecoratorIdentifier(exp) {
222
224
  return ts2.isIdentifier(exp) || ts2.isPropertyAccessExpression(exp) && ts2.isIdentifier(exp.expression) && ts2.isIdentifier(exp.name);
@@ -239,7 +241,7 @@ var ClassMemberAccessLevel;
239
241
  })(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
240
242
  var AmbientImport = {};
241
243
 
242
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
244
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
243
245
  import ts3 from "typescript";
244
246
  function typeToValue(typeNode, checker, isLocalCompilation) {
245
247
  var _a, _b;
@@ -423,7 +425,7 @@ function extractModuleName(node) {
423
425
  return node.moduleSpecifier.text;
424
426
  }
425
427
 
426
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
428
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
427
429
  import ts4 from "typescript";
428
430
  function isNamedClassDeclaration(node) {
429
431
  return ts4.isClassDeclaration(node) && isIdentifier(node.name);
@@ -447,7 +449,7 @@ function classMemberAccessLevelToString(level) {
447
449
  }
448
450
  }
449
451
 
450
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
452
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
451
453
  var TypeScriptReflectionHost = class {
452
454
  constructor(checker, isLocalCompilation = false) {
453
455
  this.checker = checker;
@@ -935,7 +937,7 @@ function getExportedName(decl, originalId) {
935
937
  }
936
938
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
937
939
 
938
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
940
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
939
941
  import ts6 from "typescript";
940
942
  var TS = /\.tsx?$/i;
941
943
  var D_TS = /\.d\.ts$/i;
@@ -1036,7 +1038,7 @@ function toUnredirectedSourceFile(sf) {
1036
1038
  return redirectInfo.unredirected;
1037
1039
  }
1038
1040
 
1039
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
1041
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
1040
1042
  var Reference = class {
1041
1043
  constructor(node, bestGuessOwningModule = null) {
1042
1044
  this.node = node;
@@ -1105,14 +1107,14 @@ var Reference = class {
1105
1107
  }
1106
1108
  };
1107
1109
 
1108
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
1110
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
1109
1111
  import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
1110
1112
 
1111
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
1113
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
1112
1114
  import { ExternalExpr, ExternalReference, WrappedNodeExpr } from "@angular/compiler";
1113
1115
  import ts7 from "typescript";
1114
1116
 
1115
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
1117
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
1116
1118
  function findExportedNameOfNode(target, file, reflector) {
1117
1119
  const exports = reflector.getExportsOfModule(file);
1118
1120
  if (exports === null) {
@@ -1132,7 +1134,7 @@ function findExportedNameOfNode(target, file, reflector) {
1132
1134
  return foundExportName;
1133
1135
  }
1134
1136
 
1135
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
1137
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
1136
1138
  var ImportFlags;
1137
1139
  (function(ImportFlags2) {
1138
1140
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -1363,7 +1365,7 @@ var UnifiedModulesStrategy = class {
1363
1365
  }
1364
1366
  };
1365
1367
 
1366
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
1368
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
1367
1369
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
1368
1370
  var UnifiedModulesAliasingHost = class {
1369
1371
  constructor(unifiedModulesHost) {
@@ -1430,7 +1432,7 @@ var AliasStrategy = class {
1430
1432
  }
1431
1433
  };
1432
1434
 
1433
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
1435
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
1434
1436
  function relativePathBetween(from, to) {
1435
1437
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
1436
1438
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -1439,7 +1441,7 @@ function normalizeSeparators(path) {
1439
1441
  return path.replace(/\\/g, "/");
1440
1442
  }
1441
1443
 
1442
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
1444
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
1443
1445
  var NoopImportRewriter = class {
1444
1446
  rewriteSymbol(symbol, specifier) {
1445
1447
  return symbol;
@@ -1492,7 +1494,7 @@ function validateAndRewriteCoreSymbol(name) {
1492
1494
  return CORE_SUPPORTED_SYMBOLS.get(name);
1493
1495
  }
1494
1496
 
1495
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
1497
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
1496
1498
  import ts8 from "typescript";
1497
1499
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
1498
1500
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -1527,7 +1529,7 @@ function throwIncompatibleTransformationContextError() {
1527
1529
  throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
1528
1530
  }
1529
1531
 
1530
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
1532
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
1531
1533
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
1532
1534
  function attachDefaultImportDeclaration(expr, importDecl) {
1533
1535
  expr[DefaultImportDeclaration] = importDecl;
@@ -1568,7 +1570,7 @@ var DefaultImportTracker = class {
1568
1570
  }
1569
1571
  };
1570
1572
 
1571
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
1573
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
1572
1574
  import ts9 from "typescript";
1573
1575
  var AssumeEager = "AssumeEager";
1574
1576
  var DeferredSymbolTracker = class {
@@ -1689,7 +1691,7 @@ var DeferredSymbolTracker = class {
1689
1691
  }
1690
1692
  };
1691
1693
 
1692
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
1694
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
1693
1695
  import ts10 from "typescript";
1694
1696
  var ImportedSymbolsTracker = class {
1695
1697
  constructor() {
@@ -1759,7 +1761,7 @@ var ImportedSymbolsTracker = class {
1759
1761
  }
1760
1762
  };
1761
1763
 
1762
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
1764
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
1763
1765
  import ts11 from "typescript";
1764
1766
  var LocalCompilationExtraImportsTracker = class {
1765
1767
  constructor(typeChecker) {
@@ -1810,7 +1812,7 @@ function removeQuotations(s) {
1810
1812
  return s.substring(1, s.length - 1).trim();
1811
1813
  }
1812
1814
 
1813
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
1815
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
1814
1816
  var ModuleResolver = class {
1815
1817
  constructor(program, compilerOptions, host, moduleResolutionCache) {
1816
1818
  this.program = program;
@@ -1827,10 +1829,10 @@ var ModuleResolver = class {
1827
1829
  }
1828
1830
  };
1829
1831
 
1830
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
1832
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
1831
1833
  import ts16 from "typescript";
1832
1834
 
1833
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
1835
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
1834
1836
  import ts12 from "typescript";
1835
1837
  function createGenerateUniqueIdentifierHelper() {
1836
1838
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -1856,7 +1858,7 @@ function createGenerateUniqueIdentifierHelper() {
1856
1858
  };
1857
1859
  }
1858
1860
 
1859
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
1861
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
1860
1862
  import ts13 from "typescript";
1861
1863
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
1862
1864
  return (ctx) => {
@@ -1917,7 +1919,7 @@ function isImportStatement(stmt) {
1917
1919
  return ts13.isImportDeclaration(stmt) || ts13.isImportEqualsDeclaration(stmt) || ts13.isNamespaceImport(stmt);
1918
1920
  }
1919
1921
 
1920
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
1922
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
1921
1923
  import ts14 from "typescript";
1922
1924
  function attemptToReuseGeneratedImports(tracker, request) {
1923
1925
  const requestHash = hashImportRequest(request);
@@ -1944,7 +1946,7 @@ function hashImportRequest(req) {
1944
1946
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
1945
1947
  }
1946
1948
 
1947
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
1949
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
1948
1950
  import ts15 from "typescript";
1949
1951
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
1950
1952
  let candidateImportToBeUpdated = null;
@@ -1997,7 +1999,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
1997
1999
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
1998
2000
  }
1999
2001
 
2000
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
2002
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
2001
2003
  var presetImportManagerForceNamespaceImports = {
2002
2004
  disableOriginalSourceFileReuse: true,
2003
2005
  forceGenerateNamespacesForNewImports: true
@@ -2147,7 +2149,7 @@ function createImportReference(asTypeReference, ref) {
2147
2149
  }
2148
2150
  }
2149
2151
 
2150
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
2152
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
2151
2153
  var Context = class {
2152
2154
  constructor(isStatement) {
2153
2155
  this.isStatement = isStatement;
@@ -2160,7 +2162,7 @@ var Context = class {
2160
2162
  }
2161
2163
  };
2162
2164
 
2163
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
2165
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
2164
2166
  import * as o from "@angular/compiler";
2165
2167
  var UNARY_OPERATORS = /* @__PURE__ */ new Map([
2166
2168
  [o.UnaryOperator.Minus, "-"],
@@ -2406,7 +2408,7 @@ function createRange(span) {
2406
2408
  };
2407
2409
  }
2408
2410
 
2409
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
2411
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
2410
2412
  import ts17 from "typescript";
2411
2413
  var INELIGIBLE = {};
2412
2414
  function canEmitType(type, canEmit) {
@@ -2481,11 +2483,11 @@ var TypeEmitter = class {
2481
2483
  }
2482
2484
  };
2483
2485
 
2484
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
2486
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
2485
2487
  import * as o2 from "@angular/compiler";
2486
2488
  import ts19 from "typescript";
2487
2489
 
2488
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
2490
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
2489
2491
  import ts18 from "typescript";
2490
2492
  function tsNumericExpression(value) {
2491
2493
  if (value < 0) {
@@ -2495,7 +2497,7 @@ function tsNumericExpression(value) {
2495
2497
  return ts18.factory.createNumericLiteral(value);
2496
2498
  }
2497
2499
 
2498
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
2500
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
2499
2501
  function translateType(type, contextFile, reflector, refEmitter, imports) {
2500
2502
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
2501
2503
  }
@@ -2712,7 +2714,7 @@ var TypeTranslatorVisitor = class {
2712
2714
  }
2713
2715
  };
2714
2716
 
2715
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
2717
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
2716
2718
  import ts20 from "typescript";
2717
2719
  var PureAnnotation;
2718
2720
  (function(PureAnnotation2) {
@@ -2915,7 +2917,7 @@ function attachComments(statement, leadingComments) {
2915
2917
  }
2916
2918
  }
2917
2919
 
2918
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
2920
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
2919
2921
  function translateExpression(contextFile, expression, imports, options = {}) {
2920
2922
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
2921
2923
  }
@@ -3012,4 +3014,4 @@ export {
3012
3014
  * Use of this source code is governed by an MIT-style license that can be
3013
3015
  * found in the LICENSE file at https://angular.io/license
3014
3016
  */
3015
- //# sourceMappingURL=chunk-RX2PJSXB.js.map
3017
+ //# sourceMappingURL=chunk-WTQ7UQOL.js.map