@angular/core 16.0.0-next.5 → 16.0.0-next.6

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 (53) hide show
  1. package/esm2022/rxjs-interop/index.mjs +9 -0
  2. package/esm2022/rxjs-interop/public_api.mjs +15 -0
  3. package/esm2022/rxjs-interop/rxjs-interop.mjs +5 -0
  4. package/esm2022/rxjs-interop/src/from_observable.mjs +46 -0
  5. package/esm2022/rxjs-interop/src/from_signal.mjs +36 -0
  6. package/esm2022/rxjs-interop/src/index.mjs +11 -0
  7. package/esm2022/rxjs-interop/src/take_until_destroyed.mjs +33 -0
  8. package/esm2022/src/application_ref.mjs +78 -17
  9. package/esm2022/src/core.mjs +2 -2
  10. package/esm2022/src/core_private_export.mjs +2 -2
  11. package/esm2022/src/core_reactivity_export_internal.mjs +1 -1
  12. package/esm2022/src/errors.mjs +3 -2
  13. package/esm2022/src/hydration/api.mjs +35 -2
  14. package/esm2022/src/hydration/cleanup.mjs +11 -19
  15. package/esm2022/src/linker/component_factory.mjs +1 -1
  16. package/esm2022/src/linker/template_ref.mjs +2 -2
  17. package/esm2022/src/linker/view_container_ref.mjs +2 -2
  18. package/esm2022/src/linker/view_ref.mjs +2 -2
  19. package/esm2022/src/render3/component_ref.mjs +13 -6
  20. package/esm2022/src/render3/instructions/element.mjs +2 -1
  21. package/esm2022/src/render3/instructions/element_container.mjs +1 -2
  22. package/esm2022/src/render3/instructions/shared.mjs +13 -10
  23. package/esm2022/src/render3/interfaces/view.mjs +16 -17
  24. package/esm2022/src/render3/ng_module_ref.mjs +9 -7
  25. package/esm2022/src/render3/reactive_lview_consumer.mjs +2 -1
  26. package/esm2022/src/render3/reactivity/effect.mjs +55 -45
  27. package/esm2022/src/sanitization/sanitization.mjs +3 -3
  28. package/esm2022/src/signals/index.mjs +2 -1
  29. package/esm2022/src/signals/src/api.mjs +1 -2
  30. package/esm2022/src/signals/src/computed.mjs +2 -1
  31. package/esm2022/src/signals/src/errors.mjs +18 -0
  32. package/esm2022/src/signals/src/graph.mjs +32 -8
  33. package/esm2022/src/signals/src/signal.mjs +12 -1
  34. package/esm2022/src/signals/src/watch.mjs +3 -2
  35. package/esm2022/src/util/ng_dev_mode.mjs +2 -1
  36. package/esm2022/src/version.mjs +1 -1
  37. package/esm2022/testing/src/logger.mjs +3 -3
  38. package/esm2022/testing/src/ng_zone_mock.mjs +3 -3
  39. package/esm2022/testing/src/test_bed_compiler.mjs +3 -4
  40. package/fesm2022/core.mjs +1077 -926
  41. package/fesm2022/core.mjs.map +1 -1
  42. package/fesm2022/rxjs-interop.mjs +104 -0
  43. package/fesm2022/rxjs-interop.mjs.map +1 -0
  44. package/fesm2022/testing.mjs +524 -69
  45. package/fesm2022/testing.mjs.map +1 -1
  46. package/index.d.ts +142 -41
  47. package/package.json +7 -1
  48. package/rxjs-interop/index.d.ts +95 -0
  49. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
  50. package/schematics/migrations/remove-module-id/bundle.js +14 -14
  51. package/schematics/ng-generate/standalone-migration/bundle.js +319 -319
  52. package/schematics/ng-generate/standalone-migration/bundle.js.map +1 -1
  53. package/testing/index.d.ts +1 -1
@@ -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";
@@ -1926,7 +1926,7 @@ function serializeTags(tags) {
1926
1926
  return out;
1927
1927
  }
1928
1928
 
1929
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1929
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1930
1930
  var CONSTANT_PREFIX = "_c";
1931
1931
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
1932
1932
  var KEY_CONTEXT = {};
@@ -2094,7 +2094,7 @@ function isLongStringLiteral(expr) {
2094
2094
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
2095
2095
  }
2096
2096
 
2097
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2097
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2098
2098
  var CORE = "@angular/core";
2099
2099
  var _Identifiers = class {
2100
2100
  };
@@ -2649,7 +2649,7 @@ var Identifiers = _Identifiers;
2649
2649
  _Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
2650
2650
  })();
2651
2651
 
2652
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
2652
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/util.mjs
2653
2653
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
2654
2654
  function dashCaseToCamelCase(input) {
2655
2655
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -2737,7 +2737,7 @@ function partitionArray(arr, conditionFn) {
2737
2737
  return [truthy, falsy];
2738
2738
  }
2739
2739
 
2740
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2740
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2741
2741
  var VERSION = 3;
2742
2742
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
2743
2743
  var SourceMapGenerator = class {
@@ -2866,7 +2866,7 @@ function toBase64Digit(value) {
2866
2866
  return B64_DIGITS[value];
2867
2867
  }
2868
2868
 
2869
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2869
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2870
2870
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
2871
2871
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
2872
2872
  var _INDENT_WITH = " ";
@@ -3341,7 +3341,7 @@ function _createIndent(count) {
3341
3341
  return res;
3342
3342
  }
3343
3343
 
3344
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
3344
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/util.mjs
3345
3345
  function typeWithParameters(type, numParams) {
3346
3346
  if (numParams === 0) {
3347
3347
  return expressionType(type);
@@ -3409,7 +3409,7 @@ function generateForwardRef(expr) {
3409
3409
  return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
3410
3410
  }
3411
3411
 
3412
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3412
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3413
3413
  var R3FactoryDelegateType;
3414
3414
  (function(R3FactoryDelegateType2) {
3415
3415
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3554,7 +3554,7 @@ function getInjectFn(target) {
3554
3554
  }
3555
3555
  }
3556
3556
 
3557
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3557
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3558
3558
  var Comment = class {
3559
3559
  constructor(value, sourceSpan) {
3560
3560
  this.value = value;
@@ -3776,7 +3776,7 @@ function visitAll(visitor, nodes) {
3776
3776
  return result;
3777
3777
  }
3778
3778
 
3779
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3779
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
3780
3780
  var Message = class {
3781
3781
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
3782
3782
  this.nodes = nodes;
@@ -3939,7 +3939,7 @@ var LocalizeMessageStringVisitor = class {
3939
3939
  }
3940
3940
  };
3941
3941
 
3942
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
3942
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
3943
3943
  var Serializer = class {
3944
3944
  createNameMapper(message) {
3945
3945
  return null;
@@ -3991,7 +3991,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
3991
3991
  }
3992
3992
  };
3993
3993
 
3994
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
3994
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
3995
3995
  var _Visitor = class {
3996
3996
  visitTag(tag) {
3997
3997
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -4079,7 +4079,7 @@ function escapeXml(text) {
4079
4079
  return _ESCAPED_CHARS.reduce((text2, entry) => text2.replace(entry[0], entry[1]), text);
4080
4080
  }
4081
4081
 
4082
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4082
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4083
4083
  var _MESSAGES_TAG = "messagebundle";
4084
4084
  var _MESSAGE_TAG = "msg";
4085
4085
  var _PLACEHOLDER_TAG = "ph";
@@ -4222,7 +4222,7 @@ function toPublicName(internalName) {
4222
4222
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
4223
4223
  }
4224
4224
 
4225
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4225
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4226
4226
  var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
4227
4227
  var TRANSLATION_VAR_PREFIX = "i18n_";
4228
4228
  var I18N_ATTR = "i18n";
@@ -4324,7 +4324,7 @@ function declareI18nVariable(variable2) {
4324
4324
  return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
4325
4325
  }
4326
4326
 
4327
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4327
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4328
4328
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
4329
4329
  var TEMPORARY_NAME = "_t";
4330
4330
  var CONTEXT_NAME = "ctx";
@@ -4530,7 +4530,7 @@ function getInstructionStatements(instructions) {
4530
4530
  return statements;
4531
4531
  }
4532
4532
 
4533
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4533
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4534
4534
  function compileInjectable(meta, resolveForwardRefs) {
4535
4535
  let result = null;
4536
4536
  const factoryMeta = {
@@ -4619,7 +4619,7 @@ function createFactoryFunction(type) {
4619
4619
  return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
4620
4620
  }
4621
4621
 
4622
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
4622
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/assertions.mjs
4623
4623
  var UNUSABLE_INTERPOLATION_REGEXPS = [
4624
4624
  /^\s*$/,
4625
4625
  /[<>]/,
@@ -4641,7 +4641,7 @@ function assertInterpolationSymbols(identifier, value) {
4641
4641
  }
4642
4642
  }
4643
4643
 
4644
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4644
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
4645
4645
  var InterpolationConfig = class {
4646
4646
  static fromArray(markers) {
4647
4647
  if (!markers) {
@@ -4657,7 +4657,7 @@ var InterpolationConfig = class {
4657
4657
  };
4658
4658
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
4659
4659
 
4660
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
4660
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/chars.mjs
4661
4661
  var $EOF = 0;
4662
4662
  var $BSPACE = 8;
4663
4663
  var $TAB = 9;
@@ -4738,7 +4738,7 @@ function isQuote(code) {
4738
4738
  return code === $SQ || code === $DQ || code === $BT;
4739
4739
  }
4740
4740
 
4741
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
4741
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/parse_util.mjs
4742
4742
  var ParseLocation = class {
4743
4743
  constructor(file, offset, line, col) {
4744
4744
  this.file = file;
@@ -4885,7 +4885,7 @@ function sanitizeIdentifier(name) {
4885
4885
  return name.replace(/\W/g, "_");
4886
4886
  }
4887
4887
 
4888
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
4888
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
4889
4889
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
4890
4890
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
4891
4891
  constructor() {
@@ -4956,7 +4956,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
4956
4956
  }
4957
4957
  };
4958
4958
 
4959
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
4959
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
4960
4960
  var policy;
4961
4961
  function getPolicy() {
4962
4962
  if (policy === void 0) {
@@ -4993,7 +4993,7 @@ function newTrustedFunctionForJIT(...args) {
4993
4993
  return fn2.bind(_global);
4994
4994
  }
4995
4995
 
4996
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
4996
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
4997
4997
  var JitEvaluator = class {
4998
4998
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
4999
4999
  const converter = new JitEmitterVisitor(refResolver);
@@ -5084,7 +5084,7 @@ function isUseStrictStatement(statement) {
5084
5084
  return statement.isEquivalent(literal("use strict").toStmt());
5085
5085
  }
5086
5086
 
5087
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5087
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5088
5088
  function compileInjector(meta) {
5089
5089
  const definitionMap = new DefinitionMap();
5090
5090
  if (meta.providers !== null) {
@@ -5101,7 +5101,7 @@ function createInjectorType(meta) {
5101
5101
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
5102
5102
  }
5103
5103
 
5104
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5104
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5105
5105
  var R3JitReflector = class {
5106
5106
  constructor(context) {
5107
5107
  this.context = context;
@@ -5117,7 +5117,7 @@ var R3JitReflector = class {
5117
5117
  }
5118
5118
  };
5119
5119
 
5120
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5120
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5121
5121
  var R3SelectorScopeMode;
5122
5122
  (function(R3SelectorScopeMode2) {
5123
5123
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -5230,7 +5230,7 @@ function tupleOfTypes(types) {
5230
5230
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
5231
5231
  }
5232
5232
 
5233
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5233
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5234
5234
  function compilePipeFromMetadata(metadata) {
5235
5235
  const definitionMapValues = [];
5236
5236
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -5251,7 +5251,7 @@ function createPipeType(metadata) {
5251
5251
  ]));
5252
5252
  }
5253
5253
 
5254
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5254
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5255
5255
  var R3TemplateDependencyKind;
5256
5256
  (function(R3TemplateDependencyKind2) {
5257
5257
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -5259,7 +5259,7 @@ var R3TemplateDependencyKind;
5259
5259
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
5260
5260
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
5261
5261
 
5262
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5262
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5263
5263
  var ParserError = class {
5264
5264
  constructor(message, input, errLocation, ctxLocation) {
5265
5265
  this.input = input;
@@ -5925,7 +5925,7 @@ var BoundElementProperty = class {
5925
5925
  }
5926
5926
  };
5927
5927
 
5928
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
5928
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
5929
5929
  var _EventHandlerVars = class {
5930
5930
  };
5931
5931
  var EventHandlerVars = _EventHandlerVars;
@@ -6546,7 +6546,7 @@ var BuiltinFunctionCall = class extends Call {
6546
6546
  }
6547
6547
  };
6548
6548
 
6549
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6549
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
6550
6550
  var _SECURITY_SCHEMA;
6551
6551
  function SECURITY_SCHEMA() {
6552
6552
  if (!_SECURITY_SCHEMA) {
@@ -6604,7 +6604,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
6604
6604
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
6605
6605
  }
6606
6606
 
6607
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6607
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/shadow_css.mjs
6608
6608
  var animationKeywords = /* @__PURE__ */ new Set([
6609
6609
  "inherit",
6610
6610
  "initial",
@@ -7064,7 +7064,7 @@ function repeatGroups(groups, multiples) {
7064
7064
  }
7065
7065
  }
7066
7066
 
7067
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
7067
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
7068
7068
  function parse(value) {
7069
7069
  const styles = [];
7070
7070
  let i = 0;
@@ -7125,7 +7125,7 @@ function hyphenate(value) {
7125
7125
  }).toLowerCase();
7126
7126
  }
7127
7127
 
7128
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
7128
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
7129
7129
  var IMPORTANT_FLAG = "!important";
7130
7130
  var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
7131
7131
  var StylingBuilder = class {
@@ -7458,7 +7458,7 @@ function isEmptyExpression(ast) {
7458
7458
  return ast instanceof EmptyExpr;
7459
7459
  }
7460
7460
 
7461
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
7461
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
7462
7462
  var TokenType;
7463
7463
  (function(TokenType2) {
7464
7464
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -7819,7 +7819,7 @@ function parseIntAutoRadix(text) {
7819
7819
  return result;
7820
7820
  }
7821
7821
 
7822
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
7822
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
7823
7823
  var SplitInterpolation = class {
7824
7824
  constructor(strings, expressions, offsets) {
7825
7825
  this.strings = strings;
@@ -8713,7 +8713,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
8713
8713
  return offsetMap;
8714
8714
  }
8715
8715
 
8716
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
8716
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
8717
8717
  var NodeWithI18n = class {
8718
8718
  constructor(sourceSpan, i18n) {
8719
8719
  this.sourceSpan = sourceSpan;
@@ -8801,7 +8801,7 @@ function visitAll2(visitor, nodes, context = null) {
8801
8801
  return result;
8802
8802
  }
8803
8803
 
8804
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
8804
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
8805
8805
  var TagContentType;
8806
8806
  (function(TagContentType2) {
8807
8807
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -8834,11 +8834,11 @@ function mergeNsAndName(prefix, localName) {
8834
8834
  return prefix ? `:${prefix}:${localName}` : localName;
8835
8835
  }
8836
8836
 
8837
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
8837
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
8838
8838
  var ElementSchemaRegistry = class {
8839
8839
  };
8840
8840
 
8841
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
8841
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
8842
8842
  var BOOLEAN = "boolean";
8843
8843
  var NUMBER = "number";
8844
8844
  var STRING = "string";
@@ -9191,7 +9191,7 @@ function _isPixelDimensionStyle(prop) {
9191
9191
  }
9192
9192
  }
9193
9193
 
9194
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
9194
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
9195
9195
  var HtmlTagDefinition = class {
9196
9196
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
9197
9197
  this.closedByChildren = {};
@@ -9309,7 +9309,7 @@ function getHtmlTagDefinition(tagName) {
9309
9309
  return (_b = (_a = TAG_DEFINITIONS[tagName]) != null ? _a : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
9310
9310
  }
9311
9311
 
9312
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
9312
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
9313
9313
  var NAMED_ENTITIES = {
9314
9314
  "AElig": "\xC6",
9315
9315
  "AMP": "&",
@@ -11440,7 +11440,7 @@ var NAMED_ENTITIES = {
11440
11440
  var NGSP_UNICODE = "\uE500";
11441
11441
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
11442
11442
 
11443
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
11443
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
11444
11444
  var TokenError = class extends ParseError {
11445
11445
  constructor(errorMsg, tokenType, span) {
11446
11446
  super(span, errorMsg);
@@ -12275,7 +12275,7 @@ var CursorError = class {
12275
12275
  }
12276
12276
  };
12277
12277
 
12278
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
12278
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
12279
12279
  var TreeError = class extends ParseError {
12280
12280
  static create(elementName, span, msg) {
12281
12281
  return new TreeError(elementName, span, msg);
@@ -12602,7 +12602,7 @@ function decodeEntity(match, entity) {
12602
12602
  return match;
12603
12603
  }
12604
12604
 
12605
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
12605
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
12606
12606
  var HtmlParser = class extends Parser2 {
12607
12607
  constructor() {
12608
12608
  super(getHtmlTagDefinition);
@@ -12612,7 +12612,7 @@ var HtmlParser = class extends Parser2 {
12612
12612
  }
12613
12613
  };
12614
12614
 
12615
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
12615
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
12616
12616
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
12617
12617
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
12618
12618
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -12672,7 +12672,7 @@ function visitAllWithSiblings(visitor, nodes) {
12672
12672
  return result;
12673
12673
  }
12674
12674
 
12675
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12675
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12676
12676
  function mapLiteral(obj, quoted = false) {
12677
12677
  return literalMap(Object.keys(obj).map((key) => ({
12678
12678
  key,
@@ -12681,7 +12681,7 @@ function mapLiteral(obj, quoted = false) {
12681
12681
  })));
12682
12682
  }
12683
12683
 
12684
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
12684
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
12685
12685
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
12686
12686
  "iframe|srcdoc",
12687
12687
  "*|innerhtml",
@@ -12696,7 +12696,7 @@ function isTrustedTypesSink(tagName, propName) {
12696
12696
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
12697
12697
  }
12698
12698
 
12699
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
12699
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
12700
12700
  var PROPERTY_PARTS_SEPARATOR = ".";
12701
12701
  var ATTRIBUTE_PREFIX = "attr";
12702
12702
  var CLASS_PREFIX = "class";
@@ -13016,7 +13016,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
13016
13016
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
13017
13017
  }
13018
13018
 
13019
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
13019
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
13020
13020
  function isStyleUrlResolvable(url) {
13021
13021
  if (url == null || url.length === 0 || url[0] == "/")
13022
13022
  return false;
@@ -13025,7 +13025,7 @@ function isStyleUrlResolvable(url) {
13025
13025
  }
13026
13026
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
13027
13027
 
13028
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
13028
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
13029
13029
  var NG_CONTENT_SELECT_ATTR = "select";
13030
13030
  var LINK_ELEMENT = "link";
13031
13031
  var LINK_STYLE_REL_ATTR = "rel";
@@ -13095,7 +13095,7 @@ function normalizeNgContentSelect(selectAttr) {
13095
13095
  return selectAttr;
13096
13096
  }
13097
13097
 
13098
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
13098
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
13099
13099
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
13100
13100
  var KW_BIND_IDX = 1;
13101
13101
  var KW_LET_IDX = 2;
@@ -13443,7 +13443,7 @@ function textContents(node) {
13443
13443
  }
13444
13444
  }
13445
13445
 
13446
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
13446
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
13447
13447
  var TagType;
13448
13448
  (function(TagType2) {
13449
13449
  TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
@@ -13578,7 +13578,7 @@ function serializePlaceholderValue(value) {
13578
13578
  }
13579
13579
  }
13580
13580
 
13581
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
13581
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
13582
13582
  var IcuSerializerVisitor = class {
13583
13583
  visitText(text) {
13584
13584
  return text.value;
@@ -13609,7 +13609,7 @@ function serializeIcuNode(icu) {
13609
13609
  return icu.visit(serializer);
13610
13610
  }
13611
13611
 
13612
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
13612
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
13613
13613
  var TAG_TO_PLACEHOLDER_NAMES = {
13614
13614
  "A": "LINK",
13615
13615
  "B": "BOLD_TEXT",
@@ -13703,7 +13703,7 @@ var PlaceholderRegistry = class {
13703
13703
  }
13704
13704
  };
13705
13705
 
13706
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
13706
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
13707
13707
  var _expParser = new Parser(new Lexer());
13708
13708
  function createI18nMessageFactory(interpolationConfig) {
13709
13709
  const visitor = new _I18nVisitor(_expParser, interpolationConfig);
@@ -13858,14 +13858,14 @@ function extractPlaceholderName(input) {
13858
13858
  return input.split(_CUSTOM_PH_EXP)[2];
13859
13859
  }
13860
13860
 
13861
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
13861
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
13862
13862
  var I18nError = class extends ParseError {
13863
13863
  constructor(span, msg) {
13864
13864
  super(span, msg);
13865
13865
  }
13866
13866
  };
13867
13867
 
13868
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
13868
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
13869
13869
  var setI18nRefs = (htmlNode, i18nNode) => {
13870
13870
  if (htmlNode instanceof NodeWithI18n) {
13871
13871
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -14014,7 +14014,7 @@ function i18nMetaToJSDoc(meta) {
14014
14014
  return jsDocComment(tags);
14015
14015
  }
14016
14016
 
14017
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
14017
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
14018
14018
  var GOOG_GET_MSG = "goog.getMsg";
14019
14019
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
14020
14020
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -14062,7 +14062,7 @@ function serializeI18nMessageForGetMsg(message) {
14062
14062
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
14063
14063
  }
14064
14064
 
14065
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
14065
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
14066
14066
  function createLocalizeStatements(variable2, message, params) {
14067
14067
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
14068
14068
  const sourceSpan = getSourceSpan(message);
@@ -14145,7 +14145,7 @@ function createEmptyMessagePart(location) {
14145
14145
  return new LiteralPiece("", new ParseSourceSpan(location, location));
14146
14146
  }
14147
14147
 
14148
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
14148
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
14149
14149
  var NG_CONTENT_SELECT_ATTR2 = "select";
14150
14150
  var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
14151
14151
  var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
@@ -15447,7 +15447,7 @@ function createClosureModeGuard() {
15447
15447
  return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
15448
15448
  }
15449
15449
 
15450
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
15450
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
15451
15451
  var ATTR_REGEX = /attr\.([^\]]+)/;
15452
15452
  var COMPONENT_VARIABLE = "%COMP%";
15453
15453
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
@@ -15979,11 +15979,11 @@ function createHostDirectivesMappingArray(mapping) {
15979
15979
  return elements.length > 0 ? literalArr(elements) : null;
15980
15980
  }
15981
15981
 
15982
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
15982
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/resource_loader.mjs
15983
15983
  var ResourceLoader = class {
15984
15984
  };
15985
15985
 
15986
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
15986
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
15987
15987
  var CompilerFacadeImpl = class {
15988
15988
  constructor(jitEvaluator = new JitEvaluator()) {
15989
15989
  this.jitEvaluator = jitEvaluator;
@@ -16496,10 +16496,10 @@ function publishFacade(global2) {
16496
16496
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
16497
16497
  }
16498
16498
 
16499
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
16500
- var VERSION2 = new Version("16.0.0-next.5");
16499
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/version.mjs
16500
+ var VERSION2 = new Version("16.0.0-next.6");
16501
16501
 
16502
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
16502
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
16503
16503
  var _I18N_ATTR = "i18n";
16504
16504
  var _I18N_ATTR_PREFIX = "i18n-";
16505
16505
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -16803,7 +16803,7 @@ function _parseMessageMeta(i18n) {
16803
16803
  return { meaning, description, id: id.trim() };
16804
16804
  }
16805
16805
 
16806
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
16806
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
16807
16807
  var XmlTagDefinition = class {
16808
16808
  constructor() {
16809
16809
  this.closedByParent = false;
@@ -16827,7 +16827,7 @@ function getXmlTagDefinition(tagName) {
16827
16827
  return _TAG_DEFINITION;
16828
16828
  }
16829
16829
 
16830
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
16830
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
16831
16831
  var XmlParser = class extends Parser2 {
16832
16832
  constructor() {
16833
16833
  super(getXmlTagDefinition);
@@ -16837,7 +16837,7 @@ var XmlParser = class extends Parser2 {
16837
16837
  }
16838
16838
  };
16839
16839
 
16840
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
16840
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
16841
16841
  var _VERSION = "1.2";
16842
16842
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
16843
16843
  var _DEFAULT_SOURCE_LANG = "en";
@@ -17077,7 +17077,7 @@ function getCtypeForTag(tag) {
17077
17077
  }
17078
17078
  }
17079
17079
 
17080
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
17080
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
17081
17081
  var _VERSION2 = "2.0";
17082
17082
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
17083
17083
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -17365,7 +17365,7 @@ function getTypeForTag(tag) {
17365
17365
  }
17366
17366
  }
17367
17367
 
17368
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
17368
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
17369
17369
  var MessageBundle = class {
17370
17370
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
17371
17371
  this._htmlParser = _htmlParser;
@@ -17432,7 +17432,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
17432
17432
  }
17433
17433
  };
17434
17434
 
17435
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
17435
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
17436
17436
  var FactoryTarget2;
17437
17437
  (function(FactoryTarget3) {
17438
17438
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -17442,7 +17442,7 @@ var FactoryTarget2;
17442
17442
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
17443
17443
  })(FactoryTarget2 || (FactoryTarget2 = {}));
17444
17444
 
17445
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
17445
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
17446
17446
  var R3TargetBinder = class {
17447
17447
  constructor(directiveMatcher) {
17448
17448
  this.directiveMatcher = directiveMatcher;
@@ -17794,7 +17794,7 @@ function extractTemplateEntities(rootScope) {
17794
17794
  return templateEntities;
17795
17795
  }
17796
17796
 
17797
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
17797
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
17798
17798
  function compileClassMetadata(metadata) {
17799
17799
  var _a, _b;
17800
17800
  const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
@@ -17807,12 +17807,12 @@ function compileClassMetadata(metadata) {
17807
17807
  return iife.callFn([]);
17808
17808
  }
17809
17809
 
17810
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
17810
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
17811
17811
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
17812
17812
  function compileDeclareClassMetadata(metadata) {
17813
17813
  const definitionMap = new DefinitionMap();
17814
17814
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
17815
- definitionMap.set("version", literal("16.0.0-next.5"));
17815
+ definitionMap.set("version", literal("16.0.0-next.6"));
17816
17816
  definitionMap.set("ngImport", importExpr(Identifiers.core));
17817
17817
  definitionMap.set("type", metadata.type);
17818
17818
  definitionMap.set("decorators", metadata.decorators);
@@ -17821,7 +17821,7 @@ function compileDeclareClassMetadata(metadata) {
17821
17821
  return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
17822
17822
  }
17823
17823
 
17824
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
17824
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
17825
17825
  function toOptionalLiteralArray(values, mapper) {
17826
17826
  if (values === null || values.length === 0) {
17827
17827
  return null;
@@ -17869,7 +17869,7 @@ function compileDependency(dep) {
17869
17869
  return depMeta.toLiteralMap();
17870
17870
  }
17871
17871
 
17872
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
17872
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
17873
17873
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
17874
17874
  function compileDeclareDirectiveFromMetadata(meta) {
17875
17875
  const definitionMap = createDirectiveDefinitionMap(meta);
@@ -17881,7 +17881,7 @@ function createDirectiveDefinitionMap(meta) {
17881
17881
  var _a;
17882
17882
  const definitionMap = new DefinitionMap();
17883
17883
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
17884
- definitionMap.set("version", literal("16.0.0-next.5"));
17884
+ definitionMap.set("version", literal("16.0.0-next.6"));
17885
17885
  definitionMap.set("type", meta.internalType);
17886
17886
  if (meta.isStandalone) {
17887
17887
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -17971,7 +17971,7 @@ function createHostDirectives(hostDirectives) {
17971
17971
  return literalArr(expressions);
17972
17972
  }
17973
17973
 
17974
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
17974
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
17975
17975
  function compileDeclareComponentFromMetadata(meta, template, additionalTemplateInfo) {
17976
17976
  const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
17977
17977
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -18058,12 +18058,12 @@ function compileUsedDependenciesMetadata(meta) {
18058
18058
  });
18059
18059
  }
18060
18060
 
18061
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
18061
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
18062
18062
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
18063
18063
  function compileDeclareFactoryFunction(meta) {
18064
18064
  const definitionMap = new DefinitionMap();
18065
18065
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
18066
- definitionMap.set("version", literal("16.0.0-next.5"));
18066
+ definitionMap.set("version", literal("16.0.0-next.6"));
18067
18067
  definitionMap.set("ngImport", importExpr(Identifiers.core));
18068
18068
  definitionMap.set("type", meta.internalType);
18069
18069
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -18075,7 +18075,7 @@ function compileDeclareFactoryFunction(meta) {
18075
18075
  };
18076
18076
  }
18077
18077
 
18078
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
18078
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
18079
18079
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
18080
18080
  function compileDeclareInjectableFromMetadata(meta) {
18081
18081
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -18086,7 +18086,7 @@ function compileDeclareInjectableFromMetadata(meta) {
18086
18086
  function createInjectableDefinitionMap(meta) {
18087
18087
  const definitionMap = new DefinitionMap();
18088
18088
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
18089
- definitionMap.set("version", literal("16.0.0-next.5"));
18089
+ definitionMap.set("version", literal("16.0.0-next.6"));
18090
18090
  definitionMap.set("ngImport", importExpr(Identifiers.core));
18091
18091
  definitionMap.set("type", meta.internalType);
18092
18092
  if (meta.providedIn !== void 0) {
@@ -18113,7 +18113,7 @@ function createInjectableDefinitionMap(meta) {
18113
18113
  return definitionMap;
18114
18114
  }
18115
18115
 
18116
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
18116
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
18117
18117
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
18118
18118
  function compileDeclareInjectorFromMetadata(meta) {
18119
18119
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -18124,7 +18124,7 @@ function compileDeclareInjectorFromMetadata(meta) {
18124
18124
  function createInjectorDefinitionMap(meta) {
18125
18125
  const definitionMap = new DefinitionMap();
18126
18126
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
18127
- definitionMap.set("version", literal("16.0.0-next.5"));
18127
+ definitionMap.set("version", literal("16.0.0-next.6"));
18128
18128
  definitionMap.set("ngImport", importExpr(Identifiers.core));
18129
18129
  definitionMap.set("type", meta.internalType);
18130
18130
  definitionMap.set("providers", meta.providers);
@@ -18134,7 +18134,7 @@ function createInjectorDefinitionMap(meta) {
18134
18134
  return definitionMap;
18135
18135
  }
18136
18136
 
18137
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
18137
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
18138
18138
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
18139
18139
  function compileDeclareNgModuleFromMetadata(meta) {
18140
18140
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -18145,7 +18145,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
18145
18145
  function createNgModuleDefinitionMap(meta) {
18146
18146
  const definitionMap = new DefinitionMap();
18147
18147
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
18148
- definitionMap.set("version", literal("16.0.0-next.5"));
18148
+ definitionMap.set("version", literal("16.0.0-next.6"));
18149
18149
  definitionMap.set("ngImport", importExpr(Identifiers.core));
18150
18150
  definitionMap.set("type", meta.internalType);
18151
18151
  if (meta.bootstrap.length > 0) {
@@ -18169,7 +18169,7 @@ function createNgModuleDefinitionMap(meta) {
18169
18169
  return definitionMap;
18170
18170
  }
18171
18171
 
18172
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
18172
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
18173
18173
  var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
18174
18174
  function compileDeclarePipeFromMetadata(meta) {
18175
18175
  const definitionMap = createPipeDefinitionMap(meta);
@@ -18180,7 +18180,7 @@ function compileDeclarePipeFromMetadata(meta) {
18180
18180
  function createPipeDefinitionMap(meta) {
18181
18181
  const definitionMap = new DefinitionMap();
18182
18182
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
18183
- definitionMap.set("version", literal("16.0.0-next.5"));
18183
+ definitionMap.set("version", literal("16.0.0-next.6"));
18184
18184
  definitionMap.set("ngImport", importExpr(Identifiers.core));
18185
18185
  definitionMap.set("type", meta.internalType);
18186
18186
  if (meta.isStandalone) {
@@ -18193,13 +18193,13 @@ function createPipeDefinitionMap(meta) {
18193
18193
  return definitionMap;
18194
18194
  }
18195
18195
 
18196
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
18196
+ // bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler.mjs
18197
18197
  publishFacade(_global);
18198
18198
 
18199
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
18200
- var VERSION3 = new Version("16.0.0-next.5");
18199
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
18200
+ var VERSION3 = new Version("16.0.0-next.6");
18201
18201
 
18202
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
18202
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
18203
18203
  var EmitFlags;
18204
18204
  (function(EmitFlags2) {
18205
18205
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -18211,13 +18211,13 @@ var EmitFlags;
18211
18211
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
18212
18212
  })(EmitFlags || (EmitFlags = {}));
18213
18213
 
18214
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
18214
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
18215
18215
  var import_typescript2 = __toESM(require("typescript"), 1);
18216
18216
 
18217
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
18217
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
18218
18218
  var import_typescript94 = __toESM(require("typescript"), 1);
18219
18219
 
18220
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
18220
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
18221
18221
  var path = __toESM(require("path"), 1);
18222
18222
  function i18nGetExtension(formatName) {
18223
18223
  const format = formatName.toLowerCase();
@@ -18267,10 +18267,10 @@ function getPathNormalizer(basePath) {
18267
18267
  };
18268
18268
  }
18269
18269
 
18270
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18270
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18271
18271
  var import_typescript3 = __toESM(require("typescript"), 1);
18272
18272
 
18273
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
18273
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
18274
18274
  function toNumbers(value) {
18275
18275
  const suffixIndex = value.lastIndexOf("-");
18276
18276
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -18305,7 +18305,7 @@ function compareVersions(v1, v2) {
18305
18305
  return compareNumbers(toNumbers(v1), toNumbers(v2));
18306
18306
  }
18307
18307
 
18308
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18308
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
18309
18309
  var MIN_TS_VERSION = "4.9.3";
18310
18310
  var MAX_TS_VERSION = "5.1.0";
18311
18311
  var tsVersion = import_typescript3.default.version;
@@ -18318,13 +18318,13 @@ function verifySupportedTypeScriptVersion() {
18318
18318
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
18319
18319
  }
18320
18320
 
18321
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
18321
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
18322
18322
  var import_typescript90 = __toESM(require("typescript"), 1);
18323
18323
 
18324
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
18324
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
18325
18325
  var import_typescript19 = __toESM(require("typescript"), 1);
18326
18326
 
18327
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
18327
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
18328
18328
  var ErrorCode;
18329
18329
  (function(ErrorCode2) {
18330
18330
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -18397,7 +18397,7 @@ var ErrorCode;
18397
18397
  ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
18398
18398
  })(ErrorCode || (ErrorCode = {}));
18399
18399
 
18400
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
18400
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
18401
18401
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
18402
18402
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
18403
18403
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -18409,15 +18409,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
18409
18409
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
18410
18410
  ]);
18411
18411
 
18412
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18412
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18413
18413
  var import_typescript4 = __toESM(require("typescript"), 1);
18414
18414
 
18415
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
18415
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
18416
18416
  function ngErrorCode(code) {
18417
18417
  return parseInt("-99" + code);
18418
18418
  }
18419
18419
 
18420
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18420
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
18421
18421
  var FatalDiagnosticError = class {
18422
18422
  constructor(code, node, message, relatedInformation) {
18423
18423
  this.code = code;
@@ -18473,10 +18473,10 @@ function addDiagnosticChain(messageText, add) {
18473
18473
  return messageText;
18474
18474
  }
18475
18475
 
18476
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
18476
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
18477
18477
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
18478
18478
 
18479
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
18479
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
18480
18480
  var ExtendedTemplateDiagnosticName;
18481
18481
  (function(ExtendedTemplateDiagnosticName2) {
18482
18482
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -18489,7 +18489,7 @@ var ExtendedTemplateDiagnosticName;
18489
18489
  ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
18490
18490
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
18491
18491
 
18492
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
18492
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
18493
18493
  var import_typescript5 = __toESM(require("typescript"), 1);
18494
18494
  var Decorator = {
18495
18495
  nodeForError: (decorator) => {
@@ -18524,7 +18524,7 @@ function isConcreteDeclaration(decl) {
18524
18524
  return decl.kind === 0;
18525
18525
  }
18526
18526
 
18527
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
18527
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
18528
18528
  var import_typescript6 = __toESM(require("typescript"), 1);
18529
18529
  function typeToValue(typeNode, checker) {
18530
18530
  if (typeNode === null) {
@@ -18690,10 +18690,10 @@ function extractModuleName(node) {
18690
18690
  return node.moduleSpecifier.text;
18691
18691
  }
18692
18692
 
18693
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18693
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18694
18694
  var import_typescript8 = __toESM(require("typescript"), 1);
18695
18695
 
18696
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
18696
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
18697
18697
  var import_typescript7 = __toESM(require("typescript"), 1);
18698
18698
  function isNamedClassDeclaration(node) {
18699
18699
  return import_typescript7.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -18702,7 +18702,7 @@ function isIdentifier(node) {
18702
18702
  return node !== void 0 && import_typescript7.default.isIdentifier(node);
18703
18703
  }
18704
18704
 
18705
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18705
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
18706
18706
  var TypeScriptReflectionHost = class {
18707
18707
  constructor(checker) {
18708
18708
  this.checker = checker;
@@ -19138,13 +19138,13 @@ function getExportedName(decl, originalId) {
19138
19138
  }
19139
19139
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
19140
19140
 
19141
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19141
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19142
19142
  var import_typescript18 = __toESM(require("typescript"), 1);
19143
19143
 
19144
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19144
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19145
19145
  var import_typescript12 = __toESM(require("typescript"), 1);
19146
19146
 
19147
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
19147
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
19148
19148
  var import_typescript10 = __toESM(require("typescript"), 1);
19149
19149
  var TS = /\.tsx?$/i;
19150
19150
  var D_TS = /\.d\.ts$/i;
@@ -19245,7 +19245,7 @@ function toUnredirectedSourceFile(sf) {
19245
19245
  return redirectInfo.unredirected;
19246
19246
  }
19247
19247
 
19248
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
19248
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
19249
19249
  function findExportedNameOfNode(target, file, reflector) {
19250
19250
  const exports = reflector.getExportsOfModule(file);
19251
19251
  if (exports === null) {
@@ -19265,7 +19265,7 @@ function findExportedNameOfNode(target, file, reflector) {
19265
19265
  return foundExportName;
19266
19266
  }
19267
19267
 
19268
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19268
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
19269
19269
  var ImportFlags;
19270
19270
  (function(ImportFlags2) {
19271
19271
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -19481,7 +19481,7 @@ var UnifiedModulesStrategy = class {
19481
19481
  }
19482
19482
  };
19483
19483
 
19484
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
19484
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
19485
19485
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
19486
19486
  var UnifiedModulesAliasingHost = class {
19487
19487
  constructor(unifiedModulesHost) {
@@ -19548,7 +19548,7 @@ var AliasStrategy = class {
19548
19548
  }
19549
19549
  };
19550
19550
 
19551
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
19551
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
19552
19552
  function relativePathBetween(from, to) {
19553
19553
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
19554
19554
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -19557,7 +19557,7 @@ function normalizeSeparators2(path3) {
19557
19557
  return path3.replace(/\\/g, "/");
19558
19558
  }
19559
19559
 
19560
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
19560
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
19561
19561
  var NoopImportRewriter = class {
19562
19562
  shouldImportSymbol(symbol, specifier) {
19563
19563
  return true;
@@ -19615,7 +19615,7 @@ function validateAndRewriteCoreSymbol(name) {
19615
19615
  return CORE_SUPPORTED_SYMBOLS.get(name);
19616
19616
  }
19617
19617
 
19618
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
19618
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
19619
19619
  var import_typescript14 = __toESM(require("typescript"), 1);
19620
19620
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
19621
19621
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -19650,7 +19650,7 @@ function throwIncompatibleTransformationContextError() {
19650
19650
  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.");
19651
19651
  }
19652
19652
 
19653
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
19653
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
19654
19654
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
19655
19655
  function attachDefaultImportDeclaration(expr, importDecl) {
19656
19656
  expr[DefaultImportDeclaration] = importDecl;
@@ -19691,7 +19691,7 @@ var DefaultImportTracker = class {
19691
19691
  }
19692
19692
  };
19693
19693
 
19694
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
19694
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
19695
19695
  var Reference2 = class {
19696
19696
  constructor(node, bestGuessOwningModule = null) {
19697
19697
  this.node = node;
@@ -19754,7 +19754,7 @@ var Reference2 = class {
19754
19754
  }
19755
19755
  };
19756
19756
 
19757
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
19757
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
19758
19758
  var ModuleResolver = class {
19759
19759
  constructor(program, compilerOptions, host, moduleResolutionCache) {
19760
19760
  this.program = program;
@@ -19771,7 +19771,7 @@ var ModuleResolver = class {
19771
19771
  }
19772
19772
  };
19773
19773
 
19774
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19774
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
19775
19775
  function valueReferenceToExpression(valueRef) {
19776
19776
  if (valueRef.kind === 2) {
19777
19777
  return null;
@@ -20008,7 +20008,7 @@ function isAbstractClassDeclaration(clazz) {
20008
20008
  return import_typescript18.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript18.default.SyntaxKind.AbstractKeyword) : false;
20009
20009
  }
20010
20010
 
20011
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
20011
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
20012
20012
  function getConstructorDependencies(clazz, reflector, isCore) {
20013
20013
  const deps = [];
20014
20014
  const errors = [];
@@ -20150,10 +20150,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
20150
20150
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
20151
20151
  }
20152
20152
 
20153
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
20153
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
20154
20154
  var import_typescript27 = __toESM(require("typescript"), 1);
20155
20155
 
20156
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
20156
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
20157
20157
  var MetaKind;
20158
20158
  (function(MetaKind2) {
20159
20159
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -20166,10 +20166,10 @@ var MatchSource;
20166
20166
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
20167
20167
  })(MatchSource || (MatchSource = {}));
20168
20168
 
20169
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20169
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20170
20170
  var import_typescript22 = __toESM(require("typescript"), 1);
20171
20171
 
20172
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
20172
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
20173
20173
  var ClassPropertyMapping = class {
20174
20174
  constructor(forwardMap) {
20175
20175
  this.forwardMap = forwardMap;
@@ -20247,7 +20247,7 @@ function reverseMapFromForwardMap(forwardMap) {
20247
20247
  return reverseMap;
20248
20248
  }
20249
20249
 
20250
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
20250
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
20251
20251
  var import_typescript20 = __toESM(require("typescript"), 1);
20252
20252
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
20253
20253
  if (!import_typescript20.default.isTupleTypeNode(def)) {
@@ -20429,7 +20429,7 @@ function hasInjectableFields(clazz, host) {
20429
20429
  return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
20430
20430
  }
20431
20431
 
20432
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20432
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
20433
20433
  var DtsMetadataReader = class {
20434
20434
  constructor(checker, reflector) {
20435
20435
  this.checker = checker;
@@ -20597,7 +20597,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
20597
20597
  return result.length > 0 ? result : null;
20598
20598
  }
20599
20599
 
20600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
20600
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
20601
20601
  function flattenInheritedDirectiveMetadata(reader, dir) {
20602
20602
  const topMeta = reader.getDirectiveMetadata(dir);
20603
20603
  if (topMeta === null) {
@@ -20654,7 +20654,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
20654
20654
  });
20655
20655
  }
20656
20656
 
20657
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
20657
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
20658
20658
  var LocalMetadataRegistry = class {
20659
20659
  constructor() {
20660
20660
  this.directives = /* @__PURE__ */ new Map();
@@ -20711,7 +20711,7 @@ var CompoundMetadataRegistry = class {
20711
20711
  }
20712
20712
  };
20713
20713
 
20714
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
20714
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
20715
20715
  var ResourceRegistry = class {
20716
20716
  constructor() {
20717
20717
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -20776,7 +20776,7 @@ var ResourceRegistry = class {
20776
20776
  }
20777
20777
  };
20778
20778
 
20779
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
20779
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
20780
20780
  var EMPTY_ARRAY = [];
20781
20781
  var HostDirectivesResolver = class {
20782
20782
  constructor(metaReader) {
@@ -20836,10 +20836,10 @@ function resolveOutput(bindingName) {
20836
20836
  return bindingName;
20837
20837
  }
20838
20838
 
20839
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20839
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20840
20840
  var import_typescript24 = __toESM(require("typescript"), 1);
20841
20841
 
20842
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
20842
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
20843
20843
  var DynamicValue = class {
20844
20844
  constructor(node, reason, code) {
20845
20845
  this.node = node;
@@ -20929,7 +20929,7 @@ var DynamicValue = class {
20929
20929
  }
20930
20930
  };
20931
20931
 
20932
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
20932
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
20933
20933
  var ResolvedModule = class {
20934
20934
  constructor(exports, evaluate) {
20935
20935
  this.exports = exports;
@@ -20959,7 +20959,7 @@ var EnumValue = class {
20959
20959
  var KnownFn = class {
20960
20960
  };
20961
20961
 
20962
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20962
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
20963
20963
  function describeResolvedType(value, maxDepth = 1) {
20964
20964
  var _a, _b;
20965
20965
  if (value === null) {
@@ -21088,10 +21088,10 @@ function getContainerNode(node) {
21088
21088
  return node.getSourceFile();
21089
21089
  }
21090
21090
 
21091
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21091
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21092
21092
  var import_typescript25 = __toESM(require("typescript"), 1);
21093
21093
 
21094
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
21094
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
21095
21095
  var ArraySliceBuiltinFn = class extends KnownFn {
21096
21096
  constructor(lhs) {
21097
21097
  super();
@@ -21162,7 +21162,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
21162
21162
  }
21163
21163
  };
21164
21164
 
21165
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
21165
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
21166
21166
  var AssignHelperFn = class extends ObjectAssignBuiltinFn {
21167
21167
  };
21168
21168
  var SpreadHelperFn = class extends KnownFn {
@@ -21215,7 +21215,7 @@ var ReadHelperFn = class extends KnownFn {
21215
21215
  }
21216
21216
  };
21217
21217
 
21218
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
21218
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
21219
21219
  var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
21220
21220
  var assignTsHelperFn = new AssignHelperFn();
21221
21221
  var spreadTsHelperFn = new SpreadHelperFn();
@@ -21239,14 +21239,14 @@ function resolveKnownDeclaration(decl) {
21239
21239
  }
21240
21240
  }
21241
21241
 
21242
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
21242
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
21243
21243
  var SyntheticValue = class {
21244
21244
  constructor(value) {
21245
21245
  this.value = value;
21246
21246
  }
21247
21247
  };
21248
21248
 
21249
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21249
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
21250
21250
  function literalBinaryOp(op) {
21251
21251
  return { op, literal: true };
21252
21252
  }
@@ -21844,7 +21844,7 @@ function owningModule(context, override = null) {
21844
21844
  }
21845
21845
  }
21846
21846
 
21847
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
21847
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
21848
21848
  var PartialEvaluator = class {
21849
21849
  constructor(host, checker, dependencyTracker) {
21850
21850
  this.host = host;
@@ -21864,7 +21864,7 @@ var PartialEvaluator = class {
21864
21864
  }
21865
21865
  };
21866
21866
 
21867
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21867
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
21868
21868
  function makeDuplicateDeclarationError(node, data, kind) {
21869
21869
  const context = [];
21870
21870
  for (const decl of data) {
@@ -22060,7 +22060,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
22060
22060
  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}.`);
22061
22061
  }
22062
22062
 
22063
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
22063
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
22064
22064
  var import_typescript29 = __toESM(require("typescript"), 1);
22065
22065
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
22066
22066
  let resolved = null;
@@ -22093,7 +22093,7 @@ function resolveLiteral(decorator, literalCache) {
22093
22093
  return meta;
22094
22094
  }
22095
22095
 
22096
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
22096
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
22097
22097
  function compileNgFactoryDefField(metadata) {
22098
22098
  const res = compileFactoryFunction(metadata);
22099
22099
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
@@ -22103,7 +22103,7 @@ function compileDeclareFactory(metadata) {
22103
22103
  return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
22104
22104
  }
22105
22105
 
22106
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
22106
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
22107
22107
  var InjectableClassRegistry = class {
22108
22108
  constructor(host, isCore) {
22109
22109
  this.host = host;
@@ -22129,7 +22129,7 @@ var InjectableClassRegistry = class {
22129
22129
  }
22130
22130
  };
22131
22131
 
22132
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
22132
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
22133
22133
  var import_typescript30 = __toESM(require("typescript"), 1);
22134
22134
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
22135
22135
  if (!reflection.isClass(clazz)) {
@@ -22215,13 +22215,13 @@ function removeIdentifierReferences(node, name) {
22215
22215
  return result.transformed[0];
22216
22216
  }
22217
22217
 
22218
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
22218
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
22219
22219
  var NoopReferencesRegistry = class {
22220
22220
  add(source, ...references) {
22221
22221
  }
22222
22222
  };
22223
22223
 
22224
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
22224
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
22225
22225
  function extractSchemas(rawExpr, evaluator, context) {
22226
22226
  const schemas = [];
22227
22227
  const result = evaluator.evaluate(rawExpr);
@@ -22250,10 +22250,10 @@ function extractSchemas(rawExpr, evaluator, context) {
22250
22250
  return schemas;
22251
22251
  }
22252
22252
 
22253
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
22253
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
22254
22254
  var import_typescript51 = __toESM(require("typescript"), 1);
22255
22255
 
22256
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
22256
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
22257
22257
  var import_typescript31 = __toESM(require("typescript"), 1);
22258
22258
  var SemanticSymbol = class {
22259
22259
  constructor(decl) {
@@ -22269,7 +22269,7 @@ function getSymbolIdentifier(decl) {
22269
22269
  return decl.name.text;
22270
22270
  }
22271
22271
 
22272
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
22272
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
22273
22273
  var OpaqueSymbol = class extends SemanticSymbol {
22274
22274
  isPublicApiAffected() {
22275
22275
  return false;
@@ -22411,10 +22411,10 @@ function getImportPath(expr) {
22411
22411
  }
22412
22412
  }
22413
22413
 
22414
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22414
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22415
22415
  var import_typescript32 = __toESM(require("typescript"), 1);
22416
22416
 
22417
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
22417
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
22418
22418
  function isSymbolEqual(a, b) {
22419
22419
  if (a.decl === b.decl) {
22420
22420
  return true;
@@ -22464,7 +22464,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
22464
22464
  return true;
22465
22465
  }
22466
22466
 
22467
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22467
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
22468
22468
  function extractSemanticTypeParameters(node) {
22469
22469
  if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
22470
22470
  return null;
@@ -22484,7 +22484,7 @@ function isTypeParameterEqual(a, b) {
22484
22484
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
22485
22485
  }
22486
22486
 
22487
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
22487
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
22488
22488
  var PerfPhase;
22489
22489
  (function(PerfPhase2) {
22490
22490
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -22551,7 +22551,7 @@ var PerfCheckpoint;
22551
22551
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
22552
22552
  })(PerfCheckpoint || (PerfCheckpoint = {}));
22553
22553
 
22554
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
22554
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
22555
22555
  var NoopPerfRecorder = class {
22556
22556
  eventCount() {
22557
22557
  }
@@ -22568,7 +22568,7 @@ var NoopPerfRecorder = class {
22568
22568
  };
22569
22569
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
22570
22570
 
22571
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
22571
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
22572
22572
  function mark() {
22573
22573
  return process.hrtime();
22574
22574
  }
@@ -22577,7 +22577,7 @@ function timeSinceInMicros(mark2) {
22577
22577
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
22578
22578
  }
22579
22579
 
22580
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
22580
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
22581
22581
  var ActivePerfRecorder = class {
22582
22582
  static zeroedToNow() {
22583
22583
  return new ActivePerfRecorder(mark());
@@ -22671,14 +22671,14 @@ var DelegatingPerfRecorder = class {
22671
22671
  }
22672
22672
  };
22673
22673
 
22674
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
22674
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
22675
22675
  var ComponentScopeKind;
22676
22676
  (function(ComponentScopeKind2) {
22677
22677
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
22678
22678
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
22679
22679
  })(ComponentScopeKind || (ComponentScopeKind = {}));
22680
22680
 
22681
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
22681
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
22682
22682
  var CompoundComponentScopeReader = class {
22683
22683
  constructor(readers) {
22684
22684
  this.readers = readers;
@@ -22703,7 +22703,7 @@ var CompoundComponentScopeReader = class {
22703
22703
  }
22704
22704
  };
22705
22705
 
22706
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
22706
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
22707
22707
  var MetadataDtsModuleScopeResolver = class {
22708
22708
  constructor(dtsMetaReader, aliasingHost) {
22709
22709
  this.dtsMetaReader = dtsMetaReader;
@@ -22778,10 +22778,10 @@ var MetadataDtsModuleScopeResolver = class {
22778
22778
  }
22779
22779
  };
22780
22780
 
22781
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22781
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22782
22782
  var import_typescript33 = __toESM(require("typescript"), 1);
22783
22783
 
22784
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
22784
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
22785
22785
  function getDiagnosticNode(ref, rawExpr) {
22786
22786
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
22787
22787
  }
@@ -22804,7 +22804,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
22804
22804
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
22805
22805
  }
22806
22806
 
22807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22807
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
22808
22808
  var LocalModuleScopeRegistry = class {
22809
22809
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
22810
22810
  this.localReader = localReader;
@@ -23143,7 +23143,7 @@ function reexportCollision(module3, refA, refB) {
23143
23143
  ]);
23144
23144
  }
23145
23145
 
23146
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
23146
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
23147
23147
  var import_typescript35 = __toESM(require("typescript"), 1);
23148
23148
  var TypeCheckScopeRegistry = class {
23149
23149
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -23211,7 +23211,7 @@ var TypeCheckScopeRegistry = class {
23211
23211
  }
23212
23212
  };
23213
23213
 
23214
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
23214
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
23215
23215
  var CompilationMode;
23216
23216
  (function(CompilationMode2) {
23217
23217
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -23229,7 +23229,7 @@ var HandlerFlags;
23229
23229
  HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
23230
23230
  })(HandlerFlags || (HandlerFlags = {}));
23231
23231
 
23232
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
23232
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
23233
23233
  var import_typescript36 = __toESM(require("typescript"), 1);
23234
23234
  function aliasTransformFactory(exportStatements) {
23235
23235
  return () => {
@@ -23252,10 +23252,10 @@ function aliasTransformFactory(exportStatements) {
23252
23252
  };
23253
23253
  }
23254
23254
 
23255
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23255
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23256
23256
  var import_typescript37 = __toESM(require("typescript"), 1);
23257
23257
 
23258
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
23258
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
23259
23259
  var TraitState;
23260
23260
  (function(TraitState2) {
23261
23261
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -23310,7 +23310,7 @@ var TraitImpl = class {
23310
23310
  }
23311
23311
  };
23312
23312
 
23313
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23313
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
23314
23314
  var TraitCompiler = class {
23315
23315
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
23316
23316
  this.handlers = handlers;
@@ -23754,10 +23754,10 @@ function containsErrors(diagnostics) {
23754
23754
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
23755
23755
  }
23756
23756
 
23757
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
23757
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
23758
23758
  var import_typescript43 = __toESM(require("typescript"), 1);
23759
23759
 
23760
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
23760
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
23761
23761
  var Context = class {
23762
23762
  constructor(isStatement) {
23763
23763
  this.isStatement = isStatement;
@@ -23770,7 +23770,7 @@ var Context = class {
23770
23770
  }
23771
23771
  };
23772
23772
 
23773
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
23773
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
23774
23774
  var import_typescript39 = __toESM(require("typescript"), 1);
23775
23775
  var ImportManager = class {
23776
23776
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -23806,7 +23806,7 @@ var ImportManager = class {
23806
23806
  }
23807
23807
  };
23808
23808
 
23809
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
23809
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
23810
23810
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
23811
23811
  [UnaryOperator.Minus, "-"],
23812
23812
  [UnaryOperator.Plus, "+"]
@@ -24037,7 +24037,7 @@ function createRange(span) {
24037
24037
  };
24038
24038
  }
24039
24039
 
24040
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
24040
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
24041
24041
  var import_typescript40 = __toESM(require("typescript"), 1);
24042
24042
  function translateType(type, imports) {
24043
24043
  return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
@@ -24212,7 +24212,7 @@ var TypeTranslatorVisitor = class {
24212
24212
  }
24213
24213
  };
24214
24214
 
24215
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
24215
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
24216
24216
  var import_typescript41 = __toESM(require("typescript"), 1);
24217
24217
  var PureAnnotation;
24218
24218
  (function(PureAnnotation2) {
@@ -24395,7 +24395,7 @@ function attachComments(statement, leadingComments) {
24395
24395
  }
24396
24396
  }
24397
24397
 
24398
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
24398
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
24399
24399
  function translateExpression(expression, imports, options = {}) {
24400
24400
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
24401
24401
  }
@@ -24403,7 +24403,7 @@ function translateStatement(statement, imports, options = {}) {
24403
24403
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
24404
24404
  }
24405
24405
 
24406
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
24406
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
24407
24407
  var import_typescript42 = __toESM(require("typescript"), 1);
24408
24408
  function addImports(importManager, sf, extraStatements = []) {
24409
24409
  const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
@@ -24439,7 +24439,7 @@ function isImportStatement(stmt) {
24439
24439
  return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
24440
24440
  }
24441
24441
 
24442
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
24442
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
24443
24443
  var DtsTransformRegistry = class {
24444
24444
  constructor() {
24445
24445
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -24584,10 +24584,10 @@ function markForEmitAsSingleLine(node) {
24584
24584
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
24585
24585
  }
24586
24586
 
24587
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24587
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24588
24588
  var import_typescript45 = __toESM(require("typescript"), 1);
24589
24589
 
24590
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
24590
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
24591
24591
  var import_typescript44 = __toESM(require("typescript"), 1);
24592
24592
  function visit(node, visitor, context) {
24593
24593
  return visitor._visit(node, context);
@@ -24648,7 +24648,7 @@ var Visitor = class {
24648
24648
  }
24649
24649
  };
24650
24650
 
24651
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24651
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
24652
24652
  var NO_DECORATORS = /* @__PURE__ */ new Set();
24653
24653
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
24654
24654
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -24856,7 +24856,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
24856
24856
  return array;
24857
24857
  }
24858
24858
 
24859
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
24859
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
24860
24860
  var import_typescript46 = __toESM(require("typescript"), 1);
24861
24861
  var EMPTY_OBJECT = {};
24862
24862
  var QUERY_TYPES = /* @__PURE__ */ new Set([
@@ -25326,7 +25326,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
25326
25326
  };
25327
25327
  }
25328
25328
 
25329
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
25329
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
25330
25330
  var DirectiveSymbol = class extends SemanticSymbol {
25331
25331
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
25332
25332
  super(decl);
@@ -25406,7 +25406,7 @@ function isBaseClassEqual(current, previous) {
25406
25406
  return isSymbolEqual(current, previous);
25407
25407
  }
25408
25408
 
25409
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
25409
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
25410
25410
  var FIELD_DECORATORS = [
25411
25411
  "Input",
25412
25412
  "Output",
@@ -25565,10 +25565,10 @@ var DirectiveDecoratorHandler = class {
25565
25565
  }
25566
25566
  };
25567
25567
 
25568
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25568
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25569
25569
  var import_typescript48 = __toESM(require("typescript"), 1);
25570
25570
 
25571
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
25571
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
25572
25572
  var import_typescript47 = __toESM(require("typescript"), 1);
25573
25573
  function createModuleWithProvidersResolver(reflector, isCore) {
25574
25574
  function _reflectModuleFromTypeParam(type, node) {
@@ -25635,7 +25635,7 @@ function isResolvedModuleWithProviders(sv) {
25635
25635
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
25636
25636
  }
25637
25637
 
25638
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25638
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
25639
25639
  var NgModuleSymbol = class extends SemanticSymbol {
25640
25640
  constructor() {
25641
25641
  super(...arguments);
@@ -26131,7 +26131,7 @@ function isSyntheticReference(ref) {
26131
26131
  return ref.synthetic;
26132
26132
  }
26133
26133
 
26134
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
26134
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
26135
26135
  function makeCyclicImportInfo(ref, type, cycle) {
26136
26136
  const name = ref.debugName || "(unknown)";
26137
26137
  const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -26154,7 +26154,7 @@ function checkCustomElementSelectorForErrors(selector) {
26154
26154
  return null;
26155
26155
  }
26156
26156
 
26157
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
26157
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
26158
26158
  var import_typescript50 = __toESM(require("typescript"), 1);
26159
26159
  function getTemplateDeclarationNodeForError(declaration) {
26160
26160
  switch (declaration.isInline) {
@@ -26469,7 +26469,7 @@ function _extractTemplateStyleUrls(template) {
26469
26469
  return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
26470
26470
  }
26471
26471
 
26472
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
26472
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
26473
26473
  var ComponentSymbol = class extends DirectiveSymbol {
26474
26474
  constructor() {
26475
26475
  super(...arguments);
@@ -26504,7 +26504,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
26504
26504
  }
26505
26505
  };
26506
26506
 
26507
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
26507
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
26508
26508
  function collectAnimationNames(value, animationTriggerNames) {
26509
26509
  if (value instanceof Map) {
26510
26510
  const name = value.get("name");
@@ -26580,7 +26580,7 @@ function isLikelyModuleWithProviders(value) {
26580
26580
  return false;
26581
26581
  }
26582
26582
 
26583
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
26583
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
26584
26584
  var EMPTY_ARRAY2 = [];
26585
26585
  var ComponentDecoratorHandler = class {
26586
26586
  constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver) {
@@ -27226,7 +27226,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
27226
27226
  return diagnostics;
27227
27227
  }
27228
27228
 
27229
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
27229
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
27230
27230
  var import_typescript53 = __toESM(require("typescript"), 1);
27231
27231
  var InjectableDecoratorHandler = class {
27232
27232
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
@@ -27442,7 +27442,7 @@ function getDep(dep, reflector) {
27442
27442
  return meta;
27443
27443
  }
27444
27444
 
27445
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
27445
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
27446
27446
  var import_typescript54 = __toESM(require("typescript"), 1);
27447
27447
  var PipeSymbol = class extends SemanticSymbol {
27448
27448
  constructor(decl, name) {
@@ -27587,7 +27587,7 @@ var PipeDecoratorHandler = class {
27587
27587
  }
27588
27588
  };
27589
27589
 
27590
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
27590
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
27591
27591
  var CycleAnalyzer = class {
27592
27592
  constructor(importGraph) {
27593
27593
  this.importGraph = importGraph;
@@ -27658,7 +27658,7 @@ var Cycle = class {
27658
27658
  }
27659
27659
  };
27660
27660
 
27661
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
27661
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
27662
27662
  var import_typescript55 = __toESM(require("typescript"), 1);
27663
27663
  var ImportGraph = class {
27664
27664
  constructor(checker, perf) {
@@ -27750,7 +27750,7 @@ var Found = class {
27750
27750
  }
27751
27751
  };
27752
27752
 
27753
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
27753
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
27754
27754
  var import_typescript56 = __toESM(require("typescript"), 1);
27755
27755
  var FlatIndexGenerator = class {
27756
27756
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -27775,7 +27775,7 @@ export * from '${relativeEntryPoint}';
27775
27775
  }
27776
27776
  };
27777
27777
 
27778
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
27778
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
27779
27779
  function findFlatIndexEntryPoint(rootFiles) {
27780
27780
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
27781
27781
  let resolvedEntryPoint = null;
@@ -27791,7 +27791,7 @@ function findFlatIndexEntryPoint(rootFiles) {
27791
27791
  return resolvedEntryPoint;
27792
27792
  }
27793
27793
 
27794
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
27794
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
27795
27795
  var import_typescript58 = __toESM(require("typescript"), 1);
27796
27796
  function checkForPrivateExports(entryPoint, checker, refGraph) {
27797
27797
  const diagnostics = [];
@@ -27871,7 +27871,7 @@ function getDescriptorOfDeclaration(decl) {
27871
27871
  }
27872
27872
  }
27873
27873
 
27874
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
27874
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
27875
27875
  var ReferenceGraph = class {
27876
27876
  constructor() {
27877
27877
  this.references = /* @__PURE__ */ new Map();
@@ -27925,7 +27925,7 @@ var ReferenceGraph = class {
27925
27925
  }
27926
27926
  };
27927
27927
 
27928
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
27928
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
27929
27929
  var NgOriginalFile = Symbol("NgOriginalFile");
27930
27930
  var UpdateMode;
27931
27931
  (function(UpdateMode2) {
@@ -27933,13 +27933,13 @@ var UpdateMode;
27933
27933
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
27934
27934
  })(UpdateMode || (UpdateMode = {}));
27935
27935
 
27936
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
27936
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
27937
27937
  var import_typescript62 = __toESM(require("typescript"), 1);
27938
27938
 
27939
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
27939
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
27940
27940
  var import_typescript59 = __toESM(require("typescript"), 1);
27941
27941
 
27942
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
27942
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
27943
27943
  var NgExtension = Symbol("NgExtension");
27944
27944
  function isExtended(sf) {
27945
27945
  return sf[NgExtension] !== void 0;
@@ -27999,13 +27999,13 @@ function retagTsFile(sf) {
27999
27999
  }
28000
28000
  }
28001
28001
 
28002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
28002
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
28003
28003
  var TS_EXTENSIONS = /\.tsx?$/i;
28004
28004
  function makeShimFileName(fileName, suffix) {
28005
28005
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
28006
28006
  }
28007
28007
 
28008
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
28008
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
28009
28009
  var ShimAdapter = class {
28010
28010
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
28011
28011
  this.delegate = delegate;
@@ -28100,7 +28100,7 @@ var ShimAdapter = class {
28100
28100
  }
28101
28101
  };
28102
28102
 
28103
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
28103
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
28104
28104
  var ShimReferenceTagger = class {
28105
28105
  constructor(shimExtensions) {
28106
28106
  this.tagged = /* @__PURE__ */ new Set();
@@ -28134,7 +28134,7 @@ var ShimReferenceTagger = class {
28134
28134
  }
28135
28135
  };
28136
28136
 
28137
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
28137
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
28138
28138
  var DelegatingCompilerHost = class {
28139
28139
  constructor(delegate) {
28140
28140
  this.delegate = delegate;
@@ -28247,7 +28247,7 @@ var TsCreateProgramDriver = class {
28247
28247
  }
28248
28248
  };
28249
28249
 
28250
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
28250
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
28251
28251
  var FileDependencyGraph = class {
28252
28252
  constructor() {
28253
28253
  this.nodes = /* @__PURE__ */ new Map();
@@ -28314,7 +28314,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
28314
28314
  return false;
28315
28315
  }
28316
28316
 
28317
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
28317
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
28318
28318
  var IncrementalStateKind;
28319
28319
  (function(IncrementalStateKind2) {
28320
28320
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -28322,7 +28322,7 @@ var IncrementalStateKind;
28322
28322
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
28323
28323
  })(IncrementalStateKind || (IncrementalStateKind = {}));
28324
28324
 
28325
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
28325
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
28326
28326
  var PhaseKind;
28327
28327
  (function(PhaseKind2) {
28328
28328
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -28523,7 +28523,7 @@ function toOriginalSourceFile(sf) {
28523
28523
  }
28524
28524
  }
28525
28525
 
28526
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
28526
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
28527
28527
  var TrackedIncrementalBuildStrategy = class {
28528
28528
  constructor() {
28529
28529
  this.state = null;
@@ -28544,7 +28544,7 @@ var TrackedIncrementalBuildStrategy = class {
28544
28544
  };
28545
28545
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
28546
28546
 
28547
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
28547
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
28548
28548
  var IdentifierKind;
28549
28549
  (function(IdentifierKind2) {
28550
28550
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -28562,7 +28562,7 @@ var AbsoluteSourceSpan2 = class {
28562
28562
  }
28563
28563
  };
28564
28564
 
28565
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
28565
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
28566
28566
  var IndexingContext = class {
28567
28567
  constructor() {
28568
28568
  this.components = /* @__PURE__ */ new Set();
@@ -28572,7 +28572,7 @@ var IndexingContext = class {
28572
28572
  }
28573
28573
  };
28574
28574
 
28575
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
28575
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
28576
28576
  var ExpressionVisitor = class extends RecursiveAstVisitor {
28577
28577
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
28578
28578
  super();
@@ -28808,7 +28808,7 @@ function getTemplateIdentifiers(boundTemplate) {
28808
28808
  return { identifiers: visitor.identifiers, errors: visitor.errors };
28809
28809
  }
28810
28810
 
28811
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
28811
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
28812
28812
  function generateAnalysis(context) {
28813
28813
  const analysis = /* @__PURE__ */ new Map();
28814
28814
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -28844,7 +28844,7 @@ function generateAnalysis(context) {
28844
28844
  return analysis;
28845
28845
  }
28846
28846
 
28847
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
28847
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
28848
28848
  var NgModuleIndexImpl = class {
28849
28849
  constructor(metaReader, localReader) {
28850
28850
  this.metaReader = metaReader;
@@ -28933,7 +28933,7 @@ var NgModuleIndexImpl = class {
28933
28933
  }
28934
28934
  };
28935
28935
 
28936
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
28936
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
28937
28937
  var import_typescript65 = __toESM(require("typescript"), 1);
28938
28938
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
28939
28939
  var RESOURCE_MARKER = ".$ngresource$";
@@ -29081,7 +29081,7 @@ function createLookupResolutionHost(adapter) {
29081
29081
  };
29082
29082
  }
29083
29083
 
29084
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
29084
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
29085
29085
  var StandaloneComponentScopeReader = class {
29086
29086
  constructor(metaReader, localModuleReader, dtsModuleReader) {
29087
29087
  this.metaReader = metaReader;
@@ -29159,21 +29159,21 @@ var StandaloneComponentScopeReader = class {
29159
29159
  }
29160
29160
  };
29161
29161
 
29162
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
29162
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
29163
29163
  var OptimizeFor;
29164
29164
  (function(OptimizeFor2) {
29165
29165
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
29166
29166
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
29167
29167
  })(OptimizeFor || (OptimizeFor = {}));
29168
29168
 
29169
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
29169
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
29170
29170
  var CompletionKind;
29171
29171
  (function(CompletionKind2) {
29172
29172
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
29173
29173
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
29174
29174
  })(CompletionKind || (CompletionKind = {}));
29175
29175
 
29176
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
29176
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
29177
29177
  var PotentialImportKind;
29178
29178
  (function(PotentialImportKind2) {
29179
29179
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -29185,7 +29185,7 @@ var PotentialImportMode;
29185
29185
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
29186
29186
  })(PotentialImportMode || (PotentialImportMode = {}));
29187
29187
 
29188
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
29188
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
29189
29189
  var SymbolKind;
29190
29190
  (function(SymbolKind2) {
29191
29191
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -29201,7 +29201,7 @@ var SymbolKind;
29201
29201
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
29202
29202
  })(SymbolKind || (SymbolKind = {}));
29203
29203
 
29204
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
29204
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
29205
29205
  var import_typescript66 = __toESM(require("typescript"), 1);
29206
29206
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
29207
29207
  var _a;
@@ -29308,7 +29308,7 @@ function parseTemplateAsSourceFile(fileName, template) {
29308
29308
  return import_typescript66.default.createSourceFile(fileName, template, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
29309
29309
  }
29310
29310
 
29311
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
29311
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
29312
29312
  var TEMPLATE_ID = Symbol("ngTemplateId");
29313
29313
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
29314
29314
  function getTemplateId(clazz) {
@@ -29325,10 +29325,10 @@ function allocateTemplateId(sf) {
29325
29325
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
29326
29326
  }
29327
29327
 
29328
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29328
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29329
29329
  var import_typescript68 = __toESM(require("typescript"), 1);
29330
29330
 
29331
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
29331
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
29332
29332
  var import_typescript67 = __toESM(require("typescript"), 1);
29333
29333
  var parseSpanComment = /^(\d+),(\d+)$/;
29334
29334
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -29457,7 +29457,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
29457
29457
  }) || false;
29458
29458
  }
29459
29459
 
29460
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29460
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
29461
29461
  var CompletionEngine = class {
29462
29462
  constructor(tcb, data, tcbPath, tcbIsShim) {
29463
29463
  this.tcb = tcb;
@@ -29614,10 +29614,10 @@ var CompletionEngine = class {
29614
29614
  }
29615
29615
  };
29616
29616
 
29617
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
29617
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
29618
29618
  var import_typescript83 = __toESM(require("typescript"), 1);
29619
29619
 
29620
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
29620
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
29621
29621
  var import_typescript69 = __toESM(require("typescript"), 1);
29622
29622
  var REGISTRY = new DomElementSchemaRegistry();
29623
29623
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -29669,10 +29669,10 @@ var RegistryDomSchemaChecker = class {
29669
29669
  }
29670
29670
  };
29671
29671
 
29672
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
29672
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
29673
29673
  var import_typescript76 = __toESM(require("typescript"), 1);
29674
29674
 
29675
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
29675
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
29676
29676
  var import_typescript70 = __toESM(require("typescript"), 1);
29677
29677
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
29678
29678
  import_typescript70.default.SyntaxKind.ParenthesizedExpression,
@@ -29746,16 +29746,16 @@ function isAccessExpression(node) {
29746
29746
  return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
29747
29747
  }
29748
29748
 
29749
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29749
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29750
29750
  var import_typescript75 = __toESM(require("typescript"), 1);
29751
29751
 
29752
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29752
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29753
29753
  var import_typescript73 = __toESM(require("typescript"), 1);
29754
29754
 
29755
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29755
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29756
29756
  var import_typescript72 = __toESM(require("typescript"), 1);
29757
29757
 
29758
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
29758
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
29759
29759
  var import_typescript71 = __toESM(require("typescript"), 1);
29760
29760
  var INELIGIBLE = {};
29761
29761
  function canEmitType(type, canEmit) {
@@ -29830,7 +29830,7 @@ var TypeEmitter = class {
29830
29830
  }
29831
29831
  };
29832
29832
 
29833
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29833
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
29834
29834
  var TypeParameterEmitter = class {
29835
29835
  constructor(typeParameters, reflector) {
29836
29836
  this.typeParameters = typeParameters;
@@ -29907,7 +29907,7 @@ var TypeParameterEmitter = class {
29907
29907
  }
29908
29908
  };
29909
29909
 
29910
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29910
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
29911
29911
  var TcbInliningRequirement;
29912
29912
  (function(TcbInliningRequirement2) {
29913
29913
  TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
@@ -29987,7 +29987,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
29987
29987
  return emitter.canEmit((ref) => env.canReferenceType(ref));
29988
29988
  }
29989
29989
 
29990
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29990
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
29991
29991
  function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
29992
29992
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
29993
29993
  const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -30099,7 +30099,7 @@ function typeParametersWithDefaultTypes(params) {
30099
30099
  });
30100
30100
  }
30101
30101
 
30102
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
30102
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
30103
30103
  var Environment = class {
30104
30104
  constructor(config, importManager, refEmitter, reflector, contextFile) {
30105
30105
  this.config = config;
@@ -30191,7 +30191,7 @@ var Environment = class {
30191
30191
  }
30192
30192
  };
30193
30193
 
30194
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
30194
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
30195
30195
  var import_typescript77 = __toESM(require("typescript"), 1);
30196
30196
  var OutOfBandDiagnosticRecorderImpl = class {
30197
30197
  constructor(resolver) {
@@ -30326,7 +30326,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
30326
30326
  });
30327
30327
  }
30328
30328
 
30329
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
30329
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
30330
30330
  var import_typescript78 = __toESM(require("typescript"), 1);
30331
30331
  var TypeCheckShimGenerator = class {
30332
30332
  constructor() {
@@ -30344,10 +30344,10 @@ var TypeCheckShimGenerator = class {
30344
30344
  }
30345
30345
  };
30346
30346
 
30347
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30347
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30348
30348
  var import_typescript81 = __toESM(require("typescript"), 1);
30349
30349
 
30350
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
30350
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
30351
30351
  var import_typescript79 = __toESM(require("typescript"), 1);
30352
30352
  function wrapForDiagnostics(expr) {
30353
30353
  return import_typescript79.default.factory.createParenthesizedExpression(expr);
@@ -30392,7 +30392,7 @@ function translateDiagnostic(diagnostic, resolver) {
30392
30392
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
30393
30393
  }
30394
30394
 
30395
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
30395
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
30396
30396
  var import_typescript80 = __toESM(require("typescript"), 1);
30397
30397
  var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
30398
30398
  var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
@@ -30724,7 +30724,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
30724
30724
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
30725
30725
  })();
30726
30726
 
30727
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
30727
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
30728
30728
  var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
30729
30729
  constructor(templateId, boundTarget, oob) {
30730
30730
  super();
@@ -30747,7 +30747,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
30747
30747
  }
30748
30748
  };
30749
30749
 
30750
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30750
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
30751
30751
  var TcbGenericContextBehavior;
30752
30752
  (function(TcbGenericContextBehavior2) {
30753
30753
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -31862,7 +31862,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
31862
31862
  }
31863
31863
  };
31864
31864
 
31865
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
31865
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
31866
31866
  var import_typescript82 = __toESM(require("typescript"), 1);
31867
31867
  var TypeCheckFile = class extends Environment {
31868
31868
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -31898,7 +31898,7 @@ var TypeCheckFile = class extends Environment {
31898
31898
  }
31899
31899
  };
31900
31900
 
31901
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31901
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
31902
31902
  var InliningMode;
31903
31903
  (function(InliningMode2) {
31904
31904
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -32136,7 +32136,7 @@ function splitStringAtPoints(str, points) {
32136
32136
  return splits;
32137
32137
  }
32138
32138
 
32139
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
32139
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
32140
32140
  var LF_CHAR = 10;
32141
32141
  var CR_CHAR = 13;
32142
32142
  var LINE_SEP_CHAR = 8232;
@@ -32177,7 +32177,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
32177
32177
  return low - 1;
32178
32178
  }
32179
32179
 
32180
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
32180
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
32181
32181
  var TemplateSource = class {
32182
32182
  constructor(mapping, file) {
32183
32183
  this.mapping = mapping;
@@ -32228,7 +32228,7 @@ var TemplateSourceManager = class {
32228
32228
  }
32229
32229
  };
32230
32230
 
32231
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
32231
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
32232
32232
  var import_typescript84 = __toESM(require("typescript"), 1);
32233
32233
  var SymbolBuilder = class {
32234
32234
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -32705,7 +32705,7 @@ function sourceSpanEqual(a, b) {
32705
32705
  return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
32706
32706
  }
32707
32707
 
32708
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
32708
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
32709
32709
  var REGISTRY2 = new DomElementSchemaRegistry();
32710
32710
  var TemplateTypeCheckerImpl = class {
32711
32711
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -33398,7 +33398,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
33398
33398
  }
33399
33399
  };
33400
33400
 
33401
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
33401
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
33402
33402
  var TemplateCheckWithVisitor = class {
33403
33403
  run(ctx, component, template) {
33404
33404
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -33474,7 +33474,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor {
33474
33474
  }
33475
33475
  };
33476
33476
 
33477
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
33477
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
33478
33478
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
33479
33479
  constructor() {
33480
33480
  super(...arguments);
@@ -33499,7 +33499,7 @@ var factory = {
33499
33499
  create: () => new InvalidBananaInBoxCheck()
33500
33500
  };
33501
33501
 
33502
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
33502
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
33503
33503
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
33504
33504
  ["ngIf", "NgIf"],
33505
33505
  ["ngFor", "NgFor"],
@@ -33543,7 +33543,7 @@ var factory2 = {
33543
33543
  }
33544
33544
  };
33545
33545
 
33546
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
33546
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
33547
33547
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
33548
33548
  constructor() {
33549
33549
  super(...arguments);
@@ -33575,7 +33575,7 @@ var factory3 = {
33575
33575
  create: () => new MissingNgForOfLetCheck()
33576
33576
  };
33577
33577
 
33578
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
33578
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
33579
33579
  var import_typescript87 = __toESM(require("typescript"), 1);
33580
33580
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
33581
33581
  constructor() {
@@ -33619,7 +33619,7 @@ var factory4 = {
33619
33619
  }
33620
33620
  };
33621
33621
 
33622
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
33622
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
33623
33623
  var import_typescript88 = __toESM(require("typescript"), 1);
33624
33624
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
33625
33625
  constructor() {
@@ -33664,7 +33664,7 @@ var factory5 = {
33664
33664
  }
33665
33665
  };
33666
33666
 
33667
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
33667
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
33668
33668
  var STYLE_SUFFIXES = ["px", "%", "em"];
33669
33669
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
33670
33670
  constructor() {
@@ -33687,7 +33687,7 @@ var factory6 = {
33687
33687
  create: () => new SuffixNotSupportedCheck()
33688
33688
  };
33689
33689
 
33690
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
33690
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
33691
33691
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
33692
33692
  constructor() {
33693
33693
  super(...arguments);
@@ -33725,10 +33725,10 @@ var factory7 = {
33725
33725
  create: () => new TextAttributeNotBindingSpec()
33726
33726
  };
33727
33727
 
33728
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33728
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33729
33729
  var import_typescript89 = __toESM(require("typescript"), 1);
33730
33730
 
33731
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
33731
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
33732
33732
  var DiagnosticCategoryLabel;
33733
33733
  (function(DiagnosticCategoryLabel2) {
33734
33734
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -33736,7 +33736,7 @@ var DiagnosticCategoryLabel;
33736
33736
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
33737
33737
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
33738
33738
 
33739
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33739
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
33740
33740
  var ExtendedTemplateCheckerImpl = class {
33741
33741
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
33742
33742
  var _a, _b, _c, _d, _e;
@@ -33788,7 +33788,7 @@ function assertNever(value) {
33788
33788
  ${value}`);
33789
33789
  }
33790
33790
 
33791
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
33791
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
33792
33792
  var ALL_DIAGNOSTIC_FACTORIES = [
33793
33793
  factory,
33794
33794
  factory4,
@@ -33799,7 +33799,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
33799
33799
  factory6
33800
33800
  ];
33801
33801
 
33802
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
33802
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
33803
33803
  var CompilationTicketKind;
33804
33804
  (function(CompilationTicketKind2) {
33805
33805
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -34486,7 +34486,7 @@ function versionMapFromProgram(program, driver) {
34486
34486
  return versions;
34487
34487
  }
34488
34488
 
34489
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
34489
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
34490
34490
  var import_typescript92 = __toESM(require("typescript"), 1);
34491
34491
  var DelegatingCompilerHost2 = class {
34492
34492
  constructor(delegate) {
@@ -34619,7 +34619,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
34619
34619
  }
34620
34620
  };
34621
34621
 
34622
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
34622
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
34623
34623
  var NgtscProgram = class {
34624
34624
  constructor(rootNames, options, delegateHost, oldProgram) {
34625
34625
  this.options = options;
@@ -34837,21 +34837,21 @@ function mergeEmitResults(emitResults) {
34837
34837
  return { diagnostics, emitSkipped, emittedFiles };
34838
34838
  }
34839
34839
 
34840
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
34840
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
34841
34841
  function createProgram({ rootNames, options, host, oldProgram }) {
34842
34842
  return new NgtscProgram(rootNames, options, host, oldProgram);
34843
34843
  }
34844
34844
 
34845
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
34845
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
34846
34846
  var import_typescript96 = __toESM(require("typescript"), 1);
34847
34847
 
34848
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
34848
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
34849
34849
  var import_typescript95 = __toESM(require("typescript"), 1);
34850
34850
 
34851
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
34851
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
34852
34852
  var import_typescript97 = __toESM(require("typescript"), 1);
34853
34853
 
34854
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
34854
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
34855
34855
  var GLOBAL_DEFS_FOR_TERSER = {
34856
34856
  ngDevMode: false,
34857
34857
  ngI18nClosureMode: false
@@ -34860,7 +34860,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
34860
34860
  ngJitMode: false
34861
34861
  });
34862
34862
 
34863
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
34863
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
34864
34864
  var LogLevel;
34865
34865
  (function(LogLevel2) {
34866
34866
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -34869,7 +34869,7 @@ var LogLevel;
34869
34869
  LogLevel2[LogLevel2["error"] = 3] = "error";
34870
34870
  })(LogLevel || (LogLevel = {}));
34871
34871
 
34872
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
34872
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
34873
34873
  var RESET = "\x1B[0m";
34874
34874
  var RED = "\x1B[31m";
34875
34875
  var YELLOW = "\x1B[33m";
@@ -34878,18 +34878,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
34878
34878
  var WARN = `${YELLOW}Warning:${RESET}`;
34879
34879
  var ERROR = `${RED}Error:${RESET}`;
34880
34880
 
34881
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
34881
+ // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
34882
34882
  setFileSystem(new NodeJSFileSystem());
34883
34883
 
34884
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
34884
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
34885
34885
  var import_fs2 = require("fs");
34886
34886
  var import_path8 = require("path");
34887
34887
  var import_typescript110 = __toESM(require("typescript"), 1);
34888
34888
 
34889
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
34889
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
34890
34890
  var import_typescript99 = __toESM(require("typescript"), 1);
34891
34891
 
34892
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
34892
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
34893
34893
  var import_path4 = require("path");
34894
34894
  var import_typescript98 = __toESM(require("typescript"), 1);
34895
34895
  var ImportManager2 = class {
@@ -35073,7 +35073,7 @@ ${text}`;
35073
35073
  }
35074
35074
  };
35075
35075
 
35076
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
35076
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
35077
35077
  var ChangeTracker = class {
35078
35078
  constructor(_printer, _importRemapper) {
35079
35079
  __publicField(this, "_printer");
@@ -35129,7 +35129,7 @@ function normalizePath(path3) {
35129
35129
  return path3.replace(/\\/g, "/");
35130
35130
  }
35131
35131
 
35132
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
35132
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
35133
35133
  var import_core13 = require("@angular-devkit/core");
35134
35134
  function getProjectTsConfigPaths(tree) {
35135
35135
  return __async(this, null, function* () {
@@ -35209,11 +35209,11 @@ function getWorkspace(tree) {
35209
35209
  });
35210
35210
  }
35211
35211
 
35212
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35212
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35213
35213
  var import_path5 = require("path");
35214
35214
  var import_typescript101 = __toESM(require("typescript"), 1);
35215
35215
 
35216
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
35216
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
35217
35217
  var path2 = __toESM(require("path"), 1);
35218
35218
  var import_typescript100 = __toESM(require("typescript"), 1);
35219
35219
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -35230,7 +35230,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
35230
35230
  return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
35231
35231
  }
35232
35232
 
35233
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35233
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
35234
35234
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
35235
35235
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
35236
35236
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -35259,13 +35259,13 @@ function canMigrateFile(basePath, sourceFile, program) {
35259
35259
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
35260
35260
  }
35261
35261
 
35262
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35262
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35263
35263
  var import_typescript106 = __toESM(require("typescript"), 1);
35264
35264
 
35265
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35265
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35266
35266
  var import_typescript103 = __toESM(require("typescript"), 1);
35267
35267
 
35268
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
35268
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
35269
35269
  var import_typescript102 = __toESM(require("typescript"), 1);
35270
35270
  function getImportOfIdentifier(typeChecker, node) {
35271
35271
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -35316,7 +35316,7 @@ function findImportSpecifier(nodes, specifierName) {
35316
35316
  });
35317
35317
  }
35318
35318
 
35319
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35319
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
35320
35320
  function getCallDecoratorImport(typeChecker, decorator) {
35321
35321
  if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
35322
35322
  return null;
@@ -35325,7 +35325,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
35325
35325
  return getImportOfIdentifier(typeChecker, identifier);
35326
35326
  }
35327
35327
 
35328
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
35328
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
35329
35329
  function getAngularDecorators(typeChecker, decorators) {
35330
35330
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
35331
35331
  node,
@@ -35335,7 +35335,7 @@ function getAngularDecorators(typeChecker, decorators) {
35335
35335
  }));
35336
35336
  }
35337
35337
 
35338
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
35338
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
35339
35339
  var import_typescript104 = __toESM(require("typescript"), 1);
35340
35340
  function closestNode(node, predicate) {
35341
35341
  let current = node.parent;
@@ -35348,7 +35348,7 @@ function closestNode(node, predicate) {
35348
35348
  return null;
35349
35349
  }
35350
35350
 
35351
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
35351
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
35352
35352
  var import_path6 = require("path");
35353
35353
  var import_typescript105 = __toESM(require("typescript"), 1);
35354
35354
  var UniqueItemTracker = class {
@@ -35524,7 +35524,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
35524
35524
  }));
35525
35525
  }
35526
35526
 
35527
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35527
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
35528
35528
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
35529
35529
  const filesToRemove = /* @__PURE__ */ new Set();
35530
35530
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -35723,14 +35723,14 @@ function findNgModuleDecorator(node, typeChecker) {
35723
35723
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
35724
35724
  }
35725
35725
 
35726
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
35726
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
35727
35727
  var import_path7 = require("path");
35728
35728
  var import_typescript109 = __toESM(require("typescript"), 1);
35729
35729
 
35730
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35730
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35731
35731
  var import_typescript108 = __toESM(require("typescript"), 1);
35732
35732
 
35733
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
35733
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
35734
35734
  var import_typescript107 = __toESM(require("typescript"), 1);
35735
35735
  function isReferenceToImport(typeChecker, node, importSpecifier) {
35736
35736
  var _a, _b;
@@ -35739,7 +35739,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
35739
35739
  return !!(((_a = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
35740
35740
  }
35741
35741
 
35742
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35742
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
35743
35743
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
35744
35744
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
35745
35745
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -36102,7 +36102,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
36102
36102
  return metadata != null && metadata.isStandalone;
36103
36103
  }
36104
36104
 
36105
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
36105
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
36106
36106
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
36107
36107
  const tracker = new ChangeTracker(printer, importRemapper);
36108
36108
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -36479,7 +36479,7 @@ function hasImport(program, rootFileNames, moduleName) {
36479
36479
  return false;
36480
36480
  }
36481
36481
 
36482
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36482
+ // bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
36483
36483
  var MigrationMode;
36484
36484
  (function(MigrationMode2) {
36485
36485
  MigrationMode2["toStandalone"] = "convert-to-standalone";