@angular/compiler-cli 13.0.0-rc.2 → 13.0.0-rc.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.
@@ -30,17 +30,17 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
30
30
  throw new Error('Dynamic require of "' + x + '" is not supported');
31
31
  });
32
32
 
33
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
33
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
34
34
  import { dirname as dirname6, join as join6 } from "path";
35
35
  import { fileURLToPath as fileURLToPath2 } from "url";
36
36
 
37
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
37
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
38
38
  import {
39
39
  EOL
40
40
  } from "os";
41
41
  import ts from "typescript";
42
42
 
43
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
43
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
44
44
  var InvalidFileSystem = class {
45
45
  exists(path7) {
46
46
  throw makeError();
@@ -128,13 +128,13 @@ function makeError() {
128
128
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
129
129
  }
130
130
 
131
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
131
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
132
132
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
133
133
  function stripExtension(path7) {
134
134
  return path7.replace(TS_DTS_JS_EXTENSION, "");
135
135
  }
136
136
 
137
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
137
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
138
138
  var fs = new InvalidFileSystem();
139
139
  function getFileSystem() {
140
140
  return fs;
@@ -175,7 +175,7 @@ function toRelativeImport(relativePath) {
175
175
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
176
176
  }
177
177
 
178
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
178
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
179
179
  var NgtscCompilerHost = class {
180
180
  constructor(fs5, options = {}) {
181
181
  this.fs = fs5;
@@ -228,7 +228,7 @@ var NgtscCompilerHost = class {
228
228
  }
229
229
  };
230
230
 
231
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
231
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
232
232
  var LogicalProjectPath = {
233
233
  relativePathBetween: function(from, to) {
234
234
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -274,7 +274,7 @@ function isWithinBasePath(base, path7) {
274
274
  return isLocalRelativePath(relative(base, path7));
275
275
  }
276
276
 
277
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
277
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
278
278
  import {
279
279
  copyFileSync,
280
280
  existsSync,
@@ -419,13 +419,13 @@ function toggleCase(str) {
419
419
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
420
420
  }
421
421
 
422
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/commonjs_dependency_host.mjs
422
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/commonjs_dependency_host.mjs
423
423
  import ts9 from "typescript";
424
424
 
425
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_umd_utils.mjs
425
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_umd_utils.mjs
426
426
  import ts3 from "typescript";
427
427
 
428
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
428
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
429
429
  import ts2 from "typescript";
430
430
  var D_TS = /\.d\.ts$/i;
431
431
  function isSymbolWithValueDeclaration(symbol) {
@@ -493,7 +493,7 @@ function isAssignment(node) {
493
493
  return ts2.isBinaryExpression(node) && node.operatorToken.kind === ts2.SyntaxKind.EqualsToken;
494
494
  }
495
495
 
496
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_umd_utils.mjs
496
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_umd_utils.mjs
497
497
  function findNamespaceOfIdentifier(id) {
498
498
  return id.parent && ts3.isPropertyAccessExpression(id.parent) && id.parent.name === id && ts3.isIdentifier(id.parent.expression) ? id.parent.expression : null;
499
499
  }
@@ -578,10 +578,10 @@ function skipAliases(node) {
578
578
  return node;
579
579
  }
580
580
 
581
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/utils.mjs
581
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/utils.mjs
582
582
  import ts8 from "typescript";
583
583
 
584
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
584
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
585
585
  import ts4 from "typescript";
586
586
  var Decorator = {
587
587
  nodeForError: (decorator) => {
@@ -616,7 +616,7 @@ function isConcreteDeclaration(decl) {
616
616
  return decl.kind === 0;
617
617
  }
618
618
 
619
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
619
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
620
620
  import ts5 from "typescript";
621
621
  function typeToValue(typeNode, checker) {
622
622
  if (typeNode === null) {
@@ -777,10 +777,10 @@ function extractModuleName(node) {
777
777
  return node.moduleSpecifier.text;
778
778
  }
779
779
 
780
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
780
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
781
781
  import ts7 from "typescript";
782
782
 
783
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
783
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
784
784
  import ts6 from "typescript";
785
785
  function isNamedClassDeclaration(node) {
786
786
  return ts6.isClassDeclaration(node) && isIdentifier(node.name);
@@ -795,7 +795,7 @@ function isIdentifier(node) {
795
795
  return node !== void 0 && ts6.isIdentifier(node);
796
796
  }
797
797
 
798
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
798
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
799
799
  var TypeScriptReflectionHost = class {
800
800
  constructor(checker) {
801
801
  this.checker = checker;
@@ -1231,7 +1231,7 @@ function getExportedName(decl, originalId) {
1231
1231
  }
1232
1232
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
1233
1233
 
1234
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/utils.mjs
1234
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/utils.mjs
1235
1235
  function isDefined(value) {
1236
1236
  return value !== void 0 && value !== null;
1237
1237
  }
@@ -1313,7 +1313,7 @@ function stripExtension2(fileName) {
1313
1313
  return fileName.replace(/\..+$/, "");
1314
1314
  }
1315
1315
 
1316
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/module_resolver.mjs
1316
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/module_resolver.mjs
1317
1317
  var ModuleResolver = class {
1318
1318
  constructor(fs5, pathMappings, relativeExtensions = ["", ".js", "/index.js"]) {
1319
1319
  this.fs = fs5;
@@ -1442,7 +1442,7 @@ function isRelativeImport(from, to) {
1442
1442
  return to.startsWith(from) && !to.includes("node_modules");
1443
1443
  }
1444
1444
 
1445
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_host.mjs
1445
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_host.mjs
1446
1446
  function createDependencyInfo() {
1447
1447
  return { dependencies: new Set(), missing: new Set(), deepImports: new Set() };
1448
1448
  }
@@ -1499,7 +1499,7 @@ var DependencyHostBase = class {
1499
1499
  }
1500
1500
  };
1501
1501
 
1502
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/commonjs_dependency_host.mjs
1502
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/commonjs_dependency_host.mjs
1503
1503
  var CommonJsDependencyHost = class extends DependencyHostBase {
1504
1504
  canSkipFile(fileContents) {
1505
1505
  return !hasRequireCalls(fileContents);
@@ -1543,20 +1543,20 @@ function hasRequireCalls(source) {
1543
1543
  return /require\(['"]/.test(source);
1544
1544
  }
1545
1545
 
1546
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_resolver.mjs
1546
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_resolver.mjs
1547
1547
  import { DepGraph } from "dependency-graph";
1548
1548
  import module2 from "module";
1549
1549
 
1550
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
1550
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
1551
1551
  import ts15 from "typescript";
1552
1552
 
1553
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
1553
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
1554
1554
  import ts14 from "typescript";
1555
1555
 
1556
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
1556
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
1557
1557
  import ts12 from "typescript";
1558
1558
 
1559
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/util.mjs
1559
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/util.mjs
1560
1560
  function isWithinPackage(packagePath, filePath) {
1561
1561
  const relativePath = relative(packagePath, filePath);
1562
1562
  return isLocalRelativePath(relativePath) && !relativePath.startsWith("node_modules/");
@@ -1571,7 +1571,7 @@ var NoopDependencyTracker = class {
1571
1571
  };
1572
1572
  var NOOP_DEPENDENCY_TRACKER = new NoopDependencyTracker();
1573
1573
 
1574
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/ngcc_host.mjs
1574
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/ngcc_host.mjs
1575
1575
  import ts10 from "typescript";
1576
1576
  var PRE_R3_MARKER = "__PRE_R3__";
1577
1577
  var POST_R3_MARKER = "__POST_R3__";
@@ -1579,13 +1579,13 @@ function isSwitchableVariableDeclaration(node) {
1579
1579
  return ts10.isVariableDeclaration(node) && !!node.initializer && ts10.isIdentifier(node.initializer) && node.initializer.text.endsWith(PRE_R3_MARKER);
1580
1580
  }
1581
1581
 
1582
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/utils.mjs
1582
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/utils.mjs
1583
1583
  import ts11 from "typescript";
1584
1584
  function stripParentheses(node) {
1585
1585
  return ts11.isParenthesizedExpression(node) ? node.expression : node;
1586
1586
  }
1587
1587
 
1588
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
1588
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
1589
1589
  var DECORATORS = "decorators";
1590
1590
  var PROP_DECORATORS = "propDecorators";
1591
1591
  var CONSTRUCTOR = "__constructor";
@@ -2816,7 +2816,7 @@ function getOuterNodeFromInnerDeclaration(node) {
2816
2816
  return outerNode;
2817
2817
  }
2818
2818
 
2819
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm5_host.mjs
2819
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm5_host.mjs
2820
2820
  import ts13 from "typescript";
2821
2821
  var Esm5ReflectionHost = class extends Esm2015ReflectionHost {
2822
2822
  getBaseClassExpression(clazz) {
@@ -3150,7 +3150,7 @@ function getIifeFn(classSymbol) {
3150
3150
  return iifeWrapper && ts13.isFunctionExpression(iifeWrapper) ? iifeWrapper : null;
3151
3151
  }
3152
3152
 
3153
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
3153
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
3154
3154
  var UmdReflectionHost = class extends Esm5ReflectionHost {
3155
3155
  constructor(logger, isCore, src, dts = null) {
3156
3156
  super(logger, isCore, src, dts);
@@ -3541,7 +3541,7 @@ function isExportsIdentifier(node) {
3541
3541
  return ts14.isIdentifier(node) && node.text === "exports";
3542
3542
  }
3543
3543
 
3544
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
3544
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
3545
3545
  var SUPPORTED_FORMAT_PROPERTIES = ["fesm2015", "fesm5", "es2015", "esm2015", "esm5", "main", "module", "browser"];
3546
3546
  var NO_ENTRY_POINT = "no-entry-point";
3547
3547
  var IGNORED_ENTRY_POINT = "ignored-entry-point";
@@ -3689,7 +3689,7 @@ function getPackageNameAndVersion(fs5, packagePath, packagePackageJson, entryPoi
3689
3689
  };
3690
3690
  }
3691
3691
 
3692
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_resolver.mjs
3692
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dependency_resolver.mjs
3693
3693
  var builtinNodeJsModules = new Set(module2.builtinModules);
3694
3694
  var DependencyResolver = class {
3695
3695
  constructor(fs5, logger, config, hosts, typingsHost) {
@@ -3791,7 +3791,7 @@ var DependencyResolver = class {
3791
3791
  }
3792
3792
  };
3793
3793
 
3794
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/esm_dependency_host.mjs
3794
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/esm_dependency_host.mjs
3795
3795
  import ts16 from "typescript";
3796
3796
  var EsmDependencyHost = class extends DependencyHostBase {
3797
3797
  constructor(fs5, moduleResolver, scanImportExpressions = true) {
@@ -3957,7 +3957,7 @@ function canPrecedeARegex(kind) {
3957
3957
  }
3958
3958
  }
3959
3959
 
3960
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dts_dependency_host.mjs
3960
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/dts_dependency_host.mjs
3961
3961
  var DtsDependencyHost = class extends EsmDependencyHost {
3962
3962
  constructor(fs5, pathMappings) {
3963
3963
  super(fs5, new ModuleResolver(fs5, pathMappings, ["", ".d.ts", "/index.d.ts", ".js", "/index.js"]), false);
@@ -3967,7 +3967,7 @@ var DtsDependencyHost = class extends EsmDependencyHost {
3967
3967
  }
3968
3968
  };
3969
3969
 
3970
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/umd_dependency_host.mjs
3970
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/dependencies/umd_dependency_host.mjs
3971
3971
  import ts17 from "typescript";
3972
3972
  var UmdDependencyHost = class extends DependencyHostBase {
3973
3973
  canSkipFile(fileContents) {
@@ -3987,7 +3987,7 @@ var UmdDependencyHost = class extends DependencyHostBase {
3987
3987
  }
3988
3988
  };
3989
3989
 
3990
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/utils.mjs
3990
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/utils.mjs
3991
3991
  function getBasePaths(logger, sourceDirectory, pathMappings) {
3992
3992
  const fs5 = getFileSystem();
3993
3993
  const basePaths = [sourceDirectory];
@@ -4097,7 +4097,7 @@ function convertToLeaf(node, path7) {
4097
4097
  node.path = path7;
4098
4098
  }
4099
4099
 
4100
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/directory_walker_entry_point_finder.mjs
4100
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/directory_walker_entry_point_finder.mjs
4101
4101
  var DirectoryWalkerEntryPointFinder = class {
4102
4102
  constructor(logger, resolver, entryPointCollector, entryPointManifest, sourceDirectory, pathMappings) {
4103
4103
  this.logger = logger;
@@ -4124,7 +4124,7 @@ var DirectoryWalkerEntryPointFinder = class {
4124
4124
  }
4125
4125
  };
4126
4126
 
4127
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/in_place_file_writer.mjs
4127
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/in_place_file_writer.mjs
4128
4128
  var NGCC_BACKUP_EXTENSION = ".__ivy_ngcc_bak";
4129
4129
  var InPlaceFileWriter = class {
4130
4130
  constructor(fs5, logger, errorOnFailedEntryPoint) {
@@ -4173,7 +4173,7 @@ This error may be caused by one of the following:
4173
4173
  }
4174
4174
  };
4175
4175
 
4176
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/new_entry_point_file_writer.mjs
4176
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/new_entry_point_file_writer.mjs
4177
4177
  var NGCC_DIRECTORY = "__ivy_ngcc__";
4178
4178
  var NGCC_PROPERTY_EXTENSION = "_ivy_ngcc";
4179
4179
  var NewEntryPointFileWriter = class extends InPlaceFileWriter {
@@ -4281,7 +4281,7 @@ var NewEntryPointFileWriter = class extends InPlaceFileWriter {
4281
4281
  }
4282
4282
  };
4283
4283
 
4284
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/entry_point_collector.mjs
4284
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/entry_point_collector.mjs
4285
4285
  var EntryPointCollector = class {
4286
4286
  constructor(fs5, config, logger, resolver) {
4287
4287
  this.fs = fs5;
@@ -4359,7 +4359,7 @@ function isIgnorablePath(path7) {
4359
4359
  return path7.startsWith(".") || path7 === "node_modules" || path7 === NGCC_DIRECTORY;
4360
4360
  }
4361
4361
 
4362
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/path_mappings.mjs
4362
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/path_mappings.mjs
4363
4363
  function getPathMappingsFromTsConfig(fs5, tsConfig, projectPath) {
4364
4364
  if (tsConfig !== null && tsConfig.options.baseUrl !== void 0 && tsConfig.options.paths !== void 0) {
4365
4365
  return {
@@ -4369,7 +4369,7 @@ function getPathMappingsFromTsConfig(fs5, tsConfig, projectPath) {
4369
4369
  }
4370
4370
  }
4371
4371
 
4372
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/tracing_entry_point_finder.mjs
4372
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/tracing_entry_point_finder.mjs
4373
4373
  var TracingEntryPointFinder = class {
4374
4374
  constructor(fs5, config, logger, resolver, basePath, pathMappings) {
4375
4375
  this.fs = fs5;
@@ -4406,7 +4406,7 @@ var TracingEntryPointFinder = class {
4406
4406
  }
4407
4407
  };
4408
4408
 
4409
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/program_based_entry_point_finder.mjs
4409
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/program_based_entry_point_finder.mjs
4410
4410
  var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4411
4411
  constructor(fs5, config, logger, resolver, entryPointCollector, entryPointManifest, basePath, tsConfig, projectPath) {
4412
4412
  super(fs5, config, logger, resolver, basePath, getPathMappingsFromTsConfig(fs5, tsConfig, projectPath));
@@ -4457,8 +4457,8 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4457
4457
  }
4458
4458
  };
4459
4459
 
4460
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4461
- var NGCC_VERSION = "13.0.0-rc.2";
4460
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4461
+ var NGCC_VERSION = "13.0.0-rc.3";
4462
4462
  function needsCleaning(packageJson) {
4463
4463
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
4464
4464
  }
@@ -4499,7 +4499,7 @@ function markAsProcessed(pkgJsonUpdater, packageJson, packageJsonPath, formatPro
4499
4499
  update.writeChanges(packageJsonPath, packageJson);
4500
4500
  }
4501
4501
 
4502
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/targeted_entry_point_finder.mjs
4502
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/entry_point_finder/targeted_entry_point_finder.mjs
4503
4503
  var TargetedEntryPointFinder = class extends TracingEntryPointFinder {
4504
4504
  constructor(fs5, config, logger, resolver, basePath, pathMappings, targetPath) {
4505
4505
  super(fs5, config, logger, resolver, basePath, pathMappings);
@@ -4614,7 +4614,7 @@ var TargetedEntryPointFinder = class extends TracingEntryPointFinder {
4614
4614
  }
4615
4615
  };
4616
4616
 
4617
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/api.mjs
4617
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/api.mjs
4618
4618
  var DtsProcessing;
4619
4619
  (function(DtsProcessing2) {
4620
4620
  DtsProcessing2[DtsProcessing2["Yes"] = 0] = "Yes";
@@ -4623,7 +4623,7 @@ var DtsProcessing;
4623
4623
  })(DtsProcessing || (DtsProcessing = {}));
4624
4624
  var TaskDependencies = Map;
4625
4625
 
4626
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/utils.mjs
4626
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/utils.mjs
4627
4627
  var stringifyTask = (task) => `{entryPoint: ${task.entryPoint.name}, formatProperty: ${task.formatProperty}, processDts: ${DtsProcessing[task.processDts]}}`;
4628
4628
  function computeTaskDependencies(tasks, graph) {
4629
4629
  const dependencies = new TaskDependencies();
@@ -4683,7 +4683,7 @@ function sortTasksByPriority(tasks, dependencies) {
4683
4683
  });
4684
4684
  }
4685
4685
 
4686
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/base_task_queue.mjs
4686
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/base_task_queue.mjs
4687
4687
  var BaseTaskQueue = class {
4688
4688
  constructor(logger, tasks, dependencies) {
4689
4689
  this.logger = logger;
@@ -4749,7 +4749,7 @@ ${indentation}- ${stringifyTask(task)}`).join("");
4749
4749
  }
4750
4750
  };
4751
4751
 
4752
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/parallel_task_queue.mjs
4752
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/parallel_task_queue.mjs
4753
4753
  var ParallelTaskQueue = class extends BaseTaskQueue {
4754
4754
  constructor(logger, tasks, dependencies) {
4755
4755
  super(logger, sortTasksByPriority(tasks, dependencies), dependencies);
@@ -4789,7 +4789,7 @@ ${indentation}- ${stringifyTask(task)} (${blockingTasks.size}): ` + this.stringi
4789
4789
  }
4790
4790
  };
4791
4791
 
4792
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/serial_task_queue.mjs
4792
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/queues/serial_task_queue.mjs
4793
4793
  var SerialTaskQueue = class extends BaseTaskQueue {
4794
4794
  computeNextTask() {
4795
4795
  const nextTask = this.tasks.shift() || null;
@@ -4804,7 +4804,7 @@ var SerialTaskQueue = class extends BaseTaskQueue {
4804
4804
  }
4805
4805
  };
4806
4806
 
4807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/utils.mjs
4807
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/utils.mjs
4808
4808
  function isLocalDirectory(fs5, path7) {
4809
4809
  if (fs5.exists(path7)) {
4810
4810
  const stat = fs5.lstat(path7);
@@ -4814,7 +4814,7 @@ function isLocalDirectory(fs5, path7) {
4814
4814
  }
4815
4815
  }
4816
4816
 
4817
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/cleaning_strategies.mjs
4817
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/cleaning_strategies.mjs
4818
4818
  var PackageJsonCleaner = class {
4819
4819
  constructor(fs5) {
4820
4820
  this.fs = fs5;
@@ -4853,7 +4853,7 @@ var BackupFileCleaner = class {
4853
4853
  }
4854
4854
  };
4855
4855
 
4856
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/package_cleaner.mjs
4856
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/cleaning/package_cleaner.mjs
4857
4857
  var PackageCleaner = class {
4858
4858
  constructor(fs5, cleaners) {
4859
4859
  this.fs = fs5;
@@ -4896,7 +4896,7 @@ function cleanOutdatedPackages(fileSystem, entryPoints) {
4896
4896
  return packagesToClean.size > 0;
4897
4897
  }
4898
4898
 
4899
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/analyze_entry_points.mjs
4899
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/analyze_entry_points.mjs
4900
4900
  function getAnalyzeEntryPointsFn(logger, finder, fileSystem, supportedPropertiesToConsider, typingsOnly, compileAllFormats, propertiesToConsider, inParallel) {
4901
4901
  return () => {
4902
4902
  logger.debug("Analyzing entry-points...");
@@ -4985,11 +4985,11 @@ function getTaskQueue(logger, inParallel, tasks, graph) {
4985
4985
  return inParallel ? new ParallelTaskQueue(logger, tasks, dependencies) : new SerialTaskQueue(logger, tasks, dependencies);
4986
4986
  }
4987
4987
 
4988
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/master.mjs
4988
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/master.mjs
4989
4989
  import cluster2 from "cluster";
4990
4990
  import module3 from "module";
4991
4991
 
4992
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/utils.mjs
4992
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/utils.mjs
4993
4993
  import cluster from "cluster";
4994
4994
  var Deferred = class {
4995
4995
  constructor() {
@@ -5012,7 +5012,7 @@ var sendMessageToWorker = (workerId, msg) => {
5012
5012
  });
5013
5013
  };
5014
5014
 
5015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/master.mjs
5015
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/master.mjs
5016
5016
  var ClusterMaster = class {
5017
5017
  constructor(maxWorkerCount, fileSystem, logger, fileWriter, pkgJsonUpdater, analyzeEntryPoints, createTaskCompletedCallback) {
5018
5018
  this.maxWorkerCount = maxWorkerCount;
@@ -5205,7 +5205,7 @@ function getClusterWorkerScriptPath(fileSystem) {
5205
5205
  return fileSystem.resolve(workerScriptPath);
5206
5206
  }
5207
5207
 
5208
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/executor.mjs
5208
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/executor.mjs
5209
5209
  var ClusterExecutor = class {
5210
5210
  constructor(workerCount, fileSystem, logger, fileWriter, pkgJsonUpdater, lockFile, createTaskCompletedCallback) {
5211
5211
  this.workerCount = workerCount;
@@ -5225,10 +5225,10 @@ var ClusterExecutor = class {
5225
5225
  }
5226
5226
  };
5227
5227
 
5228
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
5228
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
5229
5229
  import ts62 from "typescript";
5230
5230
 
5231
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
5231
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
5232
5232
  var ErrorCode;
5233
5233
  (function(ErrorCode2) {
5234
5234
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -5279,7 +5279,7 @@ var ErrorCode;
5279
5279
  ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
5280
5280
  })(ErrorCode || (ErrorCode = {}));
5281
5281
 
5282
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
5282
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
5283
5283
  var COMPILER_ERRORS_WITH_GUIDES = new Set([
5284
5284
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
5285
5285
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -5290,10 +5290,10 @@ var COMPILER_ERRORS_WITH_GUIDES = new Set([
5290
5290
  ErrorCode.COMPONENT_INVALID_SHADOW_DOM_SELECTOR
5291
5291
  ]);
5292
5292
 
5293
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
5293
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
5294
5294
  import ts18 from "typescript";
5295
5295
 
5296
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
5296
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
5297
5297
  var ERROR_CODE_MATCHER = /(\u001b\[\d+m ?)TS-99(\d+: ?\u001b\[\d+m)/g;
5298
5298
  function replaceTsWithNgInErrors(errors) {
5299
5299
  return errors.replace(ERROR_CODE_MATCHER, "$1NG$2");
@@ -5302,7 +5302,7 @@ function ngErrorCode(code) {
5302
5302
  return parseInt("-99" + code);
5303
5303
  }
5304
5304
 
5305
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
5305
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
5306
5306
  var FatalDiagnosticError = class {
5307
5307
  constructor(code, node, message, relatedInformation) {
5308
5308
  this.code = code;
@@ -5342,10 +5342,10 @@ function isFatalDiagnosticError(err) {
5342
5342
  return err._isFatalDiagnosticError === true;
5343
5343
  }
5344
5344
 
5345
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
5345
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
5346
5346
  import ts20 from "typescript";
5347
5347
 
5348
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/patch_ts_expando_initializer.mjs
5348
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/patch_ts_expando_initializer.mjs
5349
5349
  import ts19 from "typescript";
5350
5350
  function patchTsGetExpandoInitializer() {
5351
5351
  if (isTs31778GetExpandoInitializerFixed()) {
@@ -5450,7 +5450,7 @@ function makeUnsupportedTypeScriptError() {
5450
5450
  return new Error("The TypeScript version used is not supported by ngcc.");
5451
5451
  }
5452
5452
 
5453
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
5453
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
5454
5454
  function makeBundleProgram(fs5, isCore, pkg, path7, r3FileName, options, host, additionalFiles = []) {
5455
5455
  const r3SymbolsPath = isCore ? findR3SymbolsPath(fs5, fs5.dirname(path7), r3FileName) : null;
5456
5456
  let rootPaths = r3SymbolsPath ? [path7, r3SymbolsPath, ...additionalFiles] : [path7, ...additionalFiles];
@@ -5480,7 +5480,7 @@ function findR3SymbolsPath(fs5, directory, filename) {
5480
5480
  return null;
5481
5481
  }
5482
5482
 
5483
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/ngcc_compiler_host.mjs
5483
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/ngcc_compiler_host.mjs
5484
5484
  import ts21 from "typescript";
5485
5485
  var NgccSourcesCompilerHost = class extends NgtscCompilerHost {
5486
5486
  constructor(fs5, options, cache, moduleResolutionCache, packagePath) {
@@ -5525,7 +5525,7 @@ var NgccDtsCompilerHost = class extends NgtscCompilerHost {
5525
5525
  }
5526
5526
  };
5527
5527
 
5528
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/source_file_cache.mjs
5528
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/source_file_cache.mjs
5529
5529
  import ts22 from "typescript";
5530
5530
  var SharedFileCache = class {
5531
5531
  constructor(fs5) {
@@ -5626,7 +5626,7 @@ function createModuleResolutionCache(fs5) {
5626
5626
  });
5627
5627
  }
5628
5628
 
5629
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point_bundle.mjs
5629
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point_bundle.mjs
5630
5630
  function makeEntryPointBundle(fs5, entryPoint, sharedFileCache, moduleResolutionCache, formatPath, isCore, format, dtsProcessing, pathMappings, mirrorDtsFromSrc = false, enableI18nLegacyMessageIdFormat = true) {
5631
5631
  const rootDir = entryPoint.packagePath;
5632
5632
  const options = __spreadValues({ allowJs: true, maxNodeModuleJsDepth: Infinity, rootDir }, pathMappings);
@@ -5667,13 +5667,13 @@ function computePotentialDtsFilesFromJsFiles(fs5, srcProgram, formatPath, typing
5667
5667
  return additionalFiles;
5668
5668
  }
5669
5669
 
5670
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
5670
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
5671
5671
  import ts61 from "typescript";
5672
5672
 
5673
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
5673
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
5674
5674
  import { ConstantPool as ConstantPool2 } from "@angular/compiler";
5675
5675
 
5676
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
5676
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
5677
5677
  var PerfPhase;
5678
5678
  (function(PerfPhase2) {
5679
5679
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -5738,7 +5738,7 @@ var PerfCheckpoint;
5738
5738
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
5739
5739
  })(PerfCheckpoint || (PerfCheckpoint = {}));
5740
5740
 
5741
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
5741
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
5742
5742
  var NoopPerfRecorder = class {
5743
5743
  eventCount() {
5744
5744
  }
@@ -5755,18 +5755,18 @@ var NoopPerfRecorder = class {
5755
5755
  };
5756
5756
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
5757
5757
 
5758
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/component.mjs
5758
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/component.mjs
5759
5759
  import { compileClassMetadata as compileClassMetadata3, compileComponentFromMetadata, compileDeclareClassMetadata as compileDeclareClassMetadata3, compileDeclareComponentFromMetadata, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DomElementSchemaRegistry, ExternalExpr as ExternalExpr7, FactoryTarget as FactoryTarget3, InterpolationConfig, makeBindingParser as makeBindingParser2, ParseSourceFile as ParseSourceFile2, parseTemplate, R3TargetBinder, SelectorMatcher, ViewEncapsulation, WrappedNodeExpr as WrappedNodeExpr6 } from "@angular/compiler";
5760
5760
  import ts46 from "typescript";
5761
5761
 
5762
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
5762
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
5763
5763
  import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
5764
5764
 
5765
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
5765
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
5766
5766
  import { ExternalExpr, ExternalReference, WrappedNodeExpr } from "@angular/compiler";
5767
5767
  import ts24 from "typescript";
5768
5768
 
5769
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
5769
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
5770
5770
  import ts23 from "typescript";
5771
5771
  function findExportedNameOfNode(target, file, reflector) {
5772
5772
  const exports = reflector.getExportsOfModule(file);
@@ -5790,7 +5790,7 @@ function findExportedNameOfNode(target, file, reflector) {
5790
5790
  return foundExportName;
5791
5791
  }
5792
5792
 
5793
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
5793
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
5794
5794
  var ImportFlags;
5795
5795
  (function(ImportFlags2) {
5796
5796
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -5920,7 +5920,7 @@ var LogicalProjectStrategy = class {
5920
5920
  }
5921
5921
  };
5922
5922
 
5923
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
5923
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
5924
5924
  var PrivateExportAliasingHost = class {
5925
5925
  constructor(host) {
5926
5926
  this.host = host;
@@ -5950,13 +5950,13 @@ var PrivateExportAliasingHost = class {
5950
5950
  }
5951
5951
  };
5952
5952
 
5953
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
5953
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
5954
5954
  function relativePathBetween(from, to) {
5955
5955
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
5956
5956
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
5957
5957
  }
5958
5958
 
5959
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
5959
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
5960
5960
  var NoopImportRewriter = class {
5961
5961
  shouldImportSymbol(symbol, specifier) {
5962
5962
  return true;
@@ -6014,14 +6014,14 @@ function validateAndRewriteCoreSymbol(name) {
6014
6014
  return CORE_SUPPORTED_SYMBOLS.get(name);
6015
6015
  }
6016
6016
 
6017
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
6017
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
6018
6018
  import ts25 from "typescript";
6019
6019
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
6020
6020
  function attachDefaultImportDeclaration(expr, importDecl) {
6021
6021
  expr[DefaultImportDeclaration] = importDecl;
6022
6022
  }
6023
6023
 
6024
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
6024
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
6025
6025
  var Reference = class {
6026
6026
  constructor(node, bestGuessOwningModule = null) {
6027
6027
  this.node = node;
@@ -6084,7 +6084,7 @@ var Reference = class {
6084
6084
  }
6085
6085
  };
6086
6086
 
6087
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
6087
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
6088
6088
  var ModuleResolver2 = class {
6089
6089
  constructor(program, compilerOptions, host, moduleResolutionCache) {
6090
6090
  this.program = program;
@@ -6101,7 +6101,7 @@ var ModuleResolver2 = class {
6101
6101
  }
6102
6102
  };
6103
6103
 
6104
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
6104
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
6105
6105
  import ts26 from "typescript";
6106
6106
  var SemanticSymbol = class {
6107
6107
  constructor(decl) {
@@ -6117,13 +6117,13 @@ function getSymbolIdentifier(decl) {
6117
6117
  return decl.name.text;
6118
6118
  }
6119
6119
 
6120
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
6120
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
6121
6121
  import { ExternalExpr as ExternalExpr3 } from "@angular/compiler";
6122
6122
 
6123
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
6123
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
6124
6124
  import ts27 from "typescript";
6125
6125
 
6126
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
6126
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
6127
6127
  function isSymbolEqual(a, b) {
6128
6128
  if (a.decl === b.decl) {
6129
6129
  return true;
@@ -6173,7 +6173,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
6173
6173
  return true;
6174
6174
  }
6175
6175
 
6176
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
6176
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
6177
6177
  function extractSemanticTypeParameters(node) {
6178
6178
  if (!ts27.isClassDeclaration(node) || node.typeParameters === void 0) {
6179
6179
  return null;
@@ -6193,17 +6193,17 @@ function isTypeParameterEqual(a, b) {
6193
6193
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
6194
6194
  }
6195
6195
 
6196
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
6196
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
6197
6197
  var MetaType;
6198
6198
  (function(MetaType2) {
6199
6199
  MetaType2[MetaType2["Pipe"] = 0] = "Pipe";
6200
6200
  MetaType2[MetaType2["Directive"] = 1] = "Directive";
6201
6201
  })(MetaType || (MetaType = {}));
6202
6202
 
6203
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
6203
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
6204
6204
  import ts29 from "typescript";
6205
6205
 
6206
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
6206
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
6207
6207
  var ClassPropertyMapping = class {
6208
6208
  constructor(forwardMap) {
6209
6209
  this.forwardMap = forwardMap;
@@ -6279,7 +6279,7 @@ function reverseMapFromForwardMap(forwardMap) {
6279
6279
  return reverseMap;
6280
6280
  }
6281
6281
 
6282
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
6282
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
6283
6283
  import ts28 from "typescript";
6284
6284
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
6285
6285
  if (!ts28.isTupleTypeNode(def)) {
@@ -6446,7 +6446,7 @@ function hasInjectableFields(clazz, host) {
6446
6446
  return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
6447
6447
  }
6448
6448
 
6449
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
6449
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
6450
6450
  var DtsMetadataReader = class {
6451
6451
  constructor(checker, reflector) {
6452
6452
  this.checker = checker;
@@ -6546,7 +6546,7 @@ function readBaseClass(clazz, checker, reflector) {
6546
6546
  return null;
6547
6547
  }
6548
6548
 
6549
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
6549
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
6550
6550
  function flattenInheritedDirectiveMetadata(reader, dir) {
6551
6551
  const topMeta = reader.getDirectiveMetadata(dir);
6552
6552
  if (topMeta === null) {
@@ -6603,7 +6603,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
6603
6603
  });
6604
6604
  }
6605
6605
 
6606
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
6606
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
6607
6607
  var LocalMetadataRegistry = class {
6608
6608
  constructor() {
6609
6609
  this.directives = new Map();
@@ -6662,7 +6662,7 @@ var InjectableClassRegistry = class {
6662
6662
  }
6663
6663
  };
6664
6664
 
6665
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
6665
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
6666
6666
  var ResourceRegistry = class {
6667
6667
  constructor() {
6668
6668
  this.externalTemplateToComponentsMap = new Map();
@@ -6727,10 +6727,10 @@ var ResourceRegistry = class {
6727
6727
  }
6728
6728
  };
6729
6729
 
6730
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
6730
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
6731
6731
  import ts30 from "typescript";
6732
6732
 
6733
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
6733
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
6734
6734
  var DynamicValue = class {
6735
6735
  constructor(node, reason, code) {
6736
6736
  this.node = node;
@@ -6815,7 +6815,7 @@ var DynamicValue = class {
6815
6815
  }
6816
6816
  };
6817
6817
 
6818
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
6818
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
6819
6819
  var ResolvedModule = class {
6820
6820
  constructor(exports, evaluate) {
6821
6821
  this.exports = exports;
@@ -6845,7 +6845,7 @@ var EnumValue = class {
6845
6845
  var KnownFn = class {
6846
6846
  };
6847
6847
 
6848
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
6848
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
6849
6849
  function describeResolvedType(value, maxDepth = 1) {
6850
6850
  var _a, _b;
6851
6851
  if (value === null) {
@@ -6971,10 +6971,10 @@ function getContainerNode(node) {
6971
6971
  return node.getSourceFile();
6972
6972
  }
6973
6973
 
6974
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
6974
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
6975
6975
  import ts31 from "typescript";
6976
6976
 
6977
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
6977
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
6978
6978
  var ArraySliceBuiltinFn = class extends KnownFn {
6979
6979
  constructor(lhs) {
6980
6980
  super();
@@ -7027,7 +7027,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
7027
7027
  }
7028
7028
  };
7029
7029
 
7030
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
7030
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
7031
7031
  var AssignHelperFn = class extends ObjectAssignBuiltinFn {
7032
7032
  };
7033
7033
  var SpreadHelperFn = class extends KnownFn {
@@ -7080,7 +7080,7 @@ var ReadHelperFn = class extends KnownFn {
7080
7080
  }
7081
7081
  };
7082
7082
 
7083
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
7083
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
7084
7084
  var jsGlobalObjectValue = new Map([["assign", new ObjectAssignBuiltinFn()]]);
7085
7085
  var assignTsHelperFn = new AssignHelperFn();
7086
7086
  var spreadTsHelperFn = new SpreadHelperFn();
@@ -7104,7 +7104,7 @@ function resolveKnownDeclaration(decl) {
7104
7104
  }
7105
7105
  }
7106
7106
 
7107
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
7107
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
7108
7108
  function literalBinaryOp(op) {
7109
7109
  return { op, literal: true };
7110
7110
  }
@@ -7689,7 +7689,7 @@ function owningModule(context, override = null) {
7689
7689
  }
7690
7690
  }
7691
7691
 
7692
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
7692
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
7693
7693
  var PartialEvaluator = class {
7694
7694
  constructor(host, checker, dependencyTracker) {
7695
7695
  this.host = host;
@@ -7709,7 +7709,7 @@ var PartialEvaluator = class {
7709
7709
  }
7710
7710
  };
7711
7711
 
7712
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
7712
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
7713
7713
  var CompilationMode;
7714
7714
  (function(CompilationMode2) {
7715
7715
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -7727,13 +7727,13 @@ var HandlerFlags;
7727
7727
  HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
7728
7728
  })(HandlerFlags || (HandlerFlags = {}));
7729
7729
 
7730
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
7730
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
7731
7731
  import ts32 from "typescript";
7732
7732
 
7733
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
7733
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
7734
7734
  import ts33 from "typescript";
7735
7735
 
7736
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
7736
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
7737
7737
  var TraitState;
7738
7738
  (function(TraitState2) {
7739
7739
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -7788,7 +7788,7 @@ var TraitImpl = class {
7788
7788
  }
7789
7789
  };
7790
7790
 
7791
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
7791
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
7792
7792
  var TraitCompiler = class {
7793
7793
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater) {
7794
7794
  this.handlers = handlers;
@@ -8225,10 +8225,10 @@ var TraitCompiler = class {
8225
8225
  }
8226
8226
  };
8227
8227
 
8228
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
8228
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
8229
8229
  import ts38 from "typescript";
8230
8230
 
8231
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
8231
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
8232
8232
  var Context = class {
8233
8233
  constructor(isStatement) {
8234
8234
  this.isStatement = isStatement;
@@ -8241,7 +8241,7 @@ var Context = class {
8241
8241
  }
8242
8242
  };
8243
8243
 
8244
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
8244
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
8245
8245
  import ts34 from "typescript";
8246
8246
  var ImportManager = class {
8247
8247
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -8277,7 +8277,7 @@ var ImportManager = class {
8277
8277
  }
8278
8278
  };
8279
8279
 
8280
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
8280
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
8281
8281
  import {
8282
8282
  BinaryOperator,
8283
8283
  ConditionalExpr,
@@ -8521,7 +8521,7 @@ function createRange(span) {
8521
8521
  };
8522
8522
  }
8523
8523
 
8524
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
8524
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
8525
8525
  import {
8526
8526
  BuiltinTypeName
8527
8527
  } from "@angular/compiler";
@@ -8700,7 +8700,7 @@ var TypeTranslatorVisitor = class {
8700
8700
  }
8701
8701
  };
8702
8702
 
8703
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
8703
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
8704
8704
  import ts36 from "typescript";
8705
8705
  var PureAnnotation;
8706
8706
  (function(PureAnnotation2) {
@@ -8872,15 +8872,15 @@ function attachComments(statement, leadingComments) {
8872
8872
  }
8873
8873
  }
8874
8874
 
8875
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
8875
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
8876
8876
  function translateStatement(statement, imports, options = {}) {
8877
8877
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
8878
8878
  }
8879
8879
 
8880
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
8880
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
8881
8881
  import ts37 from "typescript";
8882
8882
 
8883
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
8883
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
8884
8884
  var DtsTransformRegistry = class {
8885
8885
  constructor() {
8886
8886
  this.ivyDeclarationTransforms = new Map();
@@ -8931,20 +8931,20 @@ function markForEmitAsSingleLine(node) {
8931
8931
  ts38.forEachChild(node, markForEmitAsSingleLine);
8932
8932
  }
8933
8933
 
8934
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
8934
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
8935
8935
  import { ConstantPool } from "@angular/compiler";
8936
8936
  import ts40 from "typescript";
8937
8937
 
8938
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
8938
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
8939
8939
  import ts39 from "typescript";
8940
8940
 
8941
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
8941
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
8942
8942
  var NO_DECORATORS = new Set();
8943
8943
 
8944
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/diagnostics.mjs
8944
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/diagnostics.mjs
8945
8945
  import ts42 from "typescript";
8946
8946
 
8947
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/util.mjs
8947
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/util.mjs
8948
8948
  import { ExternalExpr as ExternalExpr4, LiteralExpr, ParseLocation, ParseSourceFile, ParseSourceSpan, ReadPropExpr, WrappedNodeExpr as WrappedNodeExpr2 } from "@angular/compiler";
8949
8949
  import ts41 from "typescript";
8950
8950
  function getConstructorDependencies(clazz, reflector, isCore) {
@@ -9304,7 +9304,7 @@ function toFactoryMetadata(meta, target) {
9304
9304
  };
9305
9305
  }
9306
9306
 
9307
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/diagnostics.mjs
9307
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/diagnostics.mjs
9308
9308
  function createValueHasWrongTypeError(node, value, messageText) {
9309
9309
  var _a;
9310
9310
  let chainedMessage;
@@ -9400,11 +9400,11 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, reader) {
9400
9400
  return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${dirOrComp.toLowerCase()} ${node.name.text} inherits its constructor from ${baseClassName}, but the latter does not have an Angular decorator of its own. Dependency injection will not be able to resolve the parameters of ${baseClassName}'s constructor. Either add a @Directive decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
9401
9401
  }
9402
9402
 
9403
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/directive.mjs
9403
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/directive.mjs
9404
9404
  import { compileClassMetadata, compileDeclareClassMetadata, compileDeclareDirectiveFromMetadata, compileDirectiveFromMetadata, emitDistinctChangesOnlyDefaultValue, ExternalExpr as ExternalExpr5, FactoryTarget, getSafePropertyAccessString, makeBindingParser, parseHostBindings, verifyHostBindings, WrappedNodeExpr as WrappedNodeExpr4 } from "@angular/compiler";
9405
9405
  import ts44 from "typescript";
9406
9406
 
9407
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/factory.mjs
9407
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/factory.mjs
9408
9408
  import { compileDeclareFactoryFunction, compileFactoryFunction } from "@angular/compiler";
9409
9409
  function compileNgFactoryDefField(metadata) {
9410
9410
  const res = compileFactoryFunction(metadata);
@@ -9415,7 +9415,7 @@ function compileDeclareFactory(metadata) {
9415
9415
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
9416
9416
  }
9417
9417
 
9418
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/metadata.mjs
9418
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/metadata.mjs
9419
9419
  import { FunctionExpr, LiteralArrayExpr, LiteralExpr as LiteralExpr2, literalMap, ReturnStatement, WrappedNodeExpr as WrappedNodeExpr3 } from "@angular/compiler";
9420
9420
  import ts43 from "typescript";
9421
9421
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
@@ -9503,7 +9503,7 @@ function removeIdentifierReferences(node, name) {
9503
9503
  return result.transformed[0];
9504
9504
  }
9505
9505
 
9506
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/directive.mjs
9506
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/directive.mjs
9507
9507
  var EMPTY_OBJECT = {};
9508
9508
  var FIELD_DECORATORS = [
9509
9509
  "Input",
@@ -10065,8 +10065,8 @@ var QUERY_TYPES = new Set([
10065
10065
  "ViewChildren"
10066
10066
  ]);
10067
10067
 
10068
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/ng_module.mjs
10069
- import { compileClassMetadata as compileClassMetadata2, compileDeclareClassMetadata as compileDeclareClassMetadata2, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileInjector, compileNgModule, CUSTOM_ELEMENTS_SCHEMA, ExternalExpr as ExternalExpr6, FactoryTarget as FactoryTarget2, InvokeFunctionExpr, LiteralArrayExpr as LiteralArrayExpr2, LiteralExpr as LiteralExpr3, NO_ERRORS_SCHEMA, R3Identifiers, STRING_TYPE, WrappedNodeExpr as WrappedNodeExpr5 } from "@angular/compiler";
10068
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/ng_module.mjs
10069
+ import { compileClassMetadata as compileClassMetadata2, compileDeclareClassMetadata as compileDeclareClassMetadata2, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileInjector, compileNgModule, CUSTOM_ELEMENTS_SCHEMA, ExternalExpr as ExternalExpr6, FactoryTarget as FactoryTarget2, InvokeFunctionExpr, LiteralArrayExpr as LiteralArrayExpr2, NO_ERRORS_SCHEMA, R3Identifiers, WrappedNodeExpr as WrappedNodeExpr5 } from "@angular/compiler";
10070
10070
  import ts45 from "typescript";
10071
10071
  var NgModuleSymbol = class extends SemanticSymbol {
10072
10072
  constructor() {
@@ -10113,7 +10113,7 @@ var NgModuleSymbol = class extends SemanticSymbol {
10113
10113
  }
10114
10114
  };
10115
10115
  var NgModuleDecoratorHandler = class {
10116
- constructor(reflector, evaluator, metaReader, metaRegistry, scopeRegistry, referencesRegistry, isCore, refEmitter, factoryTracker, annotateForClosureCompiler, injectableRegistry, perf, localeId) {
10116
+ constructor(reflector, evaluator, metaReader, metaRegistry, scopeRegistry, referencesRegistry, isCore, refEmitter, factoryTracker, annotateForClosureCompiler, injectableRegistry, perf) {
10117
10117
  this.reflector = reflector;
10118
10118
  this.evaluator = evaluator;
10119
10119
  this.metaReader = metaReader;
@@ -10126,7 +10126,6 @@ var NgModuleDecoratorHandler = class {
10126
10126
  this.annotateForClosureCompiler = annotateForClosureCompiler;
10127
10127
  this.injectableRegistry = injectableRegistry;
10128
10128
  this.perf = perf;
10129
- this.localeId = localeId;
10130
10129
  this.precedence = HandlerPrecedence.PRIMARY;
10131
10130
  this.name = NgModuleDecoratorHandler.name;
10132
10131
  }
@@ -10412,14 +10411,6 @@ var NgModuleDecoratorHandler = class {
10412
10411
  type: injectorDef.type
10413
10412
  }
10414
10413
  ];
10415
- if (this.localeId) {
10416
- res.push({
10417
- name: "\u0275loc",
10418
- initializer: new LiteralExpr3(this.localeId),
10419
- statements: [],
10420
- type: STRING_TYPE
10421
- });
10422
- }
10423
10414
  return res;
10424
10415
  }
10425
10416
  _toR3Reference(valueRef, valueContext, typeContext) {
@@ -10508,7 +10499,7 @@ function isNgModule(node, compilation) {
10508
10499
  return !compilation.directives.some((directive) => directive.ref.node === node) && !compilation.pipes.some((pipe) => pipe.ref.node === node);
10509
10500
  }
10510
10501
 
10511
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/component.mjs
10502
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/component.mjs
10512
10503
  var EMPTY_MAP = new Map();
10513
10504
  var EMPTY_ARRAY = [];
10514
10505
  var ComponentSymbol = class extends DirectiveSymbol {
@@ -11392,8 +11383,8 @@ function checkCustomElementSelectorForErrors(selector) {
11392
11383
  return null;
11393
11384
  }
11394
11385
 
11395
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
11396
- import { compileClassMetadata as compileClassMetadata4, compileDeclareClassMetadata as compileDeclareClassMetadata4, compileDeclareInjectableFromMetadata, compileInjectable, createR3ProviderExpression, FactoryTarget as FactoryTarget4, LiteralExpr as LiteralExpr4, WrappedNodeExpr as WrappedNodeExpr7 } from "@angular/compiler";
11386
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
11387
+ import { compileClassMetadata as compileClassMetadata4, compileDeclareClassMetadata as compileDeclareClassMetadata4, compileDeclareInjectableFromMetadata, compileInjectable, createR3ProviderExpression, FactoryTarget as FactoryTarget4, LiteralExpr as LiteralExpr3, WrappedNodeExpr as WrappedNodeExpr7 } from "@angular/compiler";
11397
11388
  import ts47 from "typescript";
11398
11389
  var InjectableDecoratorHandler = class {
11399
11390
  constructor(reflector, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
@@ -11481,7 +11472,7 @@ function extractInjectableMetadata(clazz, decorator, reflector) {
11481
11472
  type,
11482
11473
  typeArgumentCount,
11483
11474
  internalType,
11484
- providedIn: createR3ProviderExpression(new LiteralExpr4(null), false)
11475
+ providedIn: createR3ProviderExpression(new LiteralExpr3(null), false)
11485
11476
  };
11486
11477
  } else if (decorator.args.length === 1) {
11487
11478
  const metaNode = decorator.args[0];
@@ -11489,7 +11480,7 @@ function extractInjectableMetadata(clazz, decorator, reflector) {
11489
11480
  throw new FatalDiagnosticError(ErrorCode.DECORATOR_ARG_NOT_LITERAL, metaNode, `@Injectable argument must be an object literal`);
11490
11481
  }
11491
11482
  const meta = reflectObjectLiteral(metaNode);
11492
- const providedIn = meta.has("providedIn") ? getProviderExpression(meta.get("providedIn"), reflector) : createR3ProviderExpression(new LiteralExpr4(null), false);
11483
+ const providedIn = meta.has("providedIn") ? getProviderExpression(meta.get("providedIn"), reflector) : createR3ProviderExpression(new LiteralExpr3(null), false);
11493
11484
  let deps = void 0;
11494
11485
  if ((meta.has("useClass") || meta.has("useFactory")) && meta.has("deps")) {
11495
11486
  const depsExpr = meta.get("deps");
@@ -11592,7 +11583,7 @@ function getDep(dep, reflector) {
11592
11583
  return meta;
11593
11584
  }
11594
11585
 
11595
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
11586
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
11596
11587
  import { compileClassMetadata as compileClassMetadata5, compileDeclareClassMetadata as compileDeclareClassMetadata5, compileDeclarePipeFromMetadata, compilePipeFromMetadata, FactoryTarget as FactoryTarget5, WrappedNodeExpr as WrappedNodeExpr8 } from "@angular/compiler";
11597
11588
  import ts48 from "typescript";
11598
11589
  var PipeSymbol = class extends SemanticSymbol {
@@ -11717,7 +11708,7 @@ var PipeDecoratorHandler = class {
11717
11708
  }
11718
11709
  };
11719
11710
 
11720
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
11711
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
11721
11712
  var CycleAnalyzer = class {
11722
11713
  constructor(importGraph) {
11723
11714
  this.importGraph = importGraph;
@@ -11788,7 +11779,7 @@ var Cycle = class {
11788
11779
  }
11789
11780
  };
11790
11781
 
11791
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
11782
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
11792
11783
  import ts49 from "typescript";
11793
11784
  var ImportGraph = class {
11794
11785
  constructor(checker, perf) {
@@ -11871,7 +11862,7 @@ var Found = class {
11871
11862
  }
11872
11863
  };
11873
11864
 
11874
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
11865
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
11875
11866
  var MetadataDtsModuleScopeResolver = class {
11876
11867
  constructor(dtsMetaReader, aliasingHost) {
11877
11868
  this.dtsMetaReader = dtsMetaReader;
@@ -11957,7 +11948,7 @@ var MetadataDtsModuleScopeResolver = class {
11957
11948
  }
11958
11949
  };
11959
11950
 
11960
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
11951
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
11961
11952
  import { ExternalExpr as ExternalExpr8 } from "@angular/compiler";
11962
11953
  import ts50 from "typescript";
11963
11954
  var LocalModuleScopeRegistry = class {
@@ -12265,7 +12256,7 @@ function reexportCollision(module7, refA, refB) {
12265
12256
  ]);
12266
12257
  }
12267
12258
 
12268
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
12259
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
12269
12260
  import { CssSelector as CssSelector2, SelectorMatcher as SelectorMatcher2 } from "@angular/compiler";
12270
12261
  import ts51 from "typescript";
12271
12262
  var TypeCheckScopeRegistry = class {
@@ -12326,7 +12317,7 @@ var TypeCheckScopeRegistry = class {
12326
12317
  }
12327
12318
  };
12328
12319
 
12329
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/utils.mjs
12320
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/utils.mjs
12330
12321
  import ts52 from "typescript";
12331
12322
  function isClassDeclaration(clazz) {
12332
12323
  return isNamedClassDeclaration(clazz) || isNamedFunctionDeclaration(clazz) || isNamedVariableDeclaration(clazz);
@@ -12409,7 +12400,7 @@ function reifySourceFile(expr) {
12409
12400
  return stmt.declarationList.declarations[0].initializer;
12410
12401
  }
12411
12402
 
12412
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/missing_injectable_migration.mjs
12403
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/missing_injectable_migration.mjs
12413
12404
  var MissingInjectableMigration = class {
12414
12405
  apply(clazz, host) {
12415
12406
  const decorators = host.reflectionHost.getDecoratorsOfDeclaration(clazz);
@@ -12514,7 +12505,7 @@ function getAngularCoreDecoratorName(decorator) {
12514
12505
  return decorator.import.name;
12515
12506
  }
12516
12507
 
12517
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_child_migration.mjs
12508
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_child_migration.mjs
12518
12509
  var UndecoratedChildMigration = class {
12519
12510
  apply(clazz, host) {
12520
12511
  const moduleMeta = host.metadata.getNgModuleMetadata(new Reference(clazz));
@@ -12549,7 +12540,7 @@ var UndecoratedChildMigration = class {
12549
12540
  }
12550
12541
  };
12551
12542
 
12552
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_parent_migration.mjs
12543
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_parent_migration.mjs
12553
12544
  var UndecoratedParentMigration = class {
12554
12545
  apply(clazz, host) {
12555
12546
  if (!hasDirectiveDecorator(host, clazz) || hasConstructor(host, clazz)) {
@@ -12582,7 +12573,7 @@ function determineBaseClass(clazz, host) {
12582
12573
  return baseClass;
12583
12574
  }
12584
12575
 
12585
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/migration_host.mjs
12576
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/migration_host.mjs
12586
12577
  import ts53 from "typescript";
12587
12578
  var DefaultMigrationHost = class {
12588
12579
  constructor(reflectionHost, metadata, evaluator, compiler, entryPointPath) {
@@ -12642,7 +12633,7 @@ function createMigrationDiagnostic(diagnostic, source, decorator) {
12642
12633
  return clone;
12643
12634
  }
12644
12635
 
12645
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_trait_compiler.mjs
12636
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_trait_compiler.mjs
12646
12637
  var NgccTraitCompiler = class extends TraitCompiler {
12647
12638
  constructor(handlers, ngccReflector) {
12648
12639
  super(handlers, ngccReflector, NOOP_PERF_RECORDER, new NoIncrementalBuild(), true, CompilationMode.FULL, new DtsTransformRegistry(), null);
@@ -12687,10 +12678,10 @@ var NoIncrementalBuild = class {
12687
12678
  }
12688
12679
  };
12689
12680
 
12690
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/types.mjs
12681
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/types.mjs
12691
12682
  var DecorationAnalyses = Map;
12692
12683
 
12693
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
12684
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
12694
12685
  var NgccResourceLoader = class {
12695
12686
  constructor(fs5) {
12696
12687
  this.fs = fs5;
@@ -12846,7 +12837,7 @@ var DecorationAnalyzer = class {
12846
12837
  }
12847
12838
  };
12848
12839
 
12849
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/module_with_providers_analyzer.mjs
12840
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/module_with_providers_analyzer.mjs
12850
12841
  import ts54 from "typescript";
12851
12842
  var ModuleWithProvidersAnalyses = Map;
12852
12843
  var ModuleWithProvidersAnalyzer = class {
@@ -12985,7 +12976,7 @@ function isAnyKeyword(typeParam) {
12985
12976
  return typeParam.kind === ts54.SyntaxKind.AnyKeyword;
12986
12977
  }
12987
12978
 
12988
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_references_registry.mjs
12979
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_references_registry.mjs
12989
12980
  var NgccReferencesRegistry = class {
12990
12981
  constructor(host) {
12991
12982
  this.host = host;
@@ -13006,7 +12997,7 @@ var NgccReferencesRegistry = class {
13006
12997
  }
13007
12998
  };
13008
12999
 
13009
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/private_declarations_analyzer.mjs
13000
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/private_declarations_analyzer.mjs
13010
13001
  var PrivateDeclarationsAnalyzer = class {
13011
13002
  constructor(host, referencesRegistry) {
13012
13003
  this.host = host;
@@ -13047,7 +13038,7 @@ var PrivateDeclarationsAnalyzer = class {
13047
13038
  }
13048
13039
  };
13049
13040
 
13050
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/switch_marker_analyzer.mjs
13041
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/switch_marker_analyzer.mjs
13051
13042
  var SwitchMarkerAnalyses = Map;
13052
13043
  var SwitchMarkerAnalyzer = class {
13053
13044
  constructor(host, packagePath) {
@@ -13066,7 +13057,7 @@ var SwitchMarkerAnalyzer = class {
13066
13057
  }
13067
13058
  };
13068
13059
 
13069
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_host.mjs
13060
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_host.mjs
13070
13061
  import ts55 from "typescript";
13071
13062
  var CommonJsReflectionHost = class extends Esm5ReflectionHost {
13072
13063
  constructor(logger, isCore, src, dts = null) {
@@ -13230,7 +13221,7 @@ var CommonJsReflectionHost = class extends Esm5ReflectionHost {
13230
13221
  }
13231
13222
  };
13232
13223
 
13233
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/delegating_host.mjs
13224
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/host/delegating_host.mjs
13234
13225
  var DelegatingReflectionHost = class {
13235
13226
  constructor(tsHost, ngccHost) {
13236
13227
  this.tsHost = tsHost;
@@ -13354,16 +13345,16 @@ var DelegatingReflectionHost = class {
13354
13345
  }
13355
13346
  };
13356
13347
 
13357
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
13348
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
13358
13349
  import ts58 from "typescript";
13359
13350
 
13360
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
13351
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
13361
13352
  import ts57 from "typescript";
13362
13353
 
13363
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
13354
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
13364
13355
  import ts56 from "typescript";
13365
13356
 
13366
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/ngcc_import_rewriter.mjs
13357
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/ngcc_import_rewriter.mjs
13367
13358
  var NgccFlatImportRewriter = class {
13368
13359
  shouldImportSymbol(symbol, specifier) {
13369
13360
  if (specifier === "@angular/core") {
@@ -13384,7 +13375,7 @@ var NgccFlatImportRewriter = class {
13384
13375
  }
13385
13376
  };
13386
13377
 
13387
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/utils.mjs
13378
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/utils.mjs
13388
13379
  function getImportRewriter(r3SymbolsFile, isCore, isFlat) {
13389
13380
  if (isCore && isFlat) {
13390
13381
  return new NgccFlatImportRewriter();
@@ -13398,7 +13389,7 @@ function stripExtension3(filePath) {
13398
13389
  return filePath.replace(/\.(js|d\.ts)$/, "");
13399
13390
  }
13400
13391
 
13401
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
13392
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
13402
13393
  var EsmRenderingFormatter = class {
13403
13394
  constructor(fs5, host, isCore) {
13404
13395
  this.fs = fs5;
@@ -13566,7 +13557,7 @@ function getEndExceptSemicolon(statement) {
13566
13557
  return lastToken && lastToken.kind === ts56.SyntaxKind.SemicolonToken ? statement.getEnd() - 1 : statement.getEnd();
13567
13558
  }
13568
13559
 
13569
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
13560
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
13570
13561
  var Esm5RenderingFormatter = class extends EsmRenderingFormatter {
13571
13562
  addDefinitions(output, compiledClass, definitions) {
13572
13563
  const classSymbol = this.host.getClassSymbol(compiledClass.declaration);
@@ -13594,7 +13585,7 @@ Expected an ES5 IIFE wrapped function. But got:
13594
13585
  }
13595
13586
  };
13596
13587
 
13597
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
13588
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
13598
13589
  var CommonJsRenderingFormatter = class extends Esm5RenderingFormatter {
13599
13590
  constructor(fs5, commonJsHost, isCore) {
13600
13591
  super(fs5, commonJsHost, isCore);
@@ -13643,18 +13634,18 @@ exports.${e.asAlias} = ${importNamespace}${namedImport.symbol};`;
13643
13634
  }
13644
13635
  };
13645
13636
 
13646
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
13637
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
13647
13638
  import MagicString from "magic-string";
13648
13639
  import ts59 from "typescript";
13649
13640
 
13650
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/constants.mjs
13641
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/constants.mjs
13651
13642
  var IMPORT_PREFIX = "\u0275ngcc";
13652
13643
  var NGCC_TIMED_OUT_EXIT_CODE = 177;
13653
13644
 
13654
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/source_maps.mjs
13645
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/source_maps.mjs
13655
13646
  import mapHelpers3 from "convert-source-map";
13656
13647
 
13657
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
13648
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
13658
13649
  var ContentOrigin;
13659
13650
  (function(ContentOrigin2) {
13660
13651
  ContentOrigin2[ContentOrigin2["Provided"] = 0] = "Provided";
@@ -13662,11 +13653,11 @@ var ContentOrigin;
13662
13653
  ContentOrigin2[ContentOrigin2["FileSystem"] = 2] = "FileSystem";
13663
13654
  })(ContentOrigin || (ContentOrigin = {}));
13664
13655
 
13665
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
13656
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
13666
13657
  import mapHelpers from "convert-source-map";
13667
13658
  import { decode, encode } from "sourcemap-codec";
13668
13659
 
13669
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
13660
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
13670
13661
  function compareSegments(a, b) {
13671
13662
  return a.position - b.position;
13672
13663
  }
@@ -13686,7 +13677,7 @@ function offsetSegment(startOfLinePositions, marker, offset) {
13686
13677
  return { line, column, position, next: void 0 };
13687
13678
  }
13688
13679
 
13689
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
13680
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
13690
13681
  function removeSourceMapComments(contents) {
13691
13682
  return mapHelpers.removeMapFileComments(mapHelpers.removeComments(contents)).replace(/\n\n$/, "\n");
13692
13683
  }
@@ -13937,7 +13928,7 @@ var Cache = class {
13937
13928
  }
13938
13929
  };
13939
13930
 
13940
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
13931
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
13941
13932
  import mapHelpers2 from "convert-source-map";
13942
13933
  var SCHEME_MATCHER = /^([a-z][a-z0-9.-]*):\/\//i;
13943
13934
  var SourceFileLoader = class {
@@ -14054,7 +14045,7 @@ var SourceFileLoader = class {
14054
14045
  }
14055
14046
  };
14056
14047
 
14057
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/source_maps.mjs
14048
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/source_maps.mjs
14058
14049
  function renderSourceAndMap(logger, fs5, sourceFile, generatedMagicString) {
14059
14050
  var _a;
14060
14051
  const sourceFilePath = absoluteFromSourceFile(sourceFile);
@@ -14088,7 +14079,7 @@ ${sourceMapComment}` },
14088
14079
  }
14089
14080
  }
14090
14081
 
14091
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
14082
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
14092
14083
  var DtsRenderInfo = class {
14093
14084
  constructor() {
14094
14085
  this.classInfo = [];
@@ -14189,14 +14180,14 @@ function markForEmitAsSingleLine2(node) {
14189
14180
  ts59.forEachChild(node, markForEmitAsSingleLine2);
14190
14181
  }
14191
14182
 
14192
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
14183
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
14193
14184
  import { jsDocComment, WrappedNodeExpr as WrappedNodeExpr9, WritePropExpr } from "@angular/compiler";
14194
14185
  import MagicString2 from "magic-string";
14195
14186
 
14196
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/rendering_formatter.mjs
14187
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/rendering_formatter.mjs
14197
14188
  var RedundantDecoratorMap = Map;
14198
14189
 
14199
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
14190
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
14200
14191
  var Renderer = class {
14201
14192
  constructor(host, srcFormatter, fs5, logger, bundle, tsConfig = null) {
14202
14193
  this.host = host;
@@ -14303,7 +14294,7 @@ function createAssignmentStatement(receiverName, propName, initializer, leadingC
14303
14294
  return statement;
14304
14295
  }
14305
14296
 
14306
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/umd_rendering_formatter.mjs
14297
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/umd_rendering_formatter.mjs
14307
14298
  import ts60 from "typescript";
14308
14299
  var UmdRenderingFormatter = class extends Esm5RenderingFormatter {
14309
14300
  constructor(fs5, umdHost, isCore) {
@@ -14474,7 +14465,7 @@ function isTypeOf(node, ...types) {
14474
14465
  return ts60.isBinaryExpression(node) && ts60.isTypeOfExpression(node.left) && ts60.isIdentifier(node.left.expression) && types.indexOf(node.left.expression.text) !== -1;
14475
14466
  }
14476
14467
 
14477
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
14468
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
14478
14469
  var Transformer = class {
14479
14470
  constructor(fs5, logger, tsConfig = null) {
14480
14471
  this.fs = fs5;
@@ -14558,7 +14549,7 @@ function hasErrors(diagnostics) {
14558
14549
  return diagnostics.some((d) => d.category === ts61.DiagnosticCategory.Error);
14559
14550
  }
14560
14551
 
14561
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
14552
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
14562
14553
  function getCreateCompileFn(fileSystem, logger, fileWriter, enableI18nLegacyMessageIdFormat, tsConfig, pathMappings) {
14563
14554
  return (beforeWritingFiles, onTaskCompleted) => {
14564
14555
  const transformer = new Transformer(fileSystem, logger, tsConfig);
@@ -14597,7 +14588,7 @@ ${errors}`);
14597
14588
  };
14598
14589
  }
14599
14590
 
14600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/single_process_executor.mjs
14591
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/single_process_executor.mjs
14601
14592
  var SingleProcessorExecutorBase = class {
14602
14593
  constructor(logger, createTaskCompletedCallback) {
14603
14594
  this.logger = logger;
@@ -14639,7 +14630,7 @@ var SingleProcessExecutorAsync = class extends SingleProcessorExecutorBase {
14639
14630
  }
14640
14631
  };
14641
14632
 
14642
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/completion.mjs
14633
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/completion.mjs
14643
14634
  function composeTaskCompletedCallbacks(callbacks) {
14644
14635
  return (task, outcome, message) => {
14645
14636
  const callback = callbacks[outcome];
@@ -14679,7 +14670,7 @@ function createErrorMessage(fs5, task, message) {
14679
14670
  return `Failed to compile entry-point ${task.entryPoint.name} (${format})` + message;
14680
14671
  }
14681
14672
 
14682
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/async_locker.mjs
14673
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/async_locker.mjs
14683
14674
  var TimeoutError = class extends Error {
14684
14675
  constructor() {
14685
14676
  super(...arguments);
@@ -14728,11 +14719,11 @@ Waiting up to ${this.retryDelay * this.retryAttempts / 1e3}s for it to finish.
14728
14719
  }
14729
14720
  };
14730
14721
 
14731
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/index.mjs
14722
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/index.mjs
14732
14723
  import { fork } from "child_process";
14733
14724
  import module5 from "module";
14734
14725
 
14735
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
14726
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
14736
14727
  var LogLevel;
14737
14728
  (function(LogLevel2) {
14738
14729
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -14741,7 +14732,7 @@ var LogLevel;
14741
14732
  LogLevel2[LogLevel2["error"] = 3] = "error";
14742
14733
  })(LogLevel || (LogLevel = {}));
14743
14734
 
14744
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
14735
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
14745
14736
  var RESET = "";
14746
14737
  var RED = "";
14747
14738
  var YELLOW = "";
@@ -14771,7 +14762,7 @@ var ConsoleLogger = class {
14771
14762
  }
14772
14763
  };
14773
14764
 
14774
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file.mjs
14765
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file.mjs
14775
14766
  import module4 from "module";
14776
14767
  function getLockFilePath(fs5) {
14777
14768
  const requireFn = typeof __require !== "undefined" ? __require : module4.createRequire(__ESM_IMPORT_META_URL__);
@@ -14779,7 +14770,7 @@ function getLockFilePath(fs5) {
14779
14770
  return fs5.resolve(ngccEntryPointFile, "../__ngcc_lock_file__");
14780
14771
  }
14781
14772
 
14782
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/util.mjs
14773
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/util.mjs
14783
14774
  function removeLockFile(fs5, logger, lockFilePath, pid) {
14784
14775
  try {
14785
14776
  logger.debug(`Attempting to remove lock-file at ${lockFilePath}.`);
@@ -14799,7 +14790,7 @@ function removeLockFile(fs5, logger, lockFilePath, pid) {
14799
14790
  }
14800
14791
  }
14801
14792
 
14802
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/index.mjs
14793
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/lock_file_with_child_process/index.mjs
14803
14794
  var LockFileWithChildProcess = class {
14804
14795
  constructor(fs5, logger) {
14805
14796
  this.fs = fs5;
@@ -14848,7 +14839,7 @@ function getLockFileUnlockerScriptPath(fileSystem) {
14848
14839
  return fileSystem.resolve(unlockerScriptPath);
14849
14840
  }
14850
14841
 
14851
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/sync_locker.mjs
14842
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/locking/sync_locker.mjs
14852
14843
  var SyncLocker = class {
14853
14844
  constructor(lockFile) {
14854
14845
  this.lockFile = lockFile;
@@ -14879,16 +14870,16 @@ If you are running multiple builds in parallel then you might try pre-processing
14879
14870
  }
14880
14871
  };
14881
14872
 
14882
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
14873
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
14883
14874
  import {
14884
14875
  cpus
14885
14876
  } from "os";
14886
14877
 
14887
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
14878
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
14888
14879
  import { isSyntaxError as isSyntaxError2 } from "@angular/compiler";
14889
14880
  import ts112 from "typescript";
14890
14881
 
14891
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
14882
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
14892
14883
  var UNKNOWN_ERROR_CODE = 500;
14893
14884
  var EmitFlags;
14894
14885
  (function(EmitFlags2) {
@@ -14901,7 +14892,7 @@ var EmitFlags;
14901
14892
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
14902
14893
  })(EmitFlags || (EmitFlags = {}));
14903
14894
 
14904
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
14895
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
14905
14896
  import { collectExternalReferences, syntaxError as syntaxError2, TypeScriptEmitter } from "@angular/compiler";
14906
14897
  import fs3 from "fs";
14907
14898
  import {
@@ -14914,18 +14905,18 @@ import {
14914
14905
  } from "path";
14915
14906
  import ts69 from "typescript";
14916
14907
 
14917
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/collector.mjs
14908
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/metadata/collector.mjs
14918
14909
  import ts65 from "typescript";
14919
14910
 
14920
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/evaluator.mjs
14911
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/metadata/evaluator.mjs
14921
14912
  import ts63 from "typescript";
14922
14913
  var spreadElementSyntaxKind = ts63.SyntaxKind.SpreadElement || ts63.SyntaxKind.SpreadElementExpression;
14923
14914
  var empty = ts63.createNodeArray();
14924
14915
 
14925
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/symbols.mjs
14916
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/metadata/symbols.mjs
14926
14917
  import ts64 from "typescript";
14927
14918
 
14928
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/bundle_index_host.mjs
14919
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/metadata/bundle_index_host.mjs
14929
14920
  import {
14930
14921
  basename as basename4,
14931
14922
  dirname as dirname4,
@@ -14934,7 +14925,7 @@ import {
14934
14925
  } from "path";
14935
14926
  import ts67 from "typescript";
14936
14927
 
14937
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/bundler.mjs
14928
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/metadata/bundler.mjs
14938
14929
  import {
14939
14930
  basename as basename3,
14940
14931
  dirname as dirname3,
@@ -14944,14 +14935,14 @@ import {
14944
14935
  } from "path";
14945
14936
  import ts66 from "typescript";
14946
14937
 
14947
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
14938
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
14948
14939
  import { syntaxError } from "@angular/compiler";
14949
14940
  import {
14950
14941
  relative as relative3
14951
14942
  } from "path";
14952
14943
  import ts68 from "typescript";
14953
14944
 
14954
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
14945
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
14955
14946
  import { core, createAotCompiler, getMissingNgModuleMetadataErrorData, getParseErrors, isFormattedError, isSyntaxError } from "@angular/compiler";
14956
14947
  import {
14957
14948
  readFileSync as readFileSync2
@@ -14959,19 +14950,19 @@ import {
14959
14950
  import * as path6 from "path";
14960
14951
  import ts111 from "typescript";
14961
14952
 
14962
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/diagnostics/translate_diagnostics.mjs
14953
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/diagnostics/translate_diagnostics.mjs
14963
14954
  import ts70 from "typescript";
14964
14955
 
14965
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
14956
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
14966
14957
  import ts99 from "typescript";
14967
14958
 
14968
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
14959
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
14969
14960
  import ts71 from "typescript";
14970
14961
 
14971
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
14962
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
14972
14963
  import ts72 from "typescript";
14973
14964
 
14974
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
14965
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
14975
14966
  var NgOriginalFile = Symbol("NgOriginalFile");
14976
14967
  var UpdateMode;
14977
14968
  (function(UpdateMode2) {
@@ -14979,22 +14970,22 @@ var UpdateMode;
14979
14970
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
14980
14971
  })(UpdateMode || (UpdateMode = {}));
14981
14972
 
14982
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
14973
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
14983
14974
  import ts76 from "typescript";
14984
14975
 
14985
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
14976
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
14986
14977
  import ts73 from "typescript";
14987
14978
 
14988
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
14979
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
14989
14980
  var NgExtension = Symbol("NgExtension");
14990
14981
 
14991
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/factory_generator.mjs
14982
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/factory_generator.mjs
14992
14983
  import ts74 from "typescript";
14993
14984
 
14994
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/summary_generator.mjs
14985
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/summary_generator.mjs
14995
14986
  import ts75 from "typescript";
14996
14987
 
14997
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
14988
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
14998
14989
  var IncrementalStateKind;
14999
14990
  (function(IncrementalStateKind2) {
15000
14991
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -15002,17 +14993,17 @@ var IncrementalStateKind;
15002
14993
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
15003
14994
  })(IncrementalStateKind || (IncrementalStateKind = {}));
15004
14995
 
15005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
14996
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
15006
14997
  var PhaseKind;
15007
14998
  (function(PhaseKind2) {
15008
14999
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
15009
15000
  PhaseKind2[PhaseKind2["TypeCheckAndEmit"] = 1] = "TypeCheckAndEmit";
15010
15001
  })(PhaseKind || (PhaseKind = {}));
15011
15002
 
15012
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
15003
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
15013
15004
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
15014
15005
 
15015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
15006
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
15016
15007
  var IdentifierKind;
15017
15008
  (function(IdentifierKind2) {
15018
15009
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -15024,38 +15015,38 @@ var IdentifierKind;
15024
15015
  IdentifierKind2[IdentifierKind2["Variable"] = 6] = "Variable";
15025
15016
  })(IdentifierKind || (IdentifierKind = {}));
15026
15017
 
15027
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
15018
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
15028
15019
  import { ParseSourceFile as ParseSourceFile3 } from "@angular/compiler";
15029
15020
 
15030
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
15021
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
15031
15022
  import { ASTWithSource, ImplicitReceiver, RecursiveAstVisitor, TmplAstElement, TmplAstRecursiveVisitor, TmplAstReference, TmplAstTemplate } from "@angular/compiler";
15032
15023
 
15033
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
15024
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
15034
15025
  import ts77 from "typescript";
15035
15026
  var RESOURCE_MARKER = ".$ngresource$";
15036
15027
  var RESOURCE_MARKER_TS = RESOURCE_MARKER + ".ts";
15037
15028
 
15038
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/switch/src/switch.mjs
15029
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/switch/src/switch.mjs
15039
15030
  import ts78 from "typescript";
15040
15031
 
15041
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
15032
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
15042
15033
  import { CssSelector as CssSelector3, DomElementSchemaRegistry as DomElementSchemaRegistry3 } from "@angular/compiler";
15043
15034
 
15044
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
15035
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
15045
15036
  var OptimizeFor;
15046
15037
  (function(OptimizeFor2) {
15047
15038
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
15048
15039
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
15049
15040
  })(OptimizeFor || (OptimizeFor = {}));
15050
15041
 
15051
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
15042
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
15052
15043
  var CompletionKind;
15053
15044
  (function(CompletionKind2) {
15054
15045
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
15055
15046
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
15056
15047
  })(CompletionKind || (CompletionKind = {}));
15057
15048
 
15058
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
15049
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
15059
15050
  var SymbolKind;
15060
15051
  (function(SymbolKind2) {
15061
15052
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -15071,18 +15062,18 @@ var SymbolKind;
15071
15062
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
15072
15063
  })(SymbolKind || (SymbolKind = {}));
15073
15064
 
15074
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
15065
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
15075
15066
  import ts79 from "typescript";
15076
15067
 
15077
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
15068
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
15078
15069
  var TEMPLATE_ID = Symbol("ngTemplateId");
15079
15070
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
15080
15071
 
15081
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
15072
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
15082
15073
  import { EmptyExpr, ImplicitReceiver as ImplicitReceiver2, PropertyRead, PropertyWrite, SafePropertyRead, TmplAstReference as TmplAstReference2, TmplAstTextAttribute } from "@angular/compiler";
15083
15074
  import ts81 from "typescript";
15084
15075
 
15085
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
15076
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
15086
15077
  import { AbsoluteSourceSpan as AbsoluteSourceSpan2 } from "@angular/compiler";
15087
15078
  import ts80 from "typescript";
15088
15079
  var CommentTriviaType;
@@ -15098,19 +15089,19 @@ var ExpressionIdentifier;
15098
15089
  })(ExpressionIdentifier || (ExpressionIdentifier = {}));
15099
15090
  var IGNORE_FOR_DIAGNOSTICS_MARKER = `${CommentTriviaType.DIAGNOSTIC}:ignore`;
15100
15091
 
15101
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
15092
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
15102
15093
  import ts95 from "typescript";
15103
15094
 
15104
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
15095
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
15105
15096
  import { DomElementSchemaRegistry as DomElementSchemaRegistry2 } from "@angular/compiler";
15106
15097
  import ts82 from "typescript";
15107
15098
  var REGISTRY = new DomElementSchemaRegistry2();
15108
15099
 
15109
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
15100
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
15110
15101
  import { ExpressionType, ExternalExpr as ExternalExpr9 } from "@angular/compiler";
15111
15102
  import ts88 from "typescript";
15112
15103
 
15113
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
15104
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
15114
15105
  import ts83 from "typescript";
15115
15106
  var SAFE_TO_CAST_WITHOUT_PARENS = new Set([
15116
15107
  ts83.SyntaxKind.ParenthesizedExpression,
@@ -15129,19 +15120,19 @@ var SAFE_TO_CAST_WITHOUT_PARENS = new Set([
15129
15120
  ts83.SyntaxKind.UndefinedKeyword
15130
15121
  ]);
15131
15122
 
15132
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
15123
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
15133
15124
  import ts87 from "typescript";
15134
15125
 
15135
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
15126
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
15136
15127
  import ts86 from "typescript";
15137
15128
 
15138
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
15129
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
15139
15130
  import ts85 from "typescript";
15140
15131
 
15141
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
15132
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
15142
15133
  import ts84 from "typescript";
15143
15134
 
15144
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
15135
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
15145
15136
  var TcbInliningRequirement;
15146
15137
  (function(TcbInliningRequirement2) {
15147
15138
  TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
@@ -15149,22 +15140,22 @@ var TcbInliningRequirement;
15149
15140
  TcbInliningRequirement2[TcbInliningRequirement2["None"] = 2] = "None";
15150
15141
  })(TcbInliningRequirement || (TcbInliningRequirement = {}));
15151
15142
 
15152
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
15143
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
15153
15144
  import { TmplAstElement as TmplAstElement2 } from "@angular/compiler";
15154
15145
  import ts89 from "typescript";
15155
15146
 
15156
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
15147
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
15157
15148
  import ts90 from "typescript";
15158
15149
 
15159
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
15150
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
15160
15151
  import { BindingPipe, Call as Call2, DYNAMIC_TYPE, ImplicitReceiver as ImplicitReceiver4, PropertyRead as PropertyRead2, PropertyWrite as PropertyWrite2, SafePropertyRead as SafePropertyRead3, ThisReceiver, TmplAstBoundAttribute, TmplAstBoundText, TmplAstElement as TmplAstElement3, TmplAstIcu, TmplAstReference as TmplAstReference3, TmplAstTemplate as TmplAstTemplate2, TmplAstTextAttribute as TmplAstTextAttribute2, TmplAstVariable as TmplAstVariable2 } from "@angular/compiler";
15161
15152
  import ts93 from "typescript";
15162
15153
 
15163
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
15154
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
15164
15155
  import { AbsoluteSourceSpan as AbsoluteSourceSpan3 } from "@angular/compiler";
15165
15156
  import ts91 from "typescript";
15166
15157
 
15167
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
15158
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
15168
15159
  import { ASTWithSource as ASTWithSource2, Call, EmptyExpr as EmptyExpr2, SafeKeyedRead, SafePropertyRead as SafePropertyRead2 } from "@angular/compiler";
15169
15160
  import ts92 from "typescript";
15170
15161
  var NULL_AS_ANY = ts92.createAsExpression(ts92.createNull(), ts92.createKeywordTypeNode(ts92.SyntaxKind.AnyKeyword));
@@ -15264,10 +15255,10 @@ var VeSafeLhsInferenceBugDetector = class {
15264
15255
  };
15265
15256
  VeSafeLhsInferenceBugDetector.SINGLETON = new VeSafeLhsInferenceBugDetector();
15266
15257
 
15267
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
15258
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
15268
15259
  import { ImplicitReceiver as ImplicitReceiver3, RecursiveAstVisitor as RecursiveAstVisitor2, TmplAstVariable } from "@angular/compiler";
15269
15260
 
15270
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
15261
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
15271
15262
  var TcbGenericContextBehavior;
15272
15263
  (function(TcbGenericContextBehavior2) {
15273
15264
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -15276,38 +15267,38 @@ var TcbGenericContextBehavior;
15276
15267
  })(TcbGenericContextBehavior || (TcbGenericContextBehavior = {}));
15277
15268
  var INFER_TYPE_FOR_CIRCULAR_OP_EXPR = ts93.createNonNullExpression(ts93.createNull());
15278
15269
 
15279
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
15270
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
15280
15271
  import ts94 from "typescript";
15281
15272
 
15282
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
15273
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
15283
15274
  var InliningMode;
15284
15275
  (function(InliningMode2) {
15285
15276
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
15286
15277
  InliningMode2[InliningMode2["Error"] = 1] = "Error";
15287
15278
  })(InliningMode || (InliningMode = {}));
15288
15279
 
15289
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
15280
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
15290
15281
  import { ParseLocation as ParseLocation2, ParseSourceSpan as ParseSourceSpan2 } from "@angular/compiler";
15291
15282
 
15292
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
15283
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
15293
15284
  import { AST, ASTWithSource as ASTWithSource3, BindingPipe as BindingPipe2, PropertyRead as PropertyRead3, PropertyWrite as PropertyWrite3, SafePropertyRead as SafePropertyRead4, TmplAstBoundAttribute as TmplAstBoundAttribute2, TmplAstBoundEvent, TmplAstElement as TmplAstElement4, TmplAstReference as TmplAstReference4, TmplAstTemplate as TmplAstTemplate3, TmplAstTextAttribute as TmplAstTextAttribute3, TmplAstVariable as TmplAstVariable3 } from "@angular/compiler";
15294
15285
  import ts96 from "typescript";
15295
15286
 
15296
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
15287
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
15297
15288
  var REGISTRY2 = new DomElementSchemaRegistry3();
15298
15289
 
15299
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
15290
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
15300
15291
  import { TmplAstBoundEvent as TmplAstBoundEvent2 } from "@angular/compiler";
15301
15292
  import ts97 from "typescript";
15302
15293
 
15303
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
15294
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
15304
15295
  import { ASTWithSource as ASTWithSource4, RecursiveAstVisitor as RecursiveAstVisitor3 } from "@angular/compiler";
15305
15296
 
15306
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
15297
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
15307
15298
  import { Binary } from "@angular/compiler";
15308
15299
  import ts98 from "typescript";
15309
15300
 
15310
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
15301
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
15311
15302
  var CompilationTicketKind;
15312
15303
  (function(CompilationTicketKind2) {
15313
15304
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -15315,11 +15306,11 @@ var CompilationTicketKind;
15315
15306
  CompilationTicketKind2[CompilationTicketKind2["IncrementalResource"] = 2] = "IncrementalResource";
15316
15307
  })(CompilationTicketKind || (CompilationTicketKind = {}));
15317
15308
 
15318
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
15309
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
15319
15310
  import { HtmlParser, MessageBundle } from "@angular/compiler";
15320
15311
  import ts102 from "typescript";
15321
15312
 
15322
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
15313
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
15323
15314
  import { Xliff, Xliff2, Xmb } from "@angular/compiler";
15324
15315
  import {
15325
15316
  relative as relative5,
@@ -15327,42 +15318,42 @@ import {
15327
15318
  sep as sep2
15328
15319
  } from "path";
15329
15320
 
15330
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
15321
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
15331
15322
  import ts100 from "typescript";
15332
15323
  var tsVersion = ts100.version;
15333
15324
 
15334
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
15325
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
15335
15326
  import ts101 from "typescript";
15336
15327
 
15337
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
15328
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
15338
15329
  import ts104 from "typescript";
15339
15330
 
15340
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/patch_alias_reference_resolution.mjs
15331
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/patch_alias_reference_resolution.mjs
15341
15332
  import ts103 from "typescript";
15342
15333
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
15343
15334
 
15344
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/inline_resources.mjs
15335
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/inline_resources.mjs
15345
15336
  import ts105 from "typescript";
15346
15337
 
15347
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/lower_expressions.mjs
15338
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/lower_expressions.mjs
15348
15339
  import { createLoweredSymbol, isLoweredSymbol } from "@angular/compiler";
15349
15340
  import ts106 from "typescript";
15350
15341
 
15351
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/metadata_cache.mjs
15342
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/metadata_cache.mjs
15352
15343
  import ts107 from "typescript";
15353
15344
 
15354
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/node_emitter_transform.mjs
15345
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/node_emitter_transform.mjs
15355
15346
  import ts109 from "typescript";
15356
15347
 
15357
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/node_emitter.mjs
15348
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/node_emitter.mjs
15358
15349
  import { BinaryOperator as BinaryOperator2, BuiltinMethod, BuiltinVar, ClassStmt, ExternalExpr as ExternalExpr10, Statement, StmtModifier as StmtModifier2, UnaryOperator as UnaryOperator2 } from "@angular/compiler";
15359
15350
  import ts108 from "typescript";
15360
15351
 
15361
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/r3_metadata_transform.mjs
15352
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/r3_metadata_transform.mjs
15362
15353
  import { ClassStmt as ClassStmt2, StmtModifier as StmtModifier3 } from "@angular/compiler";
15363
15354
  import ts110 from "typescript";
15364
15355
 
15365
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
15356
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
15366
15357
  var VE_DISABLED_MESSAGE = `
15367
15358
  This compilation is using the View Engine compiler which is no longer supported by the Angular team
15368
15359
  and is being removed. Please upgrade to the Ivy compiler by switching to \`NgtscProgram\`. See
@@ -15376,7 +15367,7 @@ var emptyModules = {
15376
15367
  files: []
15377
15368
  };
15378
15369
 
15379
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
15370
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
15380
15371
  function calcProjectFileAndBasePath(project, host = getFileSystem()) {
15381
15372
  const absProject = host.resolve(project);
15382
15373
  const projectIsDir = host.lstat(absProject).isDirectory();
@@ -15475,7 +15466,7 @@ function getExtendedConfigPathWorker(configFile, extendsValue, host, fs5) {
15475
15466
  return null;
15476
15467
  }
15477
15468
 
15478
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
15469
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
15479
15470
  function getSharedSetup(options) {
15480
15471
  const fileSystem = getFileSystem();
15481
15472
  const absBasePath = absoluteFrom(options.basePath);
@@ -15551,7 +15542,7 @@ function getMaxNumberOfWorkers() {
15551
15542
  return numericMaxWorkers;
15552
15543
  }
15553
15544
 
15554
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/configuration.mjs
15545
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/configuration.mjs
15555
15546
  import { createHash } from "crypto";
15556
15547
  import module6 from "module";
15557
15548
  import semver from "semver";
@@ -15739,7 +15730,7 @@ var NgccConfiguration = class {
15739
15730
  }
15740
15731
  };
15741
15732
 
15742
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point_manifest.mjs
15733
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point_manifest.mjs
15743
15734
  import { createHash as createHash2 } from "crypto";
15744
15735
  var EntryPointManifest = class {
15745
15736
  constructor(fs5, config, logger) {
@@ -15847,7 +15838,7 @@ var InvalidatingEntryPointManifest = class extends EntryPointManifest {
15847
15838
  }
15848
15839
  };
15849
15840
 
15850
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/package_json_updater.mjs
15841
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/package_json_updater.mjs
15851
15842
  var PackageJsonUpdate = class {
15852
15843
  constructor(writeChangesImpl) {
15853
15844
  this.writeChangesImpl = writeChangesImpl;
@@ -15939,7 +15930,7 @@ function positionProperty(ctx, prop, positioning) {
15939
15930
  }
15940
15931
  }
15941
15932
 
15942
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/main.mjs
15933
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/main.mjs
15943
15934
  function mainNgcc(options) {
15944
15935
  const { basePath, targetEntryPointPath, propertiesToConsider, typingsOnly, compileAllFormats, logger, pathMappings, async, errorOnFailedEntryPoint, enableI18nLegacyMessageIdFormat, invalidateEntryPointManifest, fileSystem, absBasePath, projectPath, tsConfig, getFileWriter } = getSharedSetup(options);
15945
15936
  const config = new NgccConfiguration(fileSystem, projectPath);
@@ -16022,7 +16013,7 @@ function getEntryPointFinder(fs5, logger, resolver, config, entryPointManifest,
16022
16013
  }
16023
16014
  }
16024
16015
 
16025
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
16016
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
16026
16017
  function process2(options) {
16027
16018
  setFileSystem(new NodeJSFileSystem());
16028
16019
  return mainNgcc(options);