@angular/core 18.1.0-next.3 → 18.1.0-next.4

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 (43) hide show
  1. package/esm2022/primitives/event-dispatch/src/eventcontract.mjs +2 -2
  2. package/esm2022/src/change_detection/change_detector_ref.mjs +3 -2
  3. package/esm2022/src/defer/instructions.mjs +2 -2
  4. package/esm2022/src/di/host_tag_name_token.mjs +4 -1
  5. package/esm2022/src/errors.mjs +1 -1
  6. package/esm2022/src/event_delegation_utils.mjs +3 -2
  7. package/esm2022/src/hydration/annotate.mjs +27 -16
  8. package/esm2022/src/hydration/error_handling.mjs +3 -1
  9. package/esm2022/src/hydration/event_replay.mjs +3 -2
  10. package/esm2022/src/hydration/i18n.mjs +102 -18
  11. package/esm2022/src/hydration/node_lookup_utils.mjs +12 -6
  12. package/esm2022/src/render3/collect_native_nodes.mjs +6 -1
  13. package/esm2022/src/render3/component_ref.mjs +1 -1
  14. package/esm2022/src/render3/instructions/i18n_icu_container_visitor.mjs +61 -51
  15. package/esm2022/src/render3/instructions/let_declaration.mjs +30 -7
  16. package/esm2022/src/render3/instructions/projection.mjs +14 -11
  17. package/esm2022/src/render3/instructions/shared.mjs +1 -1
  18. package/esm2022/src/render3/interfaces/node.mjs +2 -1
  19. package/esm2022/src/render3/node_assert.mjs +9 -8
  20. package/esm2022/src/render3/node_manipulation.mjs +10 -3
  21. package/esm2022/src/version.mjs +1 -1
  22. package/esm2022/testing/src/logger.mjs +3 -3
  23. package/fesm2022/core.mjs +289 -140
  24. package/fesm2022/core.mjs.map +1 -1
  25. package/fesm2022/primitives/event-dispatch.mjs +2 -2
  26. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  27. package/fesm2022/primitives/signals.mjs +1 -1
  28. package/fesm2022/rxjs-interop.mjs +1 -1
  29. package/fesm2022/testing.mjs +1 -1
  30. package/index.d.ts +9 -3
  31. package/package.json +1 -1
  32. package/primitives/event-dispatch/index.d.ts +2 -2
  33. package/primitives/signals/index.d.ts +1 -1
  34. package/rxjs-interop/index.d.ts +1 -1
  35. package/schematics/migrations/after-render-phase/bundle.js +12 -12
  36. package/schematics/migrations/http-providers/bundle.js +15 -15
  37. package/schematics/migrations/invalid-two-way-bindings/bundle.js +168 -165
  38. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +3 -3
  39. package/schematics/ng-generate/control-flow-migration/bundle.js +176 -173
  40. package/schematics/ng-generate/control-flow-migration/bundle.js.map +3 -3
  41. package/schematics/ng-generate/standalone-migration/bundle.js +454 -456
  42. package/schematics/ng-generate/standalone-migration/bundle.js.map +3 -3
  43. package/testing/index.d.ts +1 -1
@@ -1887,7 +1887,7 @@ var require_semver2 = __commonJS({
1887
1887
  }
1888
1888
  });
1889
1889
 
1890
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
1890
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
1891
1891
  var standalone_migration_exports = {};
1892
1892
  __export(standalone_migration_exports, {
1893
1893
  default: () => standalone_migration_default
@@ -1895,10 +1895,10 @@ __export(standalone_migration_exports, {
1895
1895
  module.exports = __toCommonJS(standalone_migration_exports);
1896
1896
  var import_schematics = require("@angular-devkit/schematics");
1897
1897
 
1898
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
1898
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
1899
1899
  var import_typescript = __toESM(require("typescript"), 1);
1900
1900
 
1901
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
1901
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
1902
1902
  var InvalidFileSystem = class {
1903
1903
  exists(path4) {
1904
1904
  throw makeError();
@@ -1986,7 +1986,7 @@ function makeError() {
1986
1986
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
1987
1987
  }
1988
1988
 
1989
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
1989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
1990
1990
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
1991
1991
  function stripExtension(path4) {
1992
1992
  return path4.replace(TS_DTS_JS_EXTENSION, "");
@@ -1999,7 +1999,7 @@ function getSourceFileOrError(program, fileName) {
1999
1999
  return sf;
2000
2000
  }
2001
2001
 
2002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2002
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2003
2003
  var fs = new InvalidFileSystem();
2004
2004
  function getFileSystem() {
2005
2005
  return fs;
@@ -2043,7 +2043,7 @@ function toRelativeImport(relativePath) {
2043
2043
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
2044
2044
  }
2045
2045
 
2046
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2047
2047
  var LogicalProjectPath = {
2048
2048
  relativePathBetween: function(from, to) {
2049
2049
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -2089,7 +2089,7 @@ function isWithinBasePath(base, path4) {
2089
2089
  return isLocalRelativePath(relative(base, path4));
2090
2090
  }
2091
2091
 
2092
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2093
2093
  var import_fs = __toESM(require("fs"), 1);
2094
2094
  var import_module = require("module");
2095
2095
  var p = __toESM(require("path"), 1);
@@ -2197,7 +2197,7 @@ function toggleCase(str) {
2197
2197
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
2198
2198
  }
2199
2199
 
2200
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
2200
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
2201
2201
  var _SELECTOR_REGEXP = new RegExp(
2202
2202
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
2203
2203
  "g"
@@ -2505,7 +2505,7 @@ var SelectorContext = class {
2505
2505
  }
2506
2506
  };
2507
2507
 
2508
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
2508
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
2509
2509
  var emitDistinctChangesOnlyDefaultValue = true;
2510
2510
  var ViewEncapsulation;
2511
2511
  (function(ViewEncapsulation2) {
@@ -2574,7 +2574,7 @@ function parseSelectorToR3Selector(selector) {
2574
2574
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
2575
2575
  }
2576
2576
 
2577
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2577
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2578
2578
  var output_ast_exports = {};
2579
2579
  __export(output_ast_exports, {
2580
2580
  ArrayType: () => ArrayType,
@@ -2662,7 +2662,7 @@ __export(output_ast_exports, {
2662
2662
  variable: () => variable
2663
2663
  });
2664
2664
 
2665
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
2665
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
2666
2666
  var textEncoder;
2667
2667
  function digest(message) {
2668
2668
  return message.id || computeDigest(message);
@@ -2905,7 +2905,7 @@ function wordAt(bytes, index, endian) {
2905
2905
  return word;
2906
2906
  }
2907
2907
 
2908
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2908
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2909
2909
  var TypeModifier;
2910
2910
  (function(TypeModifier2) {
2911
2911
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -4100,7 +4100,7 @@ function serializeTags(tags) {
4100
4100
  return out;
4101
4101
  }
4102
4102
 
4103
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4103
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4104
4104
  var CONSTANT_PREFIX = "_c";
4105
4105
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
4106
4106
  var KEY_CONTEXT = {};
@@ -4288,7 +4288,7 @@ function isLongStringLiteral(expr) {
4288
4288
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
4289
4289
  }
4290
4290
 
4291
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4291
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4292
4292
  var CORE = "@angular/core";
4293
4293
  var _Identifiers = class {
4294
4294
  };
@@ -5185,7 +5185,7 @@ var Identifiers = _Identifiers;
5185
5185
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
5186
5186
  })();
5187
5187
 
5188
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
5188
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
5189
5189
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
5190
5190
  function dashCaseToCamelCase(input) {
5191
5191
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -5262,7 +5262,7 @@ var Version = class {
5262
5262
  };
5263
5263
  var _global = globalThis;
5264
5264
 
5265
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5265
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5266
5266
  var VERSION = 3;
5267
5267
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
5268
5268
  var SourceMapGenerator = class {
@@ -5391,7 +5391,7 @@ function toBase64Digit(value) {
5391
5391
  return B64_DIGITS[value];
5392
5392
  }
5393
5393
 
5394
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5395
5395
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
5396
5396
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
5397
5397
  var _INDENT_WITH = " ";
@@ -5879,7 +5879,7 @@ function _createIndent(count) {
5879
5879
  return res;
5880
5880
  }
5881
5881
 
5882
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
5882
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
5883
5883
  function typeWithParameters(type, numParams) {
5884
5884
  if (numParams === 0) {
5885
5885
  return expressionType(type);
@@ -5937,7 +5937,7 @@ function generateForwardRef(expr) {
5937
5937
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
5938
5938
  }
5939
5939
 
5940
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
5940
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
5941
5941
  var R3FactoryDelegateType;
5942
5942
  (function(R3FactoryDelegateType2) {
5943
5943
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -6082,7 +6082,7 @@ function getInjectFn(target) {
6082
6082
  }
6083
6083
  }
6084
6084
 
6085
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6085
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6086
6086
  var ParserError = class {
6087
6087
  constructor(message, input, errLocation, ctxLocation) {
6088
6088
  this.input = input;
@@ -6520,7 +6520,7 @@ var BoundElementProperty = class {
6520
6520
  }
6521
6521
  };
6522
6522
 
6523
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
6523
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
6524
6524
  var TagContentType;
6525
6525
  (function(TagContentType2) {
6526
6526
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -6557,7 +6557,7 @@ function mergeNsAndName(prefix, localName) {
6557
6557
  return prefix ? `:${prefix}:${localName}` : localName;
6558
6558
  }
6559
6559
 
6560
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
6560
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
6561
6561
  var Comment = class {
6562
6562
  constructor(value, sourceSpan) {
6563
6563
  this.value = value;
@@ -7027,7 +7027,7 @@ function visitAll(visitor, nodes) {
7027
7027
  return result;
7028
7028
  }
7029
7029
 
7030
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7030
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7031
7031
  var Message = class {
7032
7032
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
7033
7033
  this.nodes = nodes;
@@ -7218,7 +7218,7 @@ var LocalizeMessageStringVisitor = class {
7218
7218
  }
7219
7219
  };
7220
7220
 
7221
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7221
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7222
7222
  var Serializer = class {
7223
7223
  createNameMapper(message) {
7224
7224
  return null;
@@ -7275,7 +7275,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
7275
7275
  }
7276
7276
  };
7277
7277
 
7278
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7278
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7279
7279
  var _Visitor = class {
7280
7280
  visitTag(tag) {
7281
7281
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -7363,7 +7363,7 @@ function escapeXml(text2) {
7363
7363
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
7364
7364
  }
7365
7365
 
7366
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7366
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7367
7367
  var _XMB_HANDLER = "angular";
7368
7368
  var _MESSAGES_TAG = "messagebundle";
7369
7369
  var _MESSAGE_TAG = "msg";
@@ -7525,7 +7525,7 @@ function toPublicName(internalName) {
7525
7525
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
7526
7526
  }
7527
7527
 
7528
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
7528
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
7529
7529
  var I18N_ATTR = "i18n";
7530
7530
  var I18N_ATTR_PREFIX = "i18n-";
7531
7531
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -7565,7 +7565,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
7565
7565
  return postfix ? `${raw}_${postfix}` : raw;
7566
7566
  }
7567
7567
 
7568
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
7568
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
7569
7569
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
7570
7570
  var TEMPORARY_NAME = "_t";
7571
7571
  var CONTEXT_NAME = "ctx";
@@ -7692,7 +7692,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
7692
7692
  return attributesMap;
7693
7693
  }
7694
7694
 
7695
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
7695
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
7696
7696
  function compileInjectable(meta, resolveForwardRefs) {
7697
7697
  let result = null;
7698
7698
  const factoryMeta = {
@@ -7779,7 +7779,7 @@ function createFactoryFunction(type) {
7779
7779
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
7780
7780
  }
7781
7781
 
7782
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
7782
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
7783
7783
  var UNUSABLE_INTERPOLATION_REGEXPS = [
7784
7784
  /@/,
7785
7785
  /^\s*$/,
@@ -7802,7 +7802,7 @@ function assertInterpolationSymbols(identifier, value) {
7802
7802
  }
7803
7803
  }
7804
7804
 
7805
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
7805
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
7806
7806
  var InterpolationConfig = class {
7807
7807
  static fromArray(markers) {
7808
7808
  if (!markers) {
@@ -7819,7 +7819,7 @@ var InterpolationConfig = class {
7819
7819
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
7820
7820
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
7821
7821
 
7822
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
7822
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
7823
7823
  var $EOF = 0;
7824
7824
  var $BSPACE = 8;
7825
7825
  var $TAB = 9;
@@ -7901,7 +7901,7 @@ function isQuote(code) {
7901
7901
  return code === $SQ || code === $DQ || code === $BT;
7902
7902
  }
7903
7903
 
7904
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
7904
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
7905
7905
  var ParseLocation = class {
7906
7906
  constructor(file, offset, line, col) {
7907
7907
  this.file = file;
@@ -8048,7 +8048,7 @@ function sanitizeIdentifier(name) {
8048
8048
  return name.replace(/\W/g, "_");
8049
8049
  }
8050
8050
 
8051
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8051
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8052
8052
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
8053
8053
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8054
8054
  constructor() {
@@ -8141,7 +8141,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8141
8141
  }
8142
8142
  };
8143
8143
 
8144
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8144
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8145
8145
  var policy;
8146
8146
  function getPolicy() {
8147
8147
  if (policy === void 0) {
@@ -8179,7 +8179,7 @@ function newTrustedFunctionForJIT(...args) {
8179
8179
  return fn2.bind(_global);
8180
8180
  }
8181
8181
 
8182
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8182
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8183
8183
  var JitEvaluator = class {
8184
8184
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
8185
8185
  const converter = new JitEmitterVisitor(refResolver);
@@ -8267,7 +8267,7 @@ function isUseStrictStatement(statement) {
8267
8267
  return statement.isEquivalent(literal("use strict").toStmt());
8268
8268
  }
8269
8269
 
8270
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8270
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8271
8271
  function compileInjector(meta) {
8272
8272
  const definitionMap = new DefinitionMap();
8273
8273
  if (meta.providers !== null) {
@@ -8284,7 +8284,7 @@ function createInjectorType(meta) {
8284
8284
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
8285
8285
  }
8286
8286
 
8287
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8287
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8288
8288
  var R3JitReflector = class {
8289
8289
  constructor(context) {
8290
8290
  this.context = context;
@@ -8300,7 +8300,7 @@ var R3JitReflector = class {
8300
8300
  }
8301
8301
  };
8302
8302
 
8303
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8303
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8304
8304
  var R3SelectorScopeMode;
8305
8305
  (function(R3SelectorScopeMode2) {
8306
8306
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -8435,7 +8435,7 @@ function tupleOfTypes(types) {
8435
8435
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
8436
8436
  }
8437
8437
 
8438
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
8438
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
8439
8439
  function compilePipeFromMetadata(metadata) {
8440
8440
  const definitionMapValues = [];
8441
8441
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -8456,7 +8456,7 @@ function createPipeType(metadata) {
8456
8456
  ]));
8457
8457
  }
8458
8458
 
8459
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
8459
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
8460
8460
  var R3TemplateDependencyKind;
8461
8461
  (function(R3TemplateDependencyKind2) {
8462
8462
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -8464,7 +8464,7 @@ var R3TemplateDependencyKind;
8464
8464
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
8465
8465
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
8466
8466
 
8467
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
8467
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
8468
8468
  var animationKeywords = /* @__PURE__ */ new Set([
8469
8469
  "inherit",
8470
8470
  "initial",
@@ -8944,7 +8944,7 @@ function repeatGroups(groups, multiples) {
8944
8944
  }
8945
8945
  }
8946
8946
 
8947
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
8947
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
8948
8948
  var OpKind;
8949
8949
  (function(OpKind2) {
8950
8950
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -9102,7 +9102,7 @@ var TemplateKind;
9102
9102
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
9103
9103
  })(TemplateKind || (TemplateKind = {}));
9104
9104
 
9105
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9105
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9106
9106
  var ConsumesSlot = Symbol("ConsumesSlot");
9107
9107
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
9108
9108
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -9130,7 +9130,7 @@ function hasUsesVarOffsetTrait(expr) {
9130
9130
  return expr[UsesVarOffset] === true;
9131
9131
  }
9132
9132
 
9133
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9133
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9134
9134
  function createStatementOp(statement) {
9135
9135
  return __spreadValues({
9136
9136
  kind: OpKind.Statement,
@@ -9152,7 +9152,7 @@ var NEW_OP = {
9152
9152
  next: null
9153
9153
  };
9154
9154
 
9155
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9156
9156
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
9157
9157
  return __spreadValues(__spreadValues(__spreadValues({
9158
9158
  kind: OpKind.InterpolateText,
@@ -9341,7 +9341,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
9341
9341
  }, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
9342
9342
  }
9343
9343
 
9344
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9344
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9345
9345
  var _a;
9346
9346
  var _b;
9347
9347
  var _c;
@@ -10259,7 +10259,7 @@ function isStringLiteral(expr) {
10259
10259
  return expr instanceof LiteralExpr && typeof expr.value === "string";
10260
10260
  }
10261
10261
 
10262
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10262
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10263
10263
  var _OpList = class {
10264
10264
  constructor() {
10265
10265
  this.debugListId = _OpList.nextListId++;
@@ -10450,14 +10450,14 @@ var OpList = _OpList;
10450
10450
  _OpList.nextListId = 0;
10451
10451
  })();
10452
10452
 
10453
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10453
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10454
10454
  var SlotHandle = class {
10455
10455
  constructor() {
10456
10456
  this.slot = null;
10457
10457
  }
10458
10458
  };
10459
10459
 
10460
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10461
10461
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
10462
10462
  OpKind.Element,
10463
10463
  OpKind.ElementStart,
@@ -10770,7 +10770,7 @@ function createI18nAttributesOp(xref, handle, target) {
10770
10770
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
10771
10771
  }
10772
10772
 
10773
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
10773
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
10774
10774
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
10775
10775
  return __spreadValues(__spreadValues({
10776
10776
  kind: OpKind.HostProperty,
@@ -10784,10 +10784,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
10784
10784
  }, TRAIT_CONSUMES_VARS), NEW_OP);
10785
10785
  }
10786
10786
 
10787
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
10787
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
10788
10788
  var CTX_REF = "CTX_REF_MARKER";
10789
10789
 
10790
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
10790
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
10791
10791
  var CompilationJobKind;
10792
10792
  (function(CompilationJobKind2) {
10793
10793
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -10895,7 +10895,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
10895
10895
  }
10896
10896
  };
10897
10897
 
10898
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
10898
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
10899
10899
  function deleteAnyCasts(job) {
10900
10900
  for (const unit of job.units) {
10901
10901
  for (const op of unit.ops()) {
@@ -10913,7 +10913,7 @@ function removeAnys(e) {
10913
10913
  return e;
10914
10914
  }
10915
10915
 
10916
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
10916
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
10917
10917
  function applyI18nExpressions(job) {
10918
10918
  const i18nContexts = /* @__PURE__ */ new Map();
10919
10919
  for (const unit of job.units) {
@@ -10956,7 +10956,7 @@ function needsApplication(i18nContexts, op) {
10956
10956
  return false;
10957
10957
  }
10958
10958
 
10959
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
10959
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
10960
10960
  function assignI18nSlotDependencies(job) {
10961
10961
  for (const unit of job.units) {
10962
10962
  let updateOp = unit.update.head;
@@ -11001,7 +11001,7 @@ function assignI18nSlotDependencies(job) {
11001
11001
  }
11002
11002
  }
11003
11003
 
11004
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11004
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11005
11005
  function createOpXrefMap(unit) {
11006
11006
  const map = /* @__PURE__ */ new Map();
11007
11007
  for (const op of unit.create) {
@@ -11016,7 +11016,7 @@ function createOpXrefMap(unit) {
11016
11016
  return map;
11017
11017
  }
11018
11018
 
11019
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11019
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11020
11020
  function extractAttributes(job) {
11021
11021
  for (const unit of job.units) {
11022
11022
  const elements = createOpXrefMap(unit);
@@ -11145,7 +11145,7 @@ function extractAttributeOp(unit, op, elements) {
11145
11145
  }
11146
11146
  }
11147
11147
 
11148
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11148
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11149
11149
  function lookupElement2(elements, xref) {
11150
11150
  const el = elements.get(xref);
11151
11151
  if (el === void 0) {
@@ -11202,7 +11202,7 @@ function specializeBindings(job) {
11202
11202
  }
11203
11203
  }
11204
11204
 
11205
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11205
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11206
11206
  var CHAINABLE = /* @__PURE__ */ new Set([
11207
11207
  Identifiers.attribute,
11208
11208
  Identifiers.classProp,
@@ -11271,7 +11271,7 @@ function chainOperationsInList(opList) {
11271
11271
  }
11272
11272
  }
11273
11273
 
11274
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11274
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11275
11275
  function collapseSingletonInterpolations(job) {
11276
11276
  for (const unit of job.units) {
11277
11277
  for (const op of unit.update) {
@@ -11283,7 +11283,7 @@ function collapseSingletonInterpolations(job) {
11283
11283
  }
11284
11284
  }
11285
11285
 
11286
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11287
11287
  function generateConditionalExpressions(job) {
11288
11288
  for (const unit of job.units) {
11289
11289
  for (const op of unit.ops()) {
@@ -11320,7 +11320,7 @@ function generateConditionalExpressions(job) {
11320
11320
  }
11321
11321
  }
11322
11322
 
11323
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11323
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11324
11324
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
11325
11325
  ["&&", BinaryOperator.And],
11326
11326
  [">", BinaryOperator.Bigger],
@@ -11377,7 +11377,7 @@ function literalOrArrayLiteral(value) {
11377
11377
  return literal(value);
11378
11378
  }
11379
11379
 
11380
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11380
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11381
11381
  function collectElementConsts(job) {
11382
11382
  const allElementAttributes = /* @__PURE__ */ new Map();
11383
11383
  for (const unit of job.units) {
@@ -11546,7 +11546,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
11546
11546
  return literalArr(attrArray);
11547
11547
  }
11548
11548
 
11549
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
11549
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
11550
11550
  function convertI18nBindings(job) {
11551
11551
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
11552
11552
  for (const unit of job.units) {
@@ -11587,7 +11587,7 @@ function convertI18nBindings(job) {
11587
11587
  }
11588
11588
  }
11589
11589
 
11590
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
11590
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
11591
11591
  function resolveDeferDepsFns(job) {
11592
11592
  var _a2;
11593
11593
  for (const unit of job.units) {
@@ -11612,7 +11612,7 @@ function resolveDeferDepsFns(job) {
11612
11612
  }
11613
11613
  }
11614
11614
 
11615
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
11615
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
11616
11616
  function createI18nContexts(job) {
11617
11617
  const attrContextByMessage = /* @__PURE__ */ new Map();
11618
11618
  for (const unit of job.units) {
@@ -11690,7 +11690,7 @@ function createI18nContexts(job) {
11690
11690
  }
11691
11691
  }
11692
11692
 
11693
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
11693
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
11694
11694
  function deduplicateTextBindings(job) {
11695
11695
  const seen = /* @__PURE__ */ new Map();
11696
11696
  for (const unit of job.units) {
@@ -11712,7 +11712,7 @@ function deduplicateTextBindings(job) {
11712
11712
  }
11713
11713
  }
11714
11714
 
11715
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
11715
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
11716
11716
  function configureDeferInstructions(job) {
11717
11717
  for (const unit of job.units) {
11718
11718
  for (const op of unit.create) {
@@ -11729,7 +11729,7 @@ function configureDeferInstructions(job) {
11729
11729
  }
11730
11730
  }
11731
11731
 
11732
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
11732
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
11733
11733
  function resolveDeferTargetNames(job) {
11734
11734
  const scopes = /* @__PURE__ */ new Map();
11735
11735
  function getScopeForView2(view) {
@@ -11823,7 +11823,7 @@ var Scope = class {
11823
11823
  }
11824
11824
  };
11825
11825
 
11826
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
11826
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
11827
11827
  var REPLACEMENTS = /* @__PURE__ */ new Map([
11828
11828
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
11829
11829
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -11850,7 +11850,7 @@ function collapseEmptyInstructions(job) {
11850
11850
  }
11851
11851
  }
11852
11852
 
11853
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
11853
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
11854
11854
  function expandSafeReads(job) {
11855
11855
  for (const unit of job.units) {
11856
11856
  for (const op of unit.ops()) {
@@ -11986,7 +11986,7 @@ function ternaryTransform(e) {
11986
11986
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
11987
11987
  }
11988
11988
 
11989
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
11989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
11990
11990
  var ESCAPE = "\uFFFD";
11991
11991
  var ELEMENT_MARKER = "#";
11992
11992
  var TEMPLATE_MARKER = "*";
@@ -12122,7 +12122,7 @@ function formatValue(value) {
12122
12122
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
12123
12123
  }
12124
12124
 
12125
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12125
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12126
12126
  function generateAdvance(job) {
12127
12127
  for (const unit of job.units) {
12128
12128
  const slotMap = /* @__PURE__ */ new Map();
@@ -12165,7 +12165,7 @@ function generateAdvance(job) {
12165
12165
  }
12166
12166
  }
12167
12167
 
12168
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12169
12169
  function generateProjectionDefs(job) {
12170
12170
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
12171
12171
  const selectors = [];
@@ -12189,7 +12189,7 @@ function generateProjectionDefs(job) {
12189
12189
  }
12190
12190
  }
12191
12191
 
12192
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12192
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12193
12193
  function generateVariables(job) {
12194
12194
  recursivelyProcessView(job.root, null);
12195
12195
  }
@@ -12304,7 +12304,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
12304
12304
  return newOps;
12305
12305
  }
12306
12306
 
12307
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12307
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12308
12308
  function collectConstExpressions(job) {
12309
12309
  for (const unit of job.units) {
12310
12310
  for (const op of unit.ops()) {
@@ -12318,7 +12318,7 @@ function collectConstExpressions(job) {
12318
12318
  }
12319
12319
  }
12320
12320
 
12321
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12321
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12322
12322
  var STYLE_DOT = "style.";
12323
12323
  var CLASS_DOT = "class.";
12324
12324
  var STYLE_BANG = "style!";
@@ -12376,7 +12376,7 @@ function parseProperty(name) {
12376
12376
  return { property: property2, suffix };
12377
12377
  }
12378
12378
 
12379
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12379
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12380
12380
  function mapLiteral(obj, quoted = false) {
12381
12381
  return literalMap(Object.keys(obj).map((key) => ({
12382
12382
  key,
@@ -12385,7 +12385,7 @@ function mapLiteral(obj, quoted = false) {
12385
12385
  })));
12386
12386
  }
12387
12387
 
12388
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12388
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12389
12389
  var IcuSerializerVisitor = class {
12390
12390
  visitText(text2) {
12391
12391
  return text2.value;
@@ -12419,7 +12419,7 @@ function serializeIcuNode(icu) {
12419
12419
  return icu.visit(serializer);
12420
12420
  }
12421
12421
 
12422
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12422
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12423
12423
  var TokenType;
12424
12424
  (function(TokenType2) {
12425
12425
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -12780,7 +12780,7 @@ function parseIntAutoRadix(text2) {
12780
12780
  return result;
12781
12781
  }
12782
12782
 
12783
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
12783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
12784
12784
  var SplitInterpolation = class {
12785
12785
  constructor(strings, expressions, offsets) {
12786
12786
  this.strings = strings;
@@ -13664,7 +13664,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
13664
13664
  return offsetMap;
13665
13665
  }
13666
13666
 
13667
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
13667
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
13668
13668
  var NodeWithI18n = class {
13669
13669
  constructor(sourceSpan, i18n2) {
13670
13670
  this.sourceSpan = sourceSpan;
@@ -13787,7 +13787,7 @@ function visitAll2(visitor, nodes, context = null) {
13787
13787
  return result;
13788
13788
  }
13789
13789
 
13790
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
13790
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
13791
13791
  var _SECURITY_SCHEMA;
13792
13792
  function SECURITY_SCHEMA() {
13793
13793
  if (!_SECURITY_SCHEMA) {
@@ -13848,11 +13848,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
13848
13848
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
13849
13849
  }
13850
13850
 
13851
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
13851
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
13852
13852
  var ElementSchemaRegistry = class {
13853
13853
  };
13854
13854
 
13855
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
13855
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
13856
13856
  var BOOLEAN = "boolean";
13857
13857
  var NUMBER = "number";
13858
13858
  var STRING = "string";
@@ -14235,7 +14235,7 @@ function _isPixelDimensionStyle(prop) {
14235
14235
  }
14236
14236
  }
14237
14237
 
14238
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14238
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14239
14239
  var HtmlTagDefinition = class {
14240
14240
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
14241
14241
  this.closedByChildren = {};
@@ -14371,7 +14371,7 @@ function getHtmlTagDefinition(tagName) {
14371
14371
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
14372
14372
  }
14373
14373
 
14374
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14374
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14375
14375
  var TAG_TO_PLACEHOLDER_NAMES = {
14376
14376
  "A": "LINK",
14377
14377
  "B": "BOLD_TEXT",
@@ -14493,7 +14493,7 @@ var PlaceholderRegistry = class {
14493
14493
  }
14494
14494
  };
14495
14495
 
14496
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14496
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14497
14497
  var _expParser = new Parser(new Lexer());
14498
14498
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
14499
14499
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -14675,14 +14675,14 @@ function extractPlaceholderName(input) {
14675
14675
  return input.split(_CUSTOM_PH_EXP)[2];
14676
14676
  }
14677
14677
 
14678
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
14678
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
14679
14679
  var I18nError = class extends ParseError {
14680
14680
  constructor(span, msg) {
14681
14681
  super(span, msg);
14682
14682
  }
14683
14683
  };
14684
14684
 
14685
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
14685
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
14686
14686
  var NAMED_ENTITIES = {
14687
14687
  "AElig": "\xC6",
14688
14688
  "AMP": "&",
@@ -16813,7 +16813,7 @@ var NAMED_ENTITIES = {
16813
16813
  var NGSP_UNICODE = "\uE500";
16814
16814
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
16815
16815
 
16816
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
16816
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
16817
16817
  var TokenError = class extends ParseError {
16818
16818
  constructor(errorMsg, tokenType, span) {
16819
16819
  super(span, errorMsg);
@@ -16855,7 +16855,7 @@ var _ControlFlowError = class {
16855
16855
  };
16856
16856
  var _Tokenizer = class {
16857
16857
  constructor(_file, _getTagDefinition, options) {
16858
- var _a2;
16858
+ var _a2, _b2;
16859
16859
  this._getTagDefinition = _getTagDefinition;
16860
16860
  this._currentTokenStart = null;
16861
16861
  this._currentTokenType = null;
@@ -16877,7 +16877,7 @@ var _Tokenizer = class {
16877
16877
  this._preserveLineEndings = options.preserveLineEndings || false;
16878
16878
  this._i18nNormalizeLineEndingsInICUs = options.i18nNormalizeLineEndingsInICUs || false;
16879
16879
  this._tokenizeBlocks = (_a2 = options.tokenizeBlocks) != null ? _a2 : true;
16880
- this._tokenizeLet = options.tokenizeLet || false;
16880
+ this._tokenizeLet = (_b2 = options.tokenizeLet) != null ? _b2 : true;
16881
16881
  try {
16882
16882
  this._cursor.init();
16883
16883
  } catch (e) {
@@ -17803,7 +17803,7 @@ var CursorError = class {
17803
17803
  }
17804
17804
  };
17805
17805
 
17806
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
17806
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
17807
17807
  var TreeError = class extends ParseError {
17808
17808
  static create(elementName, span, msg) {
17809
17809
  return new TreeError(elementName, span, msg);
@@ -18231,7 +18231,7 @@ function decodeEntity(match, entity) {
18231
18231
  return match;
18232
18232
  }
18233
18233
 
18234
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18234
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18235
18235
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
18236
18236
  "iframe|srcdoc",
18237
18237
  "*|innerhtml",
@@ -18246,7 +18246,7 @@ function isTrustedTypesSink(tagName, propName) {
18246
18246
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
18247
18247
  }
18248
18248
 
18249
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18249
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18250
18250
  var setI18nRefs = (htmlNode, i18nNode) => {
18251
18251
  if (htmlNode instanceof NodeWithI18n) {
18252
18252
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -18406,7 +18406,7 @@ function i18nMetaToJSDoc(meta) {
18406
18406
  return jsDocComment(tags);
18407
18407
  }
18408
18408
 
18409
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18409
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18410
18410
  var GOOG_GET_MSG = "goog.getMsg";
18411
18411
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
18412
18412
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -18457,7 +18457,7 @@ function serializeI18nMessageForGetMsg(message) {
18457
18457
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
18458
18458
  }
18459
18459
 
18460
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18461
18461
  function createLocalizeStatements(variable2, message, params) {
18462
18462
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
18463
18463
  const sourceSpan = getSourceSpan(message);
@@ -18546,7 +18546,7 @@ function createEmptyMessagePart(location) {
18546
18546
  return new LiteralPiece("", new ParseSourceSpan(location, location));
18547
18547
  }
18548
18548
 
18549
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18549
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18550
18550
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
18551
18551
  var TRANSLATION_VAR_PREFIX = "i18n_";
18552
18552
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -18717,7 +18717,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
18717
18717
  return variable(name);
18718
18718
  }
18719
18719
 
18720
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
18720
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
18721
18721
  function convertI18nText(job) {
18722
18722
  var _a2, _b2, _c2;
18723
18723
  for (const unit of job.units) {
@@ -18787,7 +18787,7 @@ function convertI18nText(job) {
18787
18787
  }
18788
18788
  }
18789
18789
 
18790
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
18790
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
18791
18791
  function liftLocalRefs(job) {
18792
18792
  for (const unit of job.units) {
18793
18793
  for (const op of unit.create) {
@@ -18817,7 +18817,7 @@ function serializeLocalRefs(refs) {
18817
18817
  return literalArr(constRefs);
18818
18818
  }
18819
18819
 
18820
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
18820
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
18821
18821
  function emitNamespaceChanges(job) {
18822
18822
  for (const unit of job.units) {
18823
18823
  let activeNamespace = Namespace.HTML;
@@ -18833,7 +18833,7 @@ function emitNamespaceChanges(job) {
18833
18833
  }
18834
18834
  }
18835
18835
 
18836
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
18836
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
18837
18837
  function parse(value) {
18838
18838
  const styles = [];
18839
18839
  let i = 0;
@@ -18927,7 +18927,7 @@ function parseExtractedStyles(job) {
18927
18927
  }
18928
18928
  }
18929
18929
 
18930
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
18930
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
18931
18931
  function nameFunctionsAndVariables(job) {
18932
18932
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
18933
18933
  }
@@ -19071,7 +19071,7 @@ function stripImportant(name) {
19071
19071
  return name;
19072
19072
  }
19073
19073
 
19074
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19074
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19075
19075
  function mergeNextContextExpressions(job) {
19076
19076
  for (const unit of job.units) {
19077
19077
  for (const op of unit.create) {
@@ -19118,7 +19118,7 @@ function mergeNextContextsInOps(ops) {
19118
19118
  }
19119
19119
  }
19120
19120
 
19121
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19121
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19122
19122
  var CONTAINER_TAG = "ng-container";
19123
19123
  function generateNgContainerOps(job) {
19124
19124
  for (const unit of job.units) {
@@ -19135,7 +19135,7 @@ function generateNgContainerOps(job) {
19135
19135
  }
19136
19136
  }
19137
19137
 
19138
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19138
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19139
19139
  function lookupElement3(elements, xref) {
19140
19140
  const el = elements.get(xref);
19141
19141
  if (el === void 0) {
@@ -19165,7 +19165,7 @@ function disableBindings(job) {
19165
19165
  }
19166
19166
  }
19167
19167
 
19168
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19169
19169
  function generateNullishCoalesceExpressions(job) {
19170
19170
  for (const unit of job.units) {
19171
19171
  for (const op of unit.ops()) {
@@ -19181,7 +19181,7 @@ function generateNullishCoalesceExpressions(job) {
19181
19181
  }
19182
19182
  }
19183
19183
 
19184
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19184
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19185
19185
  function kindTest(kind) {
19186
19186
  return (op) => op.kind === kind;
19187
19187
  }
@@ -19271,7 +19271,7 @@ function keepLast(ops) {
19271
19271
  return ops.slice(ops.length - 1);
19272
19272
  }
19273
19273
 
19274
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19274
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19275
19275
  function removeContentSelectors(job) {
19276
19276
  for (const unit of job.units) {
19277
19277
  const elements = createOpXrefMap(unit);
@@ -19298,7 +19298,7 @@ function lookupInXrefMap(map, xref) {
19298
19298
  return el;
19299
19299
  }
19300
19300
 
19301
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19302
19302
  function createPipes(job) {
19303
19303
  for (const unit of job.units) {
19304
19304
  processPipeBindingsInView(unit);
@@ -19346,7 +19346,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
19346
19346
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
19347
19347
  }
19348
19348
 
19349
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19349
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19350
19350
  function createVariadicPipes(job) {
19351
19351
  for (const unit of job.units) {
19352
19352
  for (const op of unit.update) {
@@ -19363,7 +19363,7 @@ function createVariadicPipes(job) {
19363
19363
  }
19364
19364
  }
19365
19365
 
19366
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19366
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19367
19367
  function propagateI18nBlocks(job) {
19368
19368
  propagateI18nBlocksToTemplates(job.root, 0);
19369
19369
  }
@@ -19417,7 +19417,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
19417
19417
  }
19418
19418
  }
19419
19419
 
19420
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19420
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19421
19421
  function extractPureFunctions(job) {
19422
19422
  for (const view of job.units) {
19423
19423
  for (const op of view.ops()) {
@@ -19459,7 +19459,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
19459
19459
  }
19460
19460
  };
19461
19461
 
19462
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19462
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19463
19463
  function generatePureLiteralStructures(job) {
19464
19464
  for (const unit of job.units) {
19465
19465
  for (const op of unit.update) {
@@ -19506,7 +19506,7 @@ function transformLiteralMap(expr) {
19506
19506
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
19507
19507
  }
19508
19508
 
19509
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19509
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19510
19510
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
19511
19511
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
19512
19512
  }
@@ -20038,7 +20038,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
20038
20038
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
20039
20039
  }
20040
20040
 
20041
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20041
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20042
20042
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
20043
20043
  ["window", Identifiers.resolveWindow],
20044
20044
  ["document", Identifiers.resolveDocument],
@@ -20403,7 +20403,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
20403
20403
  return fn(params, handlerStmts, void 0, void 0, name);
20404
20404
  }
20405
20405
 
20406
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20406
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20407
20407
  function removeEmptyBindings(job) {
20408
20408
  for (const unit of job.units) {
20409
20409
  for (const op of unit.update) {
@@ -20424,7 +20424,7 @@ function removeEmptyBindings(job) {
20424
20424
  }
20425
20425
  }
20426
20426
 
20427
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20427
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20428
20428
  function removeI18nContexts(job) {
20429
20429
  for (const unit of job.units) {
20430
20430
  for (const op of unit.create) {
@@ -20440,7 +20440,7 @@ function removeI18nContexts(job) {
20440
20440
  }
20441
20441
  }
20442
20442
 
20443
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20443
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20444
20444
  function removeUnusedI18nAttributesOps(job) {
20445
20445
  for (const unit of job.units) {
20446
20446
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -20462,7 +20462,7 @@ function removeUnusedI18nAttributesOps(job) {
20462
20462
  }
20463
20463
  }
20464
20464
 
20465
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20465
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20466
20466
  function resolveContexts(job) {
20467
20467
  for (const unit of job.units) {
20468
20468
  processLexicalScope(unit, unit.create);
@@ -20504,7 +20504,7 @@ function processLexicalScope(view, ops) {
20504
20504
  }
20505
20505
  }
20506
20506
 
20507
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20507
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20508
20508
  function resolveDollarEvent(job) {
20509
20509
  for (const unit of job.units) {
20510
20510
  transformDollarEvent(unit.create);
@@ -20527,7 +20527,7 @@ function transformDollarEvent(ops) {
20527
20527
  }
20528
20528
  }
20529
20529
 
20530
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20530
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20531
20531
  function resolveI18nElementPlaceholders(job) {
20532
20532
  const i18nContexts = /* @__PURE__ */ new Map();
20533
20533
  const elements = /* @__PURE__ */ new Map();
@@ -20706,7 +20706,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
20706
20706
  params.set(placeholder, values);
20707
20707
  }
20708
20708
 
20709
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
20709
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
20710
20710
  function resolveI18nExpressionPlaceholders(job) {
20711
20711
  var _a2;
20712
20712
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -20759,7 +20759,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
20759
20759
  }
20760
20760
  }
20761
20761
 
20762
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
20762
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
20763
20763
  function resolveNames(job) {
20764
20764
  for (const unit of job.units) {
20765
20765
  processLexicalScope2(unit, unit.create, null);
@@ -20824,7 +20824,7 @@ function processLexicalScope2(unit, ops, savedView) {
20824
20824
  }
20825
20825
  }
20826
20826
 
20827
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
20827
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
20828
20828
  var sanitizerFns = /* @__PURE__ */ new Map([
20829
20829
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
20830
20830
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -20894,7 +20894,7 @@ function getOnlySecurityContext(securityContext) {
20894
20894
  return securityContext;
20895
20895
  }
20896
20896
 
20897
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
20897
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
20898
20898
  function transformTwoWayBindingSet(job) {
20899
20899
  for (const unit of job.units) {
20900
20900
  for (const op of unit.create) {
@@ -20917,7 +20917,7 @@ function transformTwoWayBindingSet(job) {
20917
20917
  }
20918
20918
  }
20919
20919
 
20920
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
20920
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
20921
20921
  function saveAndRestoreView(job) {
20922
20922
  for (const unit of job.units) {
20923
20923
  unit.create.prepend([
@@ -20962,7 +20962,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
20962
20962
  }
20963
20963
  }
20964
20964
 
20965
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
20965
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
20966
20966
  function allocateSlots(job) {
20967
20967
  const slotMap = /* @__PURE__ */ new Map();
20968
20968
  for (const unit of job.units) {
@@ -20987,7 +20987,7 @@ function allocateSlots(job) {
20987
20987
  }
20988
20988
  }
20989
20989
 
20990
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
20990
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
20991
20991
  function specializeStyleBindings(job) {
20992
20992
  for (const unit of job.units) {
20993
20993
  for (const op of unit.update) {
@@ -21017,7 +21017,7 @@ function specializeStyleBindings(job) {
21017
21017
  }
21018
21018
  }
21019
21019
 
21020
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21020
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21021
21021
  function generateTemporaryVariables(job) {
21022
21022
  for (const unit of job.units) {
21023
21023
  unit.create.prepend(generateTemporaries(unit.create));
@@ -21075,7 +21075,7 @@ function assignName(names, expr) {
21075
21075
  expr.name = name;
21076
21076
  }
21077
21077
 
21078
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21078
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21079
21079
  function generateTrackFns(job) {
21080
21080
  for (const unit of job.units) {
21081
21081
  for (const op of unit.create) {
@@ -21108,7 +21108,7 @@ function generateTrackFns(job) {
21108
21108
  }
21109
21109
  }
21110
21110
 
21111
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21111
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21112
21112
  function optimizeTrackFns(job) {
21113
21113
  for (const unit of job.units) {
21114
21114
  for (const op of unit.create) {
@@ -21158,7 +21158,7 @@ function isTrackByFunctionCall(rootView, expr) {
21158
21158
  return true;
21159
21159
  }
21160
21160
 
21161
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21161
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21162
21162
  function generateTrackVariables(job) {
21163
21163
  for (const unit of job.units) {
21164
21164
  for (const op of unit.create) {
@@ -21179,7 +21179,7 @@ function generateTrackVariables(job) {
21179
21179
  }
21180
21180
  }
21181
21181
 
21182
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21182
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21183
21183
  function countVariables(job) {
21184
21184
  for (const unit of job.units) {
21185
21185
  let varCount = 0;
@@ -21292,7 +21292,7 @@ function isSingletonInterpolation(expr) {
21292
21292
  return true;
21293
21293
  }
21294
21294
 
21295
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21295
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21296
21296
  function optimizeVariables(job) {
21297
21297
  for (const unit of job.units) {
21298
21298
  inlineAlwaysInlineVariables(unit.create);
@@ -21544,7 +21544,7 @@ function allowConservativeInlining(decl, target) {
21544
21544
  }
21545
21545
  }
21546
21546
 
21547
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21547
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21548
21548
  function wrapI18nIcus(job) {
21549
21549
  for (const unit of job.units) {
21550
21550
  let currentI18nOp = null;
@@ -21574,7 +21574,7 @@ function wrapI18nIcus(job) {
21574
21574
  }
21575
21575
  }
21576
21576
 
21577
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
21577
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
21578
21578
  function optimizeStoreLet(job) {
21579
21579
  const letUsedExternally = /* @__PURE__ */ new Set();
21580
21580
  for (const unit of job.units) {
@@ -21593,7 +21593,7 @@ function optimizeStoreLet(job) {
21593
21593
  }
21594
21594
  }
21595
21595
 
21596
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
21596
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
21597
21597
  function removeIllegalLetReferences(job) {
21598
21598
  for (const unit of job.units) {
21599
21599
  for (const op of unit.update) {
@@ -21610,7 +21610,7 @@ function removeIllegalLetReferences(job) {
21610
21610
  }
21611
21611
  }
21612
21612
 
21613
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
21613
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
21614
21614
  function generateLocalLetReferences(job) {
21615
21615
  for (const unit of job.units) {
21616
21616
  for (const op of unit.update) {
@@ -21627,7 +21627,7 @@ function generateLocalLetReferences(job) {
21627
21627
  }
21628
21628
  }
21629
21629
 
21630
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21630
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21631
21631
  var phases = [
21632
21632
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
21633
21633
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -21784,7 +21784,7 @@ function emitHostBindingFunction(job) {
21784
21784
  );
21785
21785
  }
21786
21786
 
21787
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
21787
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
21788
21788
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
21789
21789
  var domSchema = new DomElementSchemaRegistry();
21790
21790
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -22542,7 +22542,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
22542
22542
  return null;
22543
22543
  }
22544
22544
 
22545
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22545
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22546
22546
  function renderFlagCheckIfStmt(flags, statements) {
22547
22547
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
22548
22548
  }
@@ -22662,7 +22662,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
22662
22662
  ], INFERRED_TYPE, null, contentQueriesFnName);
22663
22663
  }
22664
22664
 
22665
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22665
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22666
22666
  var HtmlParser = class extends Parser2 {
22667
22667
  constructor() {
22668
22668
  super(getHtmlTagDefinition);
@@ -22672,7 +22672,7 @@ var HtmlParser = class extends Parser2 {
22672
22672
  }
22673
22673
  };
22674
22674
 
22675
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22675
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22676
22676
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
22677
22677
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
22678
22678
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -22741,7 +22741,7 @@ function visitAllWithSiblings(visitor, nodes) {
22741
22741
  return result;
22742
22742
  }
22743
22743
 
22744
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22744
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22745
22745
  var PROPERTY_PARTS_SEPARATOR = ".";
22746
22746
  var ATTRIBUTE_PREFIX = "attr";
22747
22747
  var CLASS_PREFIX = "class";
@@ -23095,7 +23095,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
23095
23095
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
23096
23096
  }
23097
23097
 
23098
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23098
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23099
23099
  function isStyleUrlResolvable(url) {
23100
23100
  if (url == null || url.length === 0 || url[0] == "/")
23101
23101
  return false;
@@ -23104,7 +23104,7 @@ function isStyleUrlResolvable(url) {
23104
23104
  }
23105
23105
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
23106
23106
 
23107
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23107
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23108
23108
  var NG_CONTENT_SELECT_ATTR = "select";
23109
23109
  var LINK_ELEMENT = "link";
23110
23110
  var LINK_STYLE_REL_ATTR = "rel";
@@ -23174,7 +23174,7 @@ function normalizeNgContentSelect(selectAttr) {
23174
23174
  return selectAttr;
23175
23175
  }
23176
23176
 
23177
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23177
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23178
23178
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
23179
23179
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
23180
23180
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -23497,7 +23497,7 @@ function stripOptionalParentheses(param, errors) {
23497
23497
  return expression.slice(start, end);
23498
23498
  }
23499
23499
 
23500
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23500
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23501
23501
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
23502
23502
  var SEPARATOR_PATTERN = /^\s$/;
23503
23503
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -23761,7 +23761,7 @@ function parseDeferredTime(value) {
23761
23761
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
23762
23762
  }
23763
23763
 
23764
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23764
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23765
23765
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
23766
23766
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
23767
23767
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -23896,7 +23896,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
23896
23896
  return { triggers, prefetchTriggers };
23897
23897
  }
23898
23898
 
23899
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
23899
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
23900
23900
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
23901
23901
  var KW_BIND_IDX = 1;
23902
23902
  var KW_LET_IDX = 2;
@@ -24363,7 +24363,7 @@ function textContents(node) {
24363
24363
  }
24364
24364
  }
24365
24365
 
24366
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24366
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24367
24367
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
24368
24368
  function parseTemplate(template2, templateUrl, options = {}) {
24369
24369
  var _a2, _b2;
@@ -24375,7 +24375,7 @@ function parseTemplate(template2, templateUrl, options = {}) {
24375
24375
  }, options), {
24376
24376
  tokenizeExpansionForms: true,
24377
24377
  tokenizeBlocks: (_a2 = options.enableBlockSyntax) != null ? _a2 : true,
24378
- tokenizeLet: (_b2 = options.enableLetSyntax) != null ? _b2 : false
24378
+ tokenizeLet: (_b2 = options.enableLetSyntax) != null ? _b2 : true
24379
24379
  }));
24380
24380
  if (!options.alwaysAttemptHtmlToR3AstConversion && parseResult.errors && parseResult.errors.length > 0) {
24381
24381
  const parsedTemplate2 = {
@@ -24442,7 +24442,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
24442
24442
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
24443
24443
  }
24444
24444
 
24445
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24445
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24446
24446
  var COMPONENT_VARIABLE = "%COMP%";
24447
24447
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
24448
24448
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -24833,7 +24833,7 @@ function compileDeferResolverFunction(meta) {
24833
24833
  return arrowFn([], literalArr(depExpressions));
24834
24834
  }
24835
24835
 
24836
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24836
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24837
24837
  var R3TargetBinder = class {
24838
24838
  constructor(directiveMatcher) {
24839
24839
  this.directiveMatcher = directiveMatcher;
@@ -25480,11 +25480,11 @@ function extractScopedNodeEntities(rootScope) {
25480
25480
  return templateEntities;
25481
25481
  }
25482
25482
 
25483
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25483
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25484
25484
  var ResourceLoader = class {
25485
25485
  };
25486
25486
 
25487
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25487
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25488
25488
  var CompilerFacadeImpl = class {
25489
25489
  constructor(jitEvaluator = new JitEvaluator()) {
25490
25490
  this.jitEvaluator = jitEvaluator;
@@ -25866,7 +25866,10 @@ function convertPipeDeclarationToMetadata(pipe2) {
25866
25866
  }
25867
25867
  function parseJitTemplate(template2, typeName, sourceMapUrl, preserveWhitespaces, interpolation, deferBlockDependencies) {
25868
25868
  const interpolationConfig = interpolation ? InterpolationConfig.fromArray(interpolation) : DEFAULT_INTERPOLATION_CONFIG;
25869
- const parsed = parseTemplate(template2, sourceMapUrl, { preserveWhitespaces, interpolationConfig });
25869
+ const parsed = parseTemplate(template2, sourceMapUrl, {
25870
+ preserveWhitespaces,
25871
+ interpolationConfig
25872
+ });
25870
25873
  if (parsed.errors !== null) {
25871
25874
  const errors = parsed.errors.map((err) => err.toString()).join(", ");
25872
25875
  throw new Error(`Errors during JIT compilation of template for ${typeName}: ${errors}`);
@@ -26050,10 +26053,10 @@ function publishFacade(global) {
26050
26053
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
26051
26054
  }
26052
26055
 
26053
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
26054
- var VERSION2 = new Version("18.1.0-next.3");
26056
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
26057
+ var VERSION2 = new Version("18.1.0-next.4");
26055
26058
 
26056
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26059
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26057
26060
  var _I18N_ATTR = "i18n";
26058
26061
  var _I18N_ATTR_PREFIX = "i18n-";
26059
26062
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -26364,7 +26367,7 @@ function _parseMessageMeta(i18n2) {
26364
26367
  return { meaning, description, id: id.trim() };
26365
26368
  }
26366
26369
 
26367
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26370
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26368
26371
  var XmlTagDefinition = class {
26369
26372
  constructor() {
26370
26373
  this.closedByParent = false;
@@ -26389,7 +26392,7 @@ function getXmlTagDefinition(tagName) {
26389
26392
  return _TAG_DEFINITION;
26390
26393
  }
26391
26394
 
26392
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26395
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26393
26396
  var XmlParser = class extends Parser2 {
26394
26397
  constructor() {
26395
26398
  super(getXmlTagDefinition);
@@ -26399,7 +26402,7 @@ var XmlParser = class extends Parser2 {
26399
26402
  }
26400
26403
  };
26401
26404
 
26402
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26405
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26403
26406
  var _VERSION = "1.2";
26404
26407
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
26405
26408
  var _DEFAULT_SOURCE_LANG = "en";
@@ -26681,7 +26684,7 @@ function getCtypeForTag(tag) {
26681
26684
  }
26682
26685
  }
26683
26686
 
26684
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26687
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26685
26688
  var _VERSION2 = "2.0";
26686
26689
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
26687
26690
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -27012,7 +27015,7 @@ function getTypeForTag(tag) {
27012
27015
  }
27013
27016
  }
27014
27017
 
27015
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27018
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27016
27019
  var MessageBundle = class {
27017
27020
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
27018
27021
  this._htmlParser = _htmlParser;
@@ -27088,7 +27091,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
27088
27091
  }
27089
27092
  };
27090
27093
 
27091
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27094
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27092
27095
  var FactoryTarget2;
27093
27096
  (function(FactoryTarget3) {
27094
27097
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -27098,7 +27101,7 @@ var FactoryTarget2;
27098
27101
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
27099
27102
  })(FactoryTarget2 || (FactoryTarget2 = {}));
27100
27103
 
27101
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27104
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27102
27105
  function compileClassMetadata(metadata) {
27103
27106
  const fnCall = internalCompileClassMetadata(metadata);
27104
27107
  return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
@@ -27132,7 +27135,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
27132
27135
  return arrowFn([], literalArr(dynamicImports));
27133
27136
  }
27134
27137
 
27135
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27138
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27136
27139
  function compileClassDebugInfo(debugInfo) {
27137
27140
  const debugInfoObject = {
27138
27141
  className: debugInfo.className
@@ -27149,13 +27152,13 @@ function compileClassDebugInfo(debugInfo) {
27149
27152
  return iife.callFn([]);
27150
27153
  }
27151
27154
 
27152
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27153
27156
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
27154
27157
  var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
27155
27158
  function compileDeclareClassMetadata(metadata) {
27156
27159
  const definitionMap = new DefinitionMap();
27157
27160
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
27158
- definitionMap.set("version", literal("18.1.0-next.3"));
27161
+ definitionMap.set("version", literal("18.1.0-next.4"));
27159
27162
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27160
27163
  definitionMap.set("type", metadata.type);
27161
27164
  definitionMap.set("decorators", metadata.decorators);
@@ -27174,7 +27177,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27174
27177
  callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
27175
27178
  callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
27176
27179
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
27177
- definitionMap.set("version", literal("18.1.0-next.3"));
27180
+ definitionMap.set("version", literal("18.1.0-next.4"));
27178
27181
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27179
27182
  definitionMap.set("type", metadata.type);
27180
27183
  definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
@@ -27182,7 +27185,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27182
27185
  return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
27183
27186
  }
27184
27187
 
27185
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27188
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27186
27189
  function toOptionalLiteralArray(values, mapper) {
27187
27190
  if (values === null || values.length === 0) {
27188
27191
  return null;
@@ -27230,7 +27233,7 @@ function compileDependency(dep) {
27230
27233
  return depMeta.toLiteralMap();
27231
27234
  }
27232
27235
 
27233
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27236
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27234
27237
  function compileDeclareDirectiveFromMetadata(meta) {
27235
27238
  const definitionMap = createDirectiveDefinitionMap(meta);
27236
27239
  const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
@@ -27242,7 +27245,7 @@ function createDirectiveDefinitionMap(meta) {
27242
27245
  const definitionMap = new DefinitionMap();
27243
27246
  const minVersion = getMinimumVersionForPartialOutput(meta);
27244
27247
  definitionMap.set("minVersion", literal(minVersion));
27245
- definitionMap.set("version", literal("18.1.0-next.3"));
27248
+ definitionMap.set("version", literal("18.1.0-next.4"));
27246
27249
  definitionMap.set("type", meta.type.value);
27247
27250
  if (meta.isStandalone) {
27248
27251
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -27404,7 +27407,7 @@ function legacyInputsPartialMetadata(inputs) {
27404
27407
  }));
27405
27408
  }
27406
27409
 
27407
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27410
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27408
27411
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
27409
27412
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
27410
27413
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -27555,12 +27558,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
27555
27558
  }
27556
27559
  };
27557
27560
 
27558
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27561
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27559
27562
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
27560
27563
  function compileDeclareFactoryFunction(meta) {
27561
27564
  const definitionMap = new DefinitionMap();
27562
27565
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
27563
- definitionMap.set("version", literal("18.1.0-next.3"));
27566
+ definitionMap.set("version", literal("18.1.0-next.4"));
27564
27567
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27565
27568
  definitionMap.set("type", meta.type.value);
27566
27569
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -27572,7 +27575,7 @@ function compileDeclareFactoryFunction(meta) {
27572
27575
  };
27573
27576
  }
27574
27577
 
27575
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27578
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27576
27579
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
27577
27580
  function compileDeclareInjectableFromMetadata(meta) {
27578
27581
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -27583,7 +27586,7 @@ function compileDeclareInjectableFromMetadata(meta) {
27583
27586
  function createInjectableDefinitionMap(meta) {
27584
27587
  const definitionMap = new DefinitionMap();
27585
27588
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
27586
- definitionMap.set("version", literal("18.1.0-next.3"));
27589
+ definitionMap.set("version", literal("18.1.0-next.4"));
27587
27590
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27588
27591
  definitionMap.set("type", meta.type.value);
27589
27592
  if (meta.providedIn !== void 0) {
@@ -27610,7 +27613,7 @@ function createInjectableDefinitionMap(meta) {
27610
27613
  return definitionMap;
27611
27614
  }
27612
27615
 
27613
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27616
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27614
27617
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
27615
27618
  function compileDeclareInjectorFromMetadata(meta) {
27616
27619
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -27621,7 +27624,7 @@ function compileDeclareInjectorFromMetadata(meta) {
27621
27624
  function createInjectorDefinitionMap(meta) {
27622
27625
  const definitionMap = new DefinitionMap();
27623
27626
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
27624
- definitionMap.set("version", literal("18.1.0-next.3"));
27627
+ definitionMap.set("version", literal("18.1.0-next.4"));
27625
27628
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27626
27629
  definitionMap.set("type", meta.type.value);
27627
27630
  definitionMap.set("providers", meta.providers);
@@ -27631,7 +27634,7 @@ function createInjectorDefinitionMap(meta) {
27631
27634
  return definitionMap;
27632
27635
  }
27633
27636
 
27634
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27637
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27635
27638
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
27636
27639
  function compileDeclareNgModuleFromMetadata(meta) {
27637
27640
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -27645,7 +27648,7 @@ function createNgModuleDefinitionMap(meta) {
27645
27648
  throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
27646
27649
  }
27647
27650
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
27648
- definitionMap.set("version", literal("18.1.0-next.3"));
27651
+ definitionMap.set("version", literal("18.1.0-next.4"));
27649
27652
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27650
27653
  definitionMap.set("type", meta.type.value);
27651
27654
  if (meta.bootstrap.length > 0) {
@@ -27669,7 +27672,7 @@ function createNgModuleDefinitionMap(meta) {
27669
27672
  return definitionMap;
27670
27673
  }
27671
27674
 
27672
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27675
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27673
27676
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
27674
27677
  function compileDeclarePipeFromMetadata(meta) {
27675
27678
  const definitionMap = createPipeDefinitionMap(meta);
@@ -27680,7 +27683,7 @@ function compileDeclarePipeFromMetadata(meta) {
27680
27683
  function createPipeDefinitionMap(meta) {
27681
27684
  const definitionMap = new DefinitionMap();
27682
27685
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
27683
- definitionMap.set("version", literal("18.1.0-next.3"));
27686
+ definitionMap.set("version", literal("18.1.0-next.4"));
27684
27687
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27685
27688
  definitionMap.set("type", meta.type.value);
27686
27689
  if (meta.isStandalone) {
@@ -27693,16 +27696,16 @@ function createPipeDefinitionMap(meta) {
27693
27696
  return definitionMap;
27694
27697
  }
27695
27698
 
27696
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
27699
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
27697
27700
  publishFacade(_global);
27698
27701
 
27699
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
27700
- var VERSION3 = new Version("18.1.0-next.3");
27702
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27703
+ var VERSION3 = new Version("18.1.0-next.4");
27701
27704
 
27702
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27705
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27703
27706
  var import_typescript5 = __toESM(require("typescript"), 1);
27704
27707
 
27705
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27708
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27706
27709
  var ErrorCode;
27707
27710
  (function(ErrorCode2) {
27708
27711
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -27795,7 +27798,7 @@ var ErrorCode;
27795
27798
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
27796
27799
  })(ErrorCode || (ErrorCode = {}));
27797
27800
 
27798
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27801
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27799
27802
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27800
27803
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
27801
27804
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -27807,15 +27810,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27807
27810
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
27808
27811
  ]);
27809
27812
 
27810
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27813
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27811
27814
  var import_typescript2 = __toESM(require("typescript"), 1);
27812
27815
 
27813
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27816
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27814
27817
  function ngErrorCode(code) {
27815
27818
  return parseInt("-99" + code);
27816
27819
  }
27817
27820
 
27818
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27821
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27819
27822
  var FatalDiagnosticError = class extends Error {
27820
27823
  constructor(code, node, diagnosticMessage, relatedInformation) {
27821
27824
  super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
@@ -27876,10 +27879,10 @@ function isFatalDiagnosticError(err) {
27876
27879
  return err._isFatalDiagnosticError === true;
27877
27880
  }
27878
27881
 
27879
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27882
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27880
27883
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
27881
27884
 
27882
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27885
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27883
27886
  var ExtendedTemplateDiagnosticName;
27884
27887
  (function(ExtendedTemplateDiagnosticName2) {
27885
27888
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -27894,7 +27897,7 @@ var ExtendedTemplateDiagnosticName;
27894
27897
  ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
27895
27898
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
27896
27899
 
27897
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
27900
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
27898
27901
  var import_typescript3 = __toESM(require("typescript"), 1);
27899
27902
  var TS = /\.tsx?$/i;
27900
27903
  var D_TS = /\.d\.ts$/i;
@@ -27995,7 +27998,7 @@ function toUnredirectedSourceFile(sf) {
27995
27998
  return redirectInfo.unredirected;
27996
27999
  }
27997
28000
 
27998
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28001
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
27999
28002
  function findExportedNameOfNode(target, file, reflector) {
28000
28003
  const exports = reflector.getExportsOfModule(file);
28001
28004
  if (exports === null) {
@@ -28015,7 +28018,7 @@ function findExportedNameOfNode(target, file, reflector) {
28015
28018
  return foundExportName;
28016
28019
  }
28017
28020
 
28018
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28021
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28019
28022
  var ImportFlags;
28020
28023
  (function(ImportFlags2) {
28021
28024
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -28246,7 +28249,7 @@ var UnifiedModulesStrategy = class {
28246
28249
  }
28247
28250
  };
28248
28251
 
28249
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28252
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28250
28253
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
28251
28254
  var UnifiedModulesAliasingHost = class {
28252
28255
  constructor(unifiedModulesHost) {
@@ -28313,7 +28316,7 @@ var AliasStrategy = class {
28313
28316
  }
28314
28317
  };
28315
28318
 
28316
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28319
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28317
28320
  function relativePathBetween(from, to) {
28318
28321
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
28319
28322
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -28322,7 +28325,7 @@ function normalizeSeparators2(path4) {
28322
28325
  return path4.replace(/\\/g, "/");
28323
28326
  }
28324
28327
 
28325
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28328
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28326
28329
  var NoopImportRewriter = class {
28327
28330
  rewriteSymbol(symbol, specifier) {
28328
28331
  return symbol;
@@ -28375,7 +28378,7 @@ function validateAndRewriteCoreSymbol(name) {
28375
28378
  return CORE_SUPPORTED_SYMBOLS.get(name);
28376
28379
  }
28377
28380
 
28378
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28381
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28379
28382
  var import_typescript7 = __toESM(require("typescript"), 1);
28380
28383
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
28381
28384
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -28410,7 +28413,7 @@ function throwIncompatibleTransformationContextError() {
28410
28413
  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.");
28411
28414
  }
28412
28415
 
28413
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28416
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28414
28417
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
28415
28418
  function attachDefaultImportDeclaration(expr, importDecl) {
28416
28419
  expr[DefaultImportDeclaration] = importDecl;
@@ -28451,13 +28454,13 @@ var DefaultImportTracker = class {
28451
28454
  }
28452
28455
  };
28453
28456
 
28454
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28457
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28455
28458
  var import_typescript13 = __toESM(require("typescript"), 1);
28456
28459
 
28457
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28458
28461
  var import_typescript12 = __toESM(require("typescript"), 1);
28459
28462
 
28460
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28463
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28461
28464
  var import_typescript9 = __toESM(require("typescript"), 1);
28462
28465
  function isDecoratorIdentifier(exp) {
28463
28466
  return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
@@ -28480,7 +28483,7 @@ var ClassMemberAccessLevel;
28480
28483
  })(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
28481
28484
  var AmbientImport = {};
28482
28485
 
28483
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28486
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28484
28487
  var import_typescript10 = __toESM(require("typescript"), 1);
28485
28488
  function typeToValue(typeNode, checker, isLocalCompilation) {
28486
28489
  var _a2, _b2;
@@ -28664,7 +28667,7 @@ function extractModuleName(node) {
28664
28667
  return node.moduleSpecifier.text;
28665
28668
  }
28666
28669
 
28667
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28670
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28668
28671
  var import_typescript11 = __toESM(require("typescript"), 1);
28669
28672
  function isNamedClassDeclaration(node) {
28670
28673
  return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -28688,7 +28691,7 @@ function classMemberAccessLevelToString(level) {
28688
28691
  }
28689
28692
  }
28690
28693
 
28691
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28692
28695
  var TypeScriptReflectionHost = class {
28693
28696
  constructor(checker, isLocalCompilation = false) {
28694
28697
  this.checker = checker;
@@ -29175,7 +29178,7 @@ function getExportedName(decl, originalId) {
29175
29178
  }
29176
29179
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
29177
29180
 
29178
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29181
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29179
29182
  var AssumeEager = "AssumeEager";
29180
29183
  var DeferredSymbolTracker = class {
29181
29184
  constructor(typeChecker, onlyExplicitDeferDependencyImports) {
@@ -29295,7 +29298,7 @@ var DeferredSymbolTracker = class {
29295
29298
  }
29296
29299
  };
29297
29300
 
29298
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29299
29302
  var import_typescript15 = __toESM(require("typescript"), 1);
29300
29303
  var ImportedSymbolsTracker = class {
29301
29304
  constructor() {
@@ -29365,7 +29368,7 @@ var ImportedSymbolsTracker = class {
29365
29368
  }
29366
29369
  };
29367
29370
 
29368
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29371
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29369
29372
  var import_typescript16 = __toESM(require("typescript"), 1);
29370
29373
  var LocalCompilationExtraImportsTracker = class {
29371
29374
  constructor(typeChecker) {
@@ -29416,7 +29419,7 @@ function removeQuotations(s) {
29416
29419
  return s.substring(1, s.length - 1).trim();
29417
29420
  }
29418
29421
 
29419
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29422
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29420
29423
  var Reference2 = class {
29421
29424
  constructor(node, bestGuessOwningModule = null) {
29422
29425
  this.node = node;
@@ -29485,7 +29488,7 @@ var Reference2 = class {
29485
29488
  }
29486
29489
  };
29487
29490
 
29488
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29491
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29489
29492
  var ModuleResolver = class {
29490
29493
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29491
29494
  this.program = program;
@@ -29502,16 +29505,16 @@ var ModuleResolver = class {
29502
29505
  }
29503
29506
  };
29504
29507
 
29505
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29508
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29506
29509
  var import_typescript21 = __toESM(require("typescript"), 1);
29507
29510
 
29508
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29511
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29509
29512
  var import_typescript95 = __toESM(require("typescript"), 1);
29510
29513
 
29511
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29514
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29512
29515
  var import_typescript23 = __toESM(require("typescript"), 1);
29513
29516
 
29514
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29517
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29515
29518
  var import_typescript22 = __toESM(require("typescript"), 1);
29516
29519
  var CORE_MODULE2 = "@angular/core";
29517
29520
  function valueReferenceToExpression(valueRef) {
@@ -29769,7 +29772,7 @@ function isAbstractClassDeclaration(clazz) {
29769
29772
  return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
29770
29773
  }
29771
29774
 
29772
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29775
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29773
29776
  function getConstructorDependencies(clazz, reflector, isCore) {
29774
29777
  const deps = [];
29775
29778
  const errors = [];
@@ -29913,10 +29916,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
29913
29916
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
29914
29917
  }
29915
29918
 
29916
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29919
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29917
29920
  var import_typescript46 = __toESM(require("typescript"), 1);
29918
29921
 
29919
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29922
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29920
29923
  var MetaKind;
29921
29924
  (function(MetaKind2) {
29922
29925
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -29929,10 +29932,10 @@ var MatchSource;
29929
29932
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
29930
29933
  })(MatchSource || (MatchSource = {}));
29931
29934
 
29932
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29935
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29933
29936
  var import_typescript26 = __toESM(require("typescript"), 1);
29934
29937
 
29935
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29938
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29936
29939
  var ClassPropertyMapping = class {
29937
29940
  constructor(forwardMap) {
29938
29941
  this.forwardMap = forwardMap;
@@ -30012,7 +30015,7 @@ function reverseMapFromForwardMap(forwardMap) {
30012
30015
  return reverseMap;
30013
30016
  }
30014
30017
 
30015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30018
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30016
30019
  var import_typescript24 = __toESM(require("typescript"), 1);
30017
30020
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
30018
30021
  if (!import_typescript24.default.isTupleTypeNode(def)) {
@@ -30208,7 +30211,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
30208
30211
  return hostDirectiveMeta.directive instanceof Reference2;
30209
30212
  }
30210
30213
 
30211
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30214
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30212
30215
  var DtsMetadataReader = class {
30213
30216
  constructor(checker, reflector) {
30214
30217
  this.checker = checker;
@@ -30391,7 +30394,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
30391
30394
  return result.length > 0 ? result : null;
30392
30395
  }
30393
30396
 
30394
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30397
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30395
30398
  function flattenInheritedDirectiveMetadata(reader, dir) {
30396
30399
  const topMeta = reader.getDirectiveMetadata(dir);
30397
30400
  if (topMeta === null) {
@@ -30454,7 +30457,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
30454
30457
  });
30455
30458
  }
30456
30459
 
30457
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30458
30461
  var LocalMetadataRegistry = class {
30459
30462
  constructor() {
30460
30463
  this.directives = /* @__PURE__ */ new Map();
@@ -30511,7 +30514,7 @@ var CompoundMetadataRegistry = class {
30511
30514
  }
30512
30515
  };
30513
30516
 
30514
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30517
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30515
30518
  var ResourceRegistry = class {
30516
30519
  constructor() {
30517
30520
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -30576,7 +30579,7 @@ var ResourceRegistry = class {
30576
30579
  }
30577
30580
  };
30578
30581
 
30579
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30582
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30580
30583
  var ExportedProviderStatusResolver = class {
30581
30584
  constructor(metaReader) {
30582
30585
  this.metaReader = metaReader;
@@ -30620,7 +30623,7 @@ var ExportedProviderStatusResolver = class {
30620
30623
  }
30621
30624
  };
30622
30625
 
30623
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30626
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30624
30627
  var EMPTY_ARRAY = [];
30625
30628
  var HostDirectivesResolver = class {
30626
30629
  constructor(metaReader) {
@@ -30685,10 +30688,10 @@ function resolveOutput(bindingName) {
30685
30688
  return bindingName;
30686
30689
  }
30687
30690
 
30688
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30691
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30689
30692
  var import_typescript28 = __toESM(require("typescript"), 1);
30690
30693
 
30691
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30692
30695
  var DynamicValue = class {
30693
30696
  constructor(node, reason, code) {
30694
30697
  this.node = node;
@@ -30778,7 +30781,7 @@ var DynamicValue = class {
30778
30781
  }
30779
30782
  };
30780
30783
 
30781
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30784
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30782
30785
  var ResolvedModule = class {
30783
30786
  constructor(exports, evaluate) {
30784
30787
  this.exports = exports;
@@ -30808,7 +30811,7 @@ var EnumValue = class {
30808
30811
  var KnownFn = class {
30809
30812
  };
30810
30813
 
30811
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30814
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30812
30815
  function describeResolvedType(value, maxDepth = 1) {
30813
30816
  var _a2, _b2;
30814
30817
  if (value === null) {
@@ -30941,10 +30944,10 @@ function getContainerNode(node) {
30941
30944
  return node.getSourceFile();
30942
30945
  }
30943
30946
 
30944
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30947
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30945
30948
  var import_typescript29 = __toESM(require("typescript"), 1);
30946
30949
 
30947
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
30950
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
30948
30951
  var ArraySliceBuiltinFn = class extends KnownFn {
30949
30952
  constructor(lhs) {
30950
30953
  super();
@@ -30996,14 +30999,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
30996
30999
  }
30997
31000
  };
30998
31001
 
30999
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31002
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31000
31003
  var SyntheticValue = class {
31001
31004
  constructor(value) {
31002
31005
  this.value = value;
31003
31006
  }
31004
31007
  };
31005
31008
 
31006
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31009
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31007
31010
  function literalBinaryOp(op) {
31008
31011
  return { op, literal: true };
31009
31012
  }
@@ -31578,7 +31581,7 @@ function owningModule(context, override = null) {
31578
31581
  }
31579
31582
  }
31580
31583
 
31581
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31584
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31582
31585
  var PartialEvaluator = class {
31583
31586
  constructor(host, checker, dependencyTracker) {
31584
31587
  this.host = host;
@@ -31598,7 +31601,7 @@ var PartialEvaluator = class {
31598
31601
  }
31599
31602
  };
31600
31603
 
31601
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31604
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31602
31605
  var CompilationMode;
31603
31606
  (function(CompilationMode2) {
31604
31607
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -31612,7 +31615,7 @@ var HandlerPrecedence;
31612
31615
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
31613
31616
  })(HandlerPrecedence || (HandlerPrecedence = {}));
31614
31617
 
31615
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31618
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31616
31619
  var import_typescript31 = __toESM(require("typescript"), 1);
31617
31620
  function aliasTransformFactory(exportStatements) {
31618
31621
  return () => {
@@ -31637,10 +31640,10 @@ function aliasTransformFactory(exportStatements) {
31637
31640
  };
31638
31641
  }
31639
31642
 
31640
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31643
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31641
31644
  var import_typescript32 = __toESM(require("typescript"), 1);
31642
31645
 
31643
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31646
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31644
31647
  var PerfPhase;
31645
31648
  (function(PerfPhase2) {
31646
31649
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -31708,7 +31711,7 @@ var PerfCheckpoint;
31708
31711
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
31709
31712
  })(PerfCheckpoint || (PerfCheckpoint = {}));
31710
31713
 
31711
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31714
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31712
31715
  var NoopPerfRecorder = class {
31713
31716
  eventCount() {
31714
31717
  }
@@ -31725,7 +31728,7 @@ var NoopPerfRecorder = class {
31725
31728
  };
31726
31729
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
31727
31730
 
31728
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31731
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31729
31732
  function mark() {
31730
31733
  return process.hrtime();
31731
31734
  }
@@ -31734,7 +31737,7 @@ function timeSinceInMicros(mark2) {
31734
31737
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
31735
31738
  }
31736
31739
 
31737
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31740
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31738
31741
  var ActivePerfRecorder = class {
31739
31742
  static zeroedToNow() {
31740
31743
  return new ActivePerfRecorder(mark());
@@ -31828,7 +31831,7 @@ var DelegatingPerfRecorder = class {
31828
31831
  }
31829
31832
  };
31830
31833
 
31831
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31834
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31832
31835
  var TraitState;
31833
31836
  (function(TraitState2) {
31834
31837
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -31885,7 +31888,7 @@ var TraitImpl = class {
31885
31888
  }
31886
31889
  };
31887
31890
 
31888
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31891
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31889
31892
  var TraitCompiler = class {
31890
31893
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
31891
31894
  this.handlers = handlers;
@@ -32344,10 +32347,10 @@ function containsErrors(diagnostics) {
32344
32347
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
32345
32348
  }
32346
32349
 
32347
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32350
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32348
32351
  var import_typescript43 = __toESM(require("typescript"), 1);
32349
32352
 
32350
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32353
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32351
32354
  var Context = class {
32352
32355
  constructor(isStatement) {
32353
32356
  this.isStatement = isStatement;
@@ -32360,10 +32363,10 @@ var Context = class {
32360
32363
  }
32361
32364
  };
32362
32365
 
32363
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32366
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32364
32367
  var import_typescript38 = __toESM(require("typescript"), 1);
32365
32368
 
32366
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32369
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32367
32370
  var import_typescript34 = __toESM(require("typescript"), 1);
32368
32371
  function createGenerateUniqueIdentifierHelper() {
32369
32372
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -32389,7 +32392,7 @@ function createGenerateUniqueIdentifierHelper() {
32389
32392
  };
32390
32393
  }
32391
32394
 
32392
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32395
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32393
32396
  var import_typescript35 = __toESM(require("typescript"), 1);
32394
32397
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
32395
32398
  return (ctx) => {
@@ -32450,7 +32453,7 @@ function isImportStatement(stmt) {
32450
32453
  return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
32451
32454
  }
32452
32455
 
32453
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32456
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32454
32457
  var import_typescript36 = __toESM(require("typescript"), 1);
32455
32458
  function attemptToReuseGeneratedImports(tracker, request) {
32456
32459
  const requestHash = hashImportRequest(request);
@@ -32477,7 +32480,7 @@ function hashImportRequest(req) {
32477
32480
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
32478
32481
  }
32479
32482
 
32480
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32483
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32481
32484
  var import_typescript37 = __toESM(require("typescript"), 1);
32482
32485
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32483
32486
  let candidateImportToBeUpdated = null;
@@ -32530,7 +32533,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32530
32533
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
32531
32534
  }
32532
32535
 
32533
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32536
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32534
32537
  var presetImportManagerForceNamespaceImports = {
32535
32538
  disableOriginalSourceFileReuse: true,
32536
32539
  forceGenerateNamespacesForNewImports: true
@@ -32679,7 +32682,7 @@ function createImportReference(asTypeReference, ref) {
32679
32682
  }
32680
32683
  }
32681
32684
 
32682
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32685
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32683
32686
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
32684
32687
  [UnaryOperator.Minus, "-"],
32685
32688
  [UnaryOperator.Plus, "+"]
@@ -32924,7 +32927,7 @@ function createRange(span) {
32924
32927
  };
32925
32928
  }
32926
32929
 
32927
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32930
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32928
32931
  var import_typescript39 = __toESM(require("typescript"), 1);
32929
32932
  var INELIGIBLE = {};
32930
32933
  function canEmitType(type, canEmit) {
@@ -32999,10 +33002,10 @@ var TypeEmitter = class {
32999
33002
  }
33000
33003
  };
33001
33004
 
33002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33005
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33003
33006
  var import_typescript41 = __toESM(require("typescript"), 1);
33004
33007
 
33005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33008
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33006
33009
  var import_typescript40 = __toESM(require("typescript"), 1);
33007
33010
  function tsNumericExpression(value) {
33008
33011
  if (value < 0) {
@@ -33012,7 +33015,7 @@ function tsNumericExpression(value) {
33012
33015
  return import_typescript40.default.factory.createNumericLiteral(value);
33013
33016
  }
33014
33017
 
33015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33018
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33016
33019
  function translateType(type, contextFile, reflector, refEmitter, imports) {
33017
33020
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
33018
33021
  }
@@ -33229,7 +33232,7 @@ var TypeTranslatorVisitor = class {
33229
33232
  }
33230
33233
  };
33231
33234
 
33232
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33235
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33233
33236
  var import_typescript42 = __toESM(require("typescript"), 1);
33234
33237
  var PureAnnotation;
33235
33238
  (function(PureAnnotation2) {
@@ -33432,7 +33435,7 @@ function attachComments(statement, leadingComments) {
33432
33435
  }
33433
33436
  }
33434
33437
 
33435
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33438
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33436
33439
  function translateExpression(contextFile, expression, imports, options = {}) {
33437
33440
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
33438
33441
  }
@@ -33440,7 +33443,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
33440
33443
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
33441
33444
  }
33442
33445
 
33443
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33446
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33444
33447
  var DtsTransformRegistry = class {
33445
33448
  constructor() {
33446
33449
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -33588,10 +33591,10 @@ function markForEmitAsSingleLine(node) {
33588
33591
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
33589
33592
  }
33590
33593
 
33591
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33594
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33592
33595
  var import_typescript45 = __toESM(require("typescript"), 1);
33593
33596
 
33594
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33597
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33595
33598
  var import_typescript44 = __toESM(require("typescript"), 1);
33596
33599
  function visit(node, visitor, context) {
33597
33600
  return visitor._visit(node, context);
@@ -33652,7 +33655,7 @@ var Visitor = class {
33652
33655
  }
33653
33656
  };
33654
33657
 
33655
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33658
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33656
33659
  var NO_DECORATORS = /* @__PURE__ */ new Set();
33657
33660
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
33658
33661
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -33887,7 +33890,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
33887
33890
  return array;
33888
33891
  }
33889
33892
 
33890
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33893
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33891
33894
  function makeDuplicateDeclarationError(node, data, kind) {
33892
33895
  const context = [];
33893
33896
  for (const decl of data) {
@@ -34096,7 +34099,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
34096
34099
  }
34097
34100
  }
34098
34101
 
34099
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34102
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34100
34103
  var import_typescript48 = __toESM(require("typescript"), 1);
34101
34104
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
34102
34105
  let resolved = null;
@@ -34146,7 +34149,7 @@ function resolveLiteral(decorator, literalCache) {
34146
34149
  return meta;
34147
34150
  }
34148
34151
 
34149
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34152
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34150
34153
  function compileNgFactoryDefField(metadata) {
34151
34154
  const res = compileFactoryFunction(metadata);
34152
34155
  return {
@@ -34168,7 +34171,7 @@ function compileDeclareFactory(metadata) {
34168
34171
  };
34169
34172
  }
34170
34173
 
34171
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34174
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34172
34175
  var InjectableClassRegistry = class {
34173
34176
  constructor(host, isCore) {
34174
34177
  this.host = host;
@@ -34194,7 +34197,7 @@ var InjectableClassRegistry = class {
34194
34197
  }
34195
34198
  };
34196
34199
 
34197
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34200
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34198
34201
  var import_typescript49 = __toESM(require("typescript"), 1);
34199
34202
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
34200
34203
  if (!reflection.isClass(clazz)) {
@@ -34280,7 +34283,7 @@ function removeIdentifierReferences(node, names) {
34280
34283
  return result.transformed[0];
34281
34284
  }
34282
34285
 
34283
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34284
34287
  var path = __toESM(require("path"), 1);
34285
34288
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
34286
34289
  if (!reflection.isClass(clazz)) {
@@ -34306,13 +34309,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
34306
34309
  return null;
34307
34310
  }
34308
34311
 
34309
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34312
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34310
34313
  var NoopReferencesRegistry = class {
34311
34314
  add(source, ...references) {
34312
34315
  }
34313
34316
  };
34314
34317
 
34315
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34318
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34316
34319
  function extractSchemas(rawExpr, evaluator, context) {
34317
34320
  const schemas = [];
34318
34321
  const result = evaluator.evaluate(rawExpr);
@@ -34341,7 +34344,7 @@ function extractSchemas(rawExpr, evaluator, context) {
34341
34344
  return schemas;
34342
34345
  }
34343
34346
 
34344
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34347
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34345
34348
  function compileInputTransformFields(inputs) {
34346
34349
  const extraFields = [];
34347
34350
  for (const input of inputs) {
@@ -34358,10 +34361,10 @@ function compileInputTransformFields(inputs) {
34358
34361
  return extraFields;
34359
34362
  }
34360
34363
 
34361
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34364
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34362
34365
  var import_typescript88 = __toESM(require("typescript"), 1);
34363
34366
 
34364
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34367
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34365
34368
  var import_typescript50 = __toESM(require("typescript"), 1);
34366
34369
  var SemanticSymbol = class {
34367
34370
  constructor(decl) {
@@ -34377,7 +34380,7 @@ function getSymbolIdentifier(decl) {
34377
34380
  return decl.name.text;
34378
34381
  }
34379
34382
 
34380
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34383
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34381
34384
  var OpaqueSymbol = class extends SemanticSymbol {
34382
34385
  isPublicApiAffected() {
34383
34386
  return false;
@@ -34519,10 +34522,10 @@ function getImportPath(expr) {
34519
34522
  }
34520
34523
  }
34521
34524
 
34522
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34525
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34523
34526
  var import_typescript51 = __toESM(require("typescript"), 1);
34524
34527
 
34525
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34528
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34526
34529
  function isSymbolEqual(a, b) {
34527
34530
  if (a.decl === b.decl) {
34528
34531
  return true;
@@ -34572,7 +34575,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
34572
34575
  return true;
34573
34576
  }
34574
34577
 
34575
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34578
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34576
34579
  function extractSemanticTypeParameters(node) {
34577
34580
  if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
34578
34581
  return null;
@@ -34594,14 +34597,14 @@ function isTypeParameterEqual(a, b) {
34594
34597
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
34595
34598
  }
34596
34599
 
34597
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34600
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34598
34601
  var ComponentScopeKind;
34599
34602
  (function(ComponentScopeKind2) {
34600
34603
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
34601
34604
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
34602
34605
  })(ComponentScopeKind || (ComponentScopeKind = {}));
34603
34606
 
34604
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34607
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34605
34608
  var CompoundComponentScopeReader = class {
34606
34609
  constructor(readers) {
34607
34610
  this.readers = readers;
@@ -34626,7 +34629,7 @@ var CompoundComponentScopeReader = class {
34626
34629
  }
34627
34630
  };
34628
34631
 
34629
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34632
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34630
34633
  var MetadataDtsModuleScopeResolver = class {
34631
34634
  constructor(dtsMetaReader, aliasingHost) {
34632
34635
  this.dtsMetaReader = dtsMetaReader;
@@ -34701,10 +34704,10 @@ var MetadataDtsModuleScopeResolver = class {
34701
34704
  }
34702
34705
  };
34703
34706
 
34704
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34707
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34705
34708
  var import_typescript52 = __toESM(require("typescript"), 1);
34706
34709
 
34707
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34710
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34708
34711
  function getDiagnosticNode(ref, rawExpr) {
34709
34712
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
34710
34713
  }
@@ -34730,7 +34733,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
34730
34733
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
34731
34734
  }
34732
34735
 
34733
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34736
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34734
34737
  var LocalModuleScopeRegistry = class {
34735
34738
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
34736
34739
  this.localReader = localReader;
@@ -35071,7 +35074,7 @@ function reexportCollision(module2, refA, refB) {
35071
35074
  ]);
35072
35075
  }
35073
35076
 
35074
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35077
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35075
35078
  var import_typescript54 = __toESM(require("typescript"), 1);
35076
35079
  var TypeCheckScopeRegistry = class {
35077
35080
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -35151,10 +35154,10 @@ var TypeCheckScopeRegistry = class {
35151
35154
  }
35152
35155
  };
35153
35156
 
35154
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35157
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35155
35158
  var import_typescript58 = __toESM(require("typescript"), 1);
35156
35159
 
35157
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35160
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35158
35161
  function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35159
35162
  if (!api.allowedAccessLevels.includes(member.accessLevel)) {
35160
35163
  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)}.`, [
@@ -35163,7 +35166,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35163
35166
  }
35164
35167
  }
35165
35168
 
35166
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35169
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35167
35170
  var import_typescript55 = __toESM(require("typescript"), 1);
35168
35171
  function tryParseInitializerApi(functions, expression, reflector, importTracker) {
35169
35172
  if (!import_typescript55.default.isCallExpression(expression)) {
@@ -35232,7 +35235,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
35232
35235
  return { api: matchingApi, apiReference, isRequired };
35233
35236
  }
35234
35237
 
35235
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35238
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35236
35239
  var import_typescript56 = __toESM(require("typescript"), 1);
35237
35240
  function parseAndValidateInputAndOutputOptions(optionsNode) {
35238
35241
  if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
@@ -35250,7 +35253,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
35250
35253
  return { alias };
35251
35254
  }
35252
35255
 
35253
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35256
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35254
35257
  var INPUT_INITIALIZER_FN = {
35255
35258
  functionName: "input",
35256
35259
  owningModule: "@angular/core",
@@ -35282,7 +35285,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
35282
35285
  };
35283
35286
  }
35284
35287
 
35285
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35288
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35286
35289
  var MODEL_INITIALIZER_FN = {
35287
35290
  functionName: "model",
35288
35291
  owningModule: "@angular/core",
@@ -35323,7 +35326,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
35323
35326
  };
35324
35327
  }
35325
35328
 
35326
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35329
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35327
35330
  var allowedAccessLevels = [
35328
35331
  ClassMemberAccessLevel.PublicWritable,
35329
35332
  ClassMemberAccessLevel.PublicReadonly,
@@ -35367,7 +35370,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
35367
35370
  };
35368
35371
  }
35369
35372
 
35370
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35371
35374
  var import_typescript57 = __toESM(require("typescript"), 1);
35372
35375
  var queryFunctionNames = [
35373
35376
  "viewChild",
@@ -35451,7 +35454,7 @@ function parseDescendantsOption(value) {
35451
35454
  throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
35452
35455
  }
35453
35456
 
35454
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35457
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35455
35458
  var EMPTY_OBJECT = {};
35456
35459
  var queryDecoratorNames = [
35457
35460
  "ViewChild",
@@ -36249,7 +36252,7 @@ function toR3InputMetadata(mapping) {
36249
36252
  };
36250
36253
  }
36251
36254
 
36252
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36255
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36253
36256
  var DirectiveSymbol = class extends SemanticSymbol {
36254
36257
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
36255
36258
  super(decl);
@@ -36329,7 +36332,7 @@ function isBaseClassEqual(current, previous) {
36329
36332
  return isSymbolEqual(current, previous);
36330
36333
  }
36331
36334
 
36332
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36335
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36333
36336
  var FIELD_DECORATORS = [
36334
36337
  "Input",
36335
36338
  "Output",
@@ -36522,10 +36525,10 @@ var DirectiveDecoratorHandler = class {
36522
36525
  }
36523
36526
  };
36524
36527
 
36525
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36528
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36526
36529
  var import_typescript60 = __toESM(require("typescript"), 1);
36527
36530
 
36528
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36531
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36529
36532
  var import_typescript59 = __toESM(require("typescript"), 1);
36530
36533
  function createModuleWithProvidersResolver(reflector, isCore) {
36531
36534
  function _reflectModuleFromTypeParam(type, node) {
@@ -36597,7 +36600,7 @@ function isResolvedModuleWithProviders(sv) {
36597
36600
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
36598
36601
  }
36599
36602
 
36600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36603
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36601
36604
  var NgModuleSymbol = class extends SemanticSymbol {
36602
36605
  constructor(decl, hasProviders) {
36603
36606
  super(decl);
@@ -37210,7 +37213,7 @@ function isSyntheticReference(ref) {
37210
37213
  return ref.synthetic;
37211
37214
  }
37212
37215
 
37213
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37216
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37214
37217
  function makeCyclicImportInfo(ref, type, cycle) {
37215
37218
  const name = ref.debugName || "(unknown)";
37216
37219
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -37233,7 +37236,7 @@ function checkCustomElementSelectorForErrors(selector) {
37233
37236
  return null;
37234
37237
  }
37235
37238
 
37236
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37239
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37237
37240
  var import_typescript62 = __toESM(require("typescript"), 1);
37238
37241
  function getTemplateDeclarationNodeForError(declaration) {
37239
37242
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -37585,7 +37588,7 @@ function _extractTemplateStyleUrls(template2) {
37585
37588
  }));
37586
37589
  }
37587
37590
 
37588
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37591
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37589
37592
  var ComponentSymbol = class extends DirectiveSymbol {
37590
37593
  constructor() {
37591
37594
  super(...arguments);
@@ -37620,7 +37623,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
37620
37623
  }
37621
37624
  };
37622
37625
 
37623
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37626
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37624
37627
  function collectAnimationNames(value, animationTriggerNames) {
37625
37628
  if (value instanceof Map) {
37626
37629
  const name = value.get("name");
@@ -37697,7 +37700,7 @@ function isLikelyModuleWithProviders(value) {
37697
37700
  return false;
37698
37701
  }
37699
37702
 
37700
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
37703
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
37701
37704
  var NgOriginalFile = Symbol("NgOriginalFile");
37702
37705
  var UpdateMode;
37703
37706
  (function(UpdateMode2) {
@@ -37705,13 +37708,13 @@ var UpdateMode;
37705
37708
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
37706
37709
  })(UpdateMode || (UpdateMode = {}));
37707
37710
 
37708
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37711
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37709
37712
  var import_typescript66 = __toESM(require("typescript"), 1);
37710
37713
 
37711
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37714
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37712
37715
  var import_typescript63 = __toESM(require("typescript"), 1);
37713
37716
 
37714
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
37717
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
37715
37718
  var NgExtension = Symbol("NgExtension");
37716
37719
  function isExtended(sf) {
37717
37720
  return sf[NgExtension] !== void 0;
@@ -37771,13 +37774,13 @@ function retagTsFile(sf) {
37771
37774
  }
37772
37775
  }
37773
37776
 
37774
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
37777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
37775
37778
  var TS_EXTENSIONS = /\.tsx?$/i;
37776
37779
  function makeShimFileName(fileName, suffix) {
37777
37780
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
37778
37781
  }
37779
37782
 
37780
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37781
37784
  var ShimAdapter = class {
37782
37785
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
37783
37786
  this.delegate = delegate;
@@ -37872,7 +37875,7 @@ var ShimAdapter = class {
37872
37875
  }
37873
37876
  };
37874
37877
 
37875
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
37878
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
37876
37879
  var ShimReferenceTagger = class {
37877
37880
  constructor(shimExtensions) {
37878
37881
  this.tagged = /* @__PURE__ */ new Set();
@@ -37906,7 +37909,7 @@ var ShimReferenceTagger = class {
37906
37909
  }
37907
37910
  };
37908
37911
 
37909
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37912
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37910
37913
  var DelegatingCompilerHost = class {
37911
37914
  get jsDocParsingMode() {
37912
37915
  return this.delegate.jsDocParsingMode;
@@ -38004,10 +38007,7 @@ var TsCreateProgramDriver = class {
38004
38007
  this.sfMap.clear();
38005
38008
  }
38006
38009
  for (const [filePath, { newText, originalFile }] of contents.entries()) {
38007
- const sf = import_typescript66.default.createSourceFile(filePath, newText, {
38008
- impliedNodeFormat: void 0,
38009
- languageVersion: import_typescript66.default.ScriptTarget.Latest
38010
- }, true);
38010
+ const sf = import_typescript66.default.createSourceFile(filePath, newText, import_typescript66.default.ScriptTarget.Latest, true);
38011
38011
  if (originalFile !== null) {
38012
38012
  sf[NgOriginalFile] = originalFile;
38013
38013
  }
@@ -38023,19 +38023,18 @@ var TsCreateProgramDriver = class {
38023
38023
  oldProgram
38024
38024
  });
38025
38025
  host.postProgramCreationCleanup();
38026
- untagAllTsFiles(this.program);
38027
38026
  untagAllTsFiles(oldProgram);
38028
38027
  }
38029
38028
  };
38030
38029
 
38031
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
38030
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
38032
38031
  var OptimizeFor;
38033
38032
  (function(OptimizeFor2) {
38034
38033
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
38035
38034
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
38036
38035
  })(OptimizeFor || (OptimizeFor = {}));
38037
38036
 
38038
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
38037
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
38039
38038
  var CompletionKind;
38040
38039
  (function(CompletionKind2) {
38041
38040
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
@@ -38043,7 +38042,7 @@ var CompletionKind;
38043
38042
  CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
38044
38043
  })(CompletionKind || (CompletionKind = {}));
38045
38044
 
38046
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
38045
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
38047
38046
  var PotentialImportKind;
38048
38047
  (function(PotentialImportKind2) {
38049
38048
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -38055,7 +38054,7 @@ var PotentialImportMode;
38055
38054
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
38056
38055
  })(PotentialImportMode || (PotentialImportMode = {}));
38057
38056
 
38058
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
38057
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
38059
38058
  var SymbolKind;
38060
38059
  (function(SymbolKind2) {
38061
38060
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -38072,7 +38071,7 @@ var SymbolKind;
38072
38071
  SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
38073
38072
  })(SymbolKind || (SymbolKind = {}));
38074
38073
 
38075
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
38074
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
38076
38075
  var import_typescript68 = __toESM(require("typescript"), 1);
38077
38076
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
38078
38077
  var _a2;
@@ -38183,7 +38182,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
38183
38182
  );
38184
38183
  }
38185
38184
 
38186
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
38185
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
38187
38186
  var TEMPLATE_ID = Symbol("ngTemplateId");
38188
38187
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
38189
38188
  function getTemplateId(clazz) {
@@ -38200,10 +38199,10 @@ function allocateTemplateId(sf) {
38200
38199
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
38201
38200
  }
38202
38201
 
38203
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38202
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38204
38203
  var import_typescript70 = __toESM(require("typescript"), 1);
38205
38204
 
38206
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38205
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38207
38206
  var import_typescript69 = __toESM(require("typescript"), 1);
38208
38207
  var parseSpanComment = /^(\d+),(\d+)$/;
38209
38208
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -38333,7 +38332,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
38333
38332
  }) || false;
38334
38333
  }
38335
38334
 
38336
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38335
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38337
38336
  var CompletionEngine = class {
38338
38337
  constructor(tcb, data, tcbPath, tcbIsShim) {
38339
38338
  this.tcb = tcb;
@@ -39596,10 +39595,10 @@ var MagicString = class {
39596
39595
  }
39597
39596
  };
39598
39597
 
39599
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39598
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39600
39599
  var import_typescript84 = __toESM(require("typescript"), 1);
39601
39600
 
39602
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39601
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39603
39602
  var import_typescript71 = __toESM(require("typescript"), 1);
39604
39603
  var REGISTRY = new DomElementSchemaRegistry();
39605
39604
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -39651,10 +39650,10 @@ var RegistryDomSchemaChecker = class {
39651
39650
  }
39652
39651
  };
39653
39652
 
39654
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39653
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39655
39654
  var import_typescript77 = __toESM(require("typescript"), 1);
39656
39655
 
39657
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
39656
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
39658
39657
  var ReferenceEmitEnvironment = class {
39659
39658
  constructor(importManager, refEmitter, reflector, contextFile) {
39660
39659
  this.importManager = importManager;
@@ -39684,7 +39683,7 @@ var ReferenceEmitEnvironment = class {
39684
39683
  }
39685
39684
  };
39686
39685
 
39687
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39686
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39688
39687
  var import_typescript72 = __toESM(require("typescript"), 1);
39689
39688
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
39690
39689
  import_typescript72.default.SyntaxKind.ParenthesizedExpression,
@@ -39767,13 +39766,13 @@ function tsNumericExpression2(value) {
39767
39766
  return import_typescript72.default.factory.createNumericLiteral(value);
39768
39767
  }
39769
39768
 
39770
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39769
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39771
39770
  var import_typescript76 = __toESM(require("typescript"), 1);
39772
39771
 
39773
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39772
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39774
39773
  var import_typescript74 = __toESM(require("typescript"), 1);
39775
39774
 
39776
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39775
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39777
39776
  var import_typescript73 = __toESM(require("typescript"), 1);
39778
39777
  var TypeParameterEmitter = class {
39779
39778
  constructor(typeParameters, reflector) {
@@ -39851,7 +39850,7 @@ var TypeParameterEmitter = class {
39851
39850
  }
39852
39851
  };
39853
39852
 
39854
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39853
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39855
39854
  var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
39856
39855
  Identifiers.InputSignalBrandWriteType
39857
39856
  ];
@@ -39943,7 +39942,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
39943
39942
  return emitter.canEmit((ref) => env.canReferenceType(ref));
39944
39943
  }
39945
39944
 
39946
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39945
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39947
39946
  function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
39948
39947
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
39949
39948
  const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -40066,7 +40065,7 @@ function typeParametersWithDefaultTypes(params) {
40066
40065
  });
40067
40066
  }
40068
40067
 
40069
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40068
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40070
40069
  var Environment = class extends ReferenceEmitEnvironment {
40071
40070
  constructor(config, importManager, refEmitter, reflector, contextFile) {
40072
40071
  super(importManager, refEmitter, reflector, contextFile);
@@ -40138,7 +40137,7 @@ var Environment = class extends ReferenceEmitEnvironment {
40138
40137
  }
40139
40138
  };
40140
40139
 
40141
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40140
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40142
40141
  var import_typescript78 = __toESM(require("typescript"), 1);
40143
40142
  var OutOfBandDiagnosticRecorderImpl = class {
40144
40143
  constructor(resolver) {
@@ -40338,7 +40337,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
40338
40337
  });
40339
40338
  }
40340
40339
 
40341
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40340
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40342
40341
  var import_typescript79 = __toESM(require("typescript"), 1);
40343
40342
  var TypeCheckShimGenerator = class {
40344
40343
  constructor() {
@@ -40356,10 +40355,10 @@ var TypeCheckShimGenerator = class {
40356
40355
  }
40357
40356
  };
40358
40357
 
40359
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40358
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40360
40359
  var import_typescript82 = __toESM(require("typescript"), 1);
40361
40360
 
40362
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40361
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40363
40362
  var import_typescript80 = __toESM(require("typescript"), 1);
40364
40363
  function wrapForDiagnostics(expr) {
40365
40364
  return import_typescript80.default.factory.createParenthesizedExpression(expr);
@@ -40414,7 +40413,7 @@ function translateDiagnostic(diagnostic, resolver) {
40414
40413
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
40415
40414
  }
40416
40415
 
40417
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40416
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40418
40417
  var import_typescript81 = __toESM(require("typescript"), 1);
40419
40418
  var NULL_AS_ANY = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNull(), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
40420
40419
  var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
@@ -40746,7 +40745,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
40746
40745
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
40747
40746
  })();
40748
40747
 
40749
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40748
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40750
40749
  var TcbGenericContextBehavior;
40751
40750
  (function(TcbGenericContextBehavior2) {
40752
40751
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -42323,7 +42322,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
42323
42322
  }
42324
42323
  };
42325
42324
 
42326
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42325
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42327
42326
  var import_typescript83 = __toESM(require("typescript"), 1);
42328
42327
  var TypeCheckFile = class extends Environment {
42329
42328
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -42371,7 +42370,7 @@ var TypeCheckFile = class extends Environment {
42371
42370
  }
42372
42371
  };
42373
42372
 
42374
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42375
42374
  var InliningMode;
42376
42375
  (function(InliningMode2) {
42377
42376
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -42623,7 +42622,7 @@ var TypeCtorOp = class {
42623
42622
  }
42624
42623
  };
42625
42624
 
42626
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42625
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42627
42626
  var LF_CHAR = 10;
42628
42627
  var CR_CHAR = 13;
42629
42628
  var LINE_SEP_CHAR = 8232;
@@ -42664,7 +42663,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
42664
42663
  return low - 1;
42665
42664
  }
42666
42665
 
42667
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42666
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42668
42667
  var TemplateSource = class {
42669
42668
  constructor(mapping, file) {
42670
42669
  this.mapping = mapping;
@@ -42715,7 +42714,7 @@ var TemplateSourceManager = class {
42715
42714
  }
42716
42715
  };
42717
42716
 
42718
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42717
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42719
42718
  var import_typescript85 = __toESM(require("typescript"), 1);
42720
42719
  var SymbolBuilder = class {
42721
42720
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -43282,7 +43281,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
43282
43281
  };
43283
43282
  }
43284
43283
 
43285
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43284
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43286
43285
  var REGISTRY2 = new DomElementSchemaRegistry();
43287
43286
  var TemplateTypeCheckerImpl = class {
43288
43287
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -43980,7 +43979,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
43980
43979
  }
43981
43980
  };
43982
43981
 
43983
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
43982
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
43984
43983
  var EMPTY_ARRAY2 = [];
43985
43984
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
43986
43985
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
@@ -44999,7 +44998,7 @@ function isDefaultImport(node) {
44999
44998
  return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
45000
44999
  }
45001
45000
 
45002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
45001
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
45003
45002
  var import_typescript90 = __toESM(require("typescript"), 1);
45004
45003
  var InjectableDecoratorHandler = class {
45005
45004
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -45230,7 +45229,7 @@ function getDep(dep, reflector) {
45230
45229
  return meta;
45231
45230
  }
45232
45231
 
45233
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45232
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45234
45233
  var import_typescript91 = __toESM(require("typescript"), 1);
45235
45234
  var PipeSymbol = class extends SemanticSymbol {
45236
45235
  constructor(decl, name) {
@@ -45386,13 +45385,13 @@ var PipeDecoratorHandler = class {
45386
45385
  }
45387
45386
  };
45388
45387
 
45389
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45388
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45390
45389
  var import_typescript92 = __toESM(require("typescript"), 1);
45391
45390
 
45392
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45391
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45393
45392
  var import_typescript93 = __toESM(require("typescript"), 1);
45394
45393
 
45395
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45396
45395
  var EmitFlags;
45397
45396
  (function(EmitFlags2) {
45398
45397
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -45404,13 +45403,13 @@ var EmitFlags;
45404
45403
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
45405
45404
  })(EmitFlags || (EmitFlags = {}));
45406
45405
 
45407
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45406
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45408
45407
  var import_typescript96 = __toESM(require("typescript"), 1);
45409
45408
 
45410
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45409
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45411
45410
  var import_typescript123 = __toESM(require("typescript"), 1);
45412
45411
 
45413
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45412
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45414
45413
  var path2 = __toESM(require("path"), 1);
45415
45414
  function i18nGetExtension(formatName) {
45416
45415
  const format = formatName.toLowerCase();
@@ -45460,10 +45459,10 @@ function getPathNormalizer(basePath) {
45460
45459
  };
45461
45460
  }
45462
45461
 
45463
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45462
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45464
45463
  var import_typescript97 = __toESM(require("typescript"), 1);
45465
45464
 
45466
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45465
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45467
45466
  function toNumbers(value) {
45468
45467
  const suffixIndex = value.lastIndexOf("-");
45469
45468
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -45498,7 +45497,7 @@ function compareVersions(v1, v2) {
45498
45497
  return compareNumbers(toNumbers(v1), toNumbers(v2));
45499
45498
  }
45500
45499
 
45501
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45500
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45502
45501
  var MIN_TS_VERSION = "5.4.0";
45503
45502
  var MAX_TS_VERSION = "5.6.0";
45504
45503
  var tsVersion = import_typescript97.default.version;
@@ -45511,10 +45510,10 @@ function verifySupportedTypeScriptVersion() {
45511
45510
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
45512
45511
  }
45513
45512
 
45514
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45513
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45515
45514
  var import_typescript119 = __toESM(require("typescript"), 1);
45516
45515
 
45517
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45516
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45518
45517
  var CycleAnalyzer = class {
45519
45518
  constructor(importGraph) {
45520
45519
  this.importGraph = importGraph;
@@ -45585,7 +45584,7 @@ var Cycle = class {
45585
45584
  }
45586
45585
  };
45587
45586
 
45588
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45587
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45589
45588
  var import_typescript98 = __toESM(require("typescript"), 1);
45590
45589
  var ImportGraph = class {
45591
45590
  constructor(checker, perf) {
@@ -45677,13 +45676,13 @@ var Found = class {
45677
45676
  }
45678
45677
  };
45679
45678
 
45680
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
45679
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
45681
45680
  var import_typescript107 = __toESM(require("typescript"), 1);
45682
45681
 
45683
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45682
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45684
45683
  var import_typescript102 = __toESM(require("typescript"), 1);
45685
45684
 
45686
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
45685
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
45687
45686
  var EntryType;
45688
45687
  (function(EntryType2) {
45689
45688
  EntryType2["Block"] = "block";
@@ -45727,17 +45726,17 @@ var MemberTags;
45727
45726
  MemberTags2["Inherited"] = "override";
45728
45727
  })(MemberTags || (MemberTags = {}));
45729
45728
 
45730
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
45729
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
45731
45730
  function isAngularPrivateName(name) {
45732
45731
  var _a2;
45733
45732
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
45734
45733
  return firstChar === "\u0275" || firstChar === "_";
45735
45734
  }
45736
45735
 
45737
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45736
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45738
45737
  var import_typescript100 = __toESM(require("typescript"), 1);
45739
45738
 
45740
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
45739
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
45741
45740
  function extractGenerics(declaration) {
45742
45741
  var _a2, _b2;
45743
45742
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -45750,7 +45749,7 @@ function extractGenerics(declaration) {
45750
45749
  })) != null ? _b2 : [];
45751
45750
  }
45752
45751
 
45753
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
45752
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
45754
45753
  var import_typescript99 = __toESM(require("typescript"), 1);
45755
45754
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
45756
45755
  function extractJsDocTags(node) {
@@ -45794,12 +45793,12 @@ function unescapeAngularDecorators(comment) {
45794
45793
  return comment.replace(/_NG_AT_/g, "@");
45795
45794
  }
45796
45795
 
45797
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
45796
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
45798
45797
  function extractResolvedTypeString(node, checker) {
45799
45798
  return checker.typeToString(checker.getTypeAtLocation(node));
45800
45799
  }
45801
45800
 
45802
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45801
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45803
45802
  var FunctionExtractor = class {
45804
45803
  constructor(name, declaration, typeChecker) {
45805
45804
  this.name = name;
@@ -45858,7 +45857,7 @@ function extractAllParams(params, typeChecker) {
45858
45857
  }));
45859
45858
  }
45860
45859
 
45861
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
45860
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
45862
45861
  var import_typescript101 = __toESM(require("typescript"), 1);
45863
45862
  function isInternal(member) {
45864
45863
  return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
@@ -45877,7 +45876,7 @@ function hasLeadingInternalComment(member) {
45877
45876
  )) != null ? _a2 : false;
45878
45877
  }
45879
45878
 
45880
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45879
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45881
45880
  var ClassExtractor = class {
45882
45881
  constructor(declaration, typeChecker) {
45883
45882
  this.declaration = declaration;
@@ -46129,7 +46128,7 @@ function extractInterface(declaration, typeChecker) {
46129
46128
  return extractor.extract();
46130
46129
  }
46131
46130
 
46132
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
46131
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
46133
46132
  var import_typescript103 = __toESM(require("typescript"), 1);
46134
46133
  var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
46135
46134
  function extractConstant(declaration, typeChecker) {
@@ -46187,7 +46186,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
46187
46186
  });
46188
46187
  }
46189
46188
 
46190
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
46189
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
46191
46190
  var import_typescript104 = __toESM(require("typescript"), 1);
46192
46191
  function extractorDecorator(declaration, typeChecker) {
46193
46192
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -46260,7 +46259,7 @@ function getDecoratorJsDocNode(declaration) {
46260
46259
  return callSignature;
46261
46260
  }
46262
46261
 
46263
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46262
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46264
46263
  var import_typescript105 = __toESM(require("typescript"), 1);
46265
46264
  function extractEnum(declaration, typeChecker) {
46266
46265
  return {
@@ -46291,7 +46290,7 @@ function getEnumMemberValue(memberNode) {
46291
46290
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
46292
46291
  }
46293
46292
 
46294
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46293
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46295
46294
  var import_typescript106 = __toESM(require("typescript"), 1);
46296
46295
  var initializerApiTag = "initializerApiFunction";
46297
46296
  function isInitializerApiFunction(node, typeChecker) {
@@ -46428,7 +46427,7 @@ function findImplementationOfFunction(node, typeChecker) {
46428
46427
  return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript106.default.isFunctionDeclaration(s) && s.body !== void 0);
46429
46428
  }
46430
46429
 
46431
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46430
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46432
46431
  function extractTypeAlias(declaration) {
46433
46432
  return {
46434
46433
  name: declaration.name.getText(),
@@ -46440,7 +46439,7 @@ function extractTypeAlias(declaration) {
46440
46439
  };
46441
46440
  }
46442
46441
 
46443
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46442
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46444
46443
  var DocsExtractor = class {
46445
46444
  constructor(typeChecker, metadataReader) {
46446
46445
  this.typeChecker = typeChecker;
@@ -46524,7 +46523,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
46524
46523
  return relativePath;
46525
46524
  }
46526
46525
 
46527
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46526
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46528
46527
  var import_typescript108 = __toESM(require("typescript"), 1);
46529
46528
  var FlatIndexGenerator = class {
46530
46529
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -46549,7 +46548,7 @@ export * from '${relativeEntryPoint}';
46549
46548
  }
46550
46549
  };
46551
46550
 
46552
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46551
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46553
46552
  function findFlatIndexEntryPoint(rootFiles) {
46554
46553
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
46555
46554
  let resolvedEntryPoint = null;
@@ -46565,7 +46564,7 @@ function findFlatIndexEntryPoint(rootFiles) {
46565
46564
  return resolvedEntryPoint;
46566
46565
  }
46567
46566
 
46568
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46567
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46569
46568
  var import_typescript110 = __toESM(require("typescript"), 1);
46570
46569
  function checkForPrivateExports(entryPoint, checker, refGraph) {
46571
46570
  const diagnostics = [];
@@ -46645,7 +46644,7 @@ function getDescriptorOfDeclaration(decl) {
46645
46644
  }
46646
46645
  }
46647
46646
 
46648
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
46647
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
46649
46648
  var ReferenceGraph = class {
46650
46649
  constructor() {
46651
46650
  this.references = /* @__PURE__ */ new Map();
@@ -46699,7 +46698,7 @@ var ReferenceGraph = class {
46699
46698
  }
46700
46699
  };
46701
46700
 
46702
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
46701
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
46703
46702
  var FileDependencyGraph = class {
46704
46703
  constructor() {
46705
46704
  this.nodes = /* @__PURE__ */ new Map();
@@ -46766,7 +46765,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
46766
46765
  return false;
46767
46766
  }
46768
46767
 
46769
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
46768
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
46770
46769
  var IncrementalStateKind;
46771
46770
  (function(IncrementalStateKind2) {
46772
46771
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -46774,7 +46773,7 @@ var IncrementalStateKind;
46774
46773
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
46775
46774
  })(IncrementalStateKind || (IncrementalStateKind = {}));
46776
46775
 
46777
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
46776
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
46778
46777
  var PhaseKind;
46779
46778
  (function(PhaseKind2) {
46780
46779
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -46975,7 +46974,7 @@ function toOriginalSourceFile(sf) {
46975
46974
  }
46976
46975
  }
46977
46976
 
46978
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
46977
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
46979
46978
  var TrackedIncrementalBuildStrategy = class {
46980
46979
  constructor() {
46981
46980
  this.state = null;
@@ -46996,7 +46995,7 @@ var TrackedIncrementalBuildStrategy = class {
46996
46995
  };
46997
46996
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
46998
46997
 
46999
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
46998
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
47000
46999
  var IdentifierKind;
47001
47000
  (function(IdentifierKind2) {
47002
47001
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -47015,7 +47014,7 @@ var AbsoluteSourceSpan2 = class {
47015
47014
  }
47016
47015
  };
47017
47016
 
47018
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
47017
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
47019
47018
  var IndexingContext = class {
47020
47019
  constructor() {
47021
47020
  this.components = /* @__PURE__ */ new Set();
@@ -47025,7 +47024,7 @@ var IndexingContext = class {
47025
47024
  }
47026
47025
  };
47027
47026
 
47028
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
47027
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
47029
47028
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
47030
47029
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
47031
47030
  super();
@@ -47319,7 +47318,7 @@ function getTemplateIdentifiers(boundTemplate) {
47319
47318
  return { identifiers: visitor.identifiers, errors: visitor.errors };
47320
47319
  }
47321
47320
 
47322
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47321
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47323
47322
  function generateAnalysis(context) {
47324
47323
  const analysis = /* @__PURE__ */ new Map();
47325
47324
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -47355,7 +47354,7 @@ function generateAnalysis(context) {
47355
47354
  return analysis;
47356
47355
  }
47357
47356
 
47358
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47357
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47359
47358
  var NgModuleIndexImpl = class {
47360
47359
  constructor(metaReader, localReader) {
47361
47360
  this.metaReader = metaReader;
@@ -47444,7 +47443,7 @@ var NgModuleIndexImpl = class {
47444
47443
  }
47445
47444
  };
47446
47445
 
47447
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47446
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47448
47447
  var import_typescript112 = __toESM(require("typescript"), 1);
47449
47448
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
47450
47449
  var RESOURCE_MARKER = ".$ngresource$";
@@ -47596,7 +47595,7 @@ function createLookupResolutionHost(adapter) {
47596
47595
  };
47597
47596
  }
47598
47597
 
47599
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
47598
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
47600
47599
  var StandaloneComponentScopeReader = class {
47601
47600
  constructor(metaReader, localModuleReader, dtsModuleReader) {
47602
47601
  this.metaReader = metaReader;
@@ -47692,7 +47691,7 @@ var StandaloneComponentScopeReader = class {
47692
47691
  }
47693
47692
  };
47694
47693
 
47695
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47696
47695
  var import_typescript113 = __toESM(require("typescript"), 1);
47697
47696
  var SIGNAL_FNS = /* @__PURE__ */ new Set([
47698
47697
  "WritableSignal",
@@ -47712,7 +47711,7 @@ function isSignalSymbol(symbol) {
47712
47711
  });
47713
47712
  }
47714
47713
 
47715
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47714
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47716
47715
  var TemplateCheckWithVisitor = class {
47717
47716
  run(ctx, component, template2) {
47718
47717
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -47839,7 +47838,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
47839
47838
  }
47840
47839
  };
47841
47840
 
47842
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47841
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47843
47842
  var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
47844
47843
  var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
47845
47844
  var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
@@ -47891,7 +47890,7 @@ var factory = {
47891
47890
  create: () => new InterpolatedSignalCheck()
47892
47891
  };
47893
47892
 
47894
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47893
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47895
47894
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
47896
47895
  constructor() {
47897
47896
  super(...arguments);
@@ -47916,7 +47915,7 @@ var factory2 = {
47916
47915
  create: () => new InvalidBananaInBoxCheck()
47917
47916
  };
47918
47917
 
47919
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47918
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47920
47919
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
47921
47920
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
47922
47921
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -47960,7 +47959,7 @@ var factory3 = {
47960
47959
  }
47961
47960
  };
47962
47961
 
47963
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
47962
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
47964
47963
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
47965
47964
  constructor() {
47966
47965
  super(...arguments);
@@ -47992,7 +47991,7 @@ var factory4 = {
47992
47991
  create: () => new MissingNgForOfLetCheck()
47993
47992
  };
47994
47993
 
47995
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
47994
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
47996
47995
  var import_typescript114 = __toESM(require("typescript"), 1);
47997
47996
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
47998
47997
  constructor() {
@@ -48036,7 +48035,7 @@ var factory5 = {
48036
48035
  }
48037
48036
  };
48038
48037
 
48039
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48038
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48040
48039
  var import_typescript115 = __toESM(require("typescript"), 1);
48041
48040
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
48042
48041
  constructor() {
@@ -48081,7 +48080,7 @@ var factory6 = {
48081
48080
  }
48082
48081
  };
48083
48082
 
48084
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48083
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48085
48084
  var STYLE_SUFFIXES = ["px", "%", "em"];
48086
48085
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
48087
48086
  constructor() {
@@ -48104,7 +48103,7 @@ var factory7 = {
48104
48103
  create: () => new SuffixNotSupportedCheck()
48105
48104
  };
48106
48105
 
48107
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48106
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48108
48107
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
48109
48108
  constructor() {
48110
48109
  super(...arguments);
@@ -48142,10 +48141,10 @@ var factory8 = {
48142
48141
  create: () => new TextAttributeNotBindingSpec()
48143
48142
  };
48144
48143
 
48145
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48144
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48146
48145
  var import_typescript116 = __toESM(require("typescript"), 1);
48147
48146
 
48148
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48147
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48149
48148
  var DiagnosticCategoryLabel;
48150
48149
  (function(DiagnosticCategoryLabel2) {
48151
48150
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -48153,7 +48152,7 @@ var DiagnosticCategoryLabel;
48153
48152
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
48154
48153
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
48155
48154
 
48156
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48157
48156
  var ExtendedTemplateCheckerImpl = class {
48158
48157
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
48159
48158
  var _a2, _b2, _c2, _d2, _e2;
@@ -48205,7 +48204,7 @@ function assertNever(value) {
48205
48204
  ${value}`);
48206
48205
  }
48207
48206
 
48208
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48207
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48209
48208
  var ALL_DIAGNOSTIC_FACTORIES = [
48210
48209
  factory2,
48211
48210
  factory5,
@@ -48221,7 +48220,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
48221
48220
  ...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
48222
48221
  ]);
48223
48222
 
48224
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48223
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48225
48224
  var import_typescript117 = __toESM(require("typescript"), 1);
48226
48225
  var TemplateSemanticsCheckerImpl = class {
48227
48226
  constructor(templateTypeChecker) {
@@ -48311,7 +48310,7 @@ function unwrapAstWithSource(ast) {
48311
48310
  return ast instanceof ASTWithSource ? ast.ast : ast;
48312
48311
  }
48313
48312
 
48314
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48313
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48315
48314
  var import_typescript118 = __toESM(require("typescript"), 1);
48316
48315
  var APIS_TO_CHECK = [
48317
48316
  INPUT_INITIALIZER_FN,
@@ -48362,7 +48361,7 @@ var InitializerApiUsageRule = class {
48362
48361
  }
48363
48362
  };
48364
48363
 
48365
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48364
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48366
48365
  var SourceFileValidator = class {
48367
48366
  constructor(reflector, importedSymbolsTracker) {
48368
48367
  this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
@@ -48400,7 +48399,7 @@ var SourceFileValidator = class {
48400
48399
  }
48401
48400
  };
48402
48401
 
48403
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48402
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48404
48403
  function coreHasSymbol(program, symbol) {
48405
48404
  const checker = program.getTypeChecker();
48406
48405
  for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
@@ -48419,7 +48418,7 @@ function isMaybeCore(sf) {
48419
48418
  return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
48420
48419
  }
48421
48420
 
48422
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48421
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48423
48422
  var import_semver = __toESM(require_semver2(), 1);
48424
48423
  function coreVersionSupportsFeature(coreVersion, minVersion) {
48425
48424
  if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
@@ -48428,7 +48427,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
48428
48427
  return import_semver.default.satisfies(coreVersion, minVersion);
48429
48428
  }
48430
48429
 
48431
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48430
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48432
48431
  var CompilationTicketKind;
48433
48432
  (function(CompilationTicketKind2) {
48434
48433
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -48498,7 +48497,7 @@ var NgCompiler = class {
48498
48497
  this.delegatingPerfRecorder = new DelegatingPerfRecorder(this.perfRecorder);
48499
48498
  this.enableTemplateTypeChecker = enableTemplateTypeChecker || ((_a2 = options["_enableTemplateTypeChecker"]) != null ? _a2 : false);
48500
48499
  this.enableBlockSyntax = (_b2 = options["_enableBlockSyntax"]) != null ? _b2 : true;
48501
- this.enableLetSyntax = (_c2 = options["_enableLetSyntax"]) != null ? _c2 : false;
48500
+ this.enableLetSyntax = (_c2 = options["_enableLetSyntax"]) != null ? _c2 : true;
48502
48501
  this.angularCoreVersion = (_d2 = options["_angularCoreVersion"]) != null ? _d2 : null;
48503
48502
  this.constructionDiagnostics.push(...this.adapter.constructionDiagnostics, ...verifyCompatibleTypeCheckOptions(this.options));
48504
48503
  this.currentProgram = inputProgram;
@@ -49211,7 +49210,7 @@ function versionMapFromProgram(program, driver) {
49211
49210
  return versions;
49212
49211
  }
49213
49212
 
49214
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49213
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49215
49214
  var import_typescript121 = __toESM(require("typescript"), 1);
49216
49215
  var DelegatingCompilerHost2 = class {
49217
49216
  get jsDocParsingMode() {
@@ -49350,7 +49349,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
49350
49349
  }
49351
49350
  };
49352
49351
 
49353
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49352
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49354
49353
  var NgtscProgram = class {
49355
49354
  constructor(rootNames, options, delegateHost, oldProgram) {
49356
49355
  this.options = options;
@@ -49371,7 +49370,6 @@ var NgtscProgram = class {
49371
49370
  perfRecorder.phase(PerfPhase.Unaccounted);
49372
49371
  perfRecorder.memory(PerfCheckpoint.TypeScriptProgramCreate);
49373
49372
  this.host.postProgramCreationCleanup();
49374
- untagAllTsFiles(this.tsProgram);
49375
49373
  const programDriver = new TsCreateProgramDriver(this.tsProgram, this.host, this.options, this.host.shimExtensionPrefixes);
49376
49374
  this.incrementalStrategy = oldProgram !== void 0 ? oldProgram.incrementalStrategy.toNextBuildStrategy() : new TrackedIncrementalBuildStrategy();
49377
49375
  const modifiedResourceFiles = /* @__PURE__ */ new Set();
@@ -49577,18 +49575,18 @@ function mergeEmitResults(emitResults) {
49577
49575
  return { diagnostics, emitSkipped, emittedFiles };
49578
49576
  }
49579
49577
 
49580
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49578
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49581
49579
  function createProgram({ rootNames, options, host, oldProgram }) {
49582
49580
  return new NgtscProgram(rootNames, options, host, oldProgram);
49583
49581
  }
49584
49582
 
49585
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49583
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49586
49584
  var import_typescript125 = __toESM(require("typescript"), 1);
49587
49585
 
49588
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49586
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49589
49587
  var import_typescript124 = __toESM(require("typescript"), 1);
49590
49588
 
49591
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49589
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49592
49590
  var GLOBAL_DEFS_FOR_TERSER = {
49593
49591
  ngDevMode: false,
49594
49592
  ngI18nClosureMode: false
@@ -49597,7 +49595,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
49597
49595
  ngJitMode: false
49598
49596
  });
49599
49597
 
49600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49598
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49601
49599
  var LogLevel;
49602
49600
  (function(LogLevel2) {
49603
49601
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -49606,7 +49604,7 @@ var LogLevel;
49606
49604
  LogLevel2[LogLevel2["error"] = 3] = "error";
49607
49605
  })(LogLevel || (LogLevel = {}));
49608
49606
 
49609
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49607
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49610
49608
  var RESET = "\x1B[0m";
49611
49609
  var RED = "\x1B[31m";
49612
49610
  var YELLOW = "\x1B[33m";
@@ -49615,18 +49613,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
49615
49613
  var WARN = `${YELLOW}Warning:${RESET}`;
49616
49614
  var ERROR = `${RED}Error:${RESET}`;
49617
49615
 
49618
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
49616
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
49619
49617
  setFileSystem(new NodeJSFileSystem());
49620
49618
 
49621
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49619
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49622
49620
  var import_fs2 = require("fs");
49623
49621
  var import_path8 = require("path");
49624
49622
  var import_typescript138 = __toESM(require("typescript"), 1);
49625
49623
 
49626
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49624
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49627
49625
  var import_typescript127 = __toESM(require("typescript"), 1);
49628
49626
 
49629
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49630
49628
  var import_path4 = require("path");
49631
49629
  var import_typescript126 = __toESM(require("typescript"), 1);
49632
49630
  var ImportManager2 = class {
@@ -49810,7 +49808,7 @@ ${text2}`;
49810
49808
  }
49811
49809
  };
49812
49810
 
49813
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49814
49812
  var ChangeTracker = class {
49815
49813
  constructor(_printer, _importRemapper) {
49816
49814
  __publicField(this, "_printer");
@@ -49873,7 +49871,7 @@ function normalizePath(path4) {
49873
49871
  return path4.replace(/\\/g, "/");
49874
49872
  }
49875
49873
 
49876
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49874
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49877
49875
  var import_core19 = require("@angular-devkit/core");
49878
49876
  function getProjectTsConfigPaths(tree) {
49879
49877
  return __async(this, null, function* () {
@@ -49953,11 +49951,11 @@ function getWorkspace(tree) {
49953
49951
  });
49954
49952
  }
49955
49953
 
49956
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49954
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49957
49955
  var import_path5 = require("path");
49958
49956
  var import_typescript129 = __toESM(require("typescript"), 1);
49959
49957
 
49960
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
49958
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
49961
49959
  var path3 = __toESM(require("path"), 1);
49962
49960
  var import_typescript128 = __toESM(require("typescript"), 1);
49963
49961
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -49974,7 +49972,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
49974
49972
  return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
49975
49973
  }
49976
49974
 
49977
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49975
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49978
49976
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
49979
49977
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
49980
49978
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -50003,13 +50001,13 @@ function canMigrateFile(basePath, sourceFile, program) {
50003
50001
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
50004
50002
  }
50005
50003
 
50006
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50004
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50007
50005
  var import_typescript134 = __toESM(require("typescript"), 1);
50008
50006
 
50009
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50007
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50010
50008
  var import_typescript131 = __toESM(require("typescript"), 1);
50011
50009
 
50012
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50010
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50013
50011
  var import_typescript130 = __toESM(require("typescript"), 1);
50014
50012
  function getImportOfIdentifier(typeChecker, node) {
50015
50013
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -50060,7 +50058,7 @@ function findImportSpecifier(nodes, specifierName) {
50060
50058
  });
50061
50059
  }
50062
50060
 
50063
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50061
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50064
50062
  function getCallDecoratorImport(typeChecker, decorator) {
50065
50063
  if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
50066
50064
  return null;
@@ -50069,7 +50067,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
50069
50067
  return getImportOfIdentifier(typeChecker, identifier);
50070
50068
  }
50071
50069
 
50072
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50070
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50073
50071
  function getAngularDecorators2(typeChecker, decorators) {
50074
50072
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
50075
50073
  node,
@@ -50079,7 +50077,7 @@ function getAngularDecorators2(typeChecker, decorators) {
50079
50077
  }));
50080
50078
  }
50081
50079
 
50082
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50080
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50083
50081
  var import_typescript132 = __toESM(require("typescript"), 1);
50084
50082
  function closestNode(node, predicate) {
50085
50083
  let current = node.parent;
@@ -50092,7 +50090,7 @@ function closestNode(node, predicate) {
50092
50090
  return null;
50093
50091
  }
50094
50092
 
50095
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50093
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50096
50094
  var import_path6 = require("path");
50097
50095
  var import_typescript133 = __toESM(require("typescript"), 1);
50098
50096
  var UniqueItemTracker = class {
@@ -50270,7 +50268,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
50270
50268
  }));
50271
50269
  }
50272
50270
 
50273
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50271
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50274
50272
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
50275
50273
  const filesToRemove = /* @__PURE__ */ new Set();
50276
50274
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -50469,14 +50467,14 @@ function findNgModuleDecorator(node, typeChecker) {
50469
50467
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
50470
50468
  }
50471
50469
 
50472
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50470
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50473
50471
  var import_path7 = require("path");
50474
50472
  var import_typescript137 = __toESM(require("typescript"), 1);
50475
50473
 
50476
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50474
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50477
50475
  var import_typescript136 = __toESM(require("typescript"), 1);
50478
50476
 
50479
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50477
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50480
50478
  var import_typescript135 = __toESM(require("typescript"), 1);
50481
50479
  function isReferenceToImport(typeChecker, node, importSpecifier) {
50482
50480
  var _a2, _b2;
@@ -50485,7 +50483,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
50485
50483
  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];
50486
50484
  }
50487
50485
 
50488
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50486
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50489
50487
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
50490
50488
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
50491
50489
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -50855,7 +50853,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
50855
50853
  return metadata != null && metadata.isStandalone;
50856
50854
  }
50857
50855
 
50858
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50856
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50859
50857
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
50860
50858
  const tracker = new ChangeTracker(printer, importRemapper);
50861
50859
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51232,7 +51230,7 @@ function hasImport(program, rootFileNames, moduleName) {
51232
51230
  return false;
51233
51231
  }
51234
51232
 
51235
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51233
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51236
51234
  var MigrationMode;
51237
51235
  (function(MigrationMode2) {
51238
51236
  MigrationMode2["toStandalone"] = "convert-to-standalone";