@angular/core 16.0.0-rc.2 → 16.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.
Files changed (38) hide show
  1. package/esm2022/rxjs-interop/src/take_until_destroyed.mjs +3 -2
  2. package/esm2022/rxjs-interop/src/to_observable.mjs +19 -18
  3. package/esm2022/src/application_init.mjs +9 -3
  4. package/esm2022/src/application_ref.mjs +2 -1
  5. package/esm2022/src/errors.mjs +3 -3
  6. package/esm2022/src/hydration/error_handling.mjs +13 -5
  7. package/esm2022/src/linker/template_ref.mjs +3 -2
  8. package/esm2022/src/render3/component_ref.mjs +3 -2
  9. package/esm2022/src/render3/definition.mjs +4 -5
  10. package/esm2022/src/render3/instructions/change_detection.mjs +263 -3
  11. package/esm2022/src/render3/instructions/element.mjs +2 -2
  12. package/esm2022/src/render3/instructions/element_container.mjs +2 -2
  13. package/esm2022/src/render3/instructions/render.mjs +125 -0
  14. package/esm2022/src/render3/instructions/shared.mjs +23 -405
  15. package/esm2022/src/render3/instructions/template.mjs +22 -9
  16. package/esm2022/src/render3/interfaces/container.mjs +3 -3
  17. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  18. package/esm2022/src/render3/node_manipulation.mjs +4 -8
  19. package/esm2022/src/render3/util/view_utils.mjs +35 -11
  20. package/esm2022/src/render3/view_ref.mjs +2 -2
  21. package/esm2022/src/version.mjs +1 -1
  22. package/esm2022/testing/src/logger.mjs +3 -3
  23. package/esm2022/testing/src/test_bed.mjs +1 -3
  24. package/esm2022/testing/src/test_bed_common.mjs +1 -1
  25. package/fesm2022/core.mjs +647 -618
  26. package/fesm2022/core.mjs.map +1 -1
  27. package/fesm2022/rxjs-interop.mjs +23 -21
  28. package/fesm2022/rxjs-interop.mjs.map +1 -1
  29. package/fesm2022/testing.mjs +639 -618
  30. package/fesm2022/testing.mjs.map +1 -1
  31. package/index.d.ts +24 -10
  32. package/package.json +1 -1
  33. package/rxjs-interop/index.d.ts +1 -1
  34. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
  35. package/schematics/migrations/remove-module-id/bundle.js +14 -14
  36. package/schematics/ng-generate/standalone-migration/bundle.js +360 -346
  37. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  38. package/testing/index.d.ts +3 -3
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
63
63
  });
64
64
  };
65
65
 
66
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
66
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
67
67
  var standalone_migration_exports = {};
68
68
  __export(standalone_migration_exports, {
69
69
  default: () => standalone_migration_default
@@ -71,10 +71,10 @@ __export(standalone_migration_exports, {
71
71
  module.exports = __toCommonJS(standalone_migration_exports);
72
72
  var import_schematics = require("@angular-devkit/schematics");
73
73
 
74
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
74
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
75
75
  var import_typescript = __toESM(require("typescript"), 1);
76
76
 
77
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
77
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
78
78
  var InvalidFileSystem = class {
79
79
  exists(path3) {
80
80
  throw makeError();
@@ -162,7 +162,7 @@ function makeError() {
162
162
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
163
163
  }
164
164
 
165
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
165
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
166
166
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
167
167
  function stripExtension(path3) {
168
168
  return path3.replace(TS_DTS_JS_EXTENSION, "");
@@ -175,7 +175,7 @@ function getSourceFileOrError(program, fileName) {
175
175
  return sf;
176
176
  }
177
177
 
178
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
178
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
179
179
  var fs = new InvalidFileSystem();
180
180
  function getFileSystem() {
181
181
  return fs;
@@ -219,7 +219,7 @@ function toRelativeImport(relativePath) {
219
219
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
220
220
  }
221
221
 
222
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
222
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
223
223
  var LogicalProjectPath = {
224
224
  relativePathBetween: function(from, to) {
225
225
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -265,7 +265,7 @@ function isWithinBasePath(base, path3) {
265
265
  return isLocalRelativePath(relative(base, path3));
266
266
  }
267
267
 
268
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
268
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
269
269
  var import_fs = __toESM(require("fs"), 1);
270
270
  var import_module = __toESM(require("module"), 1);
271
271
  var p = __toESM(require("path"), 1);
@@ -373,7 +373,7 @@ function toggleCase(str) {
373
373
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
374
374
  }
375
375
 
376
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
376
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/selector.mjs
377
377
  var _SELECTOR_REGEXP = new RegExp(
378
378
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
379
379
  "g"
@@ -681,7 +681,7 @@ var SelectorContext = class {
681
681
  }
682
682
  };
683
683
 
684
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
684
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/core.mjs
685
685
  var emitDistinctChangesOnlyDefaultValue = true;
686
686
  var ViewEncapsulation;
687
687
  (function(ViewEncapsulation2) {
@@ -744,7 +744,7 @@ function parseSelectorToR3Selector(selector) {
744
744
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
745
745
  }
746
746
 
747
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
747
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
748
748
  var BigInteger = class {
749
749
  static zero() {
750
750
  return new BigInteger([0]);
@@ -836,7 +836,7 @@ var BigIntExponentiation = class {
836
836
  }
837
837
  };
838
838
 
839
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
839
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
840
840
  var textEncoder;
841
841
  function digest(message) {
842
842
  return message.id || computeDigest(message);
@@ -1099,7 +1099,7 @@ function wordsToDecimalString(hi, lo) {
1099
1099
  return decimal.toString();
1100
1100
  }
1101
1101
 
1102
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1102
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1103
1103
  var TypeModifier;
1104
1104
  (function(TypeModifier2) {
1105
1105
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -2084,7 +2084,7 @@ function serializeTags(tags) {
2084
2084
  return out;
2085
2085
  }
2086
2086
 
2087
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
2087
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/constant_pool.mjs
2088
2088
  var CONSTANT_PREFIX = "_c";
2089
2089
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
2090
2090
  var KEY_CONTEXT = {};
@@ -2253,7 +2253,7 @@ function isLongStringLiteral(expr) {
2253
2253
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
2254
2254
  }
2255
2255
 
2256
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2256
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2257
2257
  var CORE = "@angular/core";
2258
2258
  var _Identifiers = class {
2259
2259
  };
@@ -2808,7 +2808,7 @@ var Identifiers = _Identifiers;
2808
2808
  _Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
2809
2809
  })();
2810
2810
 
2811
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
2811
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/util.mjs
2812
2812
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
2813
2813
  function dashCaseToCamelCase(input) {
2814
2814
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -2896,7 +2896,7 @@ function partitionArray(arr, conditionFn) {
2896
2896
  return [truthy, falsy];
2897
2897
  }
2898
2898
 
2899
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2899
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2900
2900
  var VERSION = 3;
2901
2901
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
2902
2902
  var SourceMapGenerator = class {
@@ -3025,7 +3025,7 @@ function toBase64Digit(value) {
3025
3025
  return B64_DIGITS[value];
3026
3026
  }
3027
3027
 
3028
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3028
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3029
3029
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
3030
3030
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
3031
3031
  var _INDENT_WITH = " ";
@@ -3500,7 +3500,7 @@ function _createIndent(count) {
3500
3500
  return res;
3501
3501
  }
3502
3502
 
3503
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
3503
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/util.mjs
3504
3504
  function typeWithParameters(type, numParams) {
3505
3505
  if (numParams === 0) {
3506
3506
  return expressionType(type);
@@ -3568,7 +3568,7 @@ function generateForwardRef(expr) {
3568
3568
  return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
3569
3569
  }
3570
3570
 
3571
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3571
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3572
3572
  var R3FactoryDelegateType;
3573
3573
  (function(R3FactoryDelegateType2) {
3574
3574
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3713,7 +3713,7 @@ function getInjectFn(target) {
3713
3713
  }
3714
3714
  }
3715
3715
 
3716
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3716
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3717
3717
  var Comment = class {
3718
3718
  constructor(value, sourceSpan) {
3719
3719
  this.value = value;
@@ -3935,7 +3935,7 @@ function visitAll(visitor, nodes) {
3935
3935
  return result;
3936
3936
  }
3937
3937
 
3938
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3938
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3939
3939
  var Message = class {
3940
3940
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
3941
3941
  this.nodes = nodes;
@@ -4098,7 +4098,7 @@ var LocalizeMessageStringVisitor = class {
4098
4098
  }
4099
4099
  };
4100
4100
 
4101
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
4101
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
4102
4102
  var Serializer = class {
4103
4103
  createNameMapper(message) {
4104
4104
  return null;
@@ -4150,7 +4150,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
4150
4150
  }
4151
4151
  };
4152
4152
 
4153
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4153
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4154
4154
  var _Visitor = class {
4155
4155
  visitTag(tag) {
4156
4156
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -4238,7 +4238,7 @@ function escapeXml(text2) {
4238
4238
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
4239
4239
  }
4240
4240
 
4241
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4241
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4242
4242
  var _MESSAGES_TAG = "messagebundle";
4243
4243
  var _MESSAGE_TAG = "msg";
4244
4244
  var _PLACEHOLDER_TAG = "ph";
@@ -4381,7 +4381,7 @@ function toPublicName(internalName) {
4381
4381
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
4382
4382
  }
4383
4383
 
4384
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4384
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4385
4385
  var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
4386
4386
  var TRANSLATION_VAR_PREFIX = "i18n_";
4387
4387
  var I18N_ATTR = "i18n";
@@ -4483,7 +4483,7 @@ function declareI18nVariable(variable2) {
4483
4483
  return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
4484
4484
  }
4485
4485
 
4486
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4486
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4487
4487
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
4488
4488
  var TEMPORARY_NAME = "_t";
4489
4489
  var CONTEXT_NAME = "ctx";
@@ -4691,7 +4691,7 @@ function getInstructionStatements(instructions) {
4691
4691
  return statements;
4692
4692
  }
4693
4693
 
4694
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4694
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4695
4695
  function compileInjectable(meta, resolveForwardRefs) {
4696
4696
  let result = null;
4697
4697
  const factoryMeta = {
@@ -4779,7 +4779,7 @@ function createFactoryFunction(type) {
4779
4779
  return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
4780
4780
  }
4781
4781
 
4782
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
4782
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/assertions.mjs
4783
4783
  var UNUSABLE_INTERPOLATION_REGEXPS = [
4784
4784
  /^\s*$/,
4785
4785
  /[<>]/,
@@ -4801,7 +4801,7 @@ function assertInterpolationSymbols(identifier, value) {
4801
4801
  }
4802
4802
  }
4803
4803
 
4804
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4804
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4805
4805
  var InterpolationConfig = class {
4806
4806
  static fromArray(markers) {
4807
4807
  if (!markers) {
@@ -4817,7 +4817,7 @@ var InterpolationConfig = class {
4817
4817
  };
4818
4818
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
4819
4819
 
4820
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
4820
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/chars.mjs
4821
4821
  var $EOF = 0;
4822
4822
  var $BSPACE = 8;
4823
4823
  var $TAB = 9;
@@ -4898,7 +4898,7 @@ function isQuote(code) {
4898
4898
  return code === $SQ || code === $DQ || code === $BT;
4899
4899
  }
4900
4900
 
4901
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
4901
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/parse_util.mjs
4902
4902
  var ParseLocation = class {
4903
4903
  constructor(file, offset, line, col) {
4904
4904
  this.file = file;
@@ -5045,7 +5045,7 @@ function sanitizeIdentifier(name) {
5045
5045
  return name.replace(/\W/g, "_");
5046
5046
  }
5047
5047
 
5048
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5048
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5049
5049
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
5050
5050
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5051
5051
  constructor() {
@@ -5116,7 +5116,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5116
5116
  }
5117
5117
  };
5118
5118
 
5119
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5119
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5120
5120
  var policy;
5121
5121
  function getPolicy() {
5122
5122
  if (policy === void 0) {
@@ -5153,7 +5153,7 @@ function newTrustedFunctionForJIT(...args) {
5153
5153
  return fn2.bind(_global);
5154
5154
  }
5155
5155
 
5156
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5156
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5157
5157
  var JitEvaluator = class {
5158
5158
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
5159
5159
  const converter = new JitEmitterVisitor(refResolver);
@@ -5244,7 +5244,7 @@ function isUseStrictStatement(statement) {
5244
5244
  return statement.isEquivalent(literal("use strict").toStmt());
5245
5245
  }
5246
5246
 
5247
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5247
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5248
5248
  function compileInjector(meta) {
5249
5249
  const definitionMap = new DefinitionMap();
5250
5250
  if (meta.providers !== null) {
@@ -5261,7 +5261,7 @@ function createInjectorType(meta) {
5261
5261
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
5262
5262
  }
5263
5263
 
5264
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5264
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5265
5265
  var R3JitReflector = class {
5266
5266
  constructor(context) {
5267
5267
  this.context = context;
@@ -5277,7 +5277,7 @@ var R3JitReflector = class {
5277
5277
  }
5278
5278
  };
5279
5279
 
5280
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5280
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5281
5281
  var R3SelectorScopeMode;
5282
5282
  (function(R3SelectorScopeMode2) {
5283
5283
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -5390,7 +5390,7 @@ function tupleOfTypes(types) {
5390
5390
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
5391
5391
  }
5392
5392
 
5393
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5393
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5394
5394
  function compilePipeFromMetadata(metadata) {
5395
5395
  const definitionMapValues = [];
5396
5396
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -5411,7 +5411,7 @@ function createPipeType(metadata) {
5411
5411
  ]));
5412
5412
  }
5413
5413
 
5414
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5414
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5415
5415
  var R3TemplateDependencyKind;
5416
5416
  (function(R3TemplateDependencyKind2) {
5417
5417
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -5419,7 +5419,7 @@ var R3TemplateDependencyKind;
5419
5419
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
5420
5420
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
5421
5421
 
5422
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5422
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5423
5423
  var ParserError = class {
5424
5424
  constructor(message, input, errLocation, ctxLocation) {
5425
5425
  this.input = input;
@@ -6085,7 +6085,7 @@ var BoundElementProperty = class {
6085
6085
  }
6086
6086
  };
6087
6087
 
6088
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
6088
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
6089
6089
  var _EventHandlerVars = class {
6090
6090
  };
6091
6091
  var EventHandlerVars = _EventHandlerVars;
@@ -6706,7 +6706,7 @@ var BuiltinFunctionCall = class extends Call {
6706
6706
  }
6707
6707
  };
6708
6708
 
6709
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6709
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6710
6710
  var _SECURITY_SCHEMA;
6711
6711
  function SECURITY_SCHEMA() {
6712
6712
  if (!_SECURITY_SCHEMA) {
@@ -6764,7 +6764,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
6764
6764
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
6765
6765
  }
6766
6766
 
6767
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6767
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6768
6768
  var animationKeywords = /* @__PURE__ */ new Set([
6769
6769
  "inherit",
6770
6770
  "initial",
@@ -7224,7 +7224,7 @@ function repeatGroups(groups, multiples) {
7224
7224
  }
7225
7225
  }
7226
7226
 
7227
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
7227
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
7228
7228
  var TagContentType;
7229
7229
  (function(TagContentType2) {
7230
7230
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -7257,7 +7257,7 @@ function mergeNsAndName(prefix, localName) {
7257
7257
  return prefix ? `:${prefix}:${localName}` : localName;
7258
7258
  }
7259
7259
 
7260
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/element.mjs
7260
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/element.mjs
7261
7261
  var ElementAttributeKind;
7262
7262
  (function(ElementAttributeKind2) {
7263
7263
  ElementAttributeKind2[ElementAttributeKind2["Attribute"] = 0] = "Attribute";
@@ -7334,7 +7334,7 @@ function assertIsElementAttributes(attrs) {
7334
7334
  }
7335
7335
  }
7336
7336
 
7337
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
7337
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
7338
7338
  var OpKind;
7339
7339
  (function(OpKind2) {
7340
7340
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -7368,7 +7368,7 @@ var SemanticVariableKind;
7368
7368
  SemanticVariableKind2[SemanticVariableKind2["SavedView"] = 2] = "SavedView";
7369
7369
  })(SemanticVariableKind || (SemanticVariableKind = {}));
7370
7370
 
7371
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
7371
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
7372
7372
  var ConsumesSlot = Symbol("ConsumesSlot");
7373
7373
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
7374
7374
  var UsesSlotIndex = Symbol("UsesSlotIndex");
@@ -7401,7 +7401,7 @@ function hasUsesSlotIndexTrait(value) {
7401
7401
  return value[UsesSlotIndex] === true;
7402
7402
  }
7403
7403
 
7404
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
7404
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
7405
7405
  var _a;
7406
7406
  var ExpressionBase = class extends Expression {
7407
7407
  constructor(sourceSpan = null) {
@@ -7639,7 +7639,7 @@ function transformExpressionsInStatement(stmt, transform, flags) {
7639
7639
  }
7640
7640
  }
7641
7641
 
7642
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7642
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7643
7643
  var _OpList = class {
7644
7644
  constructor() {
7645
7645
  this.debugListId = _OpList.nextListId++;
@@ -7803,7 +7803,7 @@ var OpList = _OpList;
7803
7803
  _OpList.nextListId = 0;
7804
7804
  })();
7805
7805
 
7806
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
7806
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
7807
7807
  function createStatementOp(statement) {
7808
7808
  return __spreadValues({
7809
7809
  kind: OpKind.Statement,
@@ -7824,7 +7824,7 @@ var NEW_OP = {
7824
7824
  next: null
7825
7825
  };
7826
7826
 
7827
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7827
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7828
7828
  function createElementStartOp(tag, xref) {
7829
7829
  return __spreadValues(__spreadValues({
7830
7830
  kind: OpKind.ElementStart,
@@ -7869,7 +7869,7 @@ function createListenerOp(target, name, tag) {
7869
7869
  }, NEW_OP), TRAIT_USES_SLOT_INDEX);
7870
7870
  }
7871
7871
 
7872
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
7872
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
7873
7873
  function createInterpolateTextOp(xref, strings, expressions) {
7874
7874
  return __spreadValues(__spreadValues(__spreadValues({
7875
7875
  kind: OpKind.InterpolateText,
@@ -7893,7 +7893,7 @@ function createAdvanceOp(delta) {
7893
7893
  }, NEW_OP);
7894
7894
  }
7895
7895
 
7896
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
7896
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
7897
7897
  function phaseConstCollection(cpl) {
7898
7898
  for (const [_, view] of cpl.views) {
7899
7899
  for (const op of view.create) {
@@ -7934,7 +7934,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n, projectAs, s
7934
7934
  return literalArr(attrArray);
7935
7935
  }
7936
7936
 
7937
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
7937
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
7938
7938
  function phaseEmptyElements(cpl) {
7939
7939
  for (const [_, view] of cpl.views) {
7940
7940
  for (const op of view.create) {
@@ -7946,7 +7946,7 @@ function phaseEmptyElements(cpl) {
7946
7946
  }
7947
7947
  }
7948
7948
 
7949
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
7949
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
7950
7950
  function phaseGenerateAdvance(cpl) {
7951
7951
  for (const [_, view] of cpl.views) {
7952
7952
  const slotMap = /* @__PURE__ */ new Map();
@@ -7978,7 +7978,7 @@ function phaseGenerateAdvance(cpl) {
7978
7978
  }
7979
7979
  }
7980
7980
 
7981
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
7981
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
7982
7982
  function element(slot, tag, constIndex, localRefIndex) {
7983
7983
  return elementStartBase(Identifiers.element, slot, tag, constIndex, localRefIndex);
7984
7984
  }
@@ -8103,7 +8103,7 @@ function callInterpolation(config, baseArgs, interpolationArgs) {
8103
8103
  }
8104
8104
  }
8105
8105
 
8106
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
8106
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
8107
8107
  function phaseReify(cpl) {
8108
8108
  for (const [_, view] of cpl.views) {
8109
8109
  reifyCreateOperations(view, view.create);
@@ -8228,7 +8228,7 @@ var LookForEventVisitor = class extends RecursiveAstVisitor {
8228
8228
  }
8229
8229
  };
8230
8230
 
8231
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
8231
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
8232
8232
  function phaseSlotAllocation(cpl) {
8233
8233
  const slotMap = /* @__PURE__ */ new Map();
8234
8234
  for (const [_, view] of cpl.views) {
@@ -8268,7 +8268,7 @@ function phaseSlotAllocation(cpl) {
8268
8268
  }
8269
8269
  }
8270
8270
 
8271
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
8271
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
8272
8272
  function phaseVarCounting(cpl) {
8273
8273
  for (const [_, view] of cpl.views) {
8274
8274
  let varCount = 0;
@@ -8308,7 +8308,7 @@ function varsUsedByIrExpression(expr) {
8308
8308
  return 0;
8309
8309
  }
8310
8310
 
8311
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
8311
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
8312
8312
  function phaseNaming(cpl) {
8313
8313
  addNamesToView(cpl.root, cpl.componentName, { index: 0 });
8314
8314
  }
@@ -8366,7 +8366,7 @@ function getVariableName(variable2, state) {
8366
8366
  return variable2.name;
8367
8367
  }
8368
8368
 
8369
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
8369
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
8370
8370
  function phaseLocalRefs(cpl) {
8371
8371
  for (const view of cpl.views.values()) {
8372
8372
  for (const op of view.create) {
@@ -8397,7 +8397,7 @@ function serializeLocalRefs(refs) {
8397
8397
  return literalArr(constRefs);
8398
8398
  }
8399
8399
 
8400
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
8400
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
8401
8401
  function phaseGenerateVariables(cpl) {
8402
8402
  recursivelyProcessView(cpl.root, null);
8403
8403
  }
@@ -8494,7 +8494,7 @@ function generateVariablesInScopeForView(view, scope) {
8494
8494
  return newOps;
8495
8495
  }
8496
8496
 
8497
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
8497
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
8498
8498
  function phaseResolveNames(cpl) {
8499
8499
  for (const [_, view] of cpl.views) {
8500
8500
  processLexicalScope(view, view.create, null);
@@ -8547,7 +8547,7 @@ function processLexicalScope(view, ops, savedView) {
8547
8547
  }
8548
8548
  }
8549
8549
 
8550
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
8550
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
8551
8551
  function phaseResolveContexts(cpl) {
8552
8552
  for (const view of cpl.views.values()) {
8553
8553
  processLexicalScope2(view, view.create);
@@ -8585,7 +8585,7 @@ function processLexicalScope2(view, ops) {
8585
8585
  }
8586
8586
  }
8587
8587
 
8588
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
8588
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
8589
8589
  function phaseVariableOptimization(cpl, options) {
8590
8590
  for (const [_, view] of cpl.views) {
8591
8591
  optimizeVariablesInOpList(view.create, options);
@@ -8783,7 +8783,7 @@ function allowConservativeInlining(decl, target) {
8783
8783
  }
8784
8784
  }
8785
8785
 
8786
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8786
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8787
8787
  var CHAINABLE = /* @__PURE__ */ new Set([
8788
8788
  Identifiers.elementStart,
8789
8789
  Identifiers.elementEnd,
@@ -8826,7 +8826,7 @@ function chainOperationsInList(opList) {
8826
8826
  }
8827
8827
  }
8828
8828
 
8829
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
8829
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
8830
8830
  function phaseMergeNextContext(cpl) {
8831
8831
  for (const view of cpl.views.values()) {
8832
8832
  for (const op of view.create) {
@@ -8868,7 +8868,7 @@ function mergeNextContextsInOps(ops) {
8868
8868
  }
8869
8869
  }
8870
8870
 
8871
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
8871
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
8872
8872
  function transformTemplate(cpl) {
8873
8873
  phaseGenerateVariables(cpl);
8874
8874
  phaseResolveNames(cpl);
@@ -8943,7 +8943,7 @@ function maybeGenerateRfBlock(flag, statements) {
8943
8943
  ];
8944
8944
  }
8945
8945
 
8946
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
8946
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
8947
8947
  var ComponentCompilation = class {
8948
8948
  constructor(componentName) {
8949
8949
  this.componentName = componentName;
@@ -9000,7 +9000,7 @@ var ViewCompilation = class {
9000
9000
  }
9001
9001
  };
9002
9002
 
9003
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
9003
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
9004
9004
  function ingest(componentName, template2) {
9005
9005
  const cpl = new ComponentCompilation(componentName);
9006
9006
  ingestNodes(cpl.root, template2);
@@ -9137,10 +9137,10 @@ function assertIsArray(value) {
9137
9137
  }
9138
9138
  }
9139
9139
 
9140
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
9140
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
9141
9141
  var USE_TEMPLATE_PIPELINE = false;
9142
9142
 
9143
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
9143
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
9144
9144
  function parse(value) {
9145
9145
  const styles = [];
9146
9146
  let i = 0;
@@ -9201,7 +9201,7 @@ function hyphenate(value) {
9201
9201
  }).toLowerCase();
9202
9202
  }
9203
9203
 
9204
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
9204
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
9205
9205
  var IMPORTANT_FLAG = "!important";
9206
9206
  var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
9207
9207
  var StylingBuilder = class {
@@ -9534,7 +9534,7 @@ function isEmptyExpression(ast) {
9534
9534
  return ast instanceof EmptyExpr;
9535
9535
  }
9536
9536
 
9537
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9537
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9538
9538
  var TokenType;
9539
9539
  (function(TokenType2) {
9540
9540
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -9895,7 +9895,7 @@ function parseIntAutoRadix(text2) {
9895
9895
  return result;
9896
9896
  }
9897
9897
 
9898
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
9898
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
9899
9899
  var SplitInterpolation = class {
9900
9900
  constructor(strings, expressions, offsets) {
9901
9901
  this.strings = strings;
@@ -10789,7 +10789,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
10789
10789
  return offsetMap;
10790
10790
  }
10791
10791
 
10792
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10792
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10793
10793
  var NodeWithI18n = class {
10794
10794
  constructor(sourceSpan, i18n) {
10795
10795
  this.sourceSpan = sourceSpan;
@@ -10877,11 +10877,11 @@ function visitAll2(visitor, nodes, context = null) {
10877
10877
  return result;
10878
10878
  }
10879
10879
 
10880
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
10880
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
10881
10881
  var ElementSchemaRegistry = class {
10882
10882
  };
10883
10883
 
10884
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
10884
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
10885
10885
  var BOOLEAN = "boolean";
10886
10886
  var NUMBER = "number";
10887
10887
  var STRING = "string";
@@ -11234,7 +11234,7 @@ function _isPixelDimensionStyle(prop) {
11234
11234
  }
11235
11235
  }
11236
11236
 
11237
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11237
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11238
11238
  var HtmlTagDefinition = class {
11239
11239
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
11240
11240
  this.closedByChildren = {};
@@ -11352,7 +11352,7 @@ function getHtmlTagDefinition(tagName) {
11352
11352
  return (_b = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
11353
11353
  }
11354
11354
 
11355
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11355
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11356
11356
  var NAMED_ENTITIES = {
11357
11357
  "AElig": "\xC6",
11358
11358
  "AMP": "&",
@@ -13483,7 +13483,7 @@ var NAMED_ENTITIES = {
13483
13483
  var NGSP_UNICODE = "\uE500";
13484
13484
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
13485
13485
 
13486
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
13486
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
13487
13487
  var TokenError = class extends ParseError {
13488
13488
  constructor(errorMsg, tokenType, span) {
13489
13489
  super(span, errorMsg);
@@ -14318,7 +14318,7 @@ var CursorError = class {
14318
14318
  }
14319
14319
  };
14320
14320
 
14321
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
14321
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
14322
14322
  var TreeError = class extends ParseError {
14323
14323
  static create(elementName, span, msg) {
14324
14324
  return new TreeError(elementName, span, msg);
@@ -14645,7 +14645,7 @@ function decodeEntity(match, entity) {
14645
14645
  return match;
14646
14646
  }
14647
14647
 
14648
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
14648
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
14649
14649
  var HtmlParser = class extends Parser2 {
14650
14650
  constructor() {
14651
14651
  super(getHtmlTagDefinition);
@@ -14655,7 +14655,7 @@ var HtmlParser = class extends Parser2 {
14655
14655
  }
14656
14656
  };
14657
14657
 
14658
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
14658
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
14659
14659
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
14660
14660
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
14661
14661
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -14715,7 +14715,7 @@ function visitAllWithSiblings(visitor, nodes) {
14715
14715
  return result;
14716
14716
  }
14717
14717
 
14718
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
14718
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/map_util.mjs
14719
14719
  function mapLiteral(obj, quoted = false) {
14720
14720
  return literalMap(Object.keys(obj).map((key) => ({
14721
14721
  key,
@@ -14724,7 +14724,7 @@ function mapLiteral(obj, quoted = false) {
14724
14724
  })));
14725
14725
  }
14726
14726
 
14727
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
14727
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
14728
14728
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
14729
14729
  "iframe|srcdoc",
14730
14730
  "*|innerhtml",
@@ -14739,7 +14739,7 @@ function isTrustedTypesSink(tagName, propName) {
14739
14739
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
14740
14740
  }
14741
14741
 
14742
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
14742
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
14743
14743
  var PROPERTY_PARTS_SEPARATOR = ".";
14744
14744
  var ATTRIBUTE_PREFIX = "attr";
14745
14745
  var CLASS_PREFIX = "class";
@@ -15059,7 +15059,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
15059
15059
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
15060
15060
  }
15061
15061
 
15062
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
15062
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
15063
15063
  function isStyleUrlResolvable(url) {
15064
15064
  if (url == null || url.length === 0 || url[0] == "/")
15065
15065
  return false;
@@ -15068,7 +15068,7 @@ function isStyleUrlResolvable(url) {
15068
15068
  }
15069
15069
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
15070
15070
 
15071
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
15071
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
15072
15072
  var NG_CONTENT_SELECT_ATTR = "select";
15073
15073
  var LINK_ELEMENT = "link";
15074
15074
  var LINK_STYLE_REL_ATTR = "rel";
@@ -15138,7 +15138,7 @@ function normalizeNgContentSelect(selectAttr) {
15138
15138
  return selectAttr;
15139
15139
  }
15140
15140
 
15141
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
15141
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
15142
15142
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
15143
15143
  var KW_BIND_IDX = 1;
15144
15144
  var KW_LET_IDX = 2;
@@ -15486,7 +15486,7 @@ function textContents(node) {
15486
15486
  }
15487
15487
  }
15488
15488
 
15489
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
15489
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
15490
15490
  var TagType;
15491
15491
  (function(TagType2) {
15492
15492
  TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
@@ -15621,7 +15621,7 @@ function serializePlaceholderValue(value) {
15621
15621
  }
15622
15622
  }
15623
15623
 
15624
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
15624
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
15625
15625
  var IcuSerializerVisitor = class {
15626
15626
  visitText(text2) {
15627
15627
  return text2.value;
@@ -15652,7 +15652,7 @@ function serializeIcuNode(icu) {
15652
15652
  return icu.visit(serializer);
15653
15653
  }
15654
15654
 
15655
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
15655
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
15656
15656
  var TAG_TO_PLACEHOLDER_NAMES = {
15657
15657
  "A": "LINK",
15658
15658
  "B": "BOLD_TEXT",
@@ -15746,7 +15746,7 @@ var PlaceholderRegistry = class {
15746
15746
  }
15747
15747
  };
15748
15748
 
15749
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
15749
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
15750
15750
  var _expParser = new Parser(new Lexer());
15751
15751
  function createI18nMessageFactory(interpolationConfig) {
15752
15752
  const visitor = new _I18nVisitor(_expParser, interpolationConfig);
@@ -15901,14 +15901,14 @@ function extractPlaceholderName(input) {
15901
15901
  return input.split(_CUSTOM_PH_EXP)[2];
15902
15902
  }
15903
15903
 
15904
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
15904
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
15905
15905
  var I18nError = class extends ParseError {
15906
15906
  constructor(span, msg) {
15907
15907
  super(span, msg);
15908
15908
  }
15909
15909
  };
15910
15910
 
15911
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15911
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15912
15912
  var setI18nRefs = (htmlNode, i18nNode) => {
15913
15913
  if (htmlNode instanceof NodeWithI18n) {
15914
15914
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -16057,7 +16057,7 @@ function i18nMetaToJSDoc(meta) {
16057
16057
  return jsDocComment(tags);
16058
16058
  }
16059
16059
 
16060
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
16060
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
16061
16061
  var GOOG_GET_MSG = "goog.getMsg";
16062
16062
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
16063
16063
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -16105,7 +16105,7 @@ function serializeI18nMessageForGetMsg(message) {
16105
16105
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
16106
16106
  }
16107
16107
 
16108
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
16108
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
16109
16109
  function createLocalizeStatements(variable2, message, params) {
16110
16110
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
16111
16111
  const sourceSpan = getSourceSpan(message);
@@ -16188,7 +16188,7 @@ function createEmptyMessagePart(location) {
16188
16188
  return new LiteralPiece("", new ParseSourceSpan(location, location));
16189
16189
  }
16190
16190
 
16191
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
16191
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
16192
16192
  var NG_CONTENT_SELECT_ATTR2 = "select";
16193
16193
  var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
16194
16194
  var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
@@ -17490,7 +17490,7 @@ function createClosureModeGuard() {
17490
17490
  return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
17491
17491
  }
17492
17492
 
17493
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
17493
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
17494
17494
  var ATTR_REGEX = /attr\.([^\]]+)/;
17495
17495
  var COMPONENT_VARIABLE = "%COMP%";
17496
17496
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
@@ -18034,11 +18034,11 @@ function createHostDirectivesMappingArray(mapping) {
18034
18034
  return elements.length > 0 ? literalArr(elements) : null;
18035
18035
  }
18036
18036
 
18037
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
18037
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/resource_loader.mjs
18038
18038
  var ResourceLoader = class {
18039
18039
  };
18040
18040
 
18041
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
18041
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
18042
18042
  var CompilerFacadeImpl = class {
18043
18043
  constructor(jitEvaluator = new JitEvaluator()) {
18044
18044
  this.jitEvaluator = jitEvaluator;
@@ -18539,10 +18539,10 @@ function publishFacade(global2) {
18539
18539
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
18540
18540
  }
18541
18541
 
18542
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
18543
- var VERSION2 = new Version("16.0.0-rc.2");
18542
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/version.mjs
18543
+ var VERSION2 = new Version("16.0.0-rc.3");
18544
18544
 
18545
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
18545
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
18546
18546
  var _I18N_ATTR = "i18n";
18547
18547
  var _I18N_ATTR_PREFIX = "i18n-";
18548
18548
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -18846,7 +18846,7 @@ function _parseMessageMeta(i18n) {
18846
18846
  return { meaning, description, id: id.trim() };
18847
18847
  }
18848
18848
 
18849
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
18849
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
18850
18850
  var XmlTagDefinition = class {
18851
18851
  constructor() {
18852
18852
  this.closedByParent = false;
@@ -18871,7 +18871,7 @@ function getXmlTagDefinition(tagName) {
18871
18871
  return _TAG_DEFINITION;
18872
18872
  }
18873
18873
 
18874
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
18874
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
18875
18875
  var XmlParser = class extends Parser2 {
18876
18876
  constructor() {
18877
18877
  super(getXmlTagDefinition);
@@ -18881,7 +18881,7 @@ var XmlParser = class extends Parser2 {
18881
18881
  }
18882
18882
  };
18883
18883
 
18884
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
18884
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
18885
18885
  var _VERSION = "1.2";
18886
18886
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
18887
18887
  var _DEFAULT_SOURCE_LANG = "en";
@@ -19121,7 +19121,7 @@ function getCtypeForTag(tag) {
19121
19121
  }
19122
19122
  }
19123
19123
 
19124
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
19124
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
19125
19125
  var _VERSION2 = "2.0";
19126
19126
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
19127
19127
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -19412,7 +19412,7 @@ function getTypeForTag(tag) {
19412
19412
  }
19413
19413
  }
19414
19414
 
19415
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
19415
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
19416
19416
  var MessageBundle = class {
19417
19417
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
19418
19418
  this._htmlParser = _htmlParser;
@@ -19479,7 +19479,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
19479
19479
  }
19480
19480
  };
19481
19481
 
19482
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
19482
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
19483
19483
  var FactoryTarget2;
19484
19484
  (function(FactoryTarget3) {
19485
19485
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -19489,7 +19489,7 @@ var FactoryTarget2;
19489
19489
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
19490
19490
  })(FactoryTarget2 || (FactoryTarget2 = {}));
19491
19491
 
19492
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
19492
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
19493
19493
  var R3TargetBinder = class {
19494
19494
  constructor(directiveMatcher) {
19495
19495
  this.directiveMatcher = directiveMatcher;
@@ -19841,7 +19841,7 @@ function extractTemplateEntities(rootScope) {
19841
19841
  return templateEntities;
19842
19842
  }
19843
19843
 
19844
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
19844
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
19845
19845
  function compileClassMetadata(metadata) {
19846
19846
  var _a2, _b;
19847
19847
  const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
@@ -19854,12 +19854,12 @@ function compileClassMetadata(metadata) {
19854
19854
  return iife.callFn([]);
19855
19855
  }
19856
19856
 
19857
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
19857
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
19858
19858
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
19859
19859
  function compileDeclareClassMetadata(metadata) {
19860
19860
  const definitionMap = new DefinitionMap();
19861
19861
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
19862
- definitionMap.set("version", literal("16.0.0-rc.2"));
19862
+ definitionMap.set("version", literal("16.0.0-rc.3"));
19863
19863
  definitionMap.set("ngImport", importExpr(Identifiers.core));
19864
19864
  definitionMap.set("type", metadata.type);
19865
19865
  definitionMap.set("decorators", metadata.decorators);
@@ -19868,7 +19868,7 @@ function compileDeclareClassMetadata(metadata) {
19868
19868
  return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
19869
19869
  }
19870
19870
 
19871
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
19871
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
19872
19872
  function toOptionalLiteralArray(values, mapper) {
19873
19873
  if (values === null || values.length === 0) {
19874
19874
  return null;
@@ -19916,7 +19916,7 @@ function compileDependency(dep) {
19916
19916
  return depMeta.toLiteralMap();
19917
19917
  }
19918
19918
 
19919
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
19919
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
19920
19920
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
19921
19921
  function compileDeclareDirectiveFromMetadata(meta) {
19922
19922
  const definitionMap = createDirectiveDefinitionMap(meta);
@@ -19928,7 +19928,7 @@ function createDirectiveDefinitionMap(meta) {
19928
19928
  var _a2;
19929
19929
  const definitionMap = new DefinitionMap();
19930
19930
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
19931
- definitionMap.set("version", literal("16.0.0-rc.2"));
19931
+ definitionMap.set("version", literal("16.0.0-rc.3"));
19932
19932
  definitionMap.set("type", meta.type.value);
19933
19933
  if (meta.isStandalone) {
19934
19934
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -20018,7 +20018,7 @@ function createHostDirectives(hostDirectives) {
20018
20018
  return literalArr(expressions);
20019
20019
  }
20020
20020
 
20021
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
20021
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
20022
20022
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
20023
20023
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
20024
20024
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -20105,12 +20105,12 @@ function compileUsedDependenciesMetadata(meta) {
20105
20105
  });
20106
20106
  }
20107
20107
 
20108
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
20108
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
20109
20109
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
20110
20110
  function compileDeclareFactoryFunction(meta) {
20111
20111
  const definitionMap = new DefinitionMap();
20112
20112
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
20113
- definitionMap.set("version", literal("16.0.0-rc.2"));
20113
+ definitionMap.set("version", literal("16.0.0-rc.3"));
20114
20114
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20115
20115
  definitionMap.set("type", meta.type.value);
20116
20116
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -20122,7 +20122,7 @@ function compileDeclareFactoryFunction(meta) {
20122
20122
  };
20123
20123
  }
20124
20124
 
20125
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
20125
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
20126
20126
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
20127
20127
  function compileDeclareInjectableFromMetadata(meta) {
20128
20128
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -20133,7 +20133,7 @@ function compileDeclareInjectableFromMetadata(meta) {
20133
20133
  function createInjectableDefinitionMap(meta) {
20134
20134
  const definitionMap = new DefinitionMap();
20135
20135
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
20136
- definitionMap.set("version", literal("16.0.0-rc.2"));
20136
+ definitionMap.set("version", literal("16.0.0-rc.3"));
20137
20137
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20138
20138
  definitionMap.set("type", meta.type.value);
20139
20139
  if (meta.providedIn !== void 0) {
@@ -20160,7 +20160,7 @@ function createInjectableDefinitionMap(meta) {
20160
20160
  return definitionMap;
20161
20161
  }
20162
20162
 
20163
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
20163
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
20164
20164
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
20165
20165
  function compileDeclareInjectorFromMetadata(meta) {
20166
20166
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -20171,7 +20171,7 @@ function compileDeclareInjectorFromMetadata(meta) {
20171
20171
  function createInjectorDefinitionMap(meta) {
20172
20172
  const definitionMap = new DefinitionMap();
20173
20173
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
20174
- definitionMap.set("version", literal("16.0.0-rc.2"));
20174
+ definitionMap.set("version", literal("16.0.0-rc.3"));
20175
20175
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20176
20176
  definitionMap.set("type", meta.type.value);
20177
20177
  definitionMap.set("providers", meta.providers);
@@ -20181,7 +20181,7 @@ function createInjectorDefinitionMap(meta) {
20181
20181
  return definitionMap;
20182
20182
  }
20183
20183
 
20184
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
20184
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
20185
20185
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
20186
20186
  function compileDeclareNgModuleFromMetadata(meta) {
20187
20187
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -20192,7 +20192,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
20192
20192
  function createNgModuleDefinitionMap(meta) {
20193
20193
  const definitionMap = new DefinitionMap();
20194
20194
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
20195
- definitionMap.set("version", literal("16.0.0-rc.2"));
20195
+ definitionMap.set("version", literal("16.0.0-rc.3"));
20196
20196
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20197
20197
  definitionMap.set("type", meta.type.value);
20198
20198
  if (meta.bootstrap.length > 0) {
@@ -20216,7 +20216,7 @@ function createNgModuleDefinitionMap(meta) {
20216
20216
  return definitionMap;
20217
20217
  }
20218
20218
 
20219
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
20219
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
20220
20220
  var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
20221
20221
  function compileDeclarePipeFromMetadata(meta) {
20222
20222
  const definitionMap = createPipeDefinitionMap(meta);
@@ -20227,7 +20227,7 @@ function compileDeclarePipeFromMetadata(meta) {
20227
20227
  function createPipeDefinitionMap(meta) {
20228
20228
  const definitionMap = new DefinitionMap();
20229
20229
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
20230
- definitionMap.set("version", literal("16.0.0-rc.2"));
20230
+ definitionMap.set("version", literal("16.0.0-rc.3"));
20231
20231
  definitionMap.set("ngImport", importExpr(Identifiers.core));
20232
20232
  definitionMap.set("type", meta.type.value);
20233
20233
  if (meta.isStandalone) {
@@ -20240,13 +20240,13 @@ function createPipeDefinitionMap(meta) {
20240
20240
  return definitionMap;
20241
20241
  }
20242
20242
 
20243
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
20243
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler.mjs
20244
20244
  publishFacade(_global);
20245
20245
 
20246
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
20247
- var VERSION3 = new Version("16.0.0-rc.2");
20246
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
20247
+ var VERSION3 = new Version("16.0.0-rc.3");
20248
20248
 
20249
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
20249
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
20250
20250
  var EmitFlags;
20251
20251
  (function(EmitFlags2) {
20252
20252
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -20258,13 +20258,13 @@ var EmitFlags;
20258
20258
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
20259
20259
  })(EmitFlags || (EmitFlags = {}));
20260
20260
 
20261
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
20261
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
20262
20262
  var import_typescript2 = __toESM(require("typescript"), 1);
20263
20263
 
20264
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
20264
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
20265
20265
  var import_typescript94 = __toESM(require("typescript"), 1);
20266
20266
 
20267
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
20267
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
20268
20268
  var path = __toESM(require("path"), 1);
20269
20269
  function i18nGetExtension(formatName) {
20270
20270
  const format = formatName.toLowerCase();
@@ -20314,10 +20314,10 @@ function getPathNormalizer(basePath) {
20314
20314
  };
20315
20315
  }
20316
20316
 
20317
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
20317
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
20318
20318
  var import_typescript3 = __toESM(require("typescript"), 1);
20319
20319
 
20320
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
20320
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
20321
20321
  function toNumbers(value) {
20322
20322
  const suffixIndex = value.lastIndexOf("-");
20323
20323
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -20352,7 +20352,7 @@ function compareVersions(v1, v2) {
20352
20352
  return compareNumbers(toNumbers(v1), toNumbers(v2));
20353
20353
  }
20354
20354
 
20355
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
20355
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
20356
20356
  var MIN_TS_VERSION = "4.9.3";
20357
20357
  var MAX_TS_VERSION = "5.1.0";
20358
20358
  var tsVersion = import_typescript3.default.version;
@@ -20365,13 +20365,13 @@ function verifySupportedTypeScriptVersion() {
20365
20365
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
20366
20366
  }
20367
20367
 
20368
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
20368
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
20369
20369
  var import_typescript90 = __toESM(require("typescript"), 1);
20370
20370
 
20371
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
20371
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
20372
20372
  var import_typescript14 = __toESM(require("typescript"), 1);
20373
20373
 
20374
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
20374
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
20375
20375
  var ErrorCode;
20376
20376
  (function(ErrorCode2) {
20377
20377
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -20444,7 +20444,7 @@ var ErrorCode;
20444
20444
  ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
20445
20445
  })(ErrorCode || (ErrorCode = {}));
20446
20446
 
20447
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
20447
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
20448
20448
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
20449
20449
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
20450
20450
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -20456,15 +20456,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
20456
20456
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
20457
20457
  ]);
20458
20458
 
20459
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
20459
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
20460
20460
  var import_typescript4 = __toESM(require("typescript"), 1);
20461
20461
 
20462
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
20462
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
20463
20463
  function ngErrorCode(code) {
20464
20464
  return parseInt("-99" + code);
20465
20465
  }
20466
20466
 
20467
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
20467
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
20468
20468
  var FatalDiagnosticError = class {
20469
20469
  constructor(code, node, message, relatedInformation) {
20470
20470
  this.code = code;
@@ -20520,10 +20520,10 @@ function addDiagnosticChain(messageText, add) {
20520
20520
  return messageText;
20521
20521
  }
20522
20522
 
20523
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
20523
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
20524
20524
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
20525
20525
 
20526
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
20526
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
20527
20527
  var ExtendedTemplateDiagnosticName;
20528
20528
  (function(ExtendedTemplateDiagnosticName2) {
20529
20529
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -20536,13 +20536,13 @@ var ExtendedTemplateDiagnosticName;
20536
20536
  ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
20537
20537
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
20538
20538
 
20539
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
20539
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
20540
20540
  var import_typescript13 = __toESM(require("typescript"), 1);
20541
20541
 
20542
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
20542
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
20543
20543
  var import_typescript7 = __toESM(require("typescript"), 1);
20544
20544
 
20545
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
20545
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
20546
20546
  var import_typescript5 = __toESM(require("typescript"), 1);
20547
20547
  var TS = /\.tsx?$/i;
20548
20548
  var D_TS = /\.d\.ts$/i;
@@ -20643,7 +20643,7 @@ function toUnredirectedSourceFile(sf) {
20643
20643
  return redirectInfo.unredirected;
20644
20644
  }
20645
20645
 
20646
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
20646
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
20647
20647
  function findExportedNameOfNode(target, file, reflector) {
20648
20648
  const exports = reflector.getExportsOfModule(file);
20649
20649
  if (exports === null) {
@@ -20663,7 +20663,7 @@ function findExportedNameOfNode(target, file, reflector) {
20663
20663
  return foundExportName;
20664
20664
  }
20665
20665
 
20666
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
20666
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
20667
20667
  var ImportFlags;
20668
20668
  (function(ImportFlags2) {
20669
20669
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -20879,7 +20879,7 @@ var UnifiedModulesStrategy = class {
20879
20879
  }
20880
20880
  };
20881
20881
 
20882
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
20882
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
20883
20883
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
20884
20884
  var UnifiedModulesAliasingHost = class {
20885
20885
  constructor(unifiedModulesHost) {
@@ -20946,7 +20946,7 @@ var AliasStrategy = class {
20946
20946
  }
20947
20947
  };
20948
20948
 
20949
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
20949
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
20950
20950
  function relativePathBetween(from, to) {
20951
20951
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
20952
20952
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -20955,7 +20955,7 @@ function normalizeSeparators2(path3) {
20955
20955
  return path3.replace(/\\/g, "/");
20956
20956
  }
20957
20957
 
20958
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
20958
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
20959
20959
  var NoopImportRewriter = class {
20960
20960
  shouldImportSymbol(symbol, specifier) {
20961
20961
  return true;
@@ -21013,7 +21013,7 @@ function validateAndRewriteCoreSymbol(name) {
21013
21013
  return CORE_SUPPORTED_SYMBOLS.get(name);
21014
21014
  }
21015
21015
 
21016
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
21016
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
21017
21017
  var import_typescript9 = __toESM(require("typescript"), 1);
21018
21018
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
21019
21019
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -21048,7 +21048,7 @@ function throwIncompatibleTransformationContextError() {
21048
21048
  throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
21049
21049
  }
21050
21050
 
21051
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
21051
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
21052
21052
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
21053
21053
  function attachDefaultImportDeclaration(expr, importDecl) {
21054
21054
  expr[DefaultImportDeclaration] = importDecl;
@@ -21089,7 +21089,7 @@ var DefaultImportTracker = class {
21089
21089
  }
21090
21090
  };
21091
21091
 
21092
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
21092
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
21093
21093
  var Reference2 = class {
21094
21094
  constructor(node, bestGuessOwningModule = null) {
21095
21095
  this.node = node;
@@ -21152,7 +21152,7 @@ var Reference2 = class {
21152
21152
  }
21153
21153
  };
21154
21154
 
21155
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
21155
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
21156
21156
  var ModuleResolver = class {
21157
21157
  constructor(program, compilerOptions, host, moduleResolutionCache) {
21158
21158
  this.program = program;
@@ -21169,7 +21169,7 @@ var ModuleResolver = class {
21169
21169
  }
21170
21170
  };
21171
21171
 
21172
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
21172
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
21173
21173
  function valueReferenceToExpression(valueRef) {
21174
21174
  if (valueRef.kind === 2) {
21175
21175
  return null;
@@ -21404,7 +21404,7 @@ function isAbstractClassDeclaration(clazz) {
21404
21404
  return import_typescript13.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript13.default.SyntaxKind.AbstractKeyword) : false;
21405
21405
  }
21406
21406
 
21407
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
21407
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
21408
21408
  function getConstructorDependencies(clazz, reflector, isCore) {
21409
21409
  const deps = [];
21410
21410
  const errors = [];
@@ -21546,10 +21546,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
21546
21546
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
21547
21547
  }
21548
21548
 
21549
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21549
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21550
21550
  var import_typescript27 = __toESM(require("typescript"), 1);
21551
21551
 
21552
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
21552
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
21553
21553
  var MetaKind;
21554
21554
  (function(MetaKind2) {
21555
21555
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -21562,10 +21562,10 @@ var MatchSource;
21562
21562
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
21563
21563
  })(MatchSource || (MatchSource = {}));
21564
21564
 
21565
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
21565
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
21566
21566
  var import_typescript22 = __toESM(require("typescript"), 1);
21567
21567
 
21568
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
21568
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
21569
21569
  var import_typescript15 = __toESM(require("typescript"), 1);
21570
21570
  function isDecoratorIdentifier(exp) {
21571
21571
  return import_typescript15.default.isIdentifier(exp) || import_typescript15.default.isPropertyAccessExpression(exp) && import_typescript15.default.isIdentifier(exp.expression) && import_typescript15.default.isIdentifier(exp.name);
@@ -21579,7 +21579,7 @@ var ClassMemberKind;
21579
21579
  ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
21580
21580
  })(ClassMemberKind || (ClassMemberKind = {}));
21581
21581
 
21582
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
21582
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
21583
21583
  var import_typescript16 = __toESM(require("typescript"), 1);
21584
21584
  function typeToValue(typeNode, checker) {
21585
21585
  if (typeNode === null) {
@@ -21745,10 +21745,10 @@ function extractModuleName(node) {
21745
21745
  return node.moduleSpecifier.text;
21746
21746
  }
21747
21747
 
21748
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
21748
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
21749
21749
  var import_typescript18 = __toESM(require("typescript"), 1);
21750
21750
 
21751
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
21751
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
21752
21752
  var import_typescript17 = __toESM(require("typescript"), 1);
21753
21753
  function isNamedClassDeclaration(node) {
21754
21754
  return import_typescript17.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -21757,7 +21757,7 @@ function isIdentifier(node) {
21757
21757
  return node !== void 0 && import_typescript17.default.isIdentifier(node);
21758
21758
  }
21759
21759
 
21760
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
21760
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
21761
21761
  var TypeScriptReflectionHost = class {
21762
21762
  constructor(checker) {
21763
21763
  this.checker = checker;
@@ -22178,7 +22178,7 @@ function getExportedName(decl, originalId) {
22178
22178
  }
22179
22179
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
22180
22180
 
22181
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
22181
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
22182
22182
  var ClassPropertyMapping = class {
22183
22183
  constructor(forwardMap) {
22184
22184
  this.forwardMap = forwardMap;
@@ -22256,7 +22256,7 @@ function reverseMapFromForwardMap(forwardMap) {
22256
22256
  return reverseMap;
22257
22257
  }
22258
22258
 
22259
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
22259
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
22260
22260
  var import_typescript20 = __toESM(require("typescript"), 1);
22261
22261
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
22262
22262
  if (!import_typescript20.default.isTupleTypeNode(def)) {
@@ -22438,7 +22438,7 @@ function hasInjectableFields(clazz, host) {
22438
22438
  return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
22439
22439
  }
22440
22440
 
22441
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
22441
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
22442
22442
  var DtsMetadataReader = class {
22443
22443
  constructor(checker, reflector) {
22444
22444
  this.checker = checker;
@@ -22608,7 +22608,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
22608
22608
  return result.length > 0 ? result : null;
22609
22609
  }
22610
22610
 
22611
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
22611
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
22612
22612
  function flattenInheritedDirectiveMetadata(reader, dir) {
22613
22613
  const topMeta = reader.getDirectiveMetadata(dir);
22614
22614
  if (topMeta === null) {
@@ -22665,7 +22665,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
22665
22665
  });
22666
22666
  }
22667
22667
 
22668
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
22668
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
22669
22669
  var LocalMetadataRegistry = class {
22670
22670
  constructor() {
22671
22671
  this.directives = /* @__PURE__ */ new Map();
@@ -22722,7 +22722,7 @@ var CompoundMetadataRegistry = class {
22722
22722
  }
22723
22723
  };
22724
22724
 
22725
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
22725
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
22726
22726
  var ResourceRegistry = class {
22727
22727
  constructor() {
22728
22728
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -22787,7 +22787,7 @@ var ResourceRegistry = class {
22787
22787
  }
22788
22788
  };
22789
22789
 
22790
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
22790
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
22791
22791
  var ExportedProviderStatusResolver = class {
22792
22792
  constructor(metaReader) {
22793
22793
  this.metaReader = metaReader;
@@ -22831,7 +22831,7 @@ var ExportedProviderStatusResolver = class {
22831
22831
  }
22832
22832
  };
22833
22833
 
22834
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
22834
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
22835
22835
  var EMPTY_ARRAY = [];
22836
22836
  var HostDirectivesResolver = class {
22837
22837
  constructor(metaReader) {
@@ -22891,10 +22891,10 @@ function resolveOutput(bindingName) {
22891
22891
  return bindingName;
22892
22892
  }
22893
22893
 
22894
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
22894
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
22895
22895
  var import_typescript24 = __toESM(require("typescript"), 1);
22896
22896
 
22897
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
22897
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
22898
22898
  var DynamicValue = class {
22899
22899
  constructor(node, reason, code) {
22900
22900
  this.node = node;
@@ -22984,7 +22984,7 @@ var DynamicValue = class {
22984
22984
  }
22985
22985
  };
22986
22986
 
22987
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
22987
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
22988
22988
  var ResolvedModule = class {
22989
22989
  constructor(exports, evaluate) {
22990
22990
  this.exports = exports;
@@ -23014,7 +23014,7 @@ var EnumValue = class {
23014
23014
  var KnownFn = class {
23015
23015
  };
23016
23016
 
23017
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
23017
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
23018
23018
  function describeResolvedType(value, maxDepth = 1) {
23019
23019
  var _a2, _b;
23020
23020
  if (value === null) {
@@ -23143,10 +23143,10 @@ function getContainerNode(node) {
23143
23143
  return node.getSourceFile();
23144
23144
  }
23145
23145
 
23146
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
23146
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
23147
23147
  var import_typescript25 = __toESM(require("typescript"), 1);
23148
23148
 
23149
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
23149
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
23150
23150
  var ArraySliceBuiltinFn = class extends KnownFn {
23151
23151
  constructor(lhs) {
23152
23152
  super();
@@ -23198,14 +23198,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
23198
23198
  }
23199
23199
  };
23200
23200
 
23201
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
23201
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
23202
23202
  var SyntheticValue = class {
23203
23203
  constructor(value) {
23204
23204
  this.value = value;
23205
23205
  }
23206
23206
  };
23207
23207
 
23208
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
23208
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
23209
23209
  function literalBinaryOp(op) {
23210
23210
  return { op, literal: true };
23211
23211
  }
@@ -23780,7 +23780,7 @@ function owningModule(context, override = null) {
23780
23780
  }
23781
23781
  }
23782
23782
 
23783
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
23783
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
23784
23784
  var PartialEvaluator = class {
23785
23785
  constructor(host, checker, dependencyTracker) {
23786
23786
  this.host = host;
@@ -23800,7 +23800,7 @@ var PartialEvaluator = class {
23800
23800
  }
23801
23801
  };
23802
23802
 
23803
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
23803
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
23804
23804
  function makeDuplicateDeclarationError(node, data, kind) {
23805
23805
  const context = [];
23806
23806
  for (const decl of data) {
@@ -23996,7 +23996,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
23996
23996
  return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${kind.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 @${baseNeedsDecorator} decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
23997
23997
  }
23998
23998
 
23999
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
23999
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
24000
24000
  var import_typescript29 = __toESM(require("typescript"), 1);
24001
24001
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
24002
24002
  let resolved = null;
@@ -24029,7 +24029,7 @@ function resolveLiteral(decorator, literalCache) {
24029
24029
  return meta;
24030
24030
  }
24031
24031
 
24032
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
24032
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
24033
24033
  function compileNgFactoryDefField(metadata) {
24034
24034
  const res = compileFactoryFunction(metadata);
24035
24035
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
@@ -24039,7 +24039,7 @@ function compileDeclareFactory(metadata) {
24039
24039
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
24040
24040
  }
24041
24041
 
24042
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
24042
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
24043
24043
  var InjectableClassRegistry = class {
24044
24044
  constructor(host, isCore) {
24045
24045
  this.host = host;
@@ -24065,7 +24065,7 @@ var InjectableClassRegistry = class {
24065
24065
  }
24066
24066
  };
24067
24067
 
24068
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
24068
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
24069
24069
  var import_typescript30 = __toESM(require("typescript"), 1);
24070
24070
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
24071
24071
  if (!reflection.isClass(clazz)) {
@@ -24151,13 +24151,13 @@ function removeIdentifierReferences(node, name) {
24151
24151
  return result.transformed[0];
24152
24152
  }
24153
24153
 
24154
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
24154
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
24155
24155
  var NoopReferencesRegistry = class {
24156
24156
  add(source, ...references) {
24157
24157
  }
24158
24158
  };
24159
24159
 
24160
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
24160
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
24161
24161
  function extractSchemas(rawExpr, evaluator, context) {
24162
24162
  const schemas = [];
24163
24163
  const result = evaluator.evaluate(rawExpr);
@@ -24186,10 +24186,10 @@ function extractSchemas(rawExpr, evaluator, context) {
24186
24186
  return schemas;
24187
24187
  }
24188
24188
 
24189
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
24189
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
24190
24190
  var import_typescript51 = __toESM(require("typescript"), 1);
24191
24191
 
24192
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
24192
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
24193
24193
  var import_typescript31 = __toESM(require("typescript"), 1);
24194
24194
  var SemanticSymbol = class {
24195
24195
  constructor(decl) {
@@ -24205,7 +24205,7 @@ function getSymbolIdentifier(decl) {
24205
24205
  return decl.name.text;
24206
24206
  }
24207
24207
 
24208
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
24208
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
24209
24209
  var OpaqueSymbol = class extends SemanticSymbol {
24210
24210
  isPublicApiAffected() {
24211
24211
  return false;
@@ -24347,10 +24347,10 @@ function getImportPath(expr) {
24347
24347
  }
24348
24348
  }
24349
24349
 
24350
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
24350
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
24351
24351
  var import_typescript32 = __toESM(require("typescript"), 1);
24352
24352
 
24353
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
24353
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
24354
24354
  function isSymbolEqual(a, b) {
24355
24355
  if (a.decl === b.decl) {
24356
24356
  return true;
@@ -24400,7 +24400,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
24400
24400
  return true;
24401
24401
  }
24402
24402
 
24403
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
24403
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
24404
24404
  function extractSemanticTypeParameters(node) {
24405
24405
  if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
24406
24406
  return null;
@@ -24420,7 +24420,7 @@ function isTypeParameterEqual(a, b) {
24420
24420
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
24421
24421
  }
24422
24422
 
24423
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
24423
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
24424
24424
  var PerfPhase;
24425
24425
  (function(PerfPhase2) {
24426
24426
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -24487,7 +24487,7 @@ var PerfCheckpoint;
24487
24487
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
24488
24488
  })(PerfCheckpoint || (PerfCheckpoint = {}));
24489
24489
 
24490
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
24490
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
24491
24491
  var NoopPerfRecorder = class {
24492
24492
  eventCount() {
24493
24493
  }
@@ -24504,7 +24504,7 @@ var NoopPerfRecorder = class {
24504
24504
  };
24505
24505
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
24506
24506
 
24507
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
24507
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
24508
24508
  function mark() {
24509
24509
  return process.hrtime();
24510
24510
  }
@@ -24513,7 +24513,7 @@ function timeSinceInMicros(mark2) {
24513
24513
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
24514
24514
  }
24515
24515
 
24516
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
24516
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
24517
24517
  var ActivePerfRecorder = class {
24518
24518
  static zeroedToNow() {
24519
24519
  return new ActivePerfRecorder(mark());
@@ -24607,14 +24607,14 @@ var DelegatingPerfRecorder = class {
24607
24607
  }
24608
24608
  };
24609
24609
 
24610
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
24610
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
24611
24611
  var ComponentScopeKind;
24612
24612
  (function(ComponentScopeKind2) {
24613
24613
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
24614
24614
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
24615
24615
  })(ComponentScopeKind || (ComponentScopeKind = {}));
24616
24616
 
24617
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
24617
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
24618
24618
  var CompoundComponentScopeReader = class {
24619
24619
  constructor(readers) {
24620
24620
  this.readers = readers;
@@ -24639,7 +24639,7 @@ var CompoundComponentScopeReader = class {
24639
24639
  }
24640
24640
  };
24641
24641
 
24642
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
24642
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
24643
24643
  var MetadataDtsModuleScopeResolver = class {
24644
24644
  constructor(dtsMetaReader, aliasingHost) {
24645
24645
  this.dtsMetaReader = dtsMetaReader;
@@ -24714,10 +24714,10 @@ var MetadataDtsModuleScopeResolver = class {
24714
24714
  }
24715
24715
  };
24716
24716
 
24717
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
24717
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
24718
24718
  var import_typescript33 = __toESM(require("typescript"), 1);
24719
24719
 
24720
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
24720
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
24721
24721
  function getDiagnosticNode(ref, rawExpr) {
24722
24722
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
24723
24723
  }
@@ -24740,7 +24740,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
24740
24740
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
24741
24741
  }
24742
24742
 
24743
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
24743
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
24744
24744
  var LocalModuleScopeRegistry = class {
24745
24745
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
24746
24746
  this.localReader = localReader;
@@ -25079,7 +25079,7 @@ function reexportCollision(module3, refA, refB) {
25079
25079
  ]);
25080
25080
  }
25081
25081
 
25082
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
25082
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
25083
25083
  var import_typescript35 = __toESM(require("typescript"), 1);
25084
25084
  var TypeCheckScopeRegistry = class {
25085
25085
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -25147,11 +25147,12 @@ var TypeCheckScopeRegistry = class {
25147
25147
  }
25148
25148
  };
25149
25149
 
25150
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
25150
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
25151
25151
  var CompilationMode;
25152
25152
  (function(CompilationMode2) {
25153
25153
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
25154
25154
  CompilationMode2[CompilationMode2["PARTIAL"] = 1] = "PARTIAL";
25155
+ CompilationMode2[CompilationMode2["LOCAL"] = 2] = "LOCAL";
25155
25156
  })(CompilationMode || (CompilationMode = {}));
25156
25157
  var HandlerPrecedence;
25157
25158
  (function(HandlerPrecedence2) {
@@ -25165,7 +25166,7 @@ var HandlerFlags;
25165
25166
  HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
25166
25167
  })(HandlerFlags || (HandlerFlags = {}));
25167
25168
 
25168
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
25169
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
25169
25170
  var import_typescript36 = __toESM(require("typescript"), 1);
25170
25171
  function aliasTransformFactory(exportStatements) {
25171
25172
  return () => {
@@ -25188,10 +25189,10 @@ function aliasTransformFactory(exportStatements) {
25188
25189
  };
25189
25190
  }
25190
25191
 
25191
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
25192
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
25192
25193
  var import_typescript37 = __toESM(require("typescript"), 1);
25193
25194
 
25194
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
25195
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
25195
25196
  var TraitState;
25196
25197
  (function(TraitState2) {
25197
25198
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -25248,7 +25249,7 @@ var TraitImpl = class {
25248
25249
  }
25249
25250
  };
25250
25251
 
25251
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
25252
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
25252
25253
  var TraitCompiler = class {
25253
25254
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
25254
25255
  this.handlers = handlers;
@@ -25683,10 +25684,10 @@ function containsErrors(diagnostics) {
25683
25684
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
25684
25685
  }
25685
25686
 
25686
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
25687
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
25687
25688
  var import_typescript43 = __toESM(require("typescript"), 1);
25688
25689
 
25689
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
25690
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
25690
25691
  var Context = class {
25691
25692
  constructor(isStatement) {
25692
25693
  this.isStatement = isStatement;
@@ -25699,7 +25700,7 @@ var Context = class {
25699
25700
  }
25700
25701
  };
25701
25702
 
25702
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
25703
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
25703
25704
  var import_typescript39 = __toESM(require("typescript"), 1);
25704
25705
  var ImportManager = class {
25705
25706
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -25735,7 +25736,7 @@ var ImportManager = class {
25735
25736
  }
25736
25737
  };
25737
25738
 
25738
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
25739
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
25739
25740
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
25740
25741
  [UnaryOperator.Minus, "-"],
25741
25742
  [UnaryOperator.Plus, "+"]
@@ -25966,7 +25967,7 @@ function createRange(span) {
25966
25967
  };
25967
25968
  }
25968
25969
 
25969
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
25970
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
25970
25971
  var import_typescript40 = __toESM(require("typescript"), 1);
25971
25972
  function translateType(type, imports) {
25972
25973
  return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
@@ -26141,7 +26142,7 @@ var TypeTranslatorVisitor = class {
26141
26142
  }
26142
26143
  };
26143
26144
 
26144
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
26145
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
26145
26146
  var import_typescript41 = __toESM(require("typescript"), 1);
26146
26147
  var PureAnnotation;
26147
26148
  (function(PureAnnotation2) {
@@ -26324,7 +26325,7 @@ function attachComments(statement, leadingComments) {
26324
26325
  }
26325
26326
  }
26326
26327
 
26327
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
26328
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
26328
26329
  function translateExpression(expression, imports, options = {}) {
26329
26330
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
26330
26331
  }
@@ -26332,7 +26333,7 @@ function translateStatement(statement, imports, options = {}) {
26332
26333
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
26333
26334
  }
26334
26335
 
26335
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
26336
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
26336
26337
  var import_typescript42 = __toESM(require("typescript"), 1);
26337
26338
  function addImports(importManager, sf, extraStatements = []) {
26338
26339
  const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
@@ -26368,7 +26369,7 @@ function isImportStatement(stmt) {
26368
26369
  return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
26369
26370
  }
26370
26371
 
26371
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
26372
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
26372
26373
  var DtsTransformRegistry = class {
26373
26374
  constructor() {
26374
26375
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -26513,10 +26514,10 @@ function markForEmitAsSingleLine(node) {
26513
26514
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
26514
26515
  }
26515
26516
 
26516
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
26517
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
26517
26518
  var import_typescript45 = __toESM(require("typescript"), 1);
26518
26519
 
26519
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
26520
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
26520
26521
  var import_typescript44 = __toESM(require("typescript"), 1);
26521
26522
  function visit(node, visitor, context) {
26522
26523
  return visitor._visit(node, context);
@@ -26577,7 +26578,7 @@ var Visitor = class {
26577
26578
  }
26578
26579
  };
26579
26580
 
26580
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
26581
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
26581
26582
  var NO_DECORATORS = /* @__PURE__ */ new Set();
26582
26583
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
26583
26584
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -26785,7 +26786,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
26785
26786
  return array;
26786
26787
  }
26787
26788
 
26788
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
26789
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
26789
26790
  var import_typescript46 = __toESM(require("typescript"), 1);
26790
26791
  var EMPTY_OBJECT = {};
26791
26792
  var QUERY_TYPES = /* @__PURE__ */ new Set([
@@ -27256,7 +27257,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
27256
27257
  };
27257
27258
  }
27258
27259
 
27259
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
27260
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
27260
27261
  var DirectiveSymbol = class extends SemanticSymbol {
27261
27262
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
27262
27263
  super(decl);
@@ -27336,7 +27337,7 @@ function isBaseClassEqual(current, previous) {
27336
27337
  return isSymbolEqual(current, previous);
27337
27338
  }
27338
27339
 
27339
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
27340
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
27340
27341
  var FIELD_DECORATORS = [
27341
27342
  "Input",
27342
27343
  "Output",
@@ -27496,10 +27497,10 @@ var DirectiveDecoratorHandler = class {
27496
27497
  }
27497
27498
  };
27498
27499
 
27499
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
27500
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
27500
27501
  var import_typescript48 = __toESM(require("typescript"), 1);
27501
27502
 
27502
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
27503
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
27503
27504
  var import_typescript47 = __toESM(require("typescript"), 1);
27504
27505
  function createModuleWithProvidersResolver(reflector, isCore) {
27505
27506
  function _reflectModuleFromTypeParam(type, node) {
@@ -27566,7 +27567,7 @@ function isResolvedModuleWithProviders(sv) {
27566
27567
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
27567
27568
  }
27568
27569
 
27569
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
27570
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
27570
27571
  var NgModuleSymbol = class extends SemanticSymbol {
27571
27572
  constructor(decl, hasProviders) {
27572
27573
  super(decl);
@@ -28088,7 +28089,7 @@ function isSyntheticReference(ref) {
28088
28089
  return ref.synthetic;
28089
28090
  }
28090
28091
 
28091
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
28092
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
28092
28093
  function makeCyclicImportInfo(ref, type, cycle) {
28093
28094
  const name = ref.debugName || "(unknown)";
28094
28095
  const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -28111,7 +28112,7 @@ function checkCustomElementSelectorForErrors(selector) {
28111
28112
  return null;
28112
28113
  }
28113
28114
 
28114
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
28115
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
28115
28116
  var import_typescript50 = __toESM(require("typescript"), 1);
28116
28117
  function getTemplateDeclarationNodeForError(declaration) {
28117
28118
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -28421,7 +28422,7 @@ function _extractTemplateStyleUrls(template2) {
28421
28422
  return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
28422
28423
  }
28423
28424
 
28424
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
28425
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
28425
28426
  var ComponentSymbol = class extends DirectiveSymbol {
28426
28427
  constructor() {
28427
28428
  super(...arguments);
@@ -28456,7 +28457,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
28456
28457
  }
28457
28458
  };
28458
28459
 
28459
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
28460
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
28460
28461
  function collectAnimationNames(value, animationTriggerNames) {
28461
28462
  if (value instanceof Map) {
28462
28463
  const name = value.get("name");
@@ -28532,7 +28533,7 @@ function isLikelyModuleWithProviders(value) {
28532
28533
  return false;
28533
28534
  }
28534
28535
 
28535
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
28536
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
28536
28537
  var EMPTY_ARRAY2 = [];
28537
28538
  var ComponentDecoratorHandler = class {
28538
28539
  constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver) {
@@ -29180,7 +29181,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
29180
29181
  return diagnostics;
29181
29182
  }
29182
29183
 
29183
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
29184
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
29184
29185
  var import_typescript53 = __toESM(require("typescript"), 1);
29185
29186
  var InjectableDecoratorHandler = class {
29186
29187
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
@@ -29394,7 +29395,7 @@ function getDep(dep, reflector) {
29394
29395
  return meta;
29395
29396
  }
29396
29397
 
29397
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
29398
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
29398
29399
  var import_typescript54 = __toESM(require("typescript"), 1);
29399
29400
  var PipeSymbol = class extends SemanticSymbol {
29400
29401
  constructor(decl, name) {
@@ -29537,7 +29538,7 @@ var PipeDecoratorHandler = class {
29537
29538
  }
29538
29539
  };
29539
29540
 
29540
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
29541
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
29541
29542
  var CycleAnalyzer = class {
29542
29543
  constructor(importGraph) {
29543
29544
  this.importGraph = importGraph;
@@ -29608,7 +29609,7 @@ var Cycle = class {
29608
29609
  }
29609
29610
  };
29610
29611
 
29611
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
29612
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
29612
29613
  var import_typescript55 = __toESM(require("typescript"), 1);
29613
29614
  var ImportGraph = class {
29614
29615
  constructor(checker, perf) {
@@ -29700,7 +29701,7 @@ var Found = class {
29700
29701
  }
29701
29702
  };
29702
29703
 
29703
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
29704
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
29704
29705
  var import_typescript56 = __toESM(require("typescript"), 1);
29705
29706
  var FlatIndexGenerator = class {
29706
29707
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -29725,7 +29726,7 @@ export * from '${relativeEntryPoint}';
29725
29726
  }
29726
29727
  };
29727
29728
 
29728
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
29729
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
29729
29730
  function findFlatIndexEntryPoint(rootFiles) {
29730
29731
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
29731
29732
  let resolvedEntryPoint = null;
@@ -29741,7 +29742,7 @@ function findFlatIndexEntryPoint(rootFiles) {
29741
29742
  return resolvedEntryPoint;
29742
29743
  }
29743
29744
 
29744
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
29745
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
29745
29746
  var import_typescript58 = __toESM(require("typescript"), 1);
29746
29747
  function checkForPrivateExports(entryPoint, checker, refGraph) {
29747
29748
  const diagnostics = [];
@@ -29821,7 +29822,7 @@ function getDescriptorOfDeclaration(decl) {
29821
29822
  }
29822
29823
  }
29823
29824
 
29824
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
29825
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
29825
29826
  var ReferenceGraph = class {
29826
29827
  constructor() {
29827
29828
  this.references = /* @__PURE__ */ new Map();
@@ -29875,7 +29876,7 @@ var ReferenceGraph = class {
29875
29876
  }
29876
29877
  };
29877
29878
 
29878
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
29879
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
29879
29880
  var NgOriginalFile = Symbol("NgOriginalFile");
29880
29881
  var UpdateMode;
29881
29882
  (function(UpdateMode2) {
@@ -29883,13 +29884,13 @@ var UpdateMode;
29883
29884
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
29884
29885
  })(UpdateMode || (UpdateMode = {}));
29885
29886
 
29886
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
29887
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
29887
29888
  var import_typescript62 = __toESM(require("typescript"), 1);
29888
29889
 
29889
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
29890
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
29890
29891
  var import_typescript59 = __toESM(require("typescript"), 1);
29891
29892
 
29892
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
29893
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
29893
29894
  var NgExtension = Symbol("NgExtension");
29894
29895
  function isExtended(sf) {
29895
29896
  return sf[NgExtension] !== void 0;
@@ -29949,13 +29950,13 @@ function retagTsFile(sf) {
29949
29950
  }
29950
29951
  }
29951
29952
 
29952
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
29953
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
29953
29954
  var TS_EXTENSIONS = /\.tsx?$/i;
29954
29955
  function makeShimFileName(fileName, suffix) {
29955
29956
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
29956
29957
  }
29957
29958
 
29958
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
29959
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
29959
29960
  var ShimAdapter = class {
29960
29961
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
29961
29962
  this.delegate = delegate;
@@ -30050,7 +30051,7 @@ var ShimAdapter = class {
30050
30051
  }
30051
30052
  };
30052
30053
 
30053
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
30054
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
30054
30055
  var ShimReferenceTagger = class {
30055
30056
  constructor(shimExtensions) {
30056
30057
  this.tagged = /* @__PURE__ */ new Set();
@@ -30084,7 +30085,7 @@ var ShimReferenceTagger = class {
30084
30085
  }
30085
30086
  };
30086
30087
 
30087
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
30088
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
30088
30089
  var DelegatingCompilerHost = class {
30089
30090
  constructor(delegate) {
30090
30091
  this.delegate = delegate;
@@ -30197,7 +30198,7 @@ var TsCreateProgramDriver = class {
30197
30198
  }
30198
30199
  };
30199
30200
 
30200
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
30201
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
30201
30202
  var FileDependencyGraph = class {
30202
30203
  constructor() {
30203
30204
  this.nodes = /* @__PURE__ */ new Map();
@@ -30264,7 +30265,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
30264
30265
  return false;
30265
30266
  }
30266
30267
 
30267
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
30268
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
30268
30269
  var IncrementalStateKind;
30269
30270
  (function(IncrementalStateKind2) {
30270
30271
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -30272,7 +30273,7 @@ var IncrementalStateKind;
30272
30273
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
30273
30274
  })(IncrementalStateKind || (IncrementalStateKind = {}));
30274
30275
 
30275
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
30276
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
30276
30277
  var PhaseKind;
30277
30278
  (function(PhaseKind2) {
30278
30279
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -30473,7 +30474,7 @@ function toOriginalSourceFile(sf) {
30473
30474
  }
30474
30475
  }
30475
30476
 
30476
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
30477
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
30477
30478
  var TrackedIncrementalBuildStrategy = class {
30478
30479
  constructor() {
30479
30480
  this.state = null;
@@ -30494,7 +30495,7 @@ var TrackedIncrementalBuildStrategy = class {
30494
30495
  };
30495
30496
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
30496
30497
 
30497
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
30498
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
30498
30499
  var IdentifierKind;
30499
30500
  (function(IdentifierKind2) {
30500
30501
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -30512,7 +30513,7 @@ var AbsoluteSourceSpan2 = class {
30512
30513
  }
30513
30514
  };
30514
30515
 
30515
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
30516
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
30516
30517
  var IndexingContext = class {
30517
30518
  constructor() {
30518
30519
  this.components = /* @__PURE__ */ new Set();
@@ -30522,7 +30523,7 @@ var IndexingContext = class {
30522
30523
  }
30523
30524
  };
30524
30525
 
30525
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
30526
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
30526
30527
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
30527
30528
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
30528
30529
  super();
@@ -30758,7 +30759,7 @@ function getTemplateIdentifiers(boundTemplate) {
30758
30759
  return { identifiers: visitor.identifiers, errors: visitor.errors };
30759
30760
  }
30760
30761
 
30761
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
30762
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
30762
30763
  function generateAnalysis(context) {
30763
30764
  const analysis = /* @__PURE__ */ new Map();
30764
30765
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -30794,7 +30795,7 @@ function generateAnalysis(context) {
30794
30795
  return analysis;
30795
30796
  }
30796
30797
 
30797
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
30798
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
30798
30799
  var NgModuleIndexImpl = class {
30799
30800
  constructor(metaReader, localReader) {
30800
30801
  this.metaReader = metaReader;
@@ -30883,7 +30884,7 @@ var NgModuleIndexImpl = class {
30883
30884
  }
30884
30885
  };
30885
30886
 
30886
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
30887
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
30887
30888
  var import_typescript65 = __toESM(require("typescript"), 1);
30888
30889
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
30889
30890
  var RESOURCE_MARKER = ".$ngresource$";
@@ -31031,7 +31032,7 @@ function createLookupResolutionHost(adapter) {
31031
31032
  };
31032
31033
  }
31033
31034
 
31034
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
31035
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
31035
31036
  var StandaloneComponentScopeReader = class {
31036
31037
  constructor(metaReader, localModuleReader, dtsModuleReader) {
31037
31038
  this.metaReader = metaReader;
@@ -31109,21 +31110,21 @@ var StandaloneComponentScopeReader = class {
31109
31110
  }
31110
31111
  };
31111
31112
 
31112
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
31113
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
31113
31114
  var OptimizeFor;
31114
31115
  (function(OptimizeFor2) {
31115
31116
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
31116
31117
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
31117
31118
  })(OptimizeFor || (OptimizeFor = {}));
31118
31119
 
31119
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
31120
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
31120
31121
  var CompletionKind;
31121
31122
  (function(CompletionKind2) {
31122
31123
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
31123
31124
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
31124
31125
  })(CompletionKind || (CompletionKind = {}));
31125
31126
 
31126
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
31127
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
31127
31128
  var PotentialImportKind;
31128
31129
  (function(PotentialImportKind2) {
31129
31130
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -31135,7 +31136,7 @@ var PotentialImportMode;
31135
31136
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
31136
31137
  })(PotentialImportMode || (PotentialImportMode = {}));
31137
31138
 
31138
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
31139
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
31139
31140
  var SymbolKind;
31140
31141
  (function(SymbolKind2) {
31141
31142
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -31151,7 +31152,7 @@ var SymbolKind;
31151
31152
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
31152
31153
  })(SymbolKind || (SymbolKind = {}));
31153
31154
 
31154
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
31155
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
31155
31156
  var import_typescript66 = __toESM(require("typescript"), 1);
31156
31157
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
31157
31158
  var _a2;
@@ -31258,7 +31259,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
31258
31259
  return import_typescript66.default.createSourceFile(fileName, template2, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
31259
31260
  }
31260
31261
 
31261
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
31262
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
31262
31263
  var TEMPLATE_ID = Symbol("ngTemplateId");
31263
31264
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
31264
31265
  function getTemplateId(clazz) {
@@ -31275,10 +31276,10 @@ function allocateTemplateId(sf) {
31275
31276
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
31276
31277
  }
31277
31278
 
31278
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
31279
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
31279
31280
  var import_typescript68 = __toESM(require("typescript"), 1);
31280
31281
 
31281
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
31282
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
31282
31283
  var import_typescript67 = __toESM(require("typescript"), 1);
31283
31284
  var parseSpanComment = /^(\d+),(\d+)$/;
31284
31285
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -31407,7 +31408,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
31407
31408
  }) || false;
31408
31409
  }
31409
31410
 
31410
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
31411
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
31411
31412
  var CompletionEngine = class {
31412
31413
  constructor(tcb, data, tcbPath, tcbIsShim) {
31413
31414
  this.tcb = tcb;
@@ -31564,10 +31565,10 @@ var CompletionEngine = class {
31564
31565
  }
31565
31566
  };
31566
31567
 
31567
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31568
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31568
31569
  var import_typescript83 = __toESM(require("typescript"), 1);
31569
31570
 
31570
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
31571
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
31571
31572
  var import_typescript69 = __toESM(require("typescript"), 1);
31572
31573
  var REGISTRY = new DomElementSchemaRegistry();
31573
31574
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -31619,10 +31620,10 @@ var RegistryDomSchemaChecker = class {
31619
31620
  }
31620
31621
  };
31621
31622
 
31622
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
31623
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
31623
31624
  var import_typescript76 = __toESM(require("typescript"), 1);
31624
31625
 
31625
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
31626
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
31626
31627
  var import_typescript70 = __toESM(require("typescript"), 1);
31627
31628
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
31628
31629
  import_typescript70.default.SyntaxKind.ParenthesizedExpression,
@@ -31696,16 +31697,16 @@ function isAccessExpression(node) {
31696
31697
  return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
31697
31698
  }
31698
31699
 
31699
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
31700
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
31700
31701
  var import_typescript75 = __toESM(require("typescript"), 1);
31701
31702
 
31702
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
31703
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
31703
31704
  var import_typescript73 = __toESM(require("typescript"), 1);
31704
31705
 
31705
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
31706
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
31706
31707
  var import_typescript72 = __toESM(require("typescript"), 1);
31707
31708
 
31708
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
31709
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
31709
31710
  var import_typescript71 = __toESM(require("typescript"), 1);
31710
31711
  var INELIGIBLE = {};
31711
31712
  function canEmitType(type, canEmit) {
@@ -31780,7 +31781,7 @@ var TypeEmitter = class {
31780
31781
  }
31781
31782
  };
31782
31783
 
31783
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
31784
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
31784
31785
  var TypeParameterEmitter = class {
31785
31786
  constructor(typeParameters, reflector) {
31786
31787
  this.typeParameters = typeParameters;
@@ -31857,7 +31858,7 @@ var TypeParameterEmitter = class {
31857
31858
  }
31858
31859
  };
31859
31860
 
31860
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
31861
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
31861
31862
  var TcbInliningRequirement;
31862
31863
  (function(TcbInliningRequirement2) {
31863
31864
  TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
@@ -31937,7 +31938,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
31937
31938
  return emitter.canEmit((ref) => env.canReferenceType(ref));
31938
31939
  }
31939
31940
 
31940
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
31941
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
31941
31942
  function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
31942
31943
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
31943
31944
  const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -32049,7 +32050,7 @@ function typeParametersWithDefaultTypes(params) {
32049
32050
  });
32050
32051
  }
32051
32052
 
32052
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
32053
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
32053
32054
  var Environment = class {
32054
32055
  constructor(config, importManager, refEmitter, reflector, contextFile) {
32055
32056
  this.config = config;
@@ -32141,7 +32142,7 @@ var Environment = class {
32141
32142
  }
32142
32143
  };
32143
32144
 
32144
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
32145
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
32145
32146
  var import_typescript77 = __toESM(require("typescript"), 1);
32146
32147
  var OutOfBandDiagnosticRecorderImpl = class {
32147
32148
  constructor(resolver) {
@@ -32276,7 +32277,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
32276
32277
  });
32277
32278
  }
32278
32279
 
32279
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
32280
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
32280
32281
  var import_typescript78 = __toESM(require("typescript"), 1);
32281
32282
  var TypeCheckShimGenerator = class {
32282
32283
  constructor() {
@@ -32294,10 +32295,10 @@ var TypeCheckShimGenerator = class {
32294
32295
  }
32295
32296
  };
32296
32297
 
32297
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
32298
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
32298
32299
  var import_typescript81 = __toESM(require("typescript"), 1);
32299
32300
 
32300
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
32301
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
32301
32302
  var import_typescript79 = __toESM(require("typescript"), 1);
32302
32303
  function wrapForDiagnostics(expr) {
32303
32304
  return import_typescript79.default.factory.createParenthesizedExpression(expr);
@@ -32342,7 +32343,7 @@ function translateDiagnostic(diagnostic, resolver) {
32342
32343
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
32343
32344
  }
32344
32345
 
32345
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
32346
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
32346
32347
  var import_typescript80 = __toESM(require("typescript"), 1);
32347
32348
  var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
32348
32349
  var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
@@ -32674,7 +32675,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
32674
32675
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
32675
32676
  })();
32676
32677
 
32677
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
32678
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
32678
32679
  var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
32679
32680
  constructor(templateId, boundTarget, oob) {
32680
32681
  super();
@@ -32697,7 +32698,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
32697
32698
  }
32698
32699
  };
32699
32700
 
32700
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
32701
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
32701
32702
  var TcbGenericContextBehavior;
32702
32703
  (function(TcbGenericContextBehavior2) {
32703
32704
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -33812,7 +33813,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
33812
33813
  }
33813
33814
  };
33814
33815
 
33815
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
33816
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
33816
33817
  var import_typescript82 = __toESM(require("typescript"), 1);
33817
33818
  var TypeCheckFile = class extends Environment {
33818
33819
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -33848,7 +33849,7 @@ var TypeCheckFile = class extends Environment {
33848
33849
  }
33849
33850
  };
33850
33851
 
33851
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
33852
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
33852
33853
  var InliningMode;
33853
33854
  (function(InliningMode2) {
33854
33855
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -34086,7 +34087,7 @@ function splitStringAtPoints(str, points) {
34086
34087
  return splits;
34087
34088
  }
34088
34089
 
34089
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
34090
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
34090
34091
  var LF_CHAR = 10;
34091
34092
  var CR_CHAR = 13;
34092
34093
  var LINE_SEP_CHAR = 8232;
@@ -34127,7 +34128,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
34127
34128
  return low - 1;
34128
34129
  }
34129
34130
 
34130
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
34131
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
34131
34132
  var TemplateSource = class {
34132
34133
  constructor(mapping, file) {
34133
34134
  this.mapping = mapping;
@@ -34178,7 +34179,7 @@ var TemplateSourceManager = class {
34178
34179
  }
34179
34180
  };
34180
34181
 
34181
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
34182
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
34182
34183
  var import_typescript84 = __toESM(require("typescript"), 1);
34183
34184
  var SymbolBuilder = class {
34184
34185
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -34655,7 +34656,7 @@ function sourceSpanEqual(a, b) {
34655
34656
  return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
34656
34657
  }
34657
34658
 
34658
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
34659
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
34659
34660
  var REGISTRY2 = new DomElementSchemaRegistry();
34660
34661
  var TemplateTypeCheckerImpl = class {
34661
34662
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -35348,7 +35349,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
35348
35349
  }
35349
35350
  };
35350
35351
 
35351
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
35352
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
35352
35353
  var TemplateCheckWithVisitor = class {
35353
35354
  run(ctx, component, template2) {
35354
35355
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -35424,7 +35425,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
35424
35425
  }
35425
35426
  };
35426
35427
 
35427
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
35428
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
35428
35429
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
35429
35430
  constructor() {
35430
35431
  super(...arguments);
@@ -35449,7 +35450,7 @@ var factory = {
35449
35450
  create: () => new InvalidBananaInBoxCheck()
35450
35451
  };
35451
35452
 
35452
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
35453
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
35453
35454
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
35454
35455
  ["ngIf", "NgIf"],
35455
35456
  ["ngFor", "NgFor"],
@@ -35493,7 +35494,7 @@ var factory2 = {
35493
35494
  }
35494
35495
  };
35495
35496
 
35496
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
35497
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
35497
35498
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
35498
35499
  constructor() {
35499
35500
  super(...arguments);
@@ -35525,7 +35526,7 @@ var factory3 = {
35525
35526
  create: () => new MissingNgForOfLetCheck()
35526
35527
  };
35527
35528
 
35528
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
35529
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
35529
35530
  var import_typescript87 = __toESM(require("typescript"), 1);
35530
35531
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
35531
35532
  constructor() {
@@ -35569,7 +35570,7 @@ var factory4 = {
35569
35570
  }
35570
35571
  };
35571
35572
 
35572
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
35573
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
35573
35574
  var import_typescript88 = __toESM(require("typescript"), 1);
35574
35575
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
35575
35576
  constructor() {
@@ -35614,7 +35615,7 @@ var factory5 = {
35614
35615
  }
35615
35616
  };
35616
35617
 
35617
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
35618
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
35618
35619
  var STYLE_SUFFIXES = ["px", "%", "em"];
35619
35620
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
35620
35621
  constructor() {
@@ -35637,7 +35638,7 @@ var factory6 = {
35637
35638
  create: () => new SuffixNotSupportedCheck()
35638
35639
  };
35639
35640
 
35640
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
35641
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
35641
35642
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
35642
35643
  constructor() {
35643
35644
  super(...arguments);
@@ -35675,10 +35676,10 @@ var factory7 = {
35675
35676
  create: () => new TextAttributeNotBindingSpec()
35676
35677
  };
35677
35678
 
35678
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
35679
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
35679
35680
  var import_typescript89 = __toESM(require("typescript"), 1);
35680
35681
 
35681
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
35682
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
35682
35683
  var DiagnosticCategoryLabel;
35683
35684
  (function(DiagnosticCategoryLabel2) {
35684
35685
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -35686,7 +35687,7 @@ var DiagnosticCategoryLabel;
35686
35687
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
35687
35688
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
35688
35689
 
35689
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
35690
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
35690
35691
  var ExtendedTemplateCheckerImpl = class {
35691
35692
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
35692
35693
  var _a2, _b, _c, _d, _e;
@@ -35738,7 +35739,7 @@ function assertNever(value) {
35738
35739
  ${value}`);
35739
35740
  }
35740
35741
 
35741
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
35742
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
35742
35743
  var ALL_DIAGNOSTIC_FACTORIES = [
35743
35744
  factory,
35744
35745
  factory4,
@@ -35749,7 +35750,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
35749
35750
  factory6
35750
35751
  ];
35751
35752
 
35752
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
35753
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
35753
35754
  var CompilationTicketKind;
35754
35755
  (function(CompilationTicketKind2) {
35755
35756
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -36253,7 +36254,20 @@ var NgCompiler = class {
36253
36254
  }
36254
36255
  const dtsTransforms = new DtsTransformRegistry();
36255
36256
  const resourceRegistry = new ResourceRegistry();
36256
- const compilationMode = this.options.compilationMode === "partial" && !isCore ? CompilationMode.PARTIAL : CompilationMode.FULL;
36257
+ let compilationMode = CompilationMode.FULL;
36258
+ if (!isCore) {
36259
+ switch (this.options.compilationMode) {
36260
+ case "full":
36261
+ compilationMode = CompilationMode.FULL;
36262
+ break;
36263
+ case "partial":
36264
+ compilationMode = CompilationMode.PARTIAL;
36265
+ break;
36266
+ case "experimental-local":
36267
+ compilationMode = CompilationMode.LOCAL;
36268
+ break;
36269
+ }
36270
+ }
36257
36271
  const cycleHandlingStrategy = compilationMode === CompilationMode.FULL ? 0 : 1;
36258
36272
  const strictCtorDeps = this.options.strictInjectionParameters || false;
36259
36273
  const handlers = [
@@ -36448,7 +36462,7 @@ function versionMapFromProgram(program, driver) {
36448
36462
  return versions;
36449
36463
  }
36450
36464
 
36451
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
36465
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
36452
36466
  var import_typescript92 = __toESM(require("typescript"), 1);
36453
36467
  var DelegatingCompilerHost2 = class {
36454
36468
  constructor(delegate) {
@@ -36581,7 +36595,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
36581
36595
  }
36582
36596
  };
36583
36597
 
36584
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
36598
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
36585
36599
  var NgtscProgram = class {
36586
36600
  constructor(rootNames, options, delegateHost, oldProgram) {
36587
36601
  this.options = options;
@@ -36799,21 +36813,21 @@ function mergeEmitResults(emitResults) {
36799
36813
  return { diagnostics, emitSkipped, emittedFiles };
36800
36814
  }
36801
36815
 
36802
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
36816
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
36803
36817
  function createProgram({ rootNames, options, host, oldProgram }) {
36804
36818
  return new NgtscProgram(rootNames, options, host, oldProgram);
36805
36819
  }
36806
36820
 
36807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
36821
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
36808
36822
  var import_typescript96 = __toESM(require("typescript"), 1);
36809
36823
 
36810
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
36824
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
36811
36825
  var import_typescript95 = __toESM(require("typescript"), 1);
36812
36826
 
36813
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
36827
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
36814
36828
  var import_typescript97 = __toESM(require("typescript"), 1);
36815
36829
 
36816
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
36830
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
36817
36831
  var GLOBAL_DEFS_FOR_TERSER = {
36818
36832
  ngDevMode: false,
36819
36833
  ngI18nClosureMode: false
@@ -36822,7 +36836,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
36822
36836
  ngJitMode: false
36823
36837
  });
36824
36838
 
36825
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
36839
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
36826
36840
  var LogLevel;
36827
36841
  (function(LogLevel2) {
36828
36842
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -36831,7 +36845,7 @@ var LogLevel;
36831
36845
  LogLevel2[LogLevel2["error"] = 3] = "error";
36832
36846
  })(LogLevel || (LogLevel = {}));
36833
36847
 
36834
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
36848
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
36835
36849
  var RESET = "\x1B[0m";
36836
36850
  var RED = "\x1B[31m";
36837
36851
  var YELLOW = "\x1B[33m";
@@ -36840,18 +36854,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
36840
36854
  var WARN = `${YELLOW}Warning:${RESET}`;
36841
36855
  var ERROR = `${RED}Error:${RESET}`;
36842
36856
 
36843
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
36857
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
36844
36858
  setFileSystem(new NodeJSFileSystem());
36845
36859
 
36846
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36860
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36847
36861
  var import_fs2 = require("fs");
36848
36862
  var import_path8 = require("path");
36849
36863
  var import_typescript110 = __toESM(require("typescript"), 1);
36850
36864
 
36851
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
36865
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
36852
36866
  var import_typescript99 = __toESM(require("typescript"), 1);
36853
36867
 
36854
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
36868
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
36855
36869
  var import_path4 = require("path");
36856
36870
  var import_typescript98 = __toESM(require("typescript"), 1);
36857
36871
  var ImportManager2 = class {
@@ -37035,7 +37049,7 @@ ${text2}`;
37035
37049
  }
37036
37050
  };
37037
37051
 
37038
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
37052
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
37039
37053
  var ChangeTracker = class {
37040
37054
  constructor(_printer, _importRemapper) {
37041
37055
  __publicField(this, "_printer");
@@ -37091,7 +37105,7 @@ function normalizePath(path3) {
37091
37105
  return path3.replace(/\\/g, "/");
37092
37106
  }
37093
37107
 
37094
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
37108
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
37095
37109
  var import_core13 = require("@angular-devkit/core");
37096
37110
  function getProjectTsConfigPaths(tree) {
37097
37111
  return __async(this, null, function* () {
@@ -37171,11 +37185,11 @@ function getWorkspace(tree) {
37171
37185
  });
37172
37186
  }
37173
37187
 
37174
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
37188
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
37175
37189
  var import_path5 = require("path");
37176
37190
  var import_typescript101 = __toESM(require("typescript"), 1);
37177
37191
 
37178
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
37192
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
37179
37193
  var path2 = __toESM(require("path"), 1);
37180
37194
  var import_typescript100 = __toESM(require("typescript"), 1);
37181
37195
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -37192,7 +37206,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
37192
37206
  return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
37193
37207
  }
37194
37208
 
37195
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
37209
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
37196
37210
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
37197
37211
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
37198
37212
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -37221,13 +37235,13 @@ function canMigrateFile(basePath, sourceFile, program) {
37221
37235
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
37222
37236
  }
37223
37237
 
37224
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
37238
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
37225
37239
  var import_typescript106 = __toESM(require("typescript"), 1);
37226
37240
 
37227
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
37241
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
37228
37242
  var import_typescript103 = __toESM(require("typescript"), 1);
37229
37243
 
37230
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
37244
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
37231
37245
  var import_typescript102 = __toESM(require("typescript"), 1);
37232
37246
  function getImportOfIdentifier(typeChecker, node) {
37233
37247
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -37278,7 +37292,7 @@ function findImportSpecifier(nodes, specifierName) {
37278
37292
  });
37279
37293
  }
37280
37294
 
37281
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
37295
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
37282
37296
  function getCallDecoratorImport(typeChecker, decorator) {
37283
37297
  if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
37284
37298
  return null;
@@ -37287,7 +37301,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
37287
37301
  return getImportOfIdentifier(typeChecker, identifier);
37288
37302
  }
37289
37303
 
37290
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
37304
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
37291
37305
  function getAngularDecorators(typeChecker, decorators) {
37292
37306
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
37293
37307
  node,
@@ -37297,7 +37311,7 @@ function getAngularDecorators(typeChecker, decorators) {
37297
37311
  }));
37298
37312
  }
37299
37313
 
37300
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
37314
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
37301
37315
  var import_typescript104 = __toESM(require("typescript"), 1);
37302
37316
  function closestNode(node, predicate) {
37303
37317
  let current = node.parent;
@@ -37310,7 +37324,7 @@ function closestNode(node, predicate) {
37310
37324
  return null;
37311
37325
  }
37312
37326
 
37313
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
37327
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
37314
37328
  var import_path6 = require("path");
37315
37329
  var import_typescript105 = __toESM(require("typescript"), 1);
37316
37330
  var UniqueItemTracker = class {
@@ -37486,7 +37500,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
37486
37500
  }));
37487
37501
  }
37488
37502
 
37489
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
37503
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
37490
37504
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
37491
37505
  const filesToRemove = /* @__PURE__ */ new Set();
37492
37506
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -37685,14 +37699,14 @@ function findNgModuleDecorator(node, typeChecker) {
37685
37699
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
37686
37700
  }
37687
37701
 
37688
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
37702
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
37689
37703
  var import_path7 = require("path");
37690
37704
  var import_typescript109 = __toESM(require("typescript"), 1);
37691
37705
 
37692
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
37706
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
37693
37707
  var import_typescript108 = __toESM(require("typescript"), 1);
37694
37708
 
37695
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
37709
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
37696
37710
  var import_typescript107 = __toESM(require("typescript"), 1);
37697
37711
  function isReferenceToImport(typeChecker, node, importSpecifier) {
37698
37712
  var _a2, _b;
@@ -37701,7 +37715,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
37701
37715
  return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
37702
37716
  }
37703
37717
 
37704
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
37718
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
37705
37719
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
37706
37720
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
37707
37721
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -38064,7 +38078,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
38064
38078
  return metadata != null && metadata.isStandalone;
38065
38079
  }
38066
38080
 
38067
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
38081
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
38068
38082
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
38069
38083
  const tracker = new ChangeTracker(printer, importRemapper);
38070
38084
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -38441,7 +38455,7 @@ function hasImport(program, rootFileNames, moduleName) {
38441
38455
  return false;
38442
38456
  }
38443
38457
 
38444
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
38458
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
38445
38459
  var MigrationMode;
38446
38460
  (function(MigrationMode2) {
38447
38461
  MigrationMode2["toStandalone"] = "convert-to-standalone";