@angular/core 18.0.0-rc.0 → 18.0.0-rc.2

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 (73) hide show
  1. package/esm2022/primitives/event-dispatch/contract_binary.mjs +3 -3
  2. package/esm2022/primitives/event-dispatch/index.mjs +2 -2
  3. package/esm2022/primitives/event-dispatch/src/action_resolver.mjs +221 -0
  4. package/esm2022/primitives/event-dispatch/src/attribute.mjs +63 -65
  5. package/esm2022/primitives/event-dispatch/src/cache.mjs +10 -10
  6. package/esm2022/primitives/event-dispatch/src/dispatcher.mjs +52 -176
  7. package/esm2022/primitives/event-dispatch/src/earlyeventcontract.mjs +15 -9
  8. package/esm2022/primitives/event-dispatch/src/event_contract_defines.mjs +1 -19
  9. package/esm2022/primitives/event-dispatch/src/eventcontract.mjs +24 -362
  10. package/esm2022/primitives/event-dispatch/src/key_code.mjs +11 -13
  11. package/esm2022/primitives/event-dispatch/src/legacy_dispatcher.mjs +252 -2
  12. package/esm2022/primitives/event-dispatch/src/property.mjs +30 -27
  13. package/esm2022/primitives/event-dispatch/src/register_events.mjs +16 -17
  14. package/esm2022/primitives/event-dispatch/src/restriction.mjs +2 -2
  15. package/esm2022/src/application/application_ref.mjs +6 -3
  16. package/esm2022/src/application/create_application.mjs +12 -5
  17. package/esm2022/src/change_detection/scheduling/exhaustive_check_no_changes.mjs +150 -0
  18. package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +6 -4
  19. package/esm2022/src/change_detection/scheduling/zoneless_scheduling.mjs +3 -1
  20. package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +9 -6
  21. package/esm2022/src/core.mjs +2 -1
  22. package/esm2022/src/core_private_export.mjs +2 -1
  23. package/esm2022/src/core_reactivity_export_internal.mjs +1 -3
  24. package/esm2022/src/core_render3_private_export.mjs +1 -3
  25. package/esm2022/src/defer/instructions.mjs +20 -12
  26. package/esm2022/src/defer/interfaces.mjs +1 -3
  27. package/esm2022/src/errors.mjs +1 -1
  28. package/esm2022/src/hydration/event_replay.mjs +67 -79
  29. package/esm2022/src/hydration/utils.mjs +1 -2
  30. package/esm2022/src/metadata/directives.mjs +1 -1
  31. package/esm2022/src/platform/platform_ref.mjs +10 -4
  32. package/esm2022/src/render3/after_render_hooks.mjs +4 -2
  33. package/esm2022/src/render3/component_ref.mjs +1 -1
  34. package/esm2022/src/render3/index.mjs +1 -3
  35. package/esm2022/src/render3/instructions/change_detection.mjs +13 -10
  36. package/esm2022/src/render3/instructions/listener.mjs +12 -1
  37. package/esm2022/src/render3/interfaces/public_definitions.mjs +1 -1
  38. package/esm2022/src/render3/state.mjs +14 -4
  39. package/esm2022/src/render3/view_ref.mjs +3 -2
  40. package/esm2022/src/util/callback_scheduler.mjs +12 -26
  41. package/esm2022/src/version.mjs +1 -1
  42. package/esm2022/src/zone/ng_zone.mjs +9 -23
  43. package/esm2022/testing/src/component_fixture.mjs +2 -4
  44. package/esm2022/testing/src/defer.mjs +1 -2
  45. package/esm2022/testing/src/logger.mjs +3 -3
  46. package/esm2022/testing/src/test_bed.mjs +1 -3
  47. package/esm2022/testing/src/test_bed_compiler.mjs +3 -6
  48. package/event-dispatch-contract.min.js +1 -1
  49. package/fesm2022/core.mjs +800 -660
  50. package/fesm2022/core.mjs.map +1 -1
  51. package/fesm2022/primitives/event-dispatch.mjs +484 -807
  52. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  53. package/fesm2022/primitives/signals.mjs +1 -1
  54. package/fesm2022/rxjs-interop.mjs +1 -1
  55. package/fesm2022/testing.mjs +4 -10
  56. package/fesm2022/testing.mjs.map +1 -1
  57. package/index.d.ts +36 -4
  58. package/package.json +1 -1
  59. package/primitives/event-dispatch/index.d.ts +111 -162
  60. package/primitives/signals/index.d.ts +1 -1
  61. package/rxjs-interop/index.d.ts +1 -1
  62. package/schematics/migrations/http-providers/bundle.js +110 -71
  63. package/schematics/migrations/http-providers/bundle.js.map +3 -3
  64. package/schematics/migrations/invalid-two-way-bindings/bundle.js +197 -167
  65. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
  66. package/schematics/ng-generate/control-flow-migration/bundle.js +205 -175
  67. package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
  68. package/schematics/ng-generate/standalone-migration/bundle.js +481 -451
  69. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  70. package/testing/index.d.ts +1 -4
  71. package/esm2022/primitives/event-dispatch/src/base_dispatcher.mjs +0 -96
  72. package/esm2022/primitives/event-dispatch/src/custom_events.mjs +0 -63
  73. package/esm2022/primitives/event-dispatch/src/replay.mjs +0 -389
@@ -2501,7 +2501,7 @@ var require_semver2 = __commonJS({
2501
2501
  }
2502
2502
  });
2503
2503
 
2504
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
2504
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
2505
2505
  var standalone_migration_exports = {};
2506
2506
  __export(standalone_migration_exports, {
2507
2507
  default: () => standalone_migration_default
@@ -2509,10 +2509,10 @@ __export(standalone_migration_exports, {
2509
2509
  module.exports = __toCommonJS(standalone_migration_exports);
2510
2510
  var import_schematics = require("@angular-devkit/schematics");
2511
2511
 
2512
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
2512
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
2513
2513
  var import_typescript = __toESM(require("typescript"), 1);
2514
2514
 
2515
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
2515
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
2516
2516
  var InvalidFileSystem = class {
2517
2517
  exists(path4) {
2518
2518
  throw makeError();
@@ -2600,7 +2600,7 @@ function makeError() {
2600
2600
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
2601
2601
  }
2602
2602
 
2603
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
2603
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
2604
2604
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
2605
2605
  function stripExtension(path4) {
2606
2606
  return path4.replace(TS_DTS_JS_EXTENSION, "");
@@ -2613,7 +2613,7 @@ function getSourceFileOrError(program, fileName) {
2613
2613
  return sf;
2614
2614
  }
2615
2615
 
2616
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2616
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2617
2617
  var fs = new InvalidFileSystem();
2618
2618
  function getFileSystem() {
2619
2619
  return fs;
@@ -2657,7 +2657,7 @@ function toRelativeImport(relativePath) {
2657
2657
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
2658
2658
  }
2659
2659
 
2660
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2660
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2661
2661
  var LogicalProjectPath = {
2662
2662
  relativePathBetween: function(from, to) {
2663
2663
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -2703,7 +2703,7 @@ function isWithinBasePath(base, path4) {
2703
2703
  return isLocalRelativePath(relative(base, path4));
2704
2704
  }
2705
2705
 
2706
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2706
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2707
2707
  var import_fs = __toESM(require("fs"), 1);
2708
2708
  var import_module = require("module");
2709
2709
  var p = __toESM(require("path"), 1);
@@ -2811,7 +2811,7 @@ function toggleCase(str) {
2811
2811
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
2812
2812
  }
2813
2813
 
2814
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
2814
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
2815
2815
  var _SELECTOR_REGEXP = new RegExp(
2816
2816
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
2817
2817
  "g"
@@ -3119,7 +3119,7 @@ var SelectorContext = class {
3119
3119
  }
3120
3120
  };
3121
3121
 
3122
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
3122
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
3123
3123
  var emitDistinctChangesOnlyDefaultValue = true;
3124
3124
  var ViewEncapsulation;
3125
3125
  (function(ViewEncapsulation2) {
@@ -3188,7 +3188,7 @@ function parseSelectorToR3Selector(selector) {
3188
3188
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
3189
3189
  }
3190
3190
 
3191
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3191
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3192
3192
  var output_ast_exports = {};
3193
3193
  __export(output_ast_exports, {
3194
3194
  ArrayType: () => ArrayType,
@@ -3276,7 +3276,7 @@ __export(output_ast_exports, {
3276
3276
  variable: () => variable
3277
3277
  });
3278
3278
 
3279
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
3279
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
3280
3280
  var textEncoder;
3281
3281
  function digest(message) {
3282
3282
  return message.id || computeDigest(message);
@@ -3519,7 +3519,7 @@ function wordAt(bytes, index, endian) {
3519
3519
  return word;
3520
3520
  }
3521
3521
 
3522
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3522
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3523
3523
  var TypeModifier;
3524
3524
  (function(TypeModifier2) {
3525
3525
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -4714,7 +4714,7 @@ function serializeTags(tags) {
4714
4714
  return out;
4715
4715
  }
4716
4716
 
4717
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4717
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4718
4718
  var CONSTANT_PREFIX = "_c";
4719
4719
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
4720
4720
  var KEY_CONTEXT = {};
@@ -4902,7 +4902,7 @@ function isLongStringLiteral(expr) {
4902
4902
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
4903
4903
  }
4904
4904
 
4905
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4905
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4906
4906
  var CORE = "@angular/core";
4907
4907
  var _Identifiers = class {
4908
4908
  };
@@ -5790,7 +5790,7 @@ var Identifiers = _Identifiers;
5790
5790
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
5791
5791
  })();
5792
5792
 
5793
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
5793
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
5794
5794
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
5795
5795
  function dashCaseToCamelCase(input) {
5796
5796
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -5867,7 +5867,7 @@ var Version = class {
5867
5867
  };
5868
5868
  var _global = globalThis;
5869
5869
 
5870
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5870
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5871
5871
  var VERSION = 3;
5872
5872
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
5873
5873
  var SourceMapGenerator = class {
@@ -5996,7 +5996,7 @@ function toBase64Digit(value) {
5996
5996
  return B64_DIGITS[value];
5997
5997
  }
5998
5998
 
5999
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5999
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
6000
6000
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
6001
6001
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
6002
6002
  var _INDENT_WITH = " ";
@@ -6484,7 +6484,7 @@ function _createIndent(count) {
6484
6484
  return res;
6485
6485
  }
6486
6486
 
6487
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
6487
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
6488
6488
  function typeWithParameters(type, numParams) {
6489
6489
  if (numParams === 0) {
6490
6490
  return expressionType(type);
@@ -6542,7 +6542,7 @@ function generateForwardRef(expr) {
6542
6542
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
6543
6543
  }
6544
6544
 
6545
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
6545
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
6546
6546
  var R3FactoryDelegateType;
6547
6547
  (function(R3FactoryDelegateType2) {
6548
6548
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -6687,7 +6687,7 @@ function getInjectFn(target) {
6687
6687
  }
6688
6688
  }
6689
6689
 
6690
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6690
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6691
6691
  var ParserError = class {
6692
6692
  constructor(message, input, errLocation, ctxLocation) {
6693
6693
  this.input = input;
@@ -7125,7 +7125,7 @@ var BoundElementProperty = class {
7125
7125
  }
7126
7126
  };
7127
7127
 
7128
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
7128
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
7129
7129
  var TagContentType;
7130
7130
  (function(TagContentType2) {
7131
7131
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -7162,7 +7162,7 @@ function mergeNsAndName(prefix, localName) {
7162
7162
  return prefix ? `:${prefix}:${localName}` : localName;
7163
7163
  }
7164
7164
 
7165
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
7165
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
7166
7166
  var Comment = class {
7167
7167
  constructor(value, sourceSpan) {
7168
7168
  this.value = value;
@@ -7618,7 +7618,7 @@ function visitAll(visitor, nodes) {
7618
7618
  return result;
7619
7619
  }
7620
7620
 
7621
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7621
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7622
7622
  var Message = class {
7623
7623
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
7624
7624
  this.nodes = nodes;
@@ -7809,7 +7809,7 @@ var LocalizeMessageStringVisitor = class {
7809
7809
  }
7810
7810
  };
7811
7811
 
7812
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7812
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7813
7813
  var Serializer = class {
7814
7814
  createNameMapper(message) {
7815
7815
  return null;
@@ -7866,7 +7866,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
7866
7866
  }
7867
7867
  };
7868
7868
 
7869
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7869
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7870
7870
  var _Visitor = class {
7871
7871
  visitTag(tag) {
7872
7872
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -7954,7 +7954,7 @@ function escapeXml(text2) {
7954
7954
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
7955
7955
  }
7956
7956
 
7957
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7957
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7958
7958
  var _XMB_HANDLER = "angular";
7959
7959
  var _MESSAGES_TAG = "messagebundle";
7960
7960
  var _MESSAGE_TAG = "msg";
@@ -8116,7 +8116,7 @@ function toPublicName(internalName) {
8116
8116
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
8117
8117
  }
8118
8118
 
8119
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
8119
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
8120
8120
  var I18N_ATTR = "i18n";
8121
8121
  var I18N_ATTR_PREFIX = "i18n-";
8122
8122
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -8156,7 +8156,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
8156
8156
  return postfix ? `${raw}_${postfix}` : raw;
8157
8157
  }
8158
8158
 
8159
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
8159
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
8160
8160
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
8161
8161
  var TEMPORARY_NAME = "_t";
8162
8162
  var CONTEXT_NAME = "ctx";
@@ -8283,7 +8283,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
8283
8283
  return attributesMap;
8284
8284
  }
8285
8285
 
8286
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
8286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
8287
8287
  function compileInjectable(meta, resolveForwardRefs) {
8288
8288
  let result = null;
8289
8289
  const factoryMeta = {
@@ -8370,7 +8370,7 @@ function createFactoryFunction(type) {
8370
8370
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
8371
8371
  }
8372
8372
 
8373
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
8373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
8374
8374
  var UNUSABLE_INTERPOLATION_REGEXPS = [
8375
8375
  /^\s*$/,
8376
8376
  /[<>]/,
@@ -8392,7 +8392,7 @@ function assertInterpolationSymbols(identifier, value) {
8392
8392
  }
8393
8393
  }
8394
8394
 
8395
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
8395
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
8396
8396
  var InterpolationConfig = class {
8397
8397
  static fromArray(markers) {
8398
8398
  if (!markers) {
@@ -8409,7 +8409,7 @@ var InterpolationConfig = class {
8409
8409
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
8410
8410
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
8411
8411
 
8412
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
8412
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
8413
8413
  var $EOF = 0;
8414
8414
  var $BSPACE = 8;
8415
8415
  var $TAB = 9;
@@ -8491,7 +8491,7 @@ function isQuote(code) {
8491
8491
  return code === $SQ || code === $DQ || code === $BT;
8492
8492
  }
8493
8493
 
8494
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
8494
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
8495
8495
  var ParseLocation = class {
8496
8496
  constructor(file, offset, line, col) {
8497
8497
  this.file = file;
@@ -8638,7 +8638,7 @@ function sanitizeIdentifier(name) {
8638
8638
  return name.replace(/\W/g, "_");
8639
8639
  }
8640
8640
 
8641
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8641
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8642
8642
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
8643
8643
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8644
8644
  constructor() {
@@ -8731,7 +8731,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8731
8731
  }
8732
8732
  };
8733
8733
 
8734
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8734
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8735
8735
  var policy;
8736
8736
  function getPolicy() {
8737
8737
  if (policy === void 0) {
@@ -8769,7 +8769,7 @@ function newTrustedFunctionForJIT(...args) {
8769
8769
  return fn2.bind(_global);
8770
8770
  }
8771
8771
 
8772
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8772
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8773
8773
  var JitEvaluator = class {
8774
8774
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
8775
8775
  const converter = new JitEmitterVisitor(refResolver);
@@ -8857,7 +8857,7 @@ function isUseStrictStatement(statement) {
8857
8857
  return statement.isEquivalent(literal("use strict").toStmt());
8858
8858
  }
8859
8859
 
8860
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8860
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8861
8861
  function compileInjector(meta) {
8862
8862
  const definitionMap = new DefinitionMap();
8863
8863
  if (meta.providers !== null) {
@@ -8874,7 +8874,7 @@ function createInjectorType(meta) {
8874
8874
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
8875
8875
  }
8876
8876
 
8877
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8877
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8878
8878
  var R3JitReflector = class {
8879
8879
  constructor(context) {
8880
8880
  this.context = context;
@@ -8890,7 +8890,7 @@ var R3JitReflector = class {
8890
8890
  }
8891
8891
  };
8892
8892
 
8893
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8893
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8894
8894
  var R3SelectorScopeMode;
8895
8895
  (function(R3SelectorScopeMode2) {
8896
8896
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -9025,7 +9025,7 @@ function tupleOfTypes(types) {
9025
9025
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
9026
9026
  }
9027
9027
 
9028
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
9028
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
9029
9029
  function compilePipeFromMetadata(metadata) {
9030
9030
  const definitionMapValues = [];
9031
9031
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -9046,7 +9046,7 @@ function createPipeType(metadata) {
9046
9046
  ]));
9047
9047
  }
9048
9048
 
9049
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
9049
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
9050
9050
  var R3TemplateDependencyKind;
9051
9051
  (function(R3TemplateDependencyKind2) {
9052
9052
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -9054,7 +9054,7 @@ var R3TemplateDependencyKind;
9054
9054
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
9055
9055
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
9056
9056
 
9057
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
9057
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
9058
9058
  var animationKeywords = /* @__PURE__ */ new Set([
9059
9059
  "inherit",
9060
9060
  "initial",
@@ -9242,7 +9242,7 @@ var ShadowCss = class {
9242
9242
  });
9243
9243
  }
9244
9244
  _scopeSelector(selector, scopeSelector, hostSelector) {
9245
- return selector.split(",").map((part) => part.trim().split(_shadowDeepSelectors)).map((deepParts) => {
9245
+ return selector.split(/ ?, ?/).map((part) => part.split(_shadowDeepSelectors)).map((deepParts) => {
9246
9246
  const [shallowPart, ...otherParts] = deepParts;
9247
9247
  const applyScope = (shallowPart2) => {
9248
9248
  if (this._selectorNeedsScoping(shallowPart2, scopeSelector)) {
@@ -9284,9 +9284,9 @@ var ShadowCss = class {
9284
9284
  const _scopeSelectorPart = (p2) => {
9285
9285
  let scopedP = p2.trim();
9286
9286
  if (!scopedP) {
9287
- return "";
9287
+ return p2;
9288
9288
  }
9289
- if (p2.indexOf(_polyfillHostNoCombinator) > -1) {
9289
+ if (p2.includes(_polyfillHostNoCombinator)) {
9290
9290
  scopedP = this._applySimpleSelectorScope(p2, scopeSelector, hostSelector);
9291
9291
  } else {
9292
9292
  const t = p2.replace(_polyfillHostRe, "");
@@ -9305,21 +9305,21 @@ var ShadowCss = class {
9305
9305
  let startIndex = 0;
9306
9306
  let res;
9307
9307
  const sep2 = /( |>|\+|~(?!=))\s*/g;
9308
- const hasHost = selector.indexOf(_polyfillHostNoCombinator) > -1;
9308
+ const hasHost = selector.includes(_polyfillHostNoCombinator);
9309
9309
  let shouldScope = !hasHost;
9310
9310
  while ((res = sep2.exec(selector)) !== null) {
9311
9311
  const separator = res[1];
9312
- const part2 = selector.slice(startIndex, res.index).trim();
9312
+ const part2 = selector.slice(startIndex, res.index);
9313
9313
  if (part2.match(/__esc-ph-(\d+)__/) && ((_a2 = selector[res.index + 1]) == null ? void 0 : _a2.match(/[a-fA-F\d]/))) {
9314
9314
  continue;
9315
9315
  }
9316
- shouldScope = shouldScope || part2.indexOf(_polyfillHostNoCombinator) > -1;
9316
+ shouldScope = shouldScope || part2.includes(_polyfillHostNoCombinator);
9317
9317
  const scopedPart = shouldScope ? _scopeSelectorPart(part2) : part2;
9318
9318
  scopedSelector += `${scopedPart} ${separator} `;
9319
9319
  startIndex = sep2.lastIndex;
9320
9320
  }
9321
9321
  const part = selector.substring(startIndex);
9322
- shouldScope = shouldScope || part.indexOf(_polyfillHostNoCombinator) > -1;
9322
+ shouldScope = shouldScope || part.includes(_polyfillHostNoCombinator);
9323
9323
  scopedSelector += shouldScope ? _scopeSelectorPart(part) : part;
9324
9324
  return safeContent.restore(scopedSelector);
9325
9325
  }
@@ -9534,7 +9534,7 @@ function repeatGroups(groups, multiples) {
9534
9534
  }
9535
9535
  }
9536
9536
 
9537
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
9537
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
9538
9538
  var OpKind;
9539
9539
  (function(OpKind2) {
9540
9540
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -9688,7 +9688,7 @@ var TemplateKind;
9688
9688
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
9689
9689
  })(TemplateKind || (TemplateKind = {}));
9690
9690
 
9691
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9691
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9692
9692
  var ConsumesSlot = Symbol("ConsumesSlot");
9693
9693
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
9694
9694
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -9716,7 +9716,7 @@ function hasUsesVarOffsetTrait(expr) {
9716
9716
  return expr[UsesVarOffset] === true;
9717
9717
  }
9718
9718
 
9719
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9719
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9720
9720
  function createStatementOp(statement) {
9721
9721
  return __spreadValues({
9722
9722
  kind: OpKind.Statement,
@@ -9738,7 +9738,7 @@ var NEW_OP = {
9738
9738
  next: null
9739
9739
  };
9740
9740
 
9741
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9741
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9742
9742
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
9743
9743
  return __spreadValues(__spreadValues(__spreadValues({
9744
9744
  kind: OpKind.InterpolateText,
@@ -9918,7 +9918,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
9918
9918
  }, NEW_OP);
9919
9919
  }
9920
9920
 
9921
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9921
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9922
9922
  var _a;
9923
9923
  var _b;
9924
9924
  var _c;
@@ -10780,7 +10780,7 @@ function isStringLiteral(expr) {
10780
10780
  return expr instanceof LiteralExpr && typeof expr.value === "string";
10781
10781
  }
10782
10782
 
10783
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10784
10784
  var _OpList = class {
10785
10785
  constructor() {
10786
10786
  this.debugListId = _OpList.nextListId++;
@@ -10971,14 +10971,14 @@ var OpList = _OpList;
10971
10971
  _OpList.nextListId = 0;
10972
10972
  })();
10973
10973
 
10974
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10974
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10975
10975
  var SlotHandle = class {
10976
10976
  constructor() {
10977
10977
  this.slot = null;
10978
10978
  }
10979
10979
  };
10980
10980
 
10981
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10981
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10982
10982
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
10983
10983
  OpKind.Element,
10984
10984
  OpKind.ElementStart,
@@ -11282,7 +11282,7 @@ function createI18nAttributesOp(xref, handle, target) {
11282
11282
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
11283
11283
  }
11284
11284
 
11285
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
11285
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
11286
11286
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
11287
11287
  return __spreadValues(__spreadValues({
11288
11288
  kind: OpKind.HostProperty,
@@ -11296,10 +11296,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
11296
11296
  }, TRAIT_CONSUMES_VARS), NEW_OP);
11297
11297
  }
11298
11298
 
11299
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
11299
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
11300
11300
  var CTX_REF = "CTX_REF_MARKER";
11301
11301
 
11302
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
11302
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
11303
11303
  var CompilationJobKind;
11304
11304
  (function(CompilationJobKind2) {
11305
11305
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -11407,7 +11407,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
11407
11407
  }
11408
11408
  };
11409
11409
 
11410
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
11410
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
11411
11411
  function deleteAnyCasts(job) {
11412
11412
  for (const unit of job.units) {
11413
11413
  for (const op of unit.ops()) {
@@ -11425,7 +11425,7 @@ function removeAnys(e) {
11425
11425
  return e;
11426
11426
  }
11427
11427
 
11428
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
11428
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
11429
11429
  function applyI18nExpressions(job) {
11430
11430
  const i18nContexts = /* @__PURE__ */ new Map();
11431
11431
  for (const unit of job.units) {
@@ -11468,7 +11468,7 @@ function needsApplication(i18nContexts, op) {
11468
11468
  return false;
11469
11469
  }
11470
11470
 
11471
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
11471
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
11472
11472
  function assignI18nSlotDependencies(job) {
11473
11473
  for (const unit of job.units) {
11474
11474
  let updateOp = unit.update.head;
@@ -11513,7 +11513,7 @@ function assignI18nSlotDependencies(job) {
11513
11513
  }
11514
11514
  }
11515
11515
 
11516
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11516
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11517
11517
  function createOpXrefMap(unit) {
11518
11518
  const map = /* @__PURE__ */ new Map();
11519
11519
  for (const op of unit.create) {
@@ -11528,7 +11528,7 @@ function createOpXrefMap(unit) {
11528
11528
  return map;
11529
11529
  }
11530
11530
 
11531
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11531
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11532
11532
  function extractAttributes(job) {
11533
11533
  for (const unit of job.units) {
11534
11534
  const elements = createOpXrefMap(unit);
@@ -11657,7 +11657,7 @@ function extractAttributeOp(unit, op, elements) {
11657
11657
  }
11658
11658
  }
11659
11659
 
11660
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11660
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11661
11661
  function lookupElement2(elements, xref) {
11662
11662
  const el = elements.get(xref);
11663
11663
  if (el === void 0) {
@@ -11714,7 +11714,7 @@ function specializeBindings(job) {
11714
11714
  }
11715
11715
  }
11716
11716
 
11717
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11717
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11718
11718
  var CHAINABLE = /* @__PURE__ */ new Set([
11719
11719
  Identifiers.attribute,
11720
11720
  Identifiers.classProp,
@@ -11782,7 +11782,7 @@ function chainOperationsInList(opList) {
11782
11782
  }
11783
11783
  }
11784
11784
 
11785
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11785
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11786
11786
  function collapseSingletonInterpolations(job) {
11787
11787
  for (const unit of job.units) {
11788
11788
  for (const op of unit.update) {
@@ -11794,7 +11794,7 @@ function collapseSingletonInterpolations(job) {
11794
11794
  }
11795
11795
  }
11796
11796
 
11797
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11797
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11798
11798
  function generateConditionalExpressions(job) {
11799
11799
  for (const unit of job.units) {
11800
11800
  for (const op of unit.ops()) {
@@ -11831,7 +11831,7 @@ function generateConditionalExpressions(job) {
11831
11831
  }
11832
11832
  }
11833
11833
 
11834
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11834
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11835
11835
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
11836
11836
  ["&&", BinaryOperator.And],
11837
11837
  [">", BinaryOperator.Bigger],
@@ -11888,7 +11888,7 @@ function literalOrArrayLiteral(value) {
11888
11888
  return literal(value);
11889
11889
  }
11890
11890
 
11891
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11891
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11892
11892
  function collectElementConsts(job) {
11893
11893
  const allElementAttributes = /* @__PURE__ */ new Map();
11894
11894
  for (const unit of job.units) {
@@ -12057,7 +12057,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
12057
12057
  return literalArr(attrArray);
12058
12058
  }
12059
12059
 
12060
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
12060
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
12061
12061
  function convertI18nBindings(job) {
12062
12062
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
12063
12063
  for (const unit of job.units) {
@@ -12098,7 +12098,7 @@ function convertI18nBindings(job) {
12098
12098
  }
12099
12099
  }
12100
12100
 
12101
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
12101
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
12102
12102
  function resolveDeferDepsFns(job) {
12103
12103
  var _a2;
12104
12104
  for (const unit of job.units) {
@@ -12123,7 +12123,7 @@ function resolveDeferDepsFns(job) {
12123
12123
  }
12124
12124
  }
12125
12125
 
12126
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
12126
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
12127
12127
  function createI18nContexts(job) {
12128
12128
  const attrContextByMessage = /* @__PURE__ */ new Map();
12129
12129
  for (const unit of job.units) {
@@ -12201,7 +12201,7 @@ function createI18nContexts(job) {
12201
12201
  }
12202
12202
  }
12203
12203
 
12204
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
12204
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
12205
12205
  function deduplicateTextBindings(job) {
12206
12206
  const seen = /* @__PURE__ */ new Map();
12207
12207
  for (const unit of job.units) {
@@ -12223,7 +12223,7 @@ function deduplicateTextBindings(job) {
12223
12223
  }
12224
12224
  }
12225
12225
 
12226
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
12226
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
12227
12227
  function configureDeferInstructions(job) {
12228
12228
  for (const unit of job.units) {
12229
12229
  for (const op of unit.create) {
@@ -12240,7 +12240,7 @@ function configureDeferInstructions(job) {
12240
12240
  }
12241
12241
  }
12242
12242
 
12243
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
12243
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
12244
12244
  function resolveDeferTargetNames(job) {
12245
12245
  const scopes = /* @__PURE__ */ new Map();
12246
12246
  function getScopeForView2(view) {
@@ -12334,7 +12334,7 @@ var Scope = class {
12334
12334
  }
12335
12335
  };
12336
12336
 
12337
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
12337
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
12338
12338
  var REPLACEMENTS = /* @__PURE__ */ new Map([
12339
12339
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
12340
12340
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -12361,7 +12361,7 @@ function collapseEmptyInstructions(job) {
12361
12361
  }
12362
12362
  }
12363
12363
 
12364
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
12364
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
12365
12365
  function expandSafeReads(job) {
12366
12366
  for (const unit of job.units) {
12367
12367
  for (const op of unit.ops()) {
@@ -12497,7 +12497,7 @@ function ternaryTransform(e) {
12497
12497
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
12498
12498
  }
12499
12499
 
12500
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
12500
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
12501
12501
  var ESCAPE = "\uFFFD";
12502
12502
  var ELEMENT_MARKER = "#";
12503
12503
  var TEMPLATE_MARKER = "*";
@@ -12633,7 +12633,7 @@ function formatValue(value) {
12633
12633
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
12634
12634
  }
12635
12635
 
12636
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12636
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12637
12637
  function generateAdvance(job) {
12638
12638
  for (const unit of job.units) {
12639
12639
  const slotMap = /* @__PURE__ */ new Map();
@@ -12665,7 +12665,7 @@ function generateAdvance(job) {
12665
12665
  }
12666
12666
  }
12667
12667
 
12668
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12668
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12669
12669
  function generateProjectionDefs(job) {
12670
12670
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
12671
12671
  const selectors = [];
@@ -12689,7 +12689,7 @@ function generateProjectionDefs(job) {
12689
12689
  }
12690
12690
  }
12691
12691
 
12692
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12692
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12693
12693
  function generateVariables(job) {
12694
12694
  recursivelyProcessView(job.root, null);
12695
12695
  }
@@ -12788,7 +12788,7 @@ function generateVariablesInScopeForView(view, scope) {
12788
12788
  return newOps;
12789
12789
  }
12790
12790
 
12791
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12791
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12792
12792
  function collectConstExpressions(job) {
12793
12793
  for (const unit of job.units) {
12794
12794
  for (const op of unit.ops()) {
@@ -12802,7 +12802,7 @@ function collectConstExpressions(job) {
12802
12802
  }
12803
12803
  }
12804
12804
 
12805
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12805
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12806
12806
  var STYLE_DOT = "style.";
12807
12807
  var CLASS_DOT = "class.";
12808
12808
  var STYLE_BANG = "style!";
@@ -12860,7 +12860,7 @@ function parseProperty(name) {
12860
12860
  return { property: property2, suffix };
12861
12861
  }
12862
12862
 
12863
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12863
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12864
12864
  function mapLiteral(obj, quoted = false) {
12865
12865
  return literalMap(Object.keys(obj).map((key) => ({
12866
12866
  key,
@@ -12869,7 +12869,7 @@ function mapLiteral(obj, quoted = false) {
12869
12869
  })));
12870
12870
  }
12871
12871
 
12872
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12872
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12873
12873
  var IcuSerializerVisitor = class {
12874
12874
  visitText(text2) {
12875
12875
  return text2.value;
@@ -12903,7 +12903,7 @@ function serializeIcuNode(icu) {
12903
12903
  return icu.visit(serializer);
12904
12904
  }
12905
12905
 
12906
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12906
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12907
12907
  var TokenType;
12908
12908
  (function(TokenType2) {
12909
12909
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -13264,7 +13264,7 @@ function parseIntAutoRadix(text2) {
13264
13264
  return result;
13265
13265
  }
13266
13266
 
13267
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
13267
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
13268
13268
  var SplitInterpolation = class {
13269
13269
  constructor(strings, expressions, offsets) {
13270
13270
  this.strings = strings;
@@ -14146,7 +14146,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
14146
14146
  return offsetMap;
14147
14147
  }
14148
14148
 
14149
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
14149
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
14150
14150
  var NodeWithI18n = class {
14151
14151
  constructor(sourceSpan, i18n2) {
14152
14152
  this.sourceSpan = sourceSpan;
@@ -14257,7 +14257,7 @@ function visitAll2(visitor, nodes, context = null) {
14257
14257
  return result;
14258
14258
  }
14259
14259
 
14260
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
14260
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
14261
14261
  var _SECURITY_SCHEMA;
14262
14262
  function SECURITY_SCHEMA() {
14263
14263
  if (!_SECURITY_SCHEMA) {
@@ -14318,11 +14318,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
14318
14318
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
14319
14319
  }
14320
14320
 
14321
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
14321
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
14322
14322
  var ElementSchemaRegistry = class {
14323
14323
  };
14324
14324
 
14325
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
14325
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
14326
14326
  var BOOLEAN = "boolean";
14327
14327
  var NUMBER = "number";
14328
14328
  var STRING = "string";
@@ -14479,7 +14479,37 @@ var SCHEMA = [
14479
14479
  "menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radiogroup,!default",
14480
14480
  "summary^[HTMLElement]|",
14481
14481
  "time^[HTMLElement]|dateTime",
14482
- ":svg:cursor^:svg:|"
14482
+ ":svg:cursor^:svg:|",
14483
+ ":math:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforeinput,*beforematch,*beforetoggle,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contentvisibilityautostatechange,*contextlost,*contextmenu,*contextrestored,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*scrollend,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex",
14484
+ ":math:math^:math:|",
14485
+ ":math:maction^:math:|",
14486
+ ":math:menclose^:math:|",
14487
+ ":math:merror^:math:|",
14488
+ ":math:mfenced^:math:|",
14489
+ ":math:mfrac^:math:|",
14490
+ ":math:mi^:math:|",
14491
+ ":math:mmultiscripts^:math:|",
14492
+ ":math:mn^:math:|",
14493
+ ":math:mo^:math:|",
14494
+ ":math:mover^:math:|",
14495
+ ":math:mpadded^:math:|",
14496
+ ":math:mphantom^:math:|",
14497
+ ":math:mroot^:math:|",
14498
+ ":math:mrow^:math:|",
14499
+ ":math:ms^:math:|",
14500
+ ":math:mspace^:math:|",
14501
+ ":math:msqrt^:math:|",
14502
+ ":math:mstyle^:math:|",
14503
+ ":math:msub^:math:|",
14504
+ ":math:msubsup^:math:|",
14505
+ ":math:msup^:math:|",
14506
+ ":math:mtable^:math:|",
14507
+ ":math:mtd^:math:|",
14508
+ ":math:mtext^:math:|",
14509
+ ":math:mtr^:math:|",
14510
+ ":math:munder^:math:|",
14511
+ ":math:munderover^:math:|",
14512
+ ":math:semantics^:math:|"
14483
14513
  ];
14484
14514
  var _ATTR_TO_PROP = new Map(Object.entries({
14485
14515
  "class": "className",
@@ -14675,7 +14705,7 @@ function _isPixelDimensionStyle(prop) {
14675
14705
  }
14676
14706
  }
14677
14707
 
14678
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14708
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14679
14709
  var HtmlTagDefinition = class {
14680
14710
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
14681
14711
  this.closedByChildren = {};
@@ -14811,7 +14841,7 @@ function getHtmlTagDefinition(tagName) {
14811
14841
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
14812
14842
  }
14813
14843
 
14814
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14844
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14815
14845
  var TAG_TO_PLACEHOLDER_NAMES = {
14816
14846
  "A": "LINK",
14817
14847
  "B": "BOLD_TEXT",
@@ -14933,7 +14963,7 @@ var PlaceholderRegistry = class {
14933
14963
  }
14934
14964
  };
14935
14965
 
14936
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14966
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14937
14967
  var _expParser = new Parser(new Lexer());
14938
14968
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
14939
14969
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -15112,14 +15142,14 @@ function extractPlaceholderName(input) {
15112
15142
  return input.split(_CUSTOM_PH_EXP)[2];
15113
15143
  }
15114
15144
 
15115
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
15145
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
15116
15146
  var I18nError = class extends ParseError {
15117
15147
  constructor(span, msg) {
15118
15148
  super(span, msg);
15119
15149
  }
15120
15150
  };
15121
15151
 
15122
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
15152
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
15123
15153
  var NAMED_ENTITIES = {
15124
15154
  "AElig": "\xC6",
15125
15155
  "AMP": "&",
@@ -17250,7 +17280,7 @@ var NAMED_ENTITIES = {
17250
17280
  var NGSP_UNICODE = "\uE500";
17251
17281
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
17252
17282
 
17253
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
17283
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
17254
17284
  var TokenError = class extends ParseError {
17255
17285
  constructor(errorMsg, tokenType, span) {
17256
17286
  super(span, errorMsg);
@@ -18176,7 +18206,7 @@ var CursorError = class {
18176
18206
  }
18177
18207
  };
18178
18208
 
18179
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
18209
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
18180
18210
  var TreeError = class extends ParseError {
18181
18211
  static create(elementName, span, msg) {
18182
18212
  return new TreeError(elementName, span, msg);
@@ -18560,7 +18590,7 @@ function decodeEntity(match, entity) {
18560
18590
  return match;
18561
18591
  }
18562
18592
 
18563
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18593
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18564
18594
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
18565
18595
  "iframe|srcdoc",
18566
18596
  "*|innerhtml",
@@ -18575,7 +18605,7 @@ function isTrustedTypesSink(tagName, propName) {
18575
18605
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
18576
18606
  }
18577
18607
 
18578
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18608
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18579
18609
  var setI18nRefs = (htmlNode, i18nNode) => {
18580
18610
  if (htmlNode instanceof NodeWithI18n) {
18581
18611
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -18732,7 +18762,7 @@ function i18nMetaToJSDoc(meta) {
18732
18762
  return jsDocComment(tags);
18733
18763
  }
18734
18764
 
18735
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18765
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18736
18766
  var GOOG_GET_MSG = "goog.getMsg";
18737
18767
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
18738
18768
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -18783,7 +18813,7 @@ function serializeI18nMessageForGetMsg(message) {
18783
18813
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
18784
18814
  }
18785
18815
 
18786
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18816
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18787
18817
  function createLocalizeStatements(variable2, message, params) {
18788
18818
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
18789
18819
  const sourceSpan = getSourceSpan(message);
@@ -18872,7 +18902,7 @@ function createEmptyMessagePart(location) {
18872
18902
  return new LiteralPiece("", new ParseSourceSpan(location, location));
18873
18903
  }
18874
18904
 
18875
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18905
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18876
18906
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
18877
18907
  var TRANSLATION_VAR_PREFIX = "i18n_";
18878
18908
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -19043,7 +19073,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
19043
19073
  return variable(name);
19044
19074
  }
19045
19075
 
19046
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
19076
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
19047
19077
  function convertI18nText(job) {
19048
19078
  var _a2, _b2, _c2;
19049
19079
  for (const unit of job.units) {
@@ -19113,7 +19143,7 @@ function convertI18nText(job) {
19113
19143
  }
19114
19144
  }
19115
19145
 
19116
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
19146
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
19117
19147
  function liftLocalRefs(job) {
19118
19148
  for (const unit of job.units) {
19119
19149
  for (const op of unit.create) {
@@ -19143,7 +19173,7 @@ function serializeLocalRefs(refs) {
19143
19173
  return literalArr(constRefs);
19144
19174
  }
19145
19175
 
19146
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
19176
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
19147
19177
  function emitNamespaceChanges(job) {
19148
19178
  for (const unit of job.units) {
19149
19179
  let activeNamespace = Namespace.HTML;
@@ -19159,7 +19189,7 @@ function emitNamespaceChanges(job) {
19159
19189
  }
19160
19190
  }
19161
19191
 
19162
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
19192
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
19163
19193
  function parse(value) {
19164
19194
  const styles = [];
19165
19195
  let i = 0;
@@ -19253,7 +19283,7 @@ function parseExtractedStyles(job) {
19253
19283
  }
19254
19284
  }
19255
19285
 
19256
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
19286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
19257
19287
  function nameFunctionsAndVariables(job) {
19258
19288
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
19259
19289
  }
@@ -19397,7 +19427,7 @@ function stripImportant(name) {
19397
19427
  return name;
19398
19428
  }
19399
19429
 
19400
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19430
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19401
19431
  function mergeNextContextExpressions(job) {
19402
19432
  for (const unit of job.units) {
19403
19433
  for (const op of unit.create) {
@@ -19443,7 +19473,7 @@ function mergeNextContextsInOps(ops) {
19443
19473
  }
19444
19474
  }
19445
19475
 
19446
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19476
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19447
19477
  var CONTAINER_TAG = "ng-container";
19448
19478
  function generateNgContainerOps(job) {
19449
19479
  for (const unit of job.units) {
@@ -19460,7 +19490,7 @@ function generateNgContainerOps(job) {
19460
19490
  }
19461
19491
  }
19462
19492
 
19463
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19493
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19464
19494
  function lookupElement3(elements, xref) {
19465
19495
  const el = elements.get(xref);
19466
19496
  if (el === void 0) {
@@ -19490,7 +19520,7 @@ function disableBindings(job) {
19490
19520
  }
19491
19521
  }
19492
19522
 
19493
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19523
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19494
19524
  function generateNullishCoalesceExpressions(job) {
19495
19525
  for (const unit of job.units) {
19496
19526
  for (const op of unit.ops()) {
@@ -19506,7 +19536,7 @@ function generateNullishCoalesceExpressions(job) {
19506
19536
  }
19507
19537
  }
19508
19538
 
19509
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19539
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19510
19540
  function kindTest(kind) {
19511
19541
  return (op) => op.kind === kind;
19512
19542
  }
@@ -19596,7 +19626,7 @@ function keepLast(ops) {
19596
19626
  return ops.slice(ops.length - 1);
19597
19627
  }
19598
19628
 
19599
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19629
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19600
19630
  function removeContentSelectors(job) {
19601
19631
  for (const unit of job.units) {
19602
19632
  const elements = createOpXrefMap(unit);
@@ -19623,7 +19653,7 @@ function lookupInXrefMap(map, xref) {
19623
19653
  return el;
19624
19654
  }
19625
19655
 
19626
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19656
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19627
19657
  function createPipes(job) {
19628
19658
  for (const unit of job.units) {
19629
19659
  processPipeBindingsInView(unit);
@@ -19671,7 +19701,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
19671
19701
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
19672
19702
  }
19673
19703
 
19674
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19704
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19675
19705
  function createVariadicPipes(job) {
19676
19706
  for (const unit of job.units) {
19677
19707
  for (const op of unit.update) {
@@ -19688,7 +19718,7 @@ function createVariadicPipes(job) {
19688
19718
  }
19689
19719
  }
19690
19720
 
19691
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19721
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19692
19722
  function propagateI18nBlocks(job) {
19693
19723
  propagateI18nBlocksToTemplates(job.root, 0);
19694
19724
  }
@@ -19742,7 +19772,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
19742
19772
  }
19743
19773
  }
19744
19774
 
19745
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19775
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19746
19776
  function extractPureFunctions(job) {
19747
19777
  for (const view of job.units) {
19748
19778
  for (const op of view.ops()) {
@@ -19784,7 +19814,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
19784
19814
  }
19785
19815
  };
19786
19816
 
19787
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19817
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19788
19818
  function generatePureLiteralStructures(job) {
19789
19819
  for (const unit of job.units) {
19790
19820
  for (const op of unit.update) {
@@ -19831,7 +19861,7 @@ function transformLiteralMap(expr) {
19831
19861
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
19832
19862
  }
19833
19863
 
19834
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19864
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19835
19865
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
19836
19866
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
19837
19867
  }
@@ -20354,7 +20384,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
20354
20384
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
20355
20385
  }
20356
20386
 
20357
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20387
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20358
20388
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
20359
20389
  ["window", Identifiers.resolveWindow],
20360
20390
  ["document", Identifiers.resolveDocument],
@@ -20710,7 +20740,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
20710
20740
  return fn(params, handlerStmts, void 0, void 0, name);
20711
20741
  }
20712
20742
 
20713
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20743
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20714
20744
  function removeEmptyBindings(job) {
20715
20745
  for (const unit of job.units) {
20716
20746
  for (const op of unit.update) {
@@ -20731,7 +20761,7 @@ function removeEmptyBindings(job) {
20731
20761
  }
20732
20762
  }
20733
20763
 
20734
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20764
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20735
20765
  function removeI18nContexts(job) {
20736
20766
  for (const unit of job.units) {
20737
20767
  for (const op of unit.create) {
@@ -20747,7 +20777,7 @@ function removeI18nContexts(job) {
20747
20777
  }
20748
20778
  }
20749
20779
 
20750
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20780
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20751
20781
  function removeUnusedI18nAttributesOps(job) {
20752
20782
  for (const unit of job.units) {
20753
20783
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -20769,7 +20799,7 @@ function removeUnusedI18nAttributesOps(job) {
20769
20799
  }
20770
20800
  }
20771
20801
 
20772
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20802
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20773
20803
  function resolveContexts(job) {
20774
20804
  for (const unit of job.units) {
20775
20805
  processLexicalScope(unit, unit.create);
@@ -20811,7 +20841,7 @@ function processLexicalScope(view, ops) {
20811
20841
  }
20812
20842
  }
20813
20843
 
20814
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20844
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20815
20845
  function resolveDollarEvent(job) {
20816
20846
  for (const unit of job.units) {
20817
20847
  transformDollarEvent(unit.create);
@@ -20834,7 +20864,7 @@ function transformDollarEvent(ops) {
20834
20864
  }
20835
20865
  }
20836
20866
 
20837
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20867
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20838
20868
  function resolveI18nElementPlaceholders(job) {
20839
20869
  const i18nContexts = /* @__PURE__ */ new Map();
20840
20870
  const elements = /* @__PURE__ */ new Map();
@@ -21013,7 +21043,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
21013
21043
  params.set(placeholder, values);
21014
21044
  }
21015
21045
 
21016
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
21046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
21017
21047
  function resolveI18nExpressionPlaceholders(job) {
21018
21048
  var _a2;
21019
21049
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -21066,7 +21096,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
21066
21096
  }
21067
21097
  }
21068
21098
 
21069
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
21099
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
21070
21100
  function resolveNames(job) {
21071
21101
  for (const unit of job.units) {
21072
21102
  processLexicalScope2(unit, unit.create, null);
@@ -21131,7 +21161,7 @@ function processLexicalScope2(unit, ops, savedView) {
21131
21161
  }
21132
21162
  }
21133
21163
 
21134
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
21164
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
21135
21165
  var sanitizerFns = /* @__PURE__ */ new Map([
21136
21166
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
21137
21167
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -21201,7 +21231,7 @@ function getOnlySecurityContext(securityContext) {
21201
21231
  return securityContext;
21202
21232
  }
21203
21233
 
21204
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
21234
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
21205
21235
  function transformTwoWayBindingSet(job) {
21206
21236
  for (const unit of job.units) {
21207
21237
  for (const op of unit.create) {
@@ -21224,7 +21254,7 @@ function transformTwoWayBindingSet(job) {
21224
21254
  }
21225
21255
  }
21226
21256
 
21227
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
21257
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
21228
21258
  function saveAndRestoreView(job) {
21229
21259
  for (const unit of job.units) {
21230
21260
  unit.create.prepend([
@@ -21269,7 +21299,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
21269
21299
  }
21270
21300
  }
21271
21301
 
21272
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
21302
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
21273
21303
  function allocateSlots(job) {
21274
21304
  const slotMap = /* @__PURE__ */ new Map();
21275
21305
  for (const unit of job.units) {
@@ -21294,7 +21324,7 @@ function allocateSlots(job) {
21294
21324
  }
21295
21325
  }
21296
21326
 
21297
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
21327
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
21298
21328
  function specializeStyleBindings(job) {
21299
21329
  for (const unit of job.units) {
21300
21330
  for (const op of unit.update) {
@@ -21324,7 +21354,7 @@ function specializeStyleBindings(job) {
21324
21354
  }
21325
21355
  }
21326
21356
 
21327
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21357
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21328
21358
  function generateTemporaryVariables(job) {
21329
21359
  for (const unit of job.units) {
21330
21360
  unit.create.prepend(generateTemporaries(unit.create));
@@ -21382,7 +21412,7 @@ function assignName(names, expr) {
21382
21412
  expr.name = name;
21383
21413
  }
21384
21414
 
21385
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21415
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21386
21416
  function generateTrackFns(job) {
21387
21417
  for (const unit of job.units) {
21388
21418
  for (const op of unit.create) {
@@ -21415,7 +21445,7 @@ function generateTrackFns(job) {
21415
21445
  }
21416
21446
  }
21417
21447
 
21418
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21448
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21419
21449
  function optimizeTrackFns(job) {
21420
21450
  for (const unit of job.units) {
21421
21451
  for (const op of unit.create) {
@@ -21463,7 +21493,7 @@ function isTrackByFunctionCall(rootView, expr) {
21463
21493
  return true;
21464
21494
  }
21465
21495
 
21466
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21496
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21467
21497
  function generateTrackVariables(job) {
21468
21498
  for (const unit of job.units) {
21469
21499
  for (const op of unit.create) {
@@ -21484,7 +21514,7 @@ function generateTrackVariables(job) {
21484
21514
  }
21485
21515
  }
21486
21516
 
21487
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21517
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21488
21518
  function countVariables(job) {
21489
21519
  for (const unit of job.units) {
21490
21520
  let varCount = 0;
@@ -21594,7 +21624,7 @@ function isSingletonInterpolation(expr) {
21594
21624
  return true;
21595
21625
  }
21596
21626
 
21597
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21598
21628
  function optimizeVariables(job) {
21599
21629
  for (const unit of job.units) {
21600
21630
  inlineAlwaysInlineVariables(unit.create);
@@ -21843,7 +21873,7 @@ function allowConservativeInlining(decl, target) {
21843
21873
  }
21844
21874
  }
21845
21875
 
21846
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21876
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21847
21877
  function wrapI18nIcus(job) {
21848
21878
  for (const unit of job.units) {
21849
21879
  let currentI18nOp = null;
@@ -21873,7 +21903,7 @@ function wrapI18nIcus(job) {
21873
21903
  }
21874
21904
  }
21875
21905
 
21876
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21906
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21877
21907
  var phases = [
21878
21908
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
21879
21909
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -21915,6 +21945,7 @@ var phases = [
21915
21945
  { kind: CompilationJobKind.Both, fn: generateNullishCoalesceExpressions },
21916
21946
  { kind: CompilationJobKind.Both, fn: expandSafeReads },
21917
21947
  { kind: CompilationJobKind.Both, fn: generateTemporaryVariables },
21948
+ { kind: CompilationJobKind.Both, fn: optimizeVariables },
21918
21949
  { kind: CompilationJobKind.Tmpl, fn: allocateSlots },
21919
21950
  { kind: CompilationJobKind.Tmpl, fn: resolveI18nElementPlaceholders },
21920
21951
  { kind: CompilationJobKind.Tmpl, fn: resolveI18nExpressionPlaceholders },
@@ -21926,7 +21957,6 @@ var phases = [
21926
21957
  { kind: CompilationJobKind.Tmpl, fn: removeI18nContexts },
21927
21958
  { kind: CompilationJobKind.Both, fn: countVariables },
21928
21959
  { kind: CompilationJobKind.Tmpl, fn: generateAdvance },
21929
- { kind: CompilationJobKind.Both, fn: optimizeVariables },
21930
21960
  { kind: CompilationJobKind.Both, fn: nameFunctionsAndVariables },
21931
21961
  { kind: CompilationJobKind.Tmpl, fn: resolveDeferDepsFns },
21932
21962
  { kind: CompilationJobKind.Tmpl, fn: mergeNextContextExpressions },
@@ -22027,7 +22057,7 @@ function emitHostBindingFunction(job) {
22027
22057
  );
22028
22058
  }
22029
22059
 
22030
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
22060
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
22031
22061
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
22032
22062
  var domSchema = new DomElementSchemaRegistry();
22033
22063
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -22778,7 +22808,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
22778
22808
  return null;
22779
22809
  }
22780
22810
 
22781
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22782
22812
  function renderFlagCheckIfStmt(flags, statements) {
22783
22813
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
22784
22814
  }
@@ -22898,7 +22928,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
22898
22928
  ], INFERRED_TYPE, null, contentQueriesFnName);
22899
22929
  }
22900
22930
 
22901
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22931
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22902
22932
  var HtmlParser = class extends Parser2 {
22903
22933
  constructor() {
22904
22934
  super(getHtmlTagDefinition);
@@ -22908,7 +22938,7 @@ var HtmlParser = class extends Parser2 {
22908
22938
  }
22909
22939
  };
22910
22940
 
22911
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22941
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22912
22942
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
22913
22943
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
22914
22944
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -22974,7 +23004,7 @@ function visitAllWithSiblings(visitor, nodes) {
22974
23004
  return result;
22975
23005
  }
22976
23006
 
22977
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
23007
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22978
23008
  var PROPERTY_PARTS_SEPARATOR = ".";
22979
23009
  var ATTRIBUTE_PREFIX = "attr";
22980
23010
  var CLASS_PREFIX = "class";
@@ -23328,7 +23358,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
23328
23358
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
23329
23359
  }
23330
23360
 
23331
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23361
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23332
23362
  function isStyleUrlResolvable(url) {
23333
23363
  if (url == null || url.length === 0 || url[0] == "/")
23334
23364
  return false;
@@ -23337,7 +23367,7 @@ function isStyleUrlResolvable(url) {
23337
23367
  }
23338
23368
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
23339
23369
 
23340
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23370
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23341
23371
  var NG_CONTENT_SELECT_ATTR = "select";
23342
23372
  var LINK_ELEMENT = "link";
23343
23373
  var LINK_STYLE_REL_ATTR = "rel";
@@ -23407,7 +23437,7 @@ function normalizeNgContentSelect(selectAttr) {
23407
23437
  return selectAttr;
23408
23438
  }
23409
23439
 
23410
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23440
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23411
23441
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
23412
23442
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
23413
23443
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -23730,7 +23760,7 @@ function stripOptionalParentheses(param, errors) {
23730
23760
  return expression.slice(start, end);
23731
23761
  }
23732
23762
 
23733
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23763
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23734
23764
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
23735
23765
  var SEPARATOR_PATTERN = /^\s$/;
23736
23766
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -23994,7 +24024,7 @@ function parseDeferredTime(value) {
23994
24024
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
23995
24025
  }
23996
24026
 
23997
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
24027
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23998
24028
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
23999
24029
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
24000
24030
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -24129,7 +24159,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
24129
24159
  return { triggers, prefetchTriggers };
24130
24160
  }
24131
24161
 
24132
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
24162
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
24133
24163
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
24134
24164
  var KW_BIND_IDX = 1;
24135
24165
  var KW_LET_IDX = 2;
@@ -24583,7 +24613,7 @@ function textContents(node) {
24583
24613
  }
24584
24614
  }
24585
24615
 
24586
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24616
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24587
24617
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
24588
24618
  function parseTemplate(template2, templateUrl, options = {}) {
24589
24619
  var _a2;
@@ -24661,7 +24691,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
24661
24691
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
24662
24692
  }
24663
24693
 
24664
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24665
24695
  var COMPONENT_VARIABLE = "%COMP%";
24666
24696
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
24667
24697
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -25052,7 +25082,7 @@ function compileDeferResolverFunction(meta) {
25052
25082
  return arrowFn([], literalArr(depExpressions));
25053
25083
  }
25054
25084
 
25055
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
25085
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
25056
25086
  var R3TargetBinder = class {
25057
25087
  constructor(directiveMatcher) {
25058
25088
  this.directiveMatcher = directiveMatcher;
@@ -25685,11 +25715,11 @@ function extractScopedNodeEntities(rootScope) {
25685
25715
  return templateEntities;
25686
25716
  }
25687
25717
 
25688
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25718
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25689
25719
  var ResourceLoader = class {
25690
25720
  };
25691
25721
 
25692
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25722
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25693
25723
  var CompilerFacadeImpl = class {
25694
25724
  constructor(jitEvaluator = new JitEvaluator()) {
25695
25725
  this.jitEvaluator = jitEvaluator;
@@ -26255,10 +26285,10 @@ function publishFacade(global) {
26255
26285
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
26256
26286
  }
26257
26287
 
26258
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
26259
- var VERSION2 = new Version("18.0.0-rc.0");
26288
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
26289
+ var VERSION2 = new Version("18.0.0-rc.2");
26260
26290
 
26261
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26291
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26262
26292
  var _I18N_ATTR = "i18n";
26263
26293
  var _I18N_ATTR_PREFIX = "i18n-";
26264
26294
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -26567,7 +26597,7 @@ function _parseMessageMeta(i18n2) {
26567
26597
  return { meaning, description, id: id.trim() };
26568
26598
  }
26569
26599
 
26570
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26600
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26571
26601
  var XmlTagDefinition = class {
26572
26602
  constructor() {
26573
26603
  this.closedByParent = false;
@@ -26592,7 +26622,7 @@ function getXmlTagDefinition(tagName) {
26592
26622
  return _TAG_DEFINITION;
26593
26623
  }
26594
26624
 
26595
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26625
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26596
26626
  var XmlParser = class extends Parser2 {
26597
26627
  constructor() {
26598
26628
  super(getXmlTagDefinition);
@@ -26602,7 +26632,7 @@ var XmlParser = class extends Parser2 {
26602
26632
  }
26603
26633
  };
26604
26634
 
26605
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26635
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26606
26636
  var _VERSION = "1.2";
26607
26637
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
26608
26638
  var _DEFAULT_SOURCE_LANG = "en";
@@ -26880,7 +26910,7 @@ function getCtypeForTag(tag) {
26880
26910
  }
26881
26911
  }
26882
26912
 
26883
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26913
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26884
26914
  var _VERSION2 = "2.0";
26885
26915
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
26886
26916
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -27207,7 +27237,7 @@ function getTypeForTag(tag) {
27207
27237
  }
27208
27238
  }
27209
27239
 
27210
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27240
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27211
27241
  var MessageBundle = class {
27212
27242
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
27213
27243
  this._htmlParser = _htmlParser;
@@ -27283,7 +27313,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
27283
27313
  }
27284
27314
  };
27285
27315
 
27286
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27316
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27287
27317
  var FactoryTarget2;
27288
27318
  (function(FactoryTarget3) {
27289
27319
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -27293,7 +27323,7 @@ var FactoryTarget2;
27293
27323
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
27294
27324
  })(FactoryTarget2 || (FactoryTarget2 = {}));
27295
27325
 
27296
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27326
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27297
27327
  function compileClassMetadata(metadata) {
27298
27328
  const fnCall = internalCompileClassMetadata(metadata);
27299
27329
  return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
@@ -27327,7 +27357,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
27327
27357
  return arrowFn([], literalArr(dynamicImports));
27328
27358
  }
27329
27359
 
27330
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27360
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27331
27361
  function compileClassDebugInfo(debugInfo) {
27332
27362
  const debugInfoObject = {
27333
27363
  className: debugInfo.className
@@ -27344,13 +27374,13 @@ function compileClassDebugInfo(debugInfo) {
27344
27374
  return iife.callFn([]);
27345
27375
  }
27346
27376
 
27347
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27377
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27348
27378
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
27349
27379
  var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
27350
27380
  function compileDeclareClassMetadata(metadata) {
27351
27381
  const definitionMap = new DefinitionMap();
27352
27382
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
27353
- definitionMap.set("version", literal("18.0.0-rc.0"));
27383
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27354
27384
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27355
27385
  definitionMap.set("type", metadata.type);
27356
27386
  definitionMap.set("decorators", metadata.decorators);
@@ -27369,7 +27399,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27369
27399
  callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
27370
27400
  callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
27371
27401
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
27372
- definitionMap.set("version", literal("18.0.0-rc.0"));
27402
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27373
27403
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27374
27404
  definitionMap.set("type", metadata.type);
27375
27405
  definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
@@ -27377,7 +27407,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27377
27407
  return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
27378
27408
  }
27379
27409
 
27380
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27410
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27381
27411
  function toOptionalLiteralArray(values, mapper) {
27382
27412
  if (values === null || values.length === 0) {
27383
27413
  return null;
@@ -27425,7 +27455,7 @@ function compileDependency(dep) {
27425
27455
  return depMeta.toLiteralMap();
27426
27456
  }
27427
27457
 
27428
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27458
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27429
27459
  function compileDeclareDirectiveFromMetadata(meta) {
27430
27460
  const definitionMap = createDirectiveDefinitionMap(meta);
27431
27461
  const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
@@ -27437,7 +27467,7 @@ function createDirectiveDefinitionMap(meta) {
27437
27467
  const definitionMap = new DefinitionMap();
27438
27468
  const minVersion = getMinimumVersionForPartialOutput(meta);
27439
27469
  definitionMap.set("minVersion", literal(minVersion));
27440
- definitionMap.set("version", literal("18.0.0-rc.0"));
27470
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27441
27471
  definitionMap.set("type", meta.type.value);
27442
27472
  if (meta.isStandalone) {
27443
27473
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -27599,7 +27629,7 @@ function legacyInputsPartialMetadata(inputs) {
27599
27629
  }));
27600
27630
  }
27601
27631
 
27602
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27632
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27603
27633
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
27604
27634
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
27605
27635
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -27750,12 +27780,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
27750
27780
  }
27751
27781
  };
27752
27782
 
27753
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27754
27784
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
27755
27785
  function compileDeclareFactoryFunction(meta) {
27756
27786
  const definitionMap = new DefinitionMap();
27757
27787
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
27758
- definitionMap.set("version", literal("18.0.0-rc.0"));
27788
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27759
27789
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27760
27790
  definitionMap.set("type", meta.type.value);
27761
27791
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -27767,7 +27797,7 @@ function compileDeclareFactoryFunction(meta) {
27767
27797
  };
27768
27798
  }
27769
27799
 
27770
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27800
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27771
27801
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
27772
27802
  function compileDeclareInjectableFromMetadata(meta) {
27773
27803
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -27778,7 +27808,7 @@ function compileDeclareInjectableFromMetadata(meta) {
27778
27808
  function createInjectableDefinitionMap(meta) {
27779
27809
  const definitionMap = new DefinitionMap();
27780
27810
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
27781
- definitionMap.set("version", literal("18.0.0-rc.0"));
27811
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27782
27812
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27783
27813
  definitionMap.set("type", meta.type.value);
27784
27814
  if (meta.providedIn !== void 0) {
@@ -27805,7 +27835,7 @@ function createInjectableDefinitionMap(meta) {
27805
27835
  return definitionMap;
27806
27836
  }
27807
27837
 
27808
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27838
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27809
27839
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
27810
27840
  function compileDeclareInjectorFromMetadata(meta) {
27811
27841
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -27816,7 +27846,7 @@ function compileDeclareInjectorFromMetadata(meta) {
27816
27846
  function createInjectorDefinitionMap(meta) {
27817
27847
  const definitionMap = new DefinitionMap();
27818
27848
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
27819
- definitionMap.set("version", literal("18.0.0-rc.0"));
27849
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27820
27850
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27821
27851
  definitionMap.set("type", meta.type.value);
27822
27852
  definitionMap.set("providers", meta.providers);
@@ -27826,7 +27856,7 @@ function createInjectorDefinitionMap(meta) {
27826
27856
  return definitionMap;
27827
27857
  }
27828
27858
 
27829
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27859
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27830
27860
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
27831
27861
  function compileDeclareNgModuleFromMetadata(meta) {
27832
27862
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -27840,7 +27870,7 @@ function createNgModuleDefinitionMap(meta) {
27840
27870
  throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
27841
27871
  }
27842
27872
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
27843
- definitionMap.set("version", literal("18.0.0-rc.0"));
27873
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27844
27874
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27845
27875
  definitionMap.set("type", meta.type.value);
27846
27876
  if (meta.bootstrap.length > 0) {
@@ -27864,7 +27894,7 @@ function createNgModuleDefinitionMap(meta) {
27864
27894
  return definitionMap;
27865
27895
  }
27866
27896
 
27867
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27897
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27868
27898
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
27869
27899
  function compileDeclarePipeFromMetadata(meta) {
27870
27900
  const definitionMap = createPipeDefinitionMap(meta);
@@ -27875,7 +27905,7 @@ function compileDeclarePipeFromMetadata(meta) {
27875
27905
  function createPipeDefinitionMap(meta) {
27876
27906
  const definitionMap = new DefinitionMap();
27877
27907
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
27878
- definitionMap.set("version", literal("18.0.0-rc.0"));
27908
+ definitionMap.set("version", literal("18.0.0-rc.2"));
27879
27909
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27880
27910
  definitionMap.set("type", meta.type.value);
27881
27911
  if (meta.isStandalone) {
@@ -27888,16 +27918,16 @@ function createPipeDefinitionMap(meta) {
27888
27918
  return definitionMap;
27889
27919
  }
27890
27920
 
27891
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
27921
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
27892
27922
  publishFacade(_global);
27893
27923
 
27894
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
27895
- var VERSION3 = new Version("18.0.0-rc.0");
27924
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27925
+ var VERSION3 = new Version("18.0.0-rc.2");
27896
27926
 
27897
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27927
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27898
27928
  var import_typescript5 = __toESM(require("typescript"), 1);
27899
27929
 
27900
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27930
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27901
27931
  var ErrorCode;
27902
27932
  (function(ErrorCode2) {
27903
27933
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -27987,7 +28017,7 @@ var ErrorCode;
27987
28017
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
27988
28018
  })(ErrorCode || (ErrorCode = {}));
27989
28019
 
27990
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
28020
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27991
28021
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27992
28022
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
27993
28023
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -27999,15 +28029,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27999
28029
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
28000
28030
  ]);
28001
28031
 
28002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28032
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28003
28033
  var import_typescript2 = __toESM(require("typescript"), 1);
28004
28034
 
28005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
28035
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
28006
28036
  function ngErrorCode(code) {
28007
28037
  return parseInt("-99" + code);
28008
28038
  }
28009
28039
 
28010
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28040
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28011
28041
  var FatalDiagnosticError = class extends Error {
28012
28042
  constructor(code, node, diagnosticMessage, relatedInformation) {
28013
28043
  super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
@@ -28068,10 +28098,10 @@ function isFatalDiagnosticError(err) {
28068
28098
  return err._isFatalDiagnosticError === true;
28069
28099
  }
28070
28100
 
28071
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
28101
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
28072
28102
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
28073
28103
 
28074
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
28104
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
28075
28105
  var ExtendedTemplateDiagnosticName;
28076
28106
  (function(ExtendedTemplateDiagnosticName2) {
28077
28107
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -28086,7 +28116,7 @@ var ExtendedTemplateDiagnosticName;
28086
28116
  ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
28087
28117
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
28088
28118
 
28089
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
28119
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
28090
28120
  var import_typescript3 = __toESM(require("typescript"), 1);
28091
28121
  var TS = /\.tsx?$/i;
28092
28122
  var D_TS = /\.d\.ts$/i;
@@ -28187,7 +28217,7 @@ function toUnredirectedSourceFile(sf) {
28187
28217
  return redirectInfo.unredirected;
28188
28218
  }
28189
28219
 
28190
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28220
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28191
28221
  function findExportedNameOfNode(target, file, reflector) {
28192
28222
  const exports = reflector.getExportsOfModule(file);
28193
28223
  if (exports === null) {
@@ -28207,7 +28237,7 @@ function findExportedNameOfNode(target, file, reflector) {
28207
28237
  return foundExportName;
28208
28238
  }
28209
28239
 
28210
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28240
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28211
28241
  var ImportFlags;
28212
28242
  (function(ImportFlags2) {
28213
28243
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -28438,7 +28468,7 @@ var UnifiedModulesStrategy = class {
28438
28468
  }
28439
28469
  };
28440
28470
 
28441
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28471
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28442
28472
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
28443
28473
  var UnifiedModulesAliasingHost = class {
28444
28474
  constructor(unifiedModulesHost) {
@@ -28505,7 +28535,7 @@ var AliasStrategy = class {
28505
28535
  }
28506
28536
  };
28507
28537
 
28508
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28538
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28509
28539
  function relativePathBetween(from, to) {
28510
28540
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
28511
28541
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -28514,7 +28544,7 @@ function normalizeSeparators2(path4) {
28514
28544
  return path4.replace(/\\/g, "/");
28515
28545
  }
28516
28546
 
28517
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28547
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28518
28548
  var NoopImportRewriter = class {
28519
28549
  rewriteSymbol(symbol, specifier) {
28520
28550
  return symbol;
@@ -28567,7 +28597,7 @@ function validateAndRewriteCoreSymbol(name) {
28567
28597
  return CORE_SUPPORTED_SYMBOLS.get(name);
28568
28598
  }
28569
28599
 
28570
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28600
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28571
28601
  var import_typescript7 = __toESM(require("typescript"), 1);
28572
28602
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
28573
28603
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -28602,7 +28632,7 @@ function throwIncompatibleTransformationContextError() {
28602
28632
  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.");
28603
28633
  }
28604
28634
 
28605
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28635
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28606
28636
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
28607
28637
  function attachDefaultImportDeclaration(expr, importDecl) {
28608
28638
  expr[DefaultImportDeclaration] = importDecl;
@@ -28643,13 +28673,13 @@ var DefaultImportTracker = class {
28643
28673
  }
28644
28674
  };
28645
28675
 
28646
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28676
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28647
28677
  var import_typescript13 = __toESM(require("typescript"), 1);
28648
28678
 
28649
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28679
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28650
28680
  var import_typescript12 = __toESM(require("typescript"), 1);
28651
28681
 
28652
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28682
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28653
28683
  var import_typescript9 = __toESM(require("typescript"), 1);
28654
28684
  function isDecoratorIdentifier(exp) {
28655
28685
  return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
@@ -28672,7 +28702,7 @@ var ClassMemberAccessLevel;
28672
28702
  })(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
28673
28703
  var AmbientImport = {};
28674
28704
 
28675
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28705
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28676
28706
  var import_typescript10 = __toESM(require("typescript"), 1);
28677
28707
  function typeToValue(typeNode, checker, isLocalCompilation) {
28678
28708
  var _a2, _b2;
@@ -28845,7 +28875,7 @@ function extractModuleName(node) {
28845
28875
  return node.moduleSpecifier.text;
28846
28876
  }
28847
28877
 
28848
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28878
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28849
28879
  var import_typescript11 = __toESM(require("typescript"), 1);
28850
28880
  function isNamedClassDeclaration(node) {
28851
28881
  return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -28869,7 +28899,7 @@ function classMemberAccessLevelToString(level) {
28869
28899
  }
28870
28900
  }
28871
28901
 
28872
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28902
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28873
28903
  var TypeScriptReflectionHost = class {
28874
28904
  constructor(checker, isLocalCompilation = false) {
28875
28905
  this.checker = checker;
@@ -29356,7 +29386,7 @@ function getExportedName(decl, originalId) {
29356
29386
  }
29357
29387
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
29358
29388
 
29359
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29389
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29360
29390
  var AssumeEager = "AssumeEager";
29361
29391
  var DeferredSymbolTracker = class {
29362
29392
  constructor(typeChecker, onlyExplicitDeferDependencyImports) {
@@ -29476,7 +29506,7 @@ var DeferredSymbolTracker = class {
29476
29506
  }
29477
29507
  };
29478
29508
 
29479
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29509
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29480
29510
  var import_typescript15 = __toESM(require("typescript"), 1);
29481
29511
  var ImportedSymbolsTracker = class {
29482
29512
  constructor() {
@@ -29546,7 +29576,7 @@ var ImportedSymbolsTracker = class {
29546
29576
  }
29547
29577
  };
29548
29578
 
29549
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29579
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29550
29580
  var import_typescript16 = __toESM(require("typescript"), 1);
29551
29581
  var LocalCompilationExtraImportsTracker = class {
29552
29582
  constructor(typeChecker) {
@@ -29590,7 +29620,7 @@ function removeQuotations(s) {
29590
29620
  return s.substring(1, s.length - 1).trim();
29591
29621
  }
29592
29622
 
29593
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29623
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29594
29624
  var Reference2 = class {
29595
29625
  constructor(node, bestGuessOwningModule = null) {
29596
29626
  this.node = node;
@@ -29659,7 +29689,7 @@ var Reference2 = class {
29659
29689
  }
29660
29690
  };
29661
29691
 
29662
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29692
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29663
29693
  var ModuleResolver = class {
29664
29694
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29665
29695
  this.program = program;
@@ -29676,16 +29706,16 @@ var ModuleResolver = class {
29676
29706
  }
29677
29707
  };
29678
29708
 
29679
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29709
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29680
29710
  var import_typescript21 = __toESM(require("typescript"), 1);
29681
29711
 
29682
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29712
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29683
29713
  var import_typescript70 = __toESM(require("typescript"), 1);
29684
29714
 
29685
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29715
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29686
29716
  var import_typescript23 = __toESM(require("typescript"), 1);
29687
29717
 
29688
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29718
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29689
29719
  var import_typescript22 = __toESM(require("typescript"), 1);
29690
29720
  var CORE_MODULE2 = "@angular/core";
29691
29721
  function valueReferenceToExpression(valueRef) {
@@ -29943,7 +29973,7 @@ function isAbstractClassDeclaration(clazz) {
29943
29973
  return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
29944
29974
  }
29945
29975
 
29946
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29976
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29947
29977
  function getConstructorDependencies(clazz, reflector, isCore) {
29948
29978
  const deps = [];
29949
29979
  const errors = [];
@@ -30087,10 +30117,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
30087
30117
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
30088
30118
  }
30089
30119
 
30090
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
30120
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
30091
30121
  var import_typescript46 = __toESM(require("typescript"), 1);
30092
30122
 
30093
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
30123
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
30094
30124
  var MetaKind;
30095
30125
  (function(MetaKind2) {
30096
30126
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -30103,10 +30133,10 @@ var MatchSource;
30103
30133
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
30104
30134
  })(MatchSource || (MatchSource = {}));
30105
30135
 
30106
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30136
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30107
30137
  var import_typescript26 = __toESM(require("typescript"), 1);
30108
30138
 
30109
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
30139
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
30110
30140
  var ClassPropertyMapping = class {
30111
30141
  constructor(forwardMap) {
30112
30142
  this.forwardMap = forwardMap;
@@ -30186,7 +30216,7 @@ function reverseMapFromForwardMap(forwardMap) {
30186
30216
  return reverseMap;
30187
30217
  }
30188
30218
 
30189
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30219
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30190
30220
  var import_typescript24 = __toESM(require("typescript"), 1);
30191
30221
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
30192
30222
  if (!import_typescript24.default.isTupleTypeNode(def)) {
@@ -30382,7 +30412,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
30382
30412
  return hostDirectiveMeta.directive instanceof Reference2;
30383
30413
  }
30384
30414
 
30385
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30415
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30386
30416
  var DtsMetadataReader = class {
30387
30417
  constructor(checker, reflector) {
30388
30418
  this.checker = checker;
@@ -30565,7 +30595,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
30565
30595
  return result.length > 0 ? result : null;
30566
30596
  }
30567
30597
 
30568
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30598
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30569
30599
  function flattenInheritedDirectiveMetadata(reader, dir) {
30570
30600
  const topMeta = reader.getDirectiveMetadata(dir);
30571
30601
  if (topMeta === null) {
@@ -30628,7 +30658,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
30628
30658
  });
30629
30659
  }
30630
30660
 
30631
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30661
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30632
30662
  var LocalMetadataRegistry = class {
30633
30663
  constructor() {
30634
30664
  this.directives = /* @__PURE__ */ new Map();
@@ -30685,7 +30715,7 @@ var CompoundMetadataRegistry = class {
30685
30715
  }
30686
30716
  };
30687
30717
 
30688
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30718
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30689
30719
  var ResourceRegistry = class {
30690
30720
  constructor() {
30691
30721
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -30750,7 +30780,7 @@ var ResourceRegistry = class {
30750
30780
  }
30751
30781
  };
30752
30782
 
30753
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30754
30784
  var ExportedProviderStatusResolver = class {
30755
30785
  constructor(metaReader) {
30756
30786
  this.metaReader = metaReader;
@@ -30794,7 +30824,7 @@ var ExportedProviderStatusResolver = class {
30794
30824
  }
30795
30825
  };
30796
30826
 
30797
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30827
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30798
30828
  var EMPTY_ARRAY = [];
30799
30829
  var HostDirectivesResolver = class {
30800
30830
  constructor(metaReader) {
@@ -30859,10 +30889,10 @@ function resolveOutput(bindingName) {
30859
30889
  return bindingName;
30860
30890
  }
30861
30891
 
30862
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30892
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30863
30893
  var import_typescript28 = __toESM(require("typescript"), 1);
30864
30894
 
30865
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30895
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30866
30896
  var DynamicValue = class {
30867
30897
  constructor(node, reason, code) {
30868
30898
  this.node = node;
@@ -30952,7 +30982,7 @@ var DynamicValue = class {
30952
30982
  }
30953
30983
  };
30954
30984
 
30955
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30985
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30956
30986
  var ResolvedModule = class {
30957
30987
  constructor(exports, evaluate) {
30958
30988
  this.exports = exports;
@@ -30982,7 +31012,7 @@ var EnumValue = class {
30982
31012
  var KnownFn = class {
30983
31013
  };
30984
31014
 
30985
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31015
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30986
31016
  function describeResolvedType(value, maxDepth = 1) {
30987
31017
  var _a2, _b2;
30988
31018
  if (value === null) {
@@ -31115,10 +31145,10 @@ function getContainerNode(node) {
31115
31145
  return node.getSourceFile();
31116
31146
  }
31117
31147
 
31118
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31148
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31119
31149
  var import_typescript29 = __toESM(require("typescript"), 1);
31120
31150
 
31121
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31151
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31122
31152
  var ArraySliceBuiltinFn = class extends KnownFn {
31123
31153
  constructor(lhs) {
31124
31154
  super();
@@ -31170,14 +31200,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
31170
31200
  }
31171
31201
  };
31172
31202
 
31173
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31203
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31174
31204
  var SyntheticValue = class {
31175
31205
  constructor(value) {
31176
31206
  this.value = value;
31177
31207
  }
31178
31208
  };
31179
31209
 
31180
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31210
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31181
31211
  function literalBinaryOp(op) {
31182
31212
  return { op, literal: true };
31183
31213
  }
@@ -31752,7 +31782,7 @@ function owningModule(context, override = null) {
31752
31782
  }
31753
31783
  }
31754
31784
 
31755
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31785
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31756
31786
  var PartialEvaluator = class {
31757
31787
  constructor(host, checker, dependencyTracker) {
31758
31788
  this.host = host;
@@ -31772,7 +31802,7 @@ var PartialEvaluator = class {
31772
31802
  }
31773
31803
  };
31774
31804
 
31775
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31805
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31776
31806
  var CompilationMode;
31777
31807
  (function(CompilationMode2) {
31778
31808
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -31786,7 +31816,7 @@ var HandlerPrecedence;
31786
31816
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
31787
31817
  })(HandlerPrecedence || (HandlerPrecedence = {}));
31788
31818
 
31789
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31819
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31790
31820
  var import_typescript31 = __toESM(require("typescript"), 1);
31791
31821
  function aliasTransformFactory(exportStatements) {
31792
31822
  return () => {
@@ -31811,10 +31841,10 @@ function aliasTransformFactory(exportStatements) {
31811
31841
  };
31812
31842
  }
31813
31843
 
31814
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31844
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31815
31845
  var import_typescript32 = __toESM(require("typescript"), 1);
31816
31846
 
31817
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31847
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31818
31848
  var PerfPhase;
31819
31849
  (function(PerfPhase2) {
31820
31850
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -31882,7 +31912,7 @@ var PerfCheckpoint;
31882
31912
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
31883
31913
  })(PerfCheckpoint || (PerfCheckpoint = {}));
31884
31914
 
31885
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31915
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31886
31916
  var NoopPerfRecorder = class {
31887
31917
  eventCount() {
31888
31918
  }
@@ -31899,7 +31929,7 @@ var NoopPerfRecorder = class {
31899
31929
  };
31900
31930
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
31901
31931
 
31902
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31932
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31903
31933
  function mark() {
31904
31934
  return process.hrtime();
31905
31935
  }
@@ -31908,7 +31938,7 @@ function timeSinceInMicros(mark2) {
31908
31938
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
31909
31939
  }
31910
31940
 
31911
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31941
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31912
31942
  var ActivePerfRecorder = class {
31913
31943
  static zeroedToNow() {
31914
31944
  return new ActivePerfRecorder(mark());
@@ -32002,7 +32032,7 @@ var DelegatingPerfRecorder = class {
32002
32032
  }
32003
32033
  };
32004
32034
 
32005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
32035
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
32006
32036
  var TraitState;
32007
32037
  (function(TraitState2) {
32008
32038
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -32059,7 +32089,7 @@ var TraitImpl = class {
32059
32089
  }
32060
32090
  };
32061
32091
 
32062
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32063
32093
  var TraitCompiler = class {
32064
32094
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
32065
32095
  this.handlers = handlers;
@@ -32518,10 +32548,10 @@ function containsErrors(diagnostics) {
32518
32548
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
32519
32549
  }
32520
32550
 
32521
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32551
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32522
32552
  var import_typescript43 = __toESM(require("typescript"), 1);
32523
32553
 
32524
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32554
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32525
32555
  var Context = class {
32526
32556
  constructor(isStatement) {
32527
32557
  this.isStatement = isStatement;
@@ -32534,10 +32564,10 @@ var Context = class {
32534
32564
  }
32535
32565
  };
32536
32566
 
32537
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32567
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32538
32568
  var import_typescript38 = __toESM(require("typescript"), 1);
32539
32569
 
32540
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32570
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32541
32571
  var import_typescript34 = __toESM(require("typescript"), 1);
32542
32572
  function createGenerateUniqueIdentifierHelper() {
32543
32573
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -32561,7 +32591,7 @@ function createGenerateUniqueIdentifierHelper() {
32561
32591
  };
32562
32592
  }
32563
32593
 
32564
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32594
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32565
32595
  var import_typescript35 = __toESM(require("typescript"), 1);
32566
32596
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
32567
32597
  return (ctx) => {
@@ -32622,7 +32652,7 @@ function isImportStatement(stmt) {
32622
32652
  return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
32623
32653
  }
32624
32654
 
32625
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32655
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32626
32656
  var import_typescript36 = __toESM(require("typescript"), 1);
32627
32657
  function attemptToReuseGeneratedImports(tracker, request) {
32628
32658
  const requestHash = hashImportRequest(request);
@@ -32649,7 +32679,7 @@ function hashImportRequest(req) {
32649
32679
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
32650
32680
  }
32651
32681
 
32652
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32682
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32653
32683
  var import_typescript37 = __toESM(require("typescript"), 1);
32654
32684
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32655
32685
  let candidateImportToBeUpdated = null;
@@ -32702,7 +32732,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32702
32732
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
32703
32733
  }
32704
32734
 
32705
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32735
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32706
32736
  var presetImportManagerForceNamespaceImports = {
32707
32737
  disableOriginalSourceFileReuse: true,
32708
32738
  forceGenerateNamespacesForNewImports: true
@@ -32851,7 +32881,7 @@ function createImportReference(asTypeReference, ref) {
32851
32881
  }
32852
32882
  }
32853
32883
 
32854
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32884
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32855
32885
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
32856
32886
  [UnaryOperator.Minus, "-"],
32857
32887
  [UnaryOperator.Plus, "+"]
@@ -33096,7 +33126,7 @@ function createRange(span) {
33096
33126
  };
33097
33127
  }
33098
33128
 
33099
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
33129
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
33100
33130
  var import_typescript39 = __toESM(require("typescript"), 1);
33101
33131
  var INELIGIBLE = {};
33102
33132
  function canEmitType(type, canEmit) {
@@ -33171,10 +33201,10 @@ var TypeEmitter = class {
33171
33201
  }
33172
33202
  };
33173
33203
 
33174
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33204
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33175
33205
  var import_typescript41 = __toESM(require("typescript"), 1);
33176
33206
 
33177
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33207
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33178
33208
  var import_typescript40 = __toESM(require("typescript"), 1);
33179
33209
  function tsNumericExpression(value) {
33180
33210
  if (value < 0) {
@@ -33184,7 +33214,7 @@ function tsNumericExpression(value) {
33184
33214
  return import_typescript40.default.factory.createNumericLiteral(value);
33185
33215
  }
33186
33216
 
33187
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33217
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33188
33218
  function translateType(type, contextFile, reflector, refEmitter, imports) {
33189
33219
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
33190
33220
  }
@@ -33401,7 +33431,7 @@ var TypeTranslatorVisitor = class {
33401
33431
  }
33402
33432
  };
33403
33433
 
33404
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33434
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33405
33435
  var import_typescript42 = __toESM(require("typescript"), 1);
33406
33436
  var PureAnnotation;
33407
33437
  (function(PureAnnotation2) {
@@ -33604,7 +33634,7 @@ function attachComments(statement, leadingComments) {
33604
33634
  }
33605
33635
  }
33606
33636
 
33607
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33637
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33608
33638
  function translateExpression(contextFile, expression, imports, options = {}) {
33609
33639
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
33610
33640
  }
@@ -33612,7 +33642,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
33612
33642
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
33613
33643
  }
33614
33644
 
33615
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33645
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33616
33646
  var DtsTransformRegistry = class {
33617
33647
  constructor() {
33618
33648
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -33760,10 +33790,10 @@ function markForEmitAsSingleLine(node) {
33760
33790
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
33761
33791
  }
33762
33792
 
33763
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33793
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33764
33794
  var import_typescript45 = __toESM(require("typescript"), 1);
33765
33795
 
33766
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33796
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33767
33797
  var import_typescript44 = __toESM(require("typescript"), 1);
33768
33798
  function visit(node, visitor, context) {
33769
33799
  return visitor._visit(node, context);
@@ -33824,7 +33854,7 @@ var Visitor = class {
33824
33854
  }
33825
33855
  };
33826
33856
 
33827
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33857
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33828
33858
  var NO_DECORATORS = /* @__PURE__ */ new Set();
33829
33859
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
33830
33860
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -34059,7 +34089,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
34059
34089
  return array;
34060
34090
  }
34061
34091
 
34062
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
34092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
34063
34093
  function makeDuplicateDeclarationError(node, data, kind) {
34064
34094
  const context = [];
34065
34095
  for (const decl of data) {
@@ -34268,7 +34298,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
34268
34298
  }
34269
34299
  }
34270
34300
 
34271
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34272
34302
  var import_typescript48 = __toESM(require("typescript"), 1);
34273
34303
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
34274
34304
  let resolved = null;
@@ -34318,7 +34348,7 @@ function resolveLiteral(decorator, literalCache) {
34318
34348
  return meta;
34319
34349
  }
34320
34350
 
34321
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34351
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34322
34352
  function compileNgFactoryDefField(metadata) {
34323
34353
  const res = compileFactoryFunction(metadata);
34324
34354
  return {
@@ -34340,7 +34370,7 @@ function compileDeclareFactory(metadata) {
34340
34370
  };
34341
34371
  }
34342
34372
 
34343
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34344
34374
  var InjectableClassRegistry = class {
34345
34375
  constructor(host, isCore) {
34346
34376
  this.host = host;
@@ -34366,7 +34396,7 @@ var InjectableClassRegistry = class {
34366
34396
  }
34367
34397
  };
34368
34398
 
34369
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34399
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34370
34400
  var import_typescript49 = __toESM(require("typescript"), 1);
34371
34401
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
34372
34402
  if (!reflection.isClass(clazz)) {
@@ -34452,7 +34482,7 @@ function removeIdentifierReferences(node, names) {
34452
34482
  return result.transformed[0];
34453
34483
  }
34454
34484
 
34455
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34485
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34456
34486
  var path = __toESM(require("path"), 1);
34457
34487
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
34458
34488
  if (!reflection.isClass(clazz)) {
@@ -34478,13 +34508,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
34478
34508
  return null;
34479
34509
  }
34480
34510
 
34481
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34511
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34482
34512
  var NoopReferencesRegistry = class {
34483
34513
  add(source, ...references) {
34484
34514
  }
34485
34515
  };
34486
34516
 
34487
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34517
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34488
34518
  function extractSchemas(rawExpr, evaluator, context) {
34489
34519
  const schemas = [];
34490
34520
  const result = evaluator.evaluate(rawExpr);
@@ -34513,7 +34543,7 @@ function extractSchemas(rawExpr, evaluator, context) {
34513
34543
  return schemas;
34514
34544
  }
34515
34545
 
34516
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34546
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34517
34547
  function compileInputTransformFields(inputs) {
34518
34548
  const extraFields = [];
34519
34549
  for (const input of inputs) {
@@ -34530,10 +34560,10 @@ function compileInputTransformFields(inputs) {
34530
34560
  return extraFields;
34531
34561
  }
34532
34562
 
34533
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34563
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34534
34564
  var import_typescript63 = __toESM(require("typescript"), 1);
34535
34565
 
34536
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34566
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34537
34567
  var import_typescript50 = __toESM(require("typescript"), 1);
34538
34568
  var SemanticSymbol = class {
34539
34569
  constructor(decl) {
@@ -34549,7 +34579,7 @@ function getSymbolIdentifier(decl) {
34549
34579
  return decl.name.text;
34550
34580
  }
34551
34581
 
34552
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34582
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34553
34583
  var OpaqueSymbol = class extends SemanticSymbol {
34554
34584
  isPublicApiAffected() {
34555
34585
  return false;
@@ -34691,10 +34721,10 @@ function getImportPath(expr) {
34691
34721
  }
34692
34722
  }
34693
34723
 
34694
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34724
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34695
34725
  var import_typescript51 = __toESM(require("typescript"), 1);
34696
34726
 
34697
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34727
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34698
34728
  function isSymbolEqual(a, b) {
34699
34729
  if (a.decl === b.decl) {
34700
34730
  return true;
@@ -34744,7 +34774,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
34744
34774
  return true;
34745
34775
  }
34746
34776
 
34747
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34748
34778
  function extractSemanticTypeParameters(node) {
34749
34779
  if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
34750
34780
  return null;
@@ -34766,14 +34796,14 @@ function isTypeParameterEqual(a, b) {
34766
34796
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
34767
34797
  }
34768
34798
 
34769
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34799
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34770
34800
  var ComponentScopeKind;
34771
34801
  (function(ComponentScopeKind2) {
34772
34802
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
34773
34803
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
34774
34804
  })(ComponentScopeKind || (ComponentScopeKind = {}));
34775
34805
 
34776
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34806
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34777
34807
  var CompoundComponentScopeReader = class {
34778
34808
  constructor(readers) {
34779
34809
  this.readers = readers;
@@ -34798,7 +34828,7 @@ var CompoundComponentScopeReader = class {
34798
34828
  }
34799
34829
  };
34800
34830
 
34801
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34831
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34802
34832
  var MetadataDtsModuleScopeResolver = class {
34803
34833
  constructor(dtsMetaReader, aliasingHost) {
34804
34834
  this.dtsMetaReader = dtsMetaReader;
@@ -34873,10 +34903,10 @@ var MetadataDtsModuleScopeResolver = class {
34873
34903
  }
34874
34904
  };
34875
34905
 
34876
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34906
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34877
34907
  var import_typescript52 = __toESM(require("typescript"), 1);
34878
34908
 
34879
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34909
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34880
34910
  function getDiagnosticNode(ref, rawExpr) {
34881
34911
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
34882
34912
  }
@@ -34902,7 +34932,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
34902
34932
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
34903
34933
  }
34904
34934
 
34905
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34935
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34906
34936
  var LocalModuleScopeRegistry = class {
34907
34937
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
34908
34938
  this.localReader = localReader;
@@ -35243,7 +35273,7 @@ function reexportCollision(module2, refA, refB) {
35243
35273
  ]);
35244
35274
  }
35245
35275
 
35246
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35276
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35247
35277
  var import_typescript54 = __toESM(require("typescript"), 1);
35248
35278
  var TypeCheckScopeRegistry = class {
35249
35279
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -35323,10 +35353,10 @@ var TypeCheckScopeRegistry = class {
35323
35353
  }
35324
35354
  };
35325
35355
 
35326
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35356
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35327
35357
  var import_typescript58 = __toESM(require("typescript"), 1);
35328
35358
 
35329
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35359
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35330
35360
  function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35331
35361
  if (!api.allowedAccessLevels.includes(member.accessLevel)) {
35332
35362
  throw new FatalDiagnosticError(ErrorCode.INITIALIZER_API_DISALLOWED_MEMBER_VISIBILITY, call2, makeDiagnosticChain(`Cannot use "${api.functionName}" on a class member that is declared as ${classMemberAccessLevelToString(member.accessLevel)}.`, [
@@ -35335,7 +35365,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35335
35365
  }
35336
35366
  }
35337
35367
 
35338
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35368
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35339
35369
  var import_typescript55 = __toESM(require("typescript"), 1);
35340
35370
  function tryParseInitializerApi(functions, expression, reflector, importTracker) {
35341
35371
  if (!import_typescript55.default.isCallExpression(expression)) {
@@ -35404,7 +35434,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
35404
35434
  return { api: matchingApi, apiReference, isRequired };
35405
35435
  }
35406
35436
 
35407
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35437
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35408
35438
  var import_typescript56 = __toESM(require("typescript"), 1);
35409
35439
  function parseAndValidateInputAndOutputOptions(optionsNode) {
35410
35440
  if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
@@ -35422,7 +35452,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
35422
35452
  return { alias };
35423
35453
  }
35424
35454
 
35425
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35455
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35426
35456
  var INPUT_INITIALIZER_FN = {
35427
35457
  functionName: "input",
35428
35458
  owningModule: "@angular/core",
@@ -35454,7 +35484,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
35454
35484
  };
35455
35485
  }
35456
35486
 
35457
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35487
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35458
35488
  var MODEL_INITIALIZER_FN = {
35459
35489
  functionName: "model",
35460
35490
  owningModule: "@angular/core",
@@ -35495,7 +35525,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
35495
35525
  };
35496
35526
  }
35497
35527
 
35498
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35528
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35499
35529
  var allowedAccessLevels = [
35500
35530
  ClassMemberAccessLevel.PublicWritable,
35501
35531
  ClassMemberAccessLevel.PublicReadonly,
@@ -35539,7 +35569,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
35539
35569
  };
35540
35570
  }
35541
35571
 
35542
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35572
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35543
35573
  var import_typescript57 = __toESM(require("typescript"), 1);
35544
35574
  var queryFunctionNames = [
35545
35575
  "viewChild",
@@ -35623,7 +35653,7 @@ function parseDescendantsOption(value) {
35623
35653
  throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
35624
35654
  }
35625
35655
 
35626
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35656
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35627
35657
  var EMPTY_OBJECT = {};
35628
35658
  var queryDecoratorNames = [
35629
35659
  "ViewChild",
@@ -36421,7 +36451,7 @@ function toR3InputMetadata(mapping) {
36421
36451
  };
36422
36452
  }
36423
36453
 
36424
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36454
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36425
36455
  var DirectiveSymbol = class extends SemanticSymbol {
36426
36456
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
36427
36457
  super(decl);
@@ -36501,7 +36531,7 @@ function isBaseClassEqual(current, previous) {
36501
36531
  return isSymbolEqual(current, previous);
36502
36532
  }
36503
36533
 
36504
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36534
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36505
36535
  var FIELD_DECORATORS = [
36506
36536
  "Input",
36507
36537
  "Output",
@@ -36694,10 +36724,10 @@ var DirectiveDecoratorHandler = class {
36694
36724
  }
36695
36725
  };
36696
36726
 
36697
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36727
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36698
36728
  var import_typescript60 = __toESM(require("typescript"), 1);
36699
36729
 
36700
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36730
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36701
36731
  var import_typescript59 = __toESM(require("typescript"), 1);
36702
36732
  function createModuleWithProvidersResolver(reflector, isCore) {
36703
36733
  function _reflectModuleFromTypeParam(type, node) {
@@ -36769,7 +36799,7 @@ function isResolvedModuleWithProviders(sv) {
36769
36799
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
36770
36800
  }
36771
36801
 
36772
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36802
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36773
36803
  var NgModuleSymbol = class extends SemanticSymbol {
36774
36804
  constructor(decl, hasProviders) {
36775
36805
  super(decl);
@@ -37382,7 +37412,7 @@ function isSyntheticReference(ref) {
37382
37412
  return ref.synthetic;
37383
37413
  }
37384
37414
 
37385
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37415
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37386
37416
  function makeCyclicImportInfo(ref, type, cycle) {
37387
37417
  const name = ref.debugName || "(unknown)";
37388
37418
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -37405,7 +37435,7 @@ function checkCustomElementSelectorForErrors(selector) {
37405
37435
  return null;
37406
37436
  }
37407
37437
 
37408
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37438
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37409
37439
  var import_typescript62 = __toESM(require("typescript"), 1);
37410
37440
  function getTemplateDeclarationNodeForError(declaration) {
37411
37441
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -37761,7 +37791,7 @@ function _extractTemplateStyleUrls(template2) {
37761
37791
  }));
37762
37792
  }
37763
37793
 
37764
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37794
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37765
37795
  var ComponentSymbol = class extends DirectiveSymbol {
37766
37796
  constructor() {
37767
37797
  super(...arguments);
@@ -37796,7 +37826,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
37796
37826
  }
37797
37827
  };
37798
37828
 
37799
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37829
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37800
37830
  function collectAnimationNames(value, animationTriggerNames) {
37801
37831
  if (value instanceof Map) {
37802
37832
  const name = value.get("name");
@@ -37873,7 +37903,7 @@ function isLikelyModuleWithProviders(value) {
37873
37903
  return false;
37874
37904
  }
37875
37905
 
37876
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
37906
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
37877
37907
  var EMPTY_ARRAY2 = [];
37878
37908
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
37879
37909
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
@@ -38879,7 +38909,7 @@ function isDefaultImport(node) {
38879
38909
  return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
38880
38910
  }
38881
38911
 
38882
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
38912
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
38883
38913
  var import_typescript65 = __toESM(require("typescript"), 1);
38884
38914
  var InjectableDecoratorHandler = class {
38885
38915
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -39110,7 +39140,7 @@ function getDep(dep, reflector) {
39110
39140
  return meta;
39111
39141
  }
39112
39142
 
39113
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
39143
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
39114
39144
  var import_typescript66 = __toESM(require("typescript"), 1);
39115
39145
  var PipeSymbol = class extends SemanticSymbol {
39116
39146
  constructor(decl, name) {
@@ -39266,13 +39296,13 @@ var PipeDecoratorHandler = class {
39266
39296
  }
39267
39297
  };
39268
39298
 
39269
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
39299
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
39270
39300
  var import_typescript67 = __toESM(require("typescript"), 1);
39271
39301
 
39272
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
39302
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
39273
39303
  var import_typescript68 = __toESM(require("typescript"), 1);
39274
39304
 
39275
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
39305
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
39276
39306
  var EmitFlags;
39277
39307
  (function(EmitFlags2) {
39278
39308
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -39284,13 +39314,13 @@ var EmitFlags;
39284
39314
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
39285
39315
  })(EmitFlags || (EmitFlags = {}));
39286
39316
 
39287
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
39317
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
39288
39318
  var import_typescript71 = __toESM(require("typescript"), 1);
39289
39319
 
39290
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
39320
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
39291
39321
  var import_typescript123 = __toESM(require("typescript"), 1);
39292
39322
 
39293
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
39323
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
39294
39324
  var path2 = __toESM(require("path"), 1);
39295
39325
  function i18nGetExtension(formatName) {
39296
39326
  const format = formatName.toLowerCase();
@@ -39340,10 +39370,10 @@ function getPathNormalizer(basePath) {
39340
39370
  };
39341
39371
  }
39342
39372
 
39343
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39344
39374
  var import_typescript72 = __toESM(require("typescript"), 1);
39345
39375
 
39346
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
39376
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
39347
39377
  function toNumbers(value) {
39348
39378
  const suffixIndex = value.lastIndexOf("-");
39349
39379
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -39378,7 +39408,7 @@ function compareVersions(v1, v2) {
39378
39408
  return compareNumbers(toNumbers(v1), toNumbers(v2));
39379
39409
  }
39380
39410
 
39381
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39411
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39382
39412
  var MIN_TS_VERSION = "5.4.0";
39383
39413
  var MAX_TS_VERSION = "5.5.0";
39384
39414
  var tsVersion = import_typescript72.default.version;
@@ -39391,10 +39421,10 @@ function verifySupportedTypeScriptVersion() {
39391
39421
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
39392
39422
  }
39393
39423
 
39394
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
39424
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
39395
39425
  var import_typescript119 = __toESM(require("typescript"), 1);
39396
39426
 
39397
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
39427
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
39398
39428
  var CycleAnalyzer = class {
39399
39429
  constructor(importGraph) {
39400
39430
  this.importGraph = importGraph;
@@ -39465,7 +39495,7 @@ var Cycle = class {
39465
39495
  }
39466
39496
  };
39467
39497
 
39468
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
39498
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
39469
39499
  var import_typescript73 = __toESM(require("typescript"), 1);
39470
39500
  var ImportGraph = class {
39471
39501
  constructor(checker, perf) {
@@ -39557,13 +39587,13 @@ var Found = class {
39557
39587
  }
39558
39588
  };
39559
39589
 
39560
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
39590
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
39561
39591
  var import_typescript82 = __toESM(require("typescript"), 1);
39562
39592
 
39563
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39593
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39564
39594
  var import_typescript77 = __toESM(require("typescript"), 1);
39565
39595
 
39566
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
39596
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
39567
39597
  var EntryType;
39568
39598
  (function(EntryType2) {
39569
39599
  EntryType2["Block"] = "block";
@@ -39607,17 +39637,17 @@ var MemberTags;
39607
39637
  MemberTags2["Inherited"] = "override";
39608
39638
  })(MemberTags || (MemberTags = {}));
39609
39639
 
39610
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
39640
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
39611
39641
  function isAngularPrivateName(name) {
39612
39642
  var _a2;
39613
39643
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
39614
39644
  return firstChar === "\u0275" || firstChar === "_";
39615
39645
  }
39616
39646
 
39617
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39647
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39618
39648
  var import_typescript75 = __toESM(require("typescript"), 1);
39619
39649
 
39620
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
39650
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
39621
39651
  function extractGenerics(declaration) {
39622
39652
  var _a2, _b2;
39623
39653
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -39630,7 +39660,7 @@ function extractGenerics(declaration) {
39630
39660
  })) != null ? _b2 : [];
39631
39661
  }
39632
39662
 
39633
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
39663
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
39634
39664
  var import_typescript74 = __toESM(require("typescript"), 1);
39635
39665
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
39636
39666
  function extractJsDocTags(node) {
@@ -39674,12 +39704,12 @@ function unescapeAngularDecorators(comment) {
39674
39704
  return comment.replace(/_NG_AT_/g, "@");
39675
39705
  }
39676
39706
 
39677
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
39707
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
39678
39708
  function extractResolvedTypeString(node, checker) {
39679
39709
  return checker.typeToString(checker.getTypeAtLocation(node));
39680
39710
  }
39681
39711
 
39682
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39712
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39683
39713
  var FunctionExtractor = class {
39684
39714
  constructor(name, declaration, typeChecker) {
39685
39715
  this.name = name;
@@ -39735,7 +39765,7 @@ function extractAllParams(params, typeChecker) {
39735
39765
  }));
39736
39766
  }
39737
39767
 
39738
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
39768
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
39739
39769
  var import_typescript76 = __toESM(require("typescript"), 1);
39740
39770
  function isInternal(member) {
39741
39771
  return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
@@ -39754,7 +39784,7 @@ function hasLeadingInternalComment(member) {
39754
39784
  )) != null ? _a2 : false;
39755
39785
  }
39756
39786
 
39757
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39787
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39758
39788
  var ClassExtractor = class {
39759
39789
  constructor(declaration, typeChecker) {
39760
39790
  this.declaration = declaration;
@@ -40006,7 +40036,7 @@ function extractInterface(declaration, typeChecker) {
40006
40036
  return extractor.extract();
40007
40037
  }
40008
40038
 
40009
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
40039
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
40010
40040
  var import_typescript78 = __toESM(require("typescript"), 1);
40011
40041
  var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
40012
40042
  function extractConstant(declaration, typeChecker) {
@@ -40064,7 +40094,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
40064
40094
  });
40065
40095
  }
40066
40096
 
40067
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
40097
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
40068
40098
  var import_typescript79 = __toESM(require("typescript"), 1);
40069
40099
  function extractorDecorator(declaration, typeChecker) {
40070
40100
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -40137,7 +40167,7 @@ function getDecoratorJsDocNode(declaration) {
40137
40167
  return callSignature;
40138
40168
  }
40139
40169
 
40140
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
40170
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
40141
40171
  var import_typescript80 = __toESM(require("typescript"), 1);
40142
40172
  function extractEnum(declaration, typeChecker) {
40143
40173
  return {
@@ -40168,7 +40198,7 @@ function getEnumMemberValue(memberNode) {
40168
40198
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
40169
40199
  }
40170
40200
 
40171
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
40201
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
40172
40202
  var import_typescript81 = __toESM(require("typescript"), 1);
40173
40203
  var initializerApiTag = "initializerApiFunction";
40174
40204
  function isInitializerApiFunction(node, typeChecker) {
@@ -40305,7 +40335,7 @@ function findImplementationOfFunction(node, typeChecker) {
40305
40335
  return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript81.default.isFunctionDeclaration(s) && s.body !== void 0);
40306
40336
  }
40307
40337
 
40308
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
40338
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
40309
40339
  function extractTypeAlias(declaration) {
40310
40340
  return {
40311
40341
  name: declaration.name.getText(),
@@ -40317,7 +40347,7 @@ function extractTypeAlias(declaration) {
40317
40347
  };
40318
40348
  }
40319
40349
 
40320
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
40350
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
40321
40351
  var DocsExtractor = class {
40322
40352
  constructor(typeChecker, metadataReader) {
40323
40353
  this.typeChecker = typeChecker;
@@ -40401,7 +40431,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
40401
40431
  return relativePath;
40402
40432
  }
40403
40433
 
40404
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
40434
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
40405
40435
  var import_typescript83 = __toESM(require("typescript"), 1);
40406
40436
  var FlatIndexGenerator = class {
40407
40437
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -40426,7 +40456,7 @@ export * from '${relativeEntryPoint}';
40426
40456
  }
40427
40457
  };
40428
40458
 
40429
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
40459
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
40430
40460
  function findFlatIndexEntryPoint(rootFiles) {
40431
40461
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
40432
40462
  let resolvedEntryPoint = null;
@@ -40442,7 +40472,7 @@ function findFlatIndexEntryPoint(rootFiles) {
40442
40472
  return resolvedEntryPoint;
40443
40473
  }
40444
40474
 
40445
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
40475
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
40446
40476
  var import_typescript85 = __toESM(require("typescript"), 1);
40447
40477
  function checkForPrivateExports(entryPoint, checker, refGraph) {
40448
40478
  const diagnostics = [];
@@ -40522,7 +40552,7 @@ function getDescriptorOfDeclaration(decl) {
40522
40552
  }
40523
40553
  }
40524
40554
 
40525
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
40555
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
40526
40556
  var ReferenceGraph = class {
40527
40557
  constructor() {
40528
40558
  this.references = /* @__PURE__ */ new Map();
@@ -40576,7 +40606,7 @@ var ReferenceGraph = class {
40576
40606
  }
40577
40607
  };
40578
40608
 
40579
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
40609
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
40580
40610
  var NgOriginalFile = Symbol("NgOriginalFile");
40581
40611
  var UpdateMode;
40582
40612
  (function(UpdateMode2) {
@@ -40584,13 +40614,13 @@ var UpdateMode;
40584
40614
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
40585
40615
  })(UpdateMode || (UpdateMode = {}));
40586
40616
 
40587
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40617
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40588
40618
  var import_typescript89 = __toESM(require("typescript"), 1);
40589
40619
 
40590
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40620
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40591
40621
  var import_typescript86 = __toESM(require("typescript"), 1);
40592
40622
 
40593
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
40623
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
40594
40624
  var NgExtension = Symbol("NgExtension");
40595
40625
  function isExtended(sf) {
40596
40626
  return sf[NgExtension] !== void 0;
@@ -40650,13 +40680,13 @@ function retagTsFile(sf) {
40650
40680
  }
40651
40681
  }
40652
40682
 
40653
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
40683
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
40654
40684
  var TS_EXTENSIONS = /\.tsx?$/i;
40655
40685
  function makeShimFileName(fileName, suffix) {
40656
40686
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
40657
40687
  }
40658
40688
 
40659
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40689
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40660
40690
  var ShimAdapter = class {
40661
40691
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
40662
40692
  this.delegate = delegate;
@@ -40751,7 +40781,7 @@ var ShimAdapter = class {
40751
40781
  }
40752
40782
  };
40753
40783
 
40754
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
40784
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
40755
40785
  var ShimReferenceTagger = class {
40756
40786
  constructor(shimExtensions) {
40757
40787
  this.tagged = /* @__PURE__ */ new Set();
@@ -40785,7 +40815,7 @@ var ShimReferenceTagger = class {
40785
40815
  }
40786
40816
  };
40787
40817
 
40788
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40818
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40789
40819
  var DelegatingCompilerHost = class {
40790
40820
  get jsDocParsingMode() {
40791
40821
  return this.delegate.jsDocParsingMode;
@@ -40904,7 +40934,7 @@ var TsCreateProgramDriver = class {
40904
40934
  }
40905
40935
  };
40906
40936
 
40907
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
40937
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
40908
40938
  var FileDependencyGraph = class {
40909
40939
  constructor() {
40910
40940
  this.nodes = /* @__PURE__ */ new Map();
@@ -40971,7 +41001,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
40971
41001
  return false;
40972
41002
  }
40973
41003
 
40974
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
41004
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
40975
41005
  var IncrementalStateKind;
40976
41006
  (function(IncrementalStateKind2) {
40977
41007
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -40979,7 +41009,7 @@ var IncrementalStateKind;
40979
41009
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
40980
41010
  })(IncrementalStateKind || (IncrementalStateKind = {}));
40981
41011
 
40982
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
41012
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
40983
41013
  var PhaseKind;
40984
41014
  (function(PhaseKind2) {
40985
41015
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -41180,7 +41210,7 @@ function toOriginalSourceFile(sf) {
41180
41210
  }
41181
41211
  }
41182
41212
 
41183
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
41213
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
41184
41214
  var TrackedIncrementalBuildStrategy = class {
41185
41215
  constructor() {
41186
41216
  this.state = null;
@@ -41201,7 +41231,7 @@ var TrackedIncrementalBuildStrategy = class {
41201
41231
  };
41202
41232
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
41203
41233
 
41204
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
41234
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
41205
41235
  var IdentifierKind;
41206
41236
  (function(IdentifierKind2) {
41207
41237
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -41219,7 +41249,7 @@ var AbsoluteSourceSpan2 = class {
41219
41249
  }
41220
41250
  };
41221
41251
 
41222
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
41252
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
41223
41253
  var IndexingContext = class {
41224
41254
  constructor() {
41225
41255
  this.components = /* @__PURE__ */ new Set();
@@ -41229,7 +41259,7 @@ var IndexingContext = class {
41229
41259
  }
41230
41260
  };
41231
41261
 
41232
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
41262
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
41233
41263
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
41234
41264
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
41235
41265
  super();
@@ -41510,7 +41540,7 @@ function getTemplateIdentifiers(boundTemplate) {
41510
41540
  return { identifiers: visitor.identifiers, errors: visitor.errors };
41511
41541
  }
41512
41542
 
41513
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
41543
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
41514
41544
  function generateAnalysis(context) {
41515
41545
  const analysis = /* @__PURE__ */ new Map();
41516
41546
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -41546,7 +41576,7 @@ function generateAnalysis(context) {
41546
41576
  return analysis;
41547
41577
  }
41548
41578
 
41549
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
41579
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
41550
41580
  var NgModuleIndexImpl = class {
41551
41581
  constructor(metaReader, localReader) {
41552
41582
  this.metaReader = metaReader;
@@ -41635,7 +41665,7 @@ var NgModuleIndexImpl = class {
41635
41665
  }
41636
41666
  };
41637
41667
 
41638
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
41668
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
41639
41669
  var import_typescript92 = __toESM(require("typescript"), 1);
41640
41670
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
41641
41671
  var RESOURCE_MARKER = ".$ngresource$";
@@ -41787,7 +41817,7 @@ function createLookupResolutionHost(adapter) {
41787
41817
  };
41788
41818
  }
41789
41819
 
41790
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
41820
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
41791
41821
  var StandaloneComponentScopeReader = class {
41792
41822
  constructor(metaReader, localModuleReader, dtsModuleReader) {
41793
41823
  this.metaReader = metaReader;
@@ -41883,21 +41913,21 @@ var StandaloneComponentScopeReader = class {
41883
41913
  }
41884
41914
  };
41885
41915
 
41886
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
41916
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
41887
41917
  var OptimizeFor;
41888
41918
  (function(OptimizeFor2) {
41889
41919
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
41890
41920
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
41891
41921
  })(OptimizeFor || (OptimizeFor = {}));
41892
41922
 
41893
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
41923
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
41894
41924
  var CompletionKind;
41895
41925
  (function(CompletionKind2) {
41896
41926
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
41897
41927
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
41898
41928
  })(CompletionKind || (CompletionKind = {}));
41899
41929
 
41900
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
41930
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
41901
41931
  var PotentialImportKind;
41902
41932
  (function(PotentialImportKind2) {
41903
41933
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -41909,7 +41939,7 @@ var PotentialImportMode;
41909
41939
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
41910
41940
  })(PotentialImportMode || (PotentialImportMode = {}));
41911
41941
 
41912
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
41942
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
41913
41943
  var SymbolKind;
41914
41944
  (function(SymbolKind2) {
41915
41945
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -41925,7 +41955,7 @@ var SymbolKind;
41925
41955
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
41926
41956
  })(SymbolKind || (SymbolKind = {}));
41927
41957
 
41928
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
41958
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
41929
41959
  var import_typescript93 = __toESM(require("typescript"), 1);
41930
41960
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
41931
41961
  var _a2;
@@ -42036,7 +42066,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
42036
42066
  );
42037
42067
  }
42038
42068
 
42039
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
42069
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
42040
42070
  var TEMPLATE_ID = Symbol("ngTemplateId");
42041
42071
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
42042
42072
  function getTemplateId(clazz) {
@@ -42053,10 +42083,10 @@ function allocateTemplateId(sf) {
42053
42083
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
42054
42084
  }
42055
42085
 
42056
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42086
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42057
42087
  var import_typescript95 = __toESM(require("typescript"), 1);
42058
42088
 
42059
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
42089
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
42060
42090
  var import_typescript94 = __toESM(require("typescript"), 1);
42061
42091
  var parseSpanComment = /^(\d+),(\d+)$/;
42062
42092
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -42186,7 +42216,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
42186
42216
  }) || false;
42187
42217
  }
42188
42218
 
42189
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42219
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42190
42220
  var CompletionEngine = class {
42191
42221
  constructor(tcb, data, tcbPath, tcbIsShim) {
42192
42222
  this.tcb = tcb;
@@ -43444,10 +43474,10 @@ var MagicString = class {
43444
43474
  }
43445
43475
  };
43446
43476
 
43447
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
43477
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
43448
43478
  var import_typescript109 = __toESM(require("typescript"), 1);
43449
43479
 
43450
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
43480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
43451
43481
  var import_typescript96 = __toESM(require("typescript"), 1);
43452
43482
  var REGISTRY = new DomElementSchemaRegistry();
43453
43483
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -43499,10 +43529,10 @@ var RegistryDomSchemaChecker = class {
43499
43529
  }
43500
43530
  };
43501
43531
 
43502
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43532
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43503
43533
  var import_typescript102 = __toESM(require("typescript"), 1);
43504
43534
 
43505
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
43535
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
43506
43536
  var ReferenceEmitEnvironment = class {
43507
43537
  constructor(importManager, refEmitter, reflector, contextFile) {
43508
43538
  this.importManager = importManager;
@@ -43532,7 +43562,7 @@ var ReferenceEmitEnvironment = class {
43532
43562
  }
43533
43563
  };
43534
43564
 
43535
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
43565
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
43536
43566
  var import_typescript97 = __toESM(require("typescript"), 1);
43537
43567
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
43538
43568
  import_typescript97.default.SyntaxKind.ParenthesizedExpression,
@@ -43615,13 +43645,13 @@ function tsNumericExpression2(value) {
43615
43645
  return import_typescript97.default.factory.createNumericLiteral(value);
43616
43646
  }
43617
43647
 
43618
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43648
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43619
43649
  var import_typescript101 = __toESM(require("typescript"), 1);
43620
43650
 
43621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43651
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43622
43652
  var import_typescript99 = __toESM(require("typescript"), 1);
43623
43653
 
43624
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
43654
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
43625
43655
  var import_typescript98 = __toESM(require("typescript"), 1);
43626
43656
  var TypeParameterEmitter = class {
43627
43657
  constructor(typeParameters, reflector) {
@@ -43699,7 +43729,7 @@ var TypeParameterEmitter = class {
43699
43729
  }
43700
43730
  };
43701
43731
 
43702
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43732
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43703
43733
  var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
43704
43734
  Identifiers.InputSignalBrandWriteType
43705
43735
  ];
@@ -43791,7 +43821,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
43791
43821
  return emitter.canEmit((ref) => env.canReferenceType(ref));
43792
43822
  }
43793
43823
 
43794
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43824
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43795
43825
  function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
43796
43826
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
43797
43827
  const rawType = import_typescript101.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -43914,7 +43944,7 @@ function typeParametersWithDefaultTypes(params) {
43914
43944
  });
43915
43945
  }
43916
43946
 
43917
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43947
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43918
43948
  var Environment = class extends ReferenceEmitEnvironment {
43919
43949
  constructor(config, importManager, refEmitter, reflector, contextFile) {
43920
43950
  super(importManager, refEmitter, reflector, contextFile);
@@ -43986,7 +44016,7 @@ var Environment = class extends ReferenceEmitEnvironment {
43986
44016
  }
43987
44017
  };
43988
44018
 
43989
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
44019
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
43990
44020
  var import_typescript103 = __toESM(require("typescript"), 1);
43991
44021
  var OutOfBandDiagnosticRecorderImpl = class {
43992
44022
  constructor(resolver) {
@@ -44167,7 +44197,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
44167
44197
  });
44168
44198
  }
44169
44199
 
44170
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
44200
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
44171
44201
  var import_typescript104 = __toESM(require("typescript"), 1);
44172
44202
  var TypeCheckShimGenerator = class {
44173
44203
  constructor() {
@@ -44185,10 +44215,10 @@ var TypeCheckShimGenerator = class {
44185
44215
  }
44186
44216
  };
44187
44217
 
44188
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44218
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44189
44219
  var import_typescript107 = __toESM(require("typescript"), 1);
44190
44220
 
44191
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
44221
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
44192
44222
  var import_typescript105 = __toESM(require("typescript"), 1);
44193
44223
  function wrapForDiagnostics(expr) {
44194
44224
  return import_typescript105.default.factory.createParenthesizedExpression(expr);
@@ -44243,7 +44273,7 @@ function translateDiagnostic(diagnostic, resolver) {
44243
44273
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
44244
44274
  }
44245
44275
 
44246
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
44276
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
44247
44277
  var import_typescript106 = __toESM(require("typescript"), 1);
44248
44278
  var NULL_AS_ANY = import_typescript106.default.factory.createAsExpression(import_typescript106.default.factory.createNull(), import_typescript106.default.factory.createKeywordTypeNode(import_typescript106.default.SyntaxKind.AnyKeyword));
44249
44279
  var UNDEFINED = import_typescript106.default.factory.createIdentifier("undefined");
@@ -44575,7 +44605,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
44575
44605
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
44576
44606
  })();
44577
44607
 
44578
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44608
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44579
44609
  var TcbGenericContextBehavior;
44580
44610
  (function(TcbGenericContextBehavior2) {
44581
44611
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -46096,7 +46126,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
46096
46126
  }
46097
46127
  };
46098
46128
 
46099
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
46129
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
46100
46130
  var import_typescript108 = __toESM(require("typescript"), 1);
46101
46131
  var TypeCheckFile = class extends Environment {
46102
46132
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -46144,7 +46174,7 @@ var TypeCheckFile = class extends Environment {
46144
46174
  }
46145
46175
  };
46146
46176
 
46147
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
46177
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
46148
46178
  var InliningMode;
46149
46179
  (function(InliningMode2) {
46150
46180
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -46396,7 +46426,7 @@ var TypeCtorOp = class {
46396
46426
  }
46397
46427
  };
46398
46428
 
46399
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
46429
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
46400
46430
  var LF_CHAR = 10;
46401
46431
  var CR_CHAR = 13;
46402
46432
  var LINE_SEP_CHAR = 8232;
@@ -46437,7 +46467,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
46437
46467
  return low - 1;
46438
46468
  }
46439
46469
 
46440
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
46470
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
46441
46471
  var TemplateSource = class {
46442
46472
  constructor(mapping, file) {
46443
46473
  this.mapping = mapping;
@@ -46488,7 +46518,7 @@ var TemplateSourceManager = class {
46488
46518
  }
46489
46519
  };
46490
46520
 
46491
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
46521
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
46492
46522
  var import_typescript110 = __toESM(require("typescript"), 1);
46493
46523
  var SymbolBuilder = class {
46494
46524
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -47023,7 +47053,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
47023
47053
  };
47024
47054
  }
47025
47055
 
47026
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
47056
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
47027
47057
  var REGISTRY2 = new DomElementSchemaRegistry();
47028
47058
  var TemplateTypeCheckerImpl = class {
47029
47059
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -47723,7 +47753,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
47723
47753
  }
47724
47754
  };
47725
47755
 
47726
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47756
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47727
47757
  var import_typescript113 = __toESM(require("typescript"), 1);
47728
47758
  var SIGNAL_FNS = /* @__PURE__ */ new Set([
47729
47759
  "WritableSignal",
@@ -47743,7 +47773,7 @@ function isSignalSymbol(symbol) {
47743
47773
  });
47744
47774
  }
47745
47775
 
47746
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47776
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47747
47777
  var TemplateCheckWithVisitor = class {
47748
47778
  run(ctx, component, template2) {
47749
47779
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -47867,7 +47897,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
47867
47897
  }
47868
47898
  };
47869
47899
 
47870
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47900
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47871
47901
  var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
47872
47902
  var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
47873
47903
  var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
@@ -47911,7 +47941,7 @@ var factory = {
47911
47941
  create: () => new InterpolatedSignalCheck()
47912
47942
  };
47913
47943
 
47914
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47944
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47915
47945
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
47916
47946
  constructor() {
47917
47947
  super(...arguments);
@@ -47936,7 +47966,7 @@ var factory2 = {
47936
47966
  create: () => new InvalidBananaInBoxCheck()
47937
47967
  };
47938
47968
 
47939
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47969
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47940
47970
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
47941
47971
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
47942
47972
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -47980,7 +48010,7 @@ var factory3 = {
47980
48010
  }
47981
48011
  };
47982
48012
 
47983
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
48013
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
47984
48014
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
47985
48015
  constructor() {
47986
48016
  super(...arguments);
@@ -48012,7 +48042,7 @@ var factory4 = {
48012
48042
  create: () => new MissingNgForOfLetCheck()
48013
48043
  };
48014
48044
 
48015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48045
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48016
48046
  var import_typescript114 = __toESM(require("typescript"), 1);
48017
48047
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
48018
48048
  constructor() {
@@ -48056,7 +48086,7 @@ var factory5 = {
48056
48086
  }
48057
48087
  };
48058
48088
 
48059
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48089
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48060
48090
  var import_typescript115 = __toESM(require("typescript"), 1);
48061
48091
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
48062
48092
  constructor() {
@@ -48101,7 +48131,7 @@ var factory6 = {
48101
48131
  }
48102
48132
  };
48103
48133
 
48104
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48134
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48105
48135
  var STYLE_SUFFIXES = ["px", "%", "em"];
48106
48136
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
48107
48137
  constructor() {
@@ -48124,7 +48154,7 @@ var factory7 = {
48124
48154
  create: () => new SuffixNotSupportedCheck()
48125
48155
  };
48126
48156
 
48127
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48157
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48128
48158
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
48129
48159
  constructor() {
48130
48160
  super(...arguments);
@@ -48162,10 +48192,10 @@ var factory8 = {
48162
48192
  create: () => new TextAttributeNotBindingSpec()
48163
48193
  };
48164
48194
 
48165
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48195
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48166
48196
  var import_typescript116 = __toESM(require("typescript"), 1);
48167
48197
 
48168
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48198
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48169
48199
  var DiagnosticCategoryLabel;
48170
48200
  (function(DiagnosticCategoryLabel2) {
48171
48201
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -48173,7 +48203,7 @@ var DiagnosticCategoryLabel;
48173
48203
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
48174
48204
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
48175
48205
 
48176
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48206
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48177
48207
  var ExtendedTemplateCheckerImpl = class {
48178
48208
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
48179
48209
  var _a2, _b2, _c2, _d2, _e2;
@@ -48225,7 +48255,7 @@ function assertNever(value) {
48225
48255
  ${value}`);
48226
48256
  }
48227
48257
 
48228
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48258
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48229
48259
  var ALL_DIAGNOSTIC_FACTORIES = [
48230
48260
  factory2,
48231
48261
  factory5,
@@ -48241,7 +48271,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
48241
48271
  ...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
48242
48272
  ]);
48243
48273
 
48244
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48274
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48245
48275
  var import_typescript117 = __toESM(require("typescript"), 1);
48246
48276
  var TemplateSemanticsCheckerImpl = class {
48247
48277
  constructor(templateTypeChecker) {
@@ -48324,7 +48354,7 @@ function unwrapAstWithSource(ast) {
48324
48354
  return ast instanceof ASTWithSource ? ast.ast : ast;
48325
48355
  }
48326
48356
 
48327
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48357
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48328
48358
  var import_typescript118 = __toESM(require("typescript"), 1);
48329
48359
  var APIS_TO_CHECK = [
48330
48360
  INPUT_INITIALIZER_FN,
@@ -48375,7 +48405,7 @@ var InitializerApiUsageRule = class {
48375
48405
  }
48376
48406
  };
48377
48407
 
48378
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48408
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48379
48409
  var SourceFileValidator = class {
48380
48410
  constructor(reflector, importedSymbolsTracker) {
48381
48411
  this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
@@ -48413,7 +48443,7 @@ var SourceFileValidator = class {
48413
48443
  }
48414
48444
  };
48415
48445
 
48416
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48446
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48417
48447
  function coreHasSymbol(program, symbol) {
48418
48448
  const checker = program.getTypeChecker();
48419
48449
  for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
@@ -48432,7 +48462,7 @@ function isMaybeCore(sf) {
48432
48462
  return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
48433
48463
  }
48434
48464
 
48435
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48465
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48436
48466
  var import_semver = __toESM(require_semver2(), 1);
48437
48467
  function coreVersionSupportsFeature(coreVersion, minVersion) {
48438
48468
  if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
@@ -48441,7 +48471,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
48441
48471
  return import_semver.default.satisfies(coreVersion, minVersion);
48442
48472
  }
48443
48473
 
48444
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48474
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48445
48475
  var CompilationTicketKind;
48446
48476
  (function(CompilationTicketKind2) {
48447
48477
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -49223,7 +49253,7 @@ function versionMapFromProgram(program, driver) {
49223
49253
  return versions;
49224
49254
  }
49225
49255
 
49226
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49256
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49227
49257
  var import_typescript121 = __toESM(require("typescript"), 1);
49228
49258
  var DelegatingCompilerHost2 = class {
49229
49259
  get jsDocParsingMode() {
@@ -49362,7 +49392,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
49362
49392
  }
49363
49393
  };
49364
49394
 
49365
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49395
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49366
49396
  var NgtscProgram = class {
49367
49397
  constructor(rootNames, options, delegateHost, oldProgram) {
49368
49398
  this.options = options;
@@ -49589,18 +49619,18 @@ function mergeEmitResults(emitResults) {
49589
49619
  return { diagnostics, emitSkipped, emittedFiles };
49590
49620
  }
49591
49621
 
49592
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49622
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49593
49623
  function createProgram({ rootNames, options, host, oldProgram }) {
49594
49624
  return new NgtscProgram(rootNames, options, host, oldProgram);
49595
49625
  }
49596
49626
 
49597
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49598
49628
  var import_typescript125 = __toESM(require("typescript"), 1);
49599
49629
 
49600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49630
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49601
49631
  var import_typescript124 = __toESM(require("typescript"), 1);
49602
49632
 
49603
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49633
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49604
49634
  var GLOBAL_DEFS_FOR_TERSER = {
49605
49635
  ngDevMode: false,
49606
49636
  ngI18nClosureMode: false
@@ -49609,7 +49639,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
49609
49639
  ngJitMode: false
49610
49640
  });
49611
49641
 
49612
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49642
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49613
49643
  var LogLevel;
49614
49644
  (function(LogLevel2) {
49615
49645
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -49618,7 +49648,7 @@ var LogLevel;
49618
49648
  LogLevel2[LogLevel2["error"] = 3] = "error";
49619
49649
  })(LogLevel || (LogLevel = {}));
49620
49650
 
49621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49651
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49622
49652
  var RESET = "\x1B[0m";
49623
49653
  var RED = "\x1B[31m";
49624
49654
  var YELLOW = "\x1B[33m";
@@ -49627,18 +49657,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
49627
49657
  var WARN = `${YELLOW}Warning:${RESET}`;
49628
49658
  var ERROR = `${RED}Error:${RESET}`;
49629
49659
 
49630
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
49660
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
49631
49661
  setFileSystem(new NodeJSFileSystem());
49632
49662
 
49633
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49663
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49634
49664
  var import_fs2 = require("fs");
49635
49665
  var import_path8 = require("path");
49636
49666
  var import_typescript138 = __toESM(require("typescript"), 1);
49637
49667
 
49638
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49668
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49639
49669
  var import_typescript127 = __toESM(require("typescript"), 1);
49640
49670
 
49641
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49671
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49642
49672
  var import_path4 = require("path");
49643
49673
  var import_typescript126 = __toESM(require("typescript"), 1);
49644
49674
  var ImportManager2 = class {
@@ -49822,7 +49852,7 @@ ${text2}`;
49822
49852
  }
49823
49853
  };
49824
49854
 
49825
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49855
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49826
49856
  var ChangeTracker = class {
49827
49857
  constructor(_printer, _importRemapper) {
49828
49858
  __publicField(this, "_printer");
@@ -49885,7 +49915,7 @@ function normalizePath(path4) {
49885
49915
  return path4.replace(/\\/g, "/");
49886
49916
  }
49887
49917
 
49888
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49918
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49889
49919
  var import_core19 = require("@angular-devkit/core");
49890
49920
  function getProjectTsConfigPaths(tree) {
49891
49921
  return __async(this, null, function* () {
@@ -49965,11 +49995,11 @@ function getWorkspace(tree) {
49965
49995
  });
49966
49996
  }
49967
49997
 
49968
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49998
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49969
49999
  var import_path5 = require("path");
49970
50000
  var import_typescript129 = __toESM(require("typescript"), 1);
49971
50001
 
49972
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
50002
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
49973
50003
  var path3 = __toESM(require("path"), 1);
49974
50004
  var import_typescript128 = __toESM(require("typescript"), 1);
49975
50005
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -49986,7 +50016,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
49986
50016
  return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
49987
50017
  }
49988
50018
 
49989
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50019
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49990
50020
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
49991
50021
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
49992
50022
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -50015,13 +50045,13 @@ function canMigrateFile(basePath, sourceFile, program) {
50015
50045
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
50016
50046
  }
50017
50047
 
50018
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50048
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50019
50049
  var import_typescript134 = __toESM(require("typescript"), 1);
50020
50050
 
50021
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50051
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50022
50052
  var import_typescript131 = __toESM(require("typescript"), 1);
50023
50053
 
50024
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50054
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50025
50055
  var import_typescript130 = __toESM(require("typescript"), 1);
50026
50056
  function getImportOfIdentifier(typeChecker, node) {
50027
50057
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -50072,7 +50102,7 @@ function findImportSpecifier(nodes, specifierName) {
50072
50102
  });
50073
50103
  }
50074
50104
 
50075
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50105
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50076
50106
  function getCallDecoratorImport(typeChecker, decorator) {
50077
50107
  if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
50078
50108
  return null;
@@ -50081,7 +50111,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
50081
50111
  return getImportOfIdentifier(typeChecker, identifier);
50082
50112
  }
50083
50113
 
50084
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50114
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50085
50115
  function getAngularDecorators2(typeChecker, decorators) {
50086
50116
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
50087
50117
  node,
@@ -50091,7 +50121,7 @@ function getAngularDecorators2(typeChecker, decorators) {
50091
50121
  }));
50092
50122
  }
50093
50123
 
50094
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50124
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50095
50125
  var import_typescript132 = __toESM(require("typescript"), 1);
50096
50126
  function closestNode(node, predicate) {
50097
50127
  let current = node.parent;
@@ -50104,7 +50134,7 @@ function closestNode(node, predicate) {
50104
50134
  return null;
50105
50135
  }
50106
50136
 
50107
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50137
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50108
50138
  var import_path6 = require("path");
50109
50139
  var import_typescript133 = __toESM(require("typescript"), 1);
50110
50140
  var UniqueItemTracker = class {
@@ -50282,7 +50312,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
50282
50312
  }));
50283
50313
  }
50284
50314
 
50285
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50315
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50286
50316
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
50287
50317
  const filesToRemove = /* @__PURE__ */ new Set();
50288
50318
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -50481,14 +50511,14 @@ function findNgModuleDecorator(node, typeChecker) {
50481
50511
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
50482
50512
  }
50483
50513
 
50484
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50514
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50485
50515
  var import_path7 = require("path");
50486
50516
  var import_typescript137 = __toESM(require("typescript"), 1);
50487
50517
 
50488
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50518
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50489
50519
  var import_typescript136 = __toESM(require("typescript"), 1);
50490
50520
 
50491
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50521
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50492
50522
  var import_typescript135 = __toESM(require("typescript"), 1);
50493
50523
  function isReferenceToImport(typeChecker, node, importSpecifier) {
50494
50524
  var _a2, _b2;
@@ -50497,7 +50527,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
50497
50527
  return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b2 = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b2[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
50498
50528
  }
50499
50529
 
50500
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50530
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50501
50531
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
50502
50532
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
50503
50533
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -50867,7 +50897,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
50867
50897
  return metadata != null && metadata.isStandalone;
50868
50898
  }
50869
50899
 
50870
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50900
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50871
50901
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
50872
50902
  const tracker = new ChangeTracker(printer, importRemapper);
50873
50903
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51244,7 +51274,7 @@ function hasImport(program, rootFileNames, moduleName) {
51244
51274
  return false;
51245
51275
  }
51246
51276
 
51247
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51277
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51248
51278
  var MigrationMode;
51249
51279
  (function(MigrationMode2) {
51250
51280
  MigrationMode2["toStandalone"] = "convert-to-standalone";