@angular/compiler-cli 16.1.1 → 16.2.0-next.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 (44) hide show
  1. package/bundles/{chunk-JXL4GN5W.js → chunk-3SPKRPX3.js} +100 -100
  2. package/bundles/chunk-3SPKRPX3.js.map +6 -0
  3. package/bundles/{chunk-HJOPJLIM.js → chunk-7PCPPTTO.js} +5 -5
  4. package/bundles/{chunk-OOJTRSMD.js → chunk-ADNHTL54.js} +31 -31
  5. package/bundles/{chunk-LKUXUQLD.js → chunk-CWFGODIP.js} +5 -5
  6. package/bundles/{chunk-GYHDNUIK.js → chunk-EKTJ7622.js} +7 -7
  7. package/bundles/{chunk-AAX4HKH5.js → chunk-LOZJLM26.js} +8 -8
  8. package/bundles/{chunk-EMELASNB.js → chunk-LVVIYUZC.js} +103 -99
  9. package/bundles/{chunk-EMELASNB.js.map → chunk-LVVIYUZC.js.map} +1 -1
  10. package/bundles/{chunk-SBDNBITT.js → chunk-LYJKWJUC.js} +3 -3
  11. package/bundles/{chunk-OIJPCKRW.js → chunk-NIK4FIWB.js} +6 -6
  12. package/bundles/{chunk-ONCDPGC3.js → chunk-SJLWUYXS.js} +5 -5
  13. package/bundles/{chunk-EC5K6QPP.js → chunk-TBUSSXUA.js} +7 -7
  14. package/bundles/{chunk-KPIJL3UY.js → chunk-WF3L5COT.js} +21 -21
  15. package/bundles/index.js +13 -13
  16. package/bundles/linker/babel/index.js +13 -13
  17. package/bundles/linker/index.js +5 -5
  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 +6 -6
  22. package/bundles/private/tooling.js +4 -4
  23. package/bundles/src/bin/ng_xi18n.js +11 -11
  24. package/bundles/src/bin/ngc.js +9 -9
  25. package/bundles_metadata.json +1 -1
  26. package/package.json +2 -2
  27. package/src/ngtsc/annotations/component/src/handler.d.ts +4 -3
  28. package/src/ngtsc/annotations/directive/src/handler.d.ts +4 -3
  29. package/src/ngtsc/annotations/directive/src/shared.d.ts +1 -2
  30. package/src/ngtsc/annotations/ng_module/src/handler.d.ts +2 -1
  31. package/src/ngtsc/annotations/src/injectable.d.ts +2 -1
  32. package/src/ngtsc/annotations/src/pipe.d.ts +2 -1
  33. package/src/ngtsc/transform/src/api.d.ts +1 -20
  34. package/bundles/chunk-JXL4GN5W.js.map +0 -6
  35. /package/bundles/{chunk-HJOPJLIM.js.map → chunk-7PCPPTTO.js.map} +0 -0
  36. /package/bundles/{chunk-OOJTRSMD.js.map → chunk-ADNHTL54.js.map} +0 -0
  37. /package/bundles/{chunk-LKUXUQLD.js.map → chunk-CWFGODIP.js.map} +0 -0
  38. /package/bundles/{chunk-GYHDNUIK.js.map → chunk-EKTJ7622.js.map} +0 -0
  39. /package/bundles/{chunk-AAX4HKH5.js.map → chunk-LOZJLM26.js.map} +0 -0
  40. /package/bundles/{chunk-SBDNBITT.js.map → chunk-LYJKWJUC.js.map} +0 -0
  41. /package/bundles/{chunk-OIJPCKRW.js.map → chunk-NIK4FIWB.js.map} +0 -0
  42. /package/bundles/{chunk-ONCDPGC3.js.map → chunk-SJLWUYXS.js.map} +0 -0
  43. /package/bundles/{chunk-EC5K6QPP.js.map → chunk-TBUSSXUA.js.map} +0 -0
  44. /package/bundles/{chunk-KPIJL3UY.js.map → chunk-WF3L5COT.js.map} +0 -0
@@ -5,12 +5,12 @@
5
5
  import {
6
6
  Context,
7
7
  ExpressionTranslatorVisitor
8
- } from "./chunk-AAX4HKH5.js";
8
+ } from "./chunk-LOZJLM26.js";
9
9
  import {
10
10
  SourceFileLoader
11
- } from "./chunk-GYHDNUIK.js";
11
+ } from "./chunk-EKTJ7622.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) {
@@ -155,10 +155,10 @@ var AstValue = class {
155
155
  }
156
156
  };
157
157
 
158
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
158
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
159
159
  import { ConstantPool } from "@angular/compiler";
160
160
 
161
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
161
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
162
162
  var LinkerImportGenerator = class {
163
163
  constructor(ngImport) {
164
164
  this.ngImport = ngImport;
@@ -178,7 +178,7 @@ var LinkerImportGenerator = class {
178
178
  }
179
179
  };
180
180
 
181
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
181
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
182
182
  var EmitScope = class {
183
183
  constructor(ngImport, translator, factory) {
184
184
  this.ngImport = ngImport;
@@ -207,7 +207,7 @@ var EmitScope = class {
207
207
  }
208
208
  };
209
209
 
210
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
210
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
211
211
  var LocalEmitScope = class extends EmitScope {
212
212
  translateDefinition(definition) {
213
213
  return super.translateDefinition({
@@ -220,10 +220,10 @@ var LocalEmitScope = class extends EmitScope {
220
220
  }
221
221
  };
222
222
 
223
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
223
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
224
224
  import semver from "semver";
225
225
 
226
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
226
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
227
227
  function createGetSourceFile(sourceUrl, code, loader) {
228
228
  if (loader === null) {
229
229
  return () => null;
@@ -238,7 +238,7 @@ function createGetSourceFile(sourceUrl, code, loader) {
238
238
  }
239
239
  }
240
240
 
241
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
241
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
242
242
  import { compileClassMetadata } from "@angular/compiler";
243
243
  var PartialClassMetadataLinkerVersion1 = class {
244
244
  linkPartialDeclaration(constantPool, metaObj) {
@@ -258,13 +258,13 @@ function toR3ClassMetadata(metaObj) {
258
258
  };
259
259
  }
260
260
 
261
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
261
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
262
262
  import { ChangeDetectionStrategy, compileComponentFromMetadata, DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, makeBindingParser as makeBindingParser2, parseTemplate, R3TemplateDependencyKind, ViewEncapsulation } from "@angular/compiler";
263
263
 
264
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
264
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
265
265
  import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSourceFile, ParseSourceSpan } from "@angular/compiler";
266
266
 
267
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
267
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
268
268
  import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
269
269
  function wrapReference(wrapped) {
270
270
  return { value: wrapped, type: wrapped };
@@ -312,7 +312,7 @@ function extractForwardRef(expr) {
312
312
  return createMayBeForwardRefExpression(wrapperFn.getFunctionReturnValue().getOpaque(), 2);
313
313
  }
314
314
 
315
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
315
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
316
316
  var PartialDirectiveLinkerVersion1 = class {
317
317
  constructor(sourceUrl, code) {
318
318
  this.sourceUrl = sourceUrl;
@@ -442,7 +442,7 @@ function createSourceSpan(range, code, sourceUrl) {
442
442
  return new ParseSourceSpan(startLocation, startLocation.moveBy(range.endPos - range.startPos));
443
443
  }
444
444
 
445
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
445
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
446
446
  function makeDirectiveMetadata(directiveExpr, typeExpr, isComponentByDefault = null) {
447
447
  return {
448
448
  kind: R3TemplateDependencyKind.Directive,
@@ -635,7 +635,7 @@ function parseChangeDetectionStrategy(changeDetectionStrategy) {
635
635
  return enumValue;
636
636
  }
637
637
 
638
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
638
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
639
639
  import { compileFactoryFunction, FactoryTarget } from "@angular/compiler";
640
640
  var PartialFactoryLinkerVersion1 = class {
641
641
  linkPartialDeclaration(constantPool, metaObj) {
@@ -671,7 +671,7 @@ function getDependencies(metaObj, propName) {
671
671
  return null;
672
672
  }
673
673
 
674
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
674
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
675
675
  import { compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression2, outputAst as o3 } from "@angular/compiler";
676
676
  var PartialInjectableLinkerVersion1 = class {
677
677
  linkPartialDeclaration(constantPool, metaObj) {
@@ -709,7 +709,7 @@ function toR3InjectableMeta(metaObj) {
709
709
  return meta;
710
710
  }
711
711
 
712
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
712
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
713
713
  import { compileInjector } from "@angular/compiler";
714
714
  var PartialInjectorLinkerVersion1 = class {
715
715
  linkPartialDeclaration(constantPool, metaObj) {
@@ -731,7 +731,7 @@ function toR3InjectorMeta(metaObj) {
731
731
  };
732
732
  }
733
733
 
734
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
734
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
735
735
  import { compileNgModule, R3SelectorScopeMode } from "@angular/compiler";
736
736
  var PartialNgModuleLinkerVersion1 = class {
737
737
  constructor(emitInline) {
@@ -802,7 +802,7 @@ function wrapReferences(values) {
802
802
  return values.getArray().map((i) => wrapReference(i.getOpaque()));
803
803
  }
804
804
 
805
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
805
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
806
806
  import { compilePipeFromMetadata } from "@angular/compiler";
807
807
  var PartialPipeLinkerVersion1 = class {
808
808
  constructor() {
@@ -831,7 +831,7 @@ function toR3PipeMeta(metaObj) {
831
831
  };
832
832
  }
833
833
 
834
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
834
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
835
835
  var \u0275\u0275ngDeclareDirective = "\u0275\u0275ngDeclareDirective";
836
836
  var \u0275\u0275ngDeclareClassMetadata = "\u0275\u0275ngDeclareClassMetadata";
837
837
  var \u0275\u0275ngDeclareComponent = "\u0275\u0275ngDeclareComponent";
@@ -852,7 +852,7 @@ var declarationFunctions = [
852
852
  ];
853
853
  function createLinkerMap(environment, sourceUrl, code) {
854
854
  const linkers = /* @__PURE__ */ new Map();
855
- const LATEST_VERSION_RANGE = getRange("<=", "16.1.1");
855
+ const LATEST_VERSION_RANGE = getRange("<=", "16.2.0-next.0");
856
856
  linkers.set(\u0275\u0275ngDeclareDirective, [
857
857
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
858
858
  ]);
@@ -899,7 +899,7 @@ var PartialLinkerSelector = class {
899
899
  throw new Error(`Unknown partial declaration function ${functionName}.`);
900
900
  }
901
901
  const linkerRanges = this.linkers.get(functionName);
902
- if (version === "16.1.1") {
902
+ if (version === "16.2.0-next.0") {
903
903
  return linkerRanges[linkerRanges.length - 1].linker;
904
904
  }
905
905
  const declarationRange = getRange(">=", minVersion);
@@ -925,7 +925,7 @@ function getRange(comparator, versionStr) {
925
925
  return new semver.Range(`${comparator}${version.format()}`);
926
926
  }
927
927
 
928
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
928
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
929
929
  var FileLinker = class {
930
930
  constructor(linkerEnvironment, sourceUrl, code) {
931
931
  this.linkerEnvironment = linkerEnvironment;
@@ -968,14 +968,14 @@ var FileLinker = class {
968
968
  }
969
969
  };
970
970
 
971
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
971
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
972
972
  var DEFAULT_LINKER_OPTIONS = {
973
973
  sourceMapping: true,
974
974
  linkerJitMode: false,
975
975
  unknownDeclarationVersionHandling: "error"
976
976
  };
977
977
 
978
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
978
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
979
979
  var Translator = class {
980
980
  constructor(factory) {
981
981
  this.factory = factory;
@@ -988,7 +988,7 @@ var Translator = class {
988
988
  }
989
989
  };
990
990
 
991
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
991
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
992
992
  var LinkerEnvironment = class {
993
993
  constructor(fileSystem, logger, host, factory, options) {
994
994
  this.fileSystem = fileSystem;
@@ -1009,7 +1009,7 @@ var LinkerEnvironment = class {
1009
1009
  }
1010
1010
  };
1011
1011
 
1012
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1012
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1013
1013
  function needsLinking(path, source) {
1014
1014
  return declarationFunctions.some((fn) => source.includes(fn));
1015
1015
  }
@@ -1030,4 +1030,4 @@ export {
1030
1030
  * Use of this source code is governed by an MIT-style license that can be
1031
1031
  * found in the LICENSE file at https://angular.io/license
1032
1032
  */
1033
- //# sourceMappingURL=chunk-OOJTRSMD.js.map
1033
+ //# sourceMappingURL=chunk-ADNHTL54.js.map
@@ -12,13 +12,13 @@ import {
12
12
  formatDiagnostics,
13
13
  performCompilation,
14
14
  readConfiguration
15
- } from "./chunk-EMELASNB.js";
15
+ } from "./chunk-LVVIYUZC.js";
16
16
 
17
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/main.mjs
17
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/main.mjs
18
18
  import ts2 from "typescript";
19
19
  import yargs from "yargs";
20
20
 
21
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_watch.mjs
21
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_watch.mjs
22
22
  import * as chokidar from "chokidar";
23
23
  import * as path from "path";
24
24
  import ts from "typescript";
@@ -234,7 +234,7 @@ function performWatchCompilation(host) {
234
234
  }
235
235
  }
236
236
 
237
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/main.mjs
237
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/main.mjs
238
238
  function main(args, consoleError = console.error, config, customTransformers, programReuse, modifiedResourceFiles, tsickle) {
239
239
  let { project, rootNames, options, errors: configErrors, watch: watch2, emitFlags } = config || readNgcCommandLineAndConfiguration(args);
240
240
  if (configErrors.length) {
@@ -374,4 +374,4 @@ export {
374
374
  * Use of this source code is governed by an MIT-style license that can be
375
375
  * found in the LICENSE file at https://angular.io/license
376
376
  */
377
- //# sourceMappingURL=chunk-LKUXUQLD.js.map
377
+ //# sourceMappingURL=chunk-CWFGODIP.js.map
@@ -3,11 +3,11 @@
3
3
  const require = __cjsCompatRequire(import.meta.url);
4
4
 
5
5
 
6
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
6
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
7
7
  import { decode, encode } from "@jridgewell/sourcemap-codec";
8
8
  import mapHelpers from "convert-source-map";
9
9
 
10
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
10
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
11
11
  function compareSegments(a, b) {
12
12
  return a.position - b.position;
13
13
  }
@@ -27,7 +27,7 @@ function offsetSegment(startOfLinePositions, marker, offset) {
27
27
  return { line, column, position, next: void 0 };
28
28
  }
29
29
 
30
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
30
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
31
31
  function removeSourceMapComments(contents) {
32
32
  return mapHelpers.removeMapFileComments(mapHelpers.removeComments(contents)).replace(/\n\n$/, "\n");
33
33
  }
@@ -278,10 +278,10 @@ var Cache = class {
278
278
  }
279
279
  };
280
280
 
281
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
281
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
282
282
  import mapHelpers2 from "convert-source-map";
283
283
 
284
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
284
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
285
285
  var ContentOrigin;
286
286
  (function(ContentOrigin2) {
287
287
  ContentOrigin2[ContentOrigin2["Provided"] = 0] = "Provided";
@@ -289,7 +289,7 @@ var ContentOrigin;
289
289
  ContentOrigin2[ContentOrigin2["FileSystem"] = 2] = "FileSystem";
290
290
  })(ContentOrigin || (ContentOrigin = {}));
291
291
 
292
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
292
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
293
293
  var SCHEME_MATCHER = /^([a-z][a-z0-9.-]*):\/\//i;
294
294
  var SourceFileLoader = class {
295
295
  constructor(fs, logger, schemeMap) {
@@ -416,4 +416,4 @@ export {
416
416
  * Use of this source code is governed by an MIT-style license that can be
417
417
  * found in the LICENSE file at https://angular.io/license
418
418
  */
419
- //# sourceMappingURL=chunk-GYHDNUIK.js.map
419
+ //# sourceMappingURL=chunk-EKTJ7622.js.map
@@ -7,9 +7,9 @@ import {
7
7
  NoopImportRewriter,
8
8
  Reference,
9
9
  assertSuccessfulReferenceEmit
10
- } from "./chunk-KPIJL3UY.js";
10
+ } from "./chunk-WF3L5COT.js";
11
11
 
12
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
12
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
13
13
  var Context = class {
14
14
  constructor(isStatement) {
15
15
  this.isStatement = isStatement;
@@ -22,7 +22,7 @@ var Context = class {
22
22
  }
23
23
  };
24
24
 
25
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
25
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
26
26
  import * as o from "@angular/compiler";
27
27
  var UNARY_OPERATORS = /* @__PURE__ */ new Map([
28
28
  [o.UnaryOperator.Minus, "-"],
@@ -254,7 +254,7 @@ function createRange(span) {
254
254
  };
255
255
  }
256
256
 
257
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
257
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
258
258
  import ts from "typescript";
259
259
  var ImportManager = class {
260
260
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -290,7 +290,7 @@ var ImportManager = class {
290
290
  }
291
291
  };
292
292
 
293
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
293
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
294
294
  import * as o2 from "@angular/compiler";
295
295
  import ts2 from "typescript";
296
296
  function translateType(type, contextFile, reflector, refEmitter, imports) {
@@ -507,7 +507,7 @@ var TypeTranslatorVisitor = class {
507
507
  }
508
508
  };
509
509
 
510
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
510
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
511
511
  import ts3 from "typescript";
512
512
  var PureAnnotation;
513
513
  (function(PureAnnotation2) {
@@ -690,7 +690,7 @@ function attachComments(statement, leadingComments) {
690
690
  }
691
691
  }
692
692
 
693
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
693
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
694
694
  function translateExpression(expression, imports, options = {}) {
695
695
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
696
696
  }
@@ -713,4 +713,4 @@ export {
713
713
  * Use of this source code is governed by an MIT-style license that can be
714
714
  * found in the LICENSE file at https://angular.io/license
715
715
  */
716
- //# sourceMappingURL=chunk-AAX4HKH5.js.map
716
+ //# sourceMappingURL=chunk-LOZJLM26.js.map