@angular/core 18.1.3 → 18.1.5

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 (52) hide show
  1. package/esm2022/primitives/event-dispatch/src/action_resolver.mjs +6 -3
  2. package/esm2022/primitives/event-dispatch/src/event_dispatcher.mjs +8 -3
  3. package/esm2022/src/application/application_init.mjs +2 -2
  4. package/esm2022/src/application/application_module.mjs +2 -2
  5. package/esm2022/src/application/application_ref.mjs +2 -2
  6. package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +3 -3
  7. package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +2 -2
  8. package/esm2022/src/console.mjs +2 -2
  9. package/esm2022/src/event_delegation_utils.mjs +21 -9
  10. package/esm2022/src/event_dispatch/event_delegation.mjs +9 -2
  11. package/esm2022/src/hydration/annotate.mjs +1 -1
  12. package/esm2022/src/hydration/cleanup.mjs +8 -4
  13. package/esm2022/src/hydration/i18n.mjs +13 -5
  14. package/esm2022/src/hydration/skip_hydration.mjs +11 -1
  15. package/esm2022/src/image_performance_warning.mjs +2 -2
  16. package/esm2022/src/linker/compiler.mjs +2 -2
  17. package/esm2022/src/linker/view_container_ref.mjs +1 -1
  18. package/esm2022/src/platform/platform_ref.mjs +2 -2
  19. package/esm2022/src/render3/component_ref.mjs +1 -1
  20. package/esm2022/src/render3/i18n/i18n_parse.mjs +2 -1
  21. package/esm2022/src/render3/instructions/element_container.mjs +6 -3
  22. package/esm2022/src/render3/interfaces/i18n.mjs +1 -1
  23. package/esm2022/src/render3/interfaces/renderer.mjs +1 -1
  24. package/esm2022/src/render3/interfaces/renderer_dom.mjs +1 -1
  25. package/esm2022/src/render3/node_manipulation.mjs +2 -13
  26. package/esm2022/src/sanitization/html_sanitizer.mjs +2 -2
  27. package/esm2022/src/sanitization/inert_body.mjs +2 -2
  28. package/esm2022/src/testability/testability.mjs +3 -3
  29. package/esm2022/src/version.mjs +1 -1
  30. package/esm2022/testing/src/application_error_handler.mjs +3 -3
  31. package/esm2022/testing/src/logger.mjs +3 -3
  32. package/fesm2022/core.mjs +78 -45
  33. package/fesm2022/core.mjs.map +1 -1
  34. package/fesm2022/primitives/event-dispatch.mjs +13 -5
  35. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  36. package/fesm2022/primitives/signals.mjs +1 -1
  37. package/fesm2022/rxjs-interop.mjs +1 -1
  38. package/fesm2022/testing.mjs +4 -4
  39. package/index.d.ts +11 -9
  40. package/package.json +1 -1
  41. package/primitives/event-dispatch/index.d.ts +3 -2
  42. package/primitives/signals/index.d.ts +1 -1
  43. package/rxjs-interop/index.d.ts +1 -1
  44. package/schematics/migrations/after-render-phase/bundle.js +12 -12
  45. package/schematics/migrations/http-providers/bundle.js +15 -15
  46. package/schematics/migrations/invalid-two-way-bindings/bundle.js +164 -164
  47. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
  48. package/schematics/ng-generate/control-flow-migration/bundle.js +172 -172
  49. package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
  50. package/schematics/ng-generate/standalone-migration/bundle.js +459 -459
  51. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  52. package/testing/index.d.ts +1 -1
@@ -1905,7 +1905,7 @@ var require_semver2 = __commonJS({
1905
1905
  }
1906
1906
  });
1907
1907
 
1908
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
1908
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
1909
1909
  var standalone_migration_exports = {};
1910
1910
  __export(standalone_migration_exports, {
1911
1911
  default: () => standalone_migration_default
@@ -1913,10 +1913,10 @@ __export(standalone_migration_exports, {
1913
1913
  module.exports = __toCommonJS(standalone_migration_exports);
1914
1914
  var import_schematics = require("@angular-devkit/schematics");
1915
1915
 
1916
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
1916
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
1917
1917
  var import_typescript = __toESM(require("typescript"), 1);
1918
1918
 
1919
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
1919
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
1920
1920
  var InvalidFileSystem = class {
1921
1921
  exists(path4) {
1922
1922
  throw makeError();
@@ -2004,7 +2004,7 @@ function makeError() {
2004
2004
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
2005
2005
  }
2006
2006
 
2007
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
2007
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
2008
2008
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
2009
2009
  function stripExtension(path4) {
2010
2010
  return path4.replace(TS_DTS_JS_EXTENSION, "");
@@ -2017,7 +2017,7 @@ function getSourceFileOrError(program, fileName) {
2017
2017
  return sf;
2018
2018
  }
2019
2019
 
2020
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2020
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2021
2021
  var fs = new InvalidFileSystem();
2022
2022
  function getFileSystem() {
2023
2023
  return fs;
@@ -2061,7 +2061,7 @@ function toRelativeImport(relativePath) {
2061
2061
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
2062
2062
  }
2063
2063
 
2064
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2064
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2065
2065
  var LogicalProjectPath = {
2066
2066
  relativePathBetween: function(from, to) {
2067
2067
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -2107,7 +2107,7 @@ function isWithinBasePath(base, path4) {
2107
2107
  return isLocalRelativePath(relative(base, path4));
2108
2108
  }
2109
2109
 
2110
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2110
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2111
2111
  var import_fs = __toESM(require("fs"), 1);
2112
2112
  var import_module = require("module");
2113
2113
  var p = __toESM(require("path"), 1);
@@ -2215,7 +2215,7 @@ function toggleCase(str) {
2215
2215
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
2216
2216
  }
2217
2217
 
2218
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
2218
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
2219
2219
  var _SELECTOR_REGEXP = new RegExp(
2220
2220
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
2221
2221
  "g"
@@ -2523,7 +2523,7 @@ var SelectorContext = class {
2523
2523
  }
2524
2524
  };
2525
2525
 
2526
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
2526
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
2527
2527
  var emitDistinctChangesOnlyDefaultValue = true;
2528
2528
  var ViewEncapsulation;
2529
2529
  (function(ViewEncapsulation2) {
@@ -2592,7 +2592,7 @@ function parseSelectorToR3Selector(selector) {
2592
2592
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
2593
2593
  }
2594
2594
 
2595
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2595
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2596
2596
  var output_ast_exports = {};
2597
2597
  __export(output_ast_exports, {
2598
2598
  ArrayType: () => ArrayType,
@@ -2680,7 +2680,7 @@ __export(output_ast_exports, {
2680
2680
  variable: () => variable
2681
2681
  });
2682
2682
 
2683
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
2683
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
2684
2684
  var textEncoder;
2685
2685
  function digest(message) {
2686
2686
  return message.id || computeDigest(message);
@@ -2923,7 +2923,7 @@ function wordAt(bytes, index, endian) {
2923
2923
  return word;
2924
2924
  }
2925
2925
 
2926
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2926
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2927
2927
  var TypeModifier;
2928
2928
  (function(TypeModifier2) {
2929
2929
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -4118,7 +4118,7 @@ function serializeTags(tags) {
4118
4118
  return out;
4119
4119
  }
4120
4120
 
4121
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4121
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4122
4122
  var CONSTANT_PREFIX = "_c";
4123
4123
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
4124
4124
  var KEY_CONTEXT = {};
@@ -4306,7 +4306,7 @@ function isLongStringLiteral(expr) {
4306
4306
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
4307
4307
  }
4308
4308
 
4309
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4309
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4310
4310
  var CORE = "@angular/core";
4311
4311
  var _Identifiers = class {
4312
4312
  };
@@ -5203,7 +5203,7 @@ var Identifiers = _Identifiers;
5203
5203
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
5204
5204
  })();
5205
5205
 
5206
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
5206
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
5207
5207
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
5208
5208
  function dashCaseToCamelCase(input) {
5209
5209
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -5280,7 +5280,7 @@ var Version = class {
5280
5280
  };
5281
5281
  var _global = globalThis;
5282
5282
 
5283
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5283
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5284
5284
  var VERSION = 3;
5285
5285
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
5286
5286
  var SourceMapGenerator = class {
@@ -5409,7 +5409,7 @@ function toBase64Digit(value) {
5409
5409
  return B64_DIGITS[value];
5410
5410
  }
5411
5411
 
5412
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5412
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5413
5413
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
5414
5414
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
5415
5415
  var _INDENT_WITH = " ";
@@ -5897,7 +5897,7 @@ function _createIndent(count) {
5897
5897
  return res;
5898
5898
  }
5899
5899
 
5900
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
5900
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
5901
5901
  function typeWithParameters(type, numParams) {
5902
5902
  if (numParams === 0) {
5903
5903
  return expressionType(type);
@@ -5955,7 +5955,7 @@ function generateForwardRef(expr) {
5955
5955
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
5956
5956
  }
5957
5957
 
5958
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
5958
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
5959
5959
  var R3FactoryDelegateType;
5960
5960
  (function(R3FactoryDelegateType2) {
5961
5961
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -5970,7 +5970,7 @@ var FactoryTarget;
5970
5970
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
5971
5971
  })(FactoryTarget || (FactoryTarget = {}));
5972
5972
  function compileFactoryFunction(meta) {
5973
- const t = variable("\u0275t");
5973
+ const t = variable("__ngFactoryType__");
5974
5974
  let baseFactoryVar = null;
5975
5975
  const typeForCtor = !isDelegatedFactoryMetadata(meta) ? new BinaryOperatorExpr(BinaryOperator.Or, t, meta.type.value) : t;
5976
5976
  let ctorExpr = null;
@@ -5985,7 +5985,7 @@ function compileFactoryFunction(meta) {
5985
5985
  const body = [];
5986
5986
  let retExpr = null;
5987
5987
  function makeConditionalFactory(nonCtorExpr) {
5988
- const r = variable("\u0275r");
5988
+ const r = variable("__ngConditionalFactory__");
5989
5989
  body.push(r.set(NULL_EXPR).toDeclStmt());
5990
5990
  const ctorStmt = ctorExpr !== null ? r.set(ctorExpr).toStmt() : importExpr(Identifiers.invalidFactory).callFn([]).toStmt();
5991
5991
  body.push(ifStmt(t, [ctorStmt], [r.set(nonCtorExpr).toStmt()]));
@@ -6100,7 +6100,7 @@ function getInjectFn(target) {
6100
6100
  }
6101
6101
  }
6102
6102
 
6103
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6103
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6104
6104
  var ParserError = class {
6105
6105
  constructor(message, input, errLocation, ctxLocation) {
6106
6106
  this.input = input;
@@ -6538,7 +6538,7 @@ var BoundElementProperty = class {
6538
6538
  }
6539
6539
  };
6540
6540
 
6541
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
6541
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
6542
6542
  var TagContentType;
6543
6543
  (function(TagContentType2) {
6544
6544
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -6575,7 +6575,7 @@ function mergeNsAndName(prefix, localName) {
6575
6575
  return prefix ? `:${prefix}:${localName}` : localName;
6576
6576
  }
6577
6577
 
6578
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
6578
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
6579
6579
  var Comment = class {
6580
6580
  constructor(value, sourceSpan) {
6581
6581
  this.value = value;
@@ -7045,7 +7045,7 @@ function visitAll(visitor, nodes) {
7045
7045
  return result;
7046
7046
  }
7047
7047
 
7048
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7048
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7049
7049
  var Message = class {
7050
7050
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
7051
7051
  this.nodes = nodes;
@@ -7236,7 +7236,7 @@ var LocalizeMessageStringVisitor = class {
7236
7236
  }
7237
7237
  };
7238
7238
 
7239
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7239
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7240
7240
  var Serializer = class {
7241
7241
  createNameMapper(message) {
7242
7242
  return null;
@@ -7293,7 +7293,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
7293
7293
  }
7294
7294
  };
7295
7295
 
7296
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7296
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7297
7297
  var _Visitor = class {
7298
7298
  visitTag(tag) {
7299
7299
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -7381,7 +7381,7 @@ function escapeXml(text2) {
7381
7381
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
7382
7382
  }
7383
7383
 
7384
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7384
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7385
7385
  var _XMB_HANDLER = "angular";
7386
7386
  var _MESSAGES_TAG = "messagebundle";
7387
7387
  var _MESSAGE_TAG = "msg";
@@ -7543,7 +7543,7 @@ function toPublicName(internalName) {
7543
7543
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
7544
7544
  }
7545
7545
 
7546
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
7546
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
7547
7547
  var I18N_ATTR = "i18n";
7548
7548
  var I18N_ATTR_PREFIX = "i18n-";
7549
7549
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -7583,7 +7583,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
7583
7583
  return postfix ? `${raw}_${postfix}` : raw;
7584
7584
  }
7585
7585
 
7586
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
7586
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
7587
7587
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
7588
7588
  var TEMPORARY_NAME = "_t";
7589
7589
  var CONTEXT_NAME = "ctx";
@@ -7710,7 +7710,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
7710
7710
  return attributesMap;
7711
7711
  }
7712
7712
 
7713
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
7713
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
7714
7714
  function compileInjectable(meta, resolveForwardRefs) {
7715
7715
  let result = null;
7716
7716
  const factoryMeta = {
@@ -7794,11 +7794,11 @@ function delegateToFactory(type, useType, unwrapForwardRefs) {
7794
7794
  return createFactoryFunction(unwrappedType);
7795
7795
  }
7796
7796
  function createFactoryFunction(type) {
7797
- const t = new FnParam("\u0275t", DYNAMIC_TYPE);
7797
+ const t = new FnParam("__ngFactoryType__", DYNAMIC_TYPE);
7798
7798
  return arrowFn([t], type.prop("\u0275fac").callFn([variable(t.name)]));
7799
7799
  }
7800
7800
 
7801
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
7801
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
7802
7802
  var UNUSABLE_INTERPOLATION_REGEXPS = [
7803
7803
  /@/,
7804
7804
  /^\s*$/,
@@ -7821,7 +7821,7 @@ function assertInterpolationSymbols(identifier, value) {
7821
7821
  }
7822
7822
  }
7823
7823
 
7824
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
7824
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
7825
7825
  var InterpolationConfig = class {
7826
7826
  static fromArray(markers) {
7827
7827
  if (!markers) {
@@ -7838,7 +7838,7 @@ var InterpolationConfig = class {
7838
7838
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
7839
7839
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
7840
7840
 
7841
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
7841
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
7842
7842
  var $EOF = 0;
7843
7843
  var $BSPACE = 8;
7844
7844
  var $TAB = 9;
@@ -7920,7 +7920,7 @@ function isQuote(code) {
7920
7920
  return code === $SQ || code === $DQ || code === $BT;
7921
7921
  }
7922
7922
 
7923
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
7923
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
7924
7924
  var ParseLocation = class {
7925
7925
  constructor(file, offset, line, col) {
7926
7926
  this.file = file;
@@ -8067,7 +8067,7 @@ function sanitizeIdentifier(name) {
8067
8067
  return name.replace(/\W/g, "_");
8068
8068
  }
8069
8069
 
8070
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8070
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8071
8071
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
8072
8072
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8073
8073
  constructor() {
@@ -8160,7 +8160,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8160
8160
  }
8161
8161
  };
8162
8162
 
8163
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8163
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8164
8164
  var policy;
8165
8165
  function getPolicy() {
8166
8166
  if (policy === void 0) {
@@ -8198,7 +8198,7 @@ function newTrustedFunctionForJIT(...args) {
8198
8198
  return fn2.bind(_global);
8199
8199
  }
8200
8200
 
8201
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8201
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8202
8202
  var JitEvaluator = class {
8203
8203
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
8204
8204
  const converter = new JitEmitterVisitor(refResolver);
@@ -8286,7 +8286,7 @@ function isUseStrictStatement(statement) {
8286
8286
  return statement.isEquivalent(literal("use strict").toStmt());
8287
8287
  }
8288
8288
 
8289
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8289
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8290
8290
  function compileInjector(meta) {
8291
8291
  const definitionMap = new DefinitionMap();
8292
8292
  if (meta.providers !== null) {
@@ -8303,7 +8303,7 @@ function createInjectorType(meta) {
8303
8303
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
8304
8304
  }
8305
8305
 
8306
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8306
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8307
8307
  var R3JitReflector = class {
8308
8308
  constructor(context) {
8309
8309
  this.context = context;
@@ -8319,7 +8319,7 @@ var R3JitReflector = class {
8319
8319
  }
8320
8320
  };
8321
8321
 
8322
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8322
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8323
8323
  var R3SelectorScopeMode;
8324
8324
  (function(R3SelectorScopeMode2) {
8325
8325
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -8454,7 +8454,7 @@ function tupleOfTypes(types) {
8454
8454
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
8455
8455
  }
8456
8456
 
8457
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
8457
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
8458
8458
  function compilePipeFromMetadata(metadata) {
8459
8459
  const definitionMapValues = [];
8460
8460
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -8475,7 +8475,7 @@ function createPipeType(metadata) {
8475
8475
  ]));
8476
8476
  }
8477
8477
 
8478
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
8478
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
8479
8479
  var R3TemplateDependencyKind;
8480
8480
  (function(R3TemplateDependencyKind2) {
8481
8481
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -8483,7 +8483,7 @@ var R3TemplateDependencyKind;
8483
8483
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
8484
8484
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
8485
8485
 
8486
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
8486
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
8487
8487
  var animationKeywords = /* @__PURE__ */ new Set([
8488
8488
  "inherit",
8489
8489
  "initial",
@@ -8963,7 +8963,7 @@ function repeatGroups(groups, multiples) {
8963
8963
  }
8964
8964
  }
8965
8965
 
8966
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
8966
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
8967
8967
  var OpKind;
8968
8968
  (function(OpKind2) {
8969
8969
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -9121,7 +9121,7 @@ var TemplateKind;
9121
9121
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
9122
9122
  })(TemplateKind || (TemplateKind = {}));
9123
9123
 
9124
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9124
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9125
9125
  var ConsumesSlot = Symbol("ConsumesSlot");
9126
9126
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
9127
9127
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -9149,7 +9149,7 @@ function hasUsesVarOffsetTrait(expr) {
9149
9149
  return expr[UsesVarOffset] === true;
9150
9150
  }
9151
9151
 
9152
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9152
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9153
9153
  function createStatementOp(statement) {
9154
9154
  return __spreadValues({
9155
9155
  kind: OpKind.Statement,
@@ -9171,7 +9171,7 @@ var NEW_OP = {
9171
9171
  next: null
9172
9172
  };
9173
9173
 
9174
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9174
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9175
9175
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
9176
9176
  return __spreadValues(__spreadValues(__spreadValues({
9177
9177
  kind: OpKind.InterpolateText,
@@ -9360,7 +9360,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
9360
9360
  }, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
9361
9361
  }
9362
9362
 
9363
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9363
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9364
9364
  var _a;
9365
9365
  var _b;
9366
9366
  var _c;
@@ -10278,7 +10278,7 @@ function isStringLiteral(expr) {
10278
10278
  return expr instanceof LiteralExpr && typeof expr.value === "string";
10279
10279
  }
10280
10280
 
10281
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10281
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10282
10282
  var _OpList = class {
10283
10283
  constructor() {
10284
10284
  this.debugListId = _OpList.nextListId++;
@@ -10469,14 +10469,14 @@ var OpList = _OpList;
10469
10469
  _OpList.nextListId = 0;
10470
10470
  })();
10471
10471
 
10472
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10472
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10473
10473
  var SlotHandle = class {
10474
10474
  constructor() {
10475
10475
  this.slot = null;
10476
10476
  }
10477
10477
  };
10478
10478
 
10479
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10479
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10480
10480
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
10481
10481
  OpKind.Element,
10482
10482
  OpKind.ElementStart,
@@ -10789,7 +10789,7 @@ function createI18nAttributesOp(xref, handle, target) {
10789
10789
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
10790
10790
  }
10791
10791
 
10792
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
10792
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
10793
10793
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
10794
10794
  return __spreadValues(__spreadValues({
10795
10795
  kind: OpKind.HostProperty,
@@ -10803,10 +10803,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
10803
10803
  }, TRAIT_CONSUMES_VARS), NEW_OP);
10804
10804
  }
10805
10805
 
10806
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
10806
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
10807
10807
  var CTX_REF = "CTX_REF_MARKER";
10808
10808
 
10809
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
10809
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
10810
10810
  var CompilationJobKind;
10811
10811
  (function(CompilationJobKind2) {
10812
10812
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -10914,7 +10914,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
10914
10914
  }
10915
10915
  };
10916
10916
 
10917
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
10917
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
10918
10918
  function deleteAnyCasts(job) {
10919
10919
  for (const unit of job.units) {
10920
10920
  for (const op of unit.ops()) {
@@ -10932,7 +10932,7 @@ function removeAnys(e) {
10932
10932
  return e;
10933
10933
  }
10934
10934
 
10935
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
10935
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
10936
10936
  function applyI18nExpressions(job) {
10937
10937
  const i18nContexts = /* @__PURE__ */ new Map();
10938
10938
  for (const unit of job.units) {
@@ -10975,7 +10975,7 @@ function needsApplication(i18nContexts, op) {
10975
10975
  return false;
10976
10976
  }
10977
10977
 
10978
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
10978
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
10979
10979
  function assignI18nSlotDependencies(job) {
10980
10980
  for (const unit of job.units) {
10981
10981
  let updateOp = unit.update.head;
@@ -11020,7 +11020,7 @@ function assignI18nSlotDependencies(job) {
11020
11020
  }
11021
11021
  }
11022
11022
 
11023
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11023
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11024
11024
  function createOpXrefMap(unit) {
11025
11025
  const map = /* @__PURE__ */ new Map();
11026
11026
  for (const op of unit.create) {
@@ -11035,7 +11035,7 @@ function createOpXrefMap(unit) {
11035
11035
  return map;
11036
11036
  }
11037
11037
 
11038
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11038
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11039
11039
  function extractAttributes(job) {
11040
11040
  for (const unit of job.units) {
11041
11041
  const elements = createOpXrefMap(unit);
@@ -11164,7 +11164,7 @@ function extractAttributeOp(unit, op, elements) {
11164
11164
  }
11165
11165
  }
11166
11166
 
11167
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11167
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11168
11168
  function lookupElement2(elements, xref) {
11169
11169
  const el = elements.get(xref);
11170
11170
  if (el === void 0) {
@@ -11221,7 +11221,7 @@ function specializeBindings(job) {
11221
11221
  }
11222
11222
  }
11223
11223
 
11224
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11224
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11225
11225
  var CHAINABLE = /* @__PURE__ */ new Set([
11226
11226
  Identifiers.attribute,
11227
11227
  Identifiers.classProp,
@@ -11293,7 +11293,7 @@ function chainOperationsInList(opList) {
11293
11293
  }
11294
11294
  }
11295
11295
 
11296
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11296
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11297
11297
  function collapseSingletonInterpolations(job) {
11298
11298
  for (const unit of job.units) {
11299
11299
  for (const op of unit.update) {
@@ -11305,7 +11305,7 @@ function collapseSingletonInterpolations(job) {
11305
11305
  }
11306
11306
  }
11307
11307
 
11308
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11308
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11309
11309
  function generateConditionalExpressions(job) {
11310
11310
  for (const unit of job.units) {
11311
11311
  for (const op of unit.ops()) {
@@ -11342,7 +11342,7 @@ function generateConditionalExpressions(job) {
11342
11342
  }
11343
11343
  }
11344
11344
 
11345
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11345
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11346
11346
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
11347
11347
  ["&&", BinaryOperator.And],
11348
11348
  [">", BinaryOperator.Bigger],
@@ -11399,7 +11399,7 @@ function literalOrArrayLiteral(value) {
11399
11399
  return literal(value);
11400
11400
  }
11401
11401
 
11402
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11402
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11403
11403
  function collectElementConsts(job) {
11404
11404
  const allElementAttributes = /* @__PURE__ */ new Map();
11405
11405
  for (const unit of job.units) {
@@ -11568,7 +11568,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
11568
11568
  return literalArr(attrArray);
11569
11569
  }
11570
11570
 
11571
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
11571
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
11572
11572
  function convertI18nBindings(job) {
11573
11573
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
11574
11574
  for (const unit of job.units) {
@@ -11609,7 +11609,7 @@ function convertI18nBindings(job) {
11609
11609
  }
11610
11610
  }
11611
11611
 
11612
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
11612
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
11613
11613
  function resolveDeferDepsFns(job) {
11614
11614
  var _a2;
11615
11615
  for (const unit of job.units) {
@@ -11634,7 +11634,7 @@ function resolveDeferDepsFns(job) {
11634
11634
  }
11635
11635
  }
11636
11636
 
11637
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
11637
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
11638
11638
  function createI18nContexts(job) {
11639
11639
  const attrContextByMessage = /* @__PURE__ */ new Map();
11640
11640
  for (const unit of job.units) {
@@ -11712,7 +11712,7 @@ function createI18nContexts(job) {
11712
11712
  }
11713
11713
  }
11714
11714
 
11715
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
11715
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
11716
11716
  function deduplicateTextBindings(job) {
11717
11717
  const seen = /* @__PURE__ */ new Map();
11718
11718
  for (const unit of job.units) {
@@ -11734,7 +11734,7 @@ function deduplicateTextBindings(job) {
11734
11734
  }
11735
11735
  }
11736
11736
 
11737
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
11737
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
11738
11738
  function configureDeferInstructions(job) {
11739
11739
  for (const unit of job.units) {
11740
11740
  for (const op of unit.create) {
@@ -11751,7 +11751,7 @@ function configureDeferInstructions(job) {
11751
11751
  }
11752
11752
  }
11753
11753
 
11754
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
11754
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
11755
11755
  function resolveDeferTargetNames(job) {
11756
11756
  const scopes = /* @__PURE__ */ new Map();
11757
11757
  function getScopeForView2(view) {
@@ -11845,7 +11845,7 @@ var Scope = class {
11845
11845
  }
11846
11846
  };
11847
11847
 
11848
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
11848
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
11849
11849
  var REPLACEMENTS = /* @__PURE__ */ new Map([
11850
11850
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
11851
11851
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -11872,7 +11872,7 @@ function collapseEmptyInstructions(job) {
11872
11872
  }
11873
11873
  }
11874
11874
 
11875
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
11875
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
11876
11876
  function expandSafeReads(job) {
11877
11877
  for (const unit of job.units) {
11878
11878
  for (const op of unit.ops()) {
@@ -12008,7 +12008,7 @@ function ternaryTransform(e) {
12008
12008
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
12009
12009
  }
12010
12010
 
12011
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
12011
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
12012
12012
  var ESCAPE = "\uFFFD";
12013
12013
  var ELEMENT_MARKER = "#";
12014
12014
  var TEMPLATE_MARKER = "*";
@@ -12144,7 +12144,7 @@ function formatValue(value) {
12144
12144
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
12145
12145
  }
12146
12146
 
12147
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12147
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12148
12148
  function generateAdvance(job) {
12149
12149
  for (const unit of job.units) {
12150
12150
  const slotMap = /* @__PURE__ */ new Map();
@@ -12187,7 +12187,7 @@ function generateAdvance(job) {
12187
12187
  }
12188
12188
  }
12189
12189
 
12190
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12190
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12191
12191
  function generateProjectionDefs(job) {
12192
12192
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
12193
12193
  const selectors = [];
@@ -12211,7 +12211,7 @@ function generateProjectionDefs(job) {
12211
12211
  }
12212
12212
  }
12213
12213
 
12214
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12214
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12215
12215
  function generateVariables(job) {
12216
12216
  recursivelyProcessView(job.root, null);
12217
12217
  }
@@ -12329,7 +12329,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
12329
12329
  return newOps;
12330
12330
  }
12331
12331
 
12332
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12332
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12333
12333
  function collectConstExpressions(job) {
12334
12334
  for (const unit of job.units) {
12335
12335
  for (const op of unit.ops()) {
@@ -12343,7 +12343,7 @@ function collectConstExpressions(job) {
12343
12343
  }
12344
12344
  }
12345
12345
 
12346
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12346
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12347
12347
  var STYLE_DOT = "style.";
12348
12348
  var CLASS_DOT = "class.";
12349
12349
  var STYLE_BANG = "style!";
@@ -12401,7 +12401,7 @@ function parseProperty(name) {
12401
12401
  return { property: property2, suffix };
12402
12402
  }
12403
12403
 
12404
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12404
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12405
12405
  function mapLiteral(obj, quoted = false) {
12406
12406
  return literalMap(Object.keys(obj).map((key) => ({
12407
12407
  key,
@@ -12410,7 +12410,7 @@ function mapLiteral(obj, quoted = false) {
12410
12410
  })));
12411
12411
  }
12412
12412
 
12413
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12413
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12414
12414
  var IcuSerializerVisitor = class {
12415
12415
  visitText(text2) {
12416
12416
  return text2.value;
@@ -12444,7 +12444,7 @@ function serializeIcuNode(icu) {
12444
12444
  return icu.visit(serializer);
12445
12445
  }
12446
12446
 
12447
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12447
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12448
12448
  var TokenType;
12449
12449
  (function(TokenType2) {
12450
12450
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -12805,7 +12805,7 @@ function parseIntAutoRadix(text2) {
12805
12805
  return result;
12806
12806
  }
12807
12807
 
12808
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
12808
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
12809
12809
  var SplitInterpolation = class {
12810
12810
  constructor(strings, expressions, offsets) {
12811
12811
  this.strings = strings;
@@ -13689,7 +13689,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
13689
13689
  return offsetMap;
13690
13690
  }
13691
13691
 
13692
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
13692
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
13693
13693
  var NodeWithI18n = class {
13694
13694
  constructor(sourceSpan, i18n2) {
13695
13695
  this.sourceSpan = sourceSpan;
@@ -13812,7 +13812,7 @@ function visitAll2(visitor, nodes, context = null) {
13812
13812
  return result;
13813
13813
  }
13814
13814
 
13815
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
13815
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
13816
13816
  var _SECURITY_SCHEMA;
13817
13817
  function SECURITY_SCHEMA() {
13818
13818
  if (!_SECURITY_SCHEMA) {
@@ -13873,11 +13873,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
13873
13873
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
13874
13874
  }
13875
13875
 
13876
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
13876
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
13877
13877
  var ElementSchemaRegistry = class {
13878
13878
  };
13879
13879
 
13880
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
13880
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
13881
13881
  var BOOLEAN = "boolean";
13882
13882
  var NUMBER = "number";
13883
13883
  var STRING = "string";
@@ -14260,7 +14260,7 @@ function _isPixelDimensionStyle(prop) {
14260
14260
  }
14261
14261
  }
14262
14262
 
14263
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14263
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14264
14264
  var HtmlTagDefinition = class {
14265
14265
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
14266
14266
  this.closedByChildren = {};
@@ -14396,7 +14396,7 @@ function getHtmlTagDefinition(tagName) {
14396
14396
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
14397
14397
  }
14398
14398
 
14399
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14399
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14400
14400
  var TAG_TO_PLACEHOLDER_NAMES = {
14401
14401
  "A": "LINK",
14402
14402
  "B": "BOLD_TEXT",
@@ -14518,7 +14518,7 @@ var PlaceholderRegistry = class {
14518
14518
  }
14519
14519
  };
14520
14520
 
14521
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14521
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14522
14522
  var _expParser = new Parser(new Lexer());
14523
14523
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
14524
14524
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -14700,14 +14700,14 @@ function extractPlaceholderName(input) {
14700
14700
  return input.split(_CUSTOM_PH_EXP)[2];
14701
14701
  }
14702
14702
 
14703
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
14703
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
14704
14704
  var I18nError = class extends ParseError {
14705
14705
  constructor(span, msg) {
14706
14706
  super(span, msg);
14707
14707
  }
14708
14708
  };
14709
14709
 
14710
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
14710
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
14711
14711
  var NAMED_ENTITIES = {
14712
14712
  "AElig": "\xC6",
14713
14713
  "AMP": "&",
@@ -16838,7 +16838,7 @@ var NAMED_ENTITIES = {
16838
16838
  var NGSP_UNICODE = "\uE500";
16839
16839
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
16840
16840
 
16841
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
16841
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
16842
16842
  var TokenError = class extends ParseError {
16843
16843
  constructor(errorMsg, tokenType, span) {
16844
16844
  super(span, errorMsg);
@@ -17828,7 +17828,7 @@ var CursorError = class {
17828
17828
  }
17829
17829
  };
17830
17830
 
17831
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
17831
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
17832
17832
  var TreeError = class extends ParseError {
17833
17833
  static create(elementName, span, msg) {
17834
17834
  return new TreeError(elementName, span, msg);
@@ -18256,7 +18256,7 @@ function decodeEntity(match, entity) {
18256
18256
  return match;
18257
18257
  }
18258
18258
 
18259
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18259
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18260
18260
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
18261
18261
  "iframe|srcdoc",
18262
18262
  "*|innerhtml",
@@ -18271,7 +18271,7 @@ function isTrustedTypesSink(tagName, propName) {
18271
18271
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
18272
18272
  }
18273
18273
 
18274
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18274
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18275
18275
  var setI18nRefs = (htmlNode, i18nNode) => {
18276
18276
  if (htmlNode instanceof NodeWithI18n) {
18277
18277
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -18431,7 +18431,7 @@ function i18nMetaToJSDoc(meta) {
18431
18431
  return jsDocComment(tags);
18432
18432
  }
18433
18433
 
18434
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18434
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18435
18435
  var GOOG_GET_MSG = "goog.getMsg";
18436
18436
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
18437
18437
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -18482,7 +18482,7 @@ function serializeI18nMessageForGetMsg(message) {
18482
18482
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
18483
18483
  }
18484
18484
 
18485
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18485
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18486
18486
  function createLocalizeStatements(variable2, message, params) {
18487
18487
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
18488
18488
  const sourceSpan = getSourceSpan(message);
@@ -18571,7 +18571,7 @@ function createEmptyMessagePart(location) {
18571
18571
  return new LiteralPiece("", new ParseSourceSpan(location, location));
18572
18572
  }
18573
18573
 
18574
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18574
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18575
18575
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
18576
18576
  var TRANSLATION_VAR_PREFIX = "i18n_";
18577
18577
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -18742,7 +18742,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
18742
18742
  return variable(name);
18743
18743
  }
18744
18744
 
18745
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
18745
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
18746
18746
  function convertI18nText(job) {
18747
18747
  var _a2, _b2, _c2;
18748
18748
  for (const unit of job.units) {
@@ -18812,7 +18812,7 @@ function convertI18nText(job) {
18812
18812
  }
18813
18813
  }
18814
18814
 
18815
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
18815
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
18816
18816
  function liftLocalRefs(job) {
18817
18817
  for (const unit of job.units) {
18818
18818
  for (const op of unit.create) {
@@ -18842,7 +18842,7 @@ function serializeLocalRefs(refs) {
18842
18842
  return literalArr(constRefs);
18843
18843
  }
18844
18844
 
18845
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
18845
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
18846
18846
  function emitNamespaceChanges(job) {
18847
18847
  for (const unit of job.units) {
18848
18848
  let activeNamespace = Namespace.HTML;
@@ -18858,7 +18858,7 @@ function emitNamespaceChanges(job) {
18858
18858
  }
18859
18859
  }
18860
18860
 
18861
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
18861
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
18862
18862
  function parse(value) {
18863
18863
  const styles = [];
18864
18864
  let i = 0;
@@ -18952,7 +18952,7 @@ function parseExtractedStyles(job) {
18952
18952
  }
18953
18953
  }
18954
18954
 
18955
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
18955
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
18956
18956
  function nameFunctionsAndVariables(job) {
18957
18957
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
18958
18958
  }
@@ -19096,7 +19096,7 @@ function stripImportant(name) {
19096
19096
  return name;
19097
19097
  }
19098
19098
 
19099
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19099
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19100
19100
  function mergeNextContextExpressions(job) {
19101
19101
  for (const unit of job.units) {
19102
19102
  for (const op of unit.create) {
@@ -19143,7 +19143,7 @@ function mergeNextContextsInOps(ops) {
19143
19143
  }
19144
19144
  }
19145
19145
 
19146
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19146
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19147
19147
  var CONTAINER_TAG = "ng-container";
19148
19148
  function generateNgContainerOps(job) {
19149
19149
  for (const unit of job.units) {
@@ -19160,7 +19160,7 @@ function generateNgContainerOps(job) {
19160
19160
  }
19161
19161
  }
19162
19162
 
19163
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19163
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19164
19164
  function lookupElement3(elements, xref) {
19165
19165
  const el = elements.get(xref);
19166
19166
  if (el === void 0) {
@@ -19190,7 +19190,7 @@ function disableBindings(job) {
19190
19190
  }
19191
19191
  }
19192
19192
 
19193
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19193
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19194
19194
  function generateNullishCoalesceExpressions(job) {
19195
19195
  for (const unit of job.units) {
19196
19196
  for (const op of unit.ops()) {
@@ -19206,7 +19206,7 @@ function generateNullishCoalesceExpressions(job) {
19206
19206
  }
19207
19207
  }
19208
19208
 
19209
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19209
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19210
19210
  function kindTest(kind) {
19211
19211
  return (op) => op.kind === kind;
19212
19212
  }
@@ -19296,7 +19296,7 @@ function keepLast(ops) {
19296
19296
  return ops.slice(ops.length - 1);
19297
19297
  }
19298
19298
 
19299
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19299
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19300
19300
  function removeContentSelectors(job) {
19301
19301
  for (const unit of job.units) {
19302
19302
  const elements = createOpXrefMap(unit);
@@ -19323,7 +19323,7 @@ function lookupInXrefMap(map, xref) {
19323
19323
  return el;
19324
19324
  }
19325
19325
 
19326
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19326
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19327
19327
  function createPipes(job) {
19328
19328
  for (const unit of job.units) {
19329
19329
  processPipeBindingsInView(unit);
@@ -19371,7 +19371,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
19371
19371
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
19372
19372
  }
19373
19373
 
19374
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19374
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19375
19375
  function createVariadicPipes(job) {
19376
19376
  for (const unit of job.units) {
19377
19377
  for (const op of unit.update) {
@@ -19388,7 +19388,7 @@ function createVariadicPipes(job) {
19388
19388
  }
19389
19389
  }
19390
19390
 
19391
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19391
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19392
19392
  function propagateI18nBlocks(job) {
19393
19393
  propagateI18nBlocksToTemplates(job.root, 0);
19394
19394
  }
@@ -19442,7 +19442,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
19442
19442
  }
19443
19443
  }
19444
19444
 
19445
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19445
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19446
19446
  function extractPureFunctions(job) {
19447
19447
  for (const view of job.units) {
19448
19448
  for (const op of view.ops()) {
@@ -19484,7 +19484,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
19484
19484
  }
19485
19485
  };
19486
19486
 
19487
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19487
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19488
19488
  function generatePureLiteralStructures(job) {
19489
19489
  for (const unit of job.units) {
19490
19490
  for (const op of unit.update) {
@@ -19531,7 +19531,7 @@ function transformLiteralMap(expr) {
19531
19531
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
19532
19532
  }
19533
19533
 
19534
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19534
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19535
19535
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
19536
19536
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
19537
19537
  }
@@ -20063,7 +20063,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
20063
20063
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
20064
20064
  }
20065
20065
 
20066
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20066
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20067
20067
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
20068
20068
  ["window", Identifiers.resolveWindow],
20069
20069
  ["document", Identifiers.resolveDocument],
@@ -20428,7 +20428,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
20428
20428
  return fn(params, handlerStmts, void 0, void 0, name);
20429
20429
  }
20430
20430
 
20431
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20431
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20432
20432
  function removeEmptyBindings(job) {
20433
20433
  for (const unit of job.units) {
20434
20434
  for (const op of unit.update) {
@@ -20449,7 +20449,7 @@ function removeEmptyBindings(job) {
20449
20449
  }
20450
20450
  }
20451
20451
 
20452
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20452
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20453
20453
  function removeI18nContexts(job) {
20454
20454
  for (const unit of job.units) {
20455
20455
  for (const op of unit.create) {
@@ -20465,7 +20465,7 @@ function removeI18nContexts(job) {
20465
20465
  }
20466
20466
  }
20467
20467
 
20468
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20468
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20469
20469
  function removeUnusedI18nAttributesOps(job) {
20470
20470
  for (const unit of job.units) {
20471
20471
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -20487,7 +20487,7 @@ function removeUnusedI18nAttributesOps(job) {
20487
20487
  }
20488
20488
  }
20489
20489
 
20490
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20490
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20491
20491
  function resolveContexts(job) {
20492
20492
  for (const unit of job.units) {
20493
20493
  processLexicalScope(unit, unit.create);
@@ -20529,7 +20529,7 @@ function processLexicalScope(view, ops) {
20529
20529
  }
20530
20530
  }
20531
20531
 
20532
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20532
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20533
20533
  function resolveDollarEvent(job) {
20534
20534
  for (const unit of job.units) {
20535
20535
  transformDollarEvent(unit.create);
@@ -20552,7 +20552,7 @@ function transformDollarEvent(ops) {
20552
20552
  }
20553
20553
  }
20554
20554
 
20555
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20555
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20556
20556
  function resolveI18nElementPlaceholders(job) {
20557
20557
  const i18nContexts = /* @__PURE__ */ new Map();
20558
20558
  const elements = /* @__PURE__ */ new Map();
@@ -20731,7 +20731,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
20731
20731
  params.set(placeholder, values);
20732
20732
  }
20733
20733
 
20734
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
20734
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
20735
20735
  function resolveI18nExpressionPlaceholders(job) {
20736
20736
  var _a2;
20737
20737
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -20784,7 +20784,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
20784
20784
  }
20785
20785
  }
20786
20786
 
20787
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
20787
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
20788
20788
  function resolveNames(job) {
20789
20789
  for (const unit of job.units) {
20790
20790
  processLexicalScope2(unit, unit.create, null);
@@ -20862,7 +20862,7 @@ function processLexicalScope2(unit, ops, savedView) {
20862
20862
  }
20863
20863
  }
20864
20864
 
20865
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
20865
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
20866
20866
  var sanitizerFns = /* @__PURE__ */ new Map([
20867
20867
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
20868
20868
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -20932,7 +20932,7 @@ function getOnlySecurityContext(securityContext) {
20932
20932
  return securityContext;
20933
20933
  }
20934
20934
 
20935
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
20935
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
20936
20936
  function transformTwoWayBindingSet(job) {
20937
20937
  for (const unit of job.units) {
20938
20938
  for (const op of unit.create) {
@@ -20955,7 +20955,7 @@ function transformTwoWayBindingSet(job) {
20955
20955
  }
20956
20956
  }
20957
20957
 
20958
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
20958
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
20959
20959
  function saveAndRestoreView(job) {
20960
20960
  for (const unit of job.units) {
20961
20961
  unit.create.prepend([
@@ -21000,7 +21000,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
21000
21000
  }
21001
21001
  }
21002
21002
 
21003
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
21003
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
21004
21004
  function allocateSlots(job) {
21005
21005
  const slotMap = /* @__PURE__ */ new Map();
21006
21006
  for (const unit of job.units) {
@@ -21025,7 +21025,7 @@ function allocateSlots(job) {
21025
21025
  }
21026
21026
  }
21027
21027
 
21028
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
21028
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
21029
21029
  function specializeStyleBindings(job) {
21030
21030
  for (const unit of job.units) {
21031
21031
  for (const op of unit.update) {
@@ -21055,7 +21055,7 @@ function specializeStyleBindings(job) {
21055
21055
  }
21056
21056
  }
21057
21057
 
21058
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21058
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21059
21059
  function generateTemporaryVariables(job) {
21060
21060
  for (const unit of job.units) {
21061
21061
  unit.create.prepend(generateTemporaries(unit.create));
@@ -21113,7 +21113,7 @@ function assignName(names, expr) {
21113
21113
  expr.name = name;
21114
21114
  }
21115
21115
 
21116
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21116
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21117
21117
  function generateTrackFns(job) {
21118
21118
  for (const unit of job.units) {
21119
21119
  for (const op of unit.create) {
@@ -21146,7 +21146,7 @@ function generateTrackFns(job) {
21146
21146
  }
21147
21147
  }
21148
21148
 
21149
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21149
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21150
21150
  function optimizeTrackFns(job) {
21151
21151
  for (const unit of job.units) {
21152
21152
  for (const op of unit.create) {
@@ -21196,7 +21196,7 @@ function isTrackByFunctionCall(rootView, expr) {
21196
21196
  return true;
21197
21197
  }
21198
21198
 
21199
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21199
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21200
21200
  function generateTrackVariables(job) {
21201
21201
  for (const unit of job.units) {
21202
21202
  for (const op of unit.create) {
@@ -21217,7 +21217,7 @@ function generateTrackVariables(job) {
21217
21217
  }
21218
21218
  }
21219
21219
 
21220
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21220
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21221
21221
  function countVariables(job) {
21222
21222
  for (const unit of job.units) {
21223
21223
  let varCount = 0;
@@ -21330,7 +21330,7 @@ function isSingletonInterpolation(expr) {
21330
21330
  return true;
21331
21331
  }
21332
21332
 
21333
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21333
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21334
21334
  function optimizeVariables(job) {
21335
21335
  for (const unit of job.units) {
21336
21336
  inlineAlwaysInlineVariables(unit.create);
@@ -21582,7 +21582,7 @@ function allowConservativeInlining(decl, target) {
21582
21582
  }
21583
21583
  }
21584
21584
 
21585
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21585
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21586
21586
  function wrapI18nIcus(job) {
21587
21587
  for (const unit of job.units) {
21588
21588
  let currentI18nOp = null;
@@ -21612,7 +21612,7 @@ function wrapI18nIcus(job) {
21612
21612
  }
21613
21613
  }
21614
21614
 
21615
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
21615
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
21616
21616
  function optimizeStoreLet(job) {
21617
21617
  const letUsedExternally = /* @__PURE__ */ new Set();
21618
21618
  for (const unit of job.units) {
@@ -21631,7 +21631,7 @@ function optimizeStoreLet(job) {
21631
21631
  }
21632
21632
  }
21633
21633
 
21634
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
21634
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
21635
21635
  function removeIllegalLetReferences(job) {
21636
21636
  for (const unit of job.units) {
21637
21637
  for (const op of unit.update) {
@@ -21648,7 +21648,7 @@ function removeIllegalLetReferences(job) {
21648
21648
  }
21649
21649
  }
21650
21650
 
21651
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
21651
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
21652
21652
  function generateLocalLetReferences(job) {
21653
21653
  for (const unit of job.units) {
21654
21654
  for (const op of unit.update) {
@@ -21666,7 +21666,7 @@ function generateLocalLetReferences(job) {
21666
21666
  }
21667
21667
  }
21668
21668
 
21669
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21669
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21670
21670
  var phases = [
21671
21671
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
21672
21672
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -21823,7 +21823,7 @@ function emitHostBindingFunction(job) {
21823
21823
  );
21824
21824
  }
21825
21825
 
21826
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
21826
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
21827
21827
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
21828
21828
  var domSchema = new DomElementSchemaRegistry();
21829
21829
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -22581,7 +22581,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
22581
22581
  return null;
22582
22582
  }
22583
22583
 
22584
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22584
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22585
22585
  function renderFlagCheckIfStmt(flags, statements) {
22586
22586
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
22587
22587
  }
@@ -22701,7 +22701,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
22701
22701
  ], INFERRED_TYPE, null, contentQueriesFnName);
22702
22702
  }
22703
22703
 
22704
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22704
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22705
22705
  var HtmlParser = class extends Parser2 {
22706
22706
  constructor() {
22707
22707
  super(getHtmlTagDefinition);
@@ -22711,7 +22711,7 @@ var HtmlParser = class extends Parser2 {
22711
22711
  }
22712
22712
  };
22713
22713
 
22714
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22714
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22715
22715
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
22716
22716
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
22717
22717
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -22780,7 +22780,7 @@ function visitAllWithSiblings(visitor, nodes) {
22780
22780
  return result;
22781
22781
  }
22782
22782
 
22783
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22783
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22784
22784
  var PROPERTY_PARTS_SEPARATOR = ".";
22785
22785
  var ATTRIBUTE_PREFIX = "attr";
22786
22786
  var CLASS_PREFIX = "class";
@@ -23134,7 +23134,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
23134
23134
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
23135
23135
  }
23136
23136
 
23137
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23137
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23138
23138
  function isStyleUrlResolvable(url) {
23139
23139
  if (url == null || url.length === 0 || url[0] == "/")
23140
23140
  return false;
@@ -23143,7 +23143,7 @@ function isStyleUrlResolvable(url) {
23143
23143
  }
23144
23144
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
23145
23145
 
23146
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23146
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23147
23147
  var NG_CONTENT_SELECT_ATTR = "select";
23148
23148
  var LINK_ELEMENT = "link";
23149
23149
  var LINK_STYLE_REL_ATTR = "rel";
@@ -23213,7 +23213,7 @@ function normalizeNgContentSelect(selectAttr) {
23213
23213
  return selectAttr;
23214
23214
  }
23215
23215
 
23216
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23216
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23217
23217
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
23218
23218
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
23219
23219
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -23536,7 +23536,7 @@ function stripOptionalParentheses(param, errors) {
23536
23536
  return expression.slice(start, end);
23537
23537
  }
23538
23538
 
23539
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23539
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23540
23540
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
23541
23541
  var SEPARATOR_PATTERN = /^\s$/;
23542
23542
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -23800,7 +23800,7 @@ function parseDeferredTime(value) {
23800
23800
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
23801
23801
  }
23802
23802
 
23803
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23803
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23804
23804
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
23805
23805
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
23806
23806
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -23935,7 +23935,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
23935
23935
  return { triggers, prefetchTriggers };
23936
23936
  }
23937
23937
 
23938
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
23938
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
23939
23939
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
23940
23940
  var KW_BIND_IDX = 1;
23941
23941
  var KW_LET_IDX = 2;
@@ -24402,7 +24402,7 @@ function textContents(node) {
24402
24402
  }
24403
24403
  }
24404
24404
 
24405
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24405
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24406
24406
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
24407
24407
  function parseTemplate(template2, templateUrl, options = {}) {
24408
24408
  var _a2, _b2;
@@ -24481,7 +24481,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
24481
24481
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
24482
24482
  }
24483
24483
 
24484
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24484
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24485
24485
  var COMPONENT_VARIABLE = "%COMP%";
24486
24486
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
24487
24487
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -24872,7 +24872,7 @@ function compileDeferResolverFunction(meta) {
24872
24872
  return arrowFn([], literalArr(depExpressions));
24873
24873
  }
24874
24874
 
24875
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24875
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24876
24876
  var R3TargetBinder = class {
24877
24877
  constructor(directiveMatcher) {
24878
24878
  this.directiveMatcher = directiveMatcher;
@@ -25519,11 +25519,11 @@ function extractScopedNodeEntities(rootScope) {
25519
25519
  return templateEntities;
25520
25520
  }
25521
25521
 
25522
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25522
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25523
25523
  var ResourceLoader = class {
25524
25524
  };
25525
25525
 
25526
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25526
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25527
25527
  var CompilerFacadeImpl = class {
25528
25528
  constructor(jitEvaluator = new JitEvaluator()) {
25529
25529
  this.jitEvaluator = jitEvaluator;
@@ -26101,10 +26101,10 @@ function publishFacade(global) {
26101
26101
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
26102
26102
  }
26103
26103
 
26104
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
26105
- var VERSION2 = new Version("18.1.3");
26104
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
26105
+ var VERSION2 = new Version("18.1.5");
26106
26106
 
26107
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26107
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26108
26108
  var _I18N_ATTR = "i18n";
26109
26109
  var _I18N_ATTR_PREFIX = "i18n-";
26110
26110
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -26415,7 +26415,7 @@ function _parseMessageMeta(i18n2) {
26415
26415
  return { meaning, description, id: id.trim() };
26416
26416
  }
26417
26417
 
26418
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26418
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26419
26419
  var XmlTagDefinition = class {
26420
26420
  constructor() {
26421
26421
  this.closedByParent = false;
@@ -26440,7 +26440,7 @@ function getXmlTagDefinition(tagName) {
26440
26440
  return _TAG_DEFINITION;
26441
26441
  }
26442
26442
 
26443
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26443
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26444
26444
  var XmlParser = class extends Parser2 {
26445
26445
  constructor() {
26446
26446
  super(getXmlTagDefinition);
@@ -26450,7 +26450,7 @@ var XmlParser = class extends Parser2 {
26450
26450
  }
26451
26451
  };
26452
26452
 
26453
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26453
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26454
26454
  var _VERSION = "1.2";
26455
26455
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
26456
26456
  var _DEFAULT_SOURCE_LANG = "en";
@@ -26732,7 +26732,7 @@ function getCtypeForTag(tag) {
26732
26732
  }
26733
26733
  }
26734
26734
 
26735
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26735
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26736
26736
  var _VERSION2 = "2.0";
26737
26737
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
26738
26738
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -27063,7 +27063,7 @@ function getTypeForTag(tag) {
27063
27063
  }
27064
27064
  }
27065
27065
 
27066
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27066
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27067
27067
  var MessageBundle = class {
27068
27068
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
27069
27069
  this._htmlParser = _htmlParser;
@@ -27139,7 +27139,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
27139
27139
  }
27140
27140
  };
27141
27141
 
27142
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27142
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27143
27143
  var FactoryTarget2;
27144
27144
  (function(FactoryTarget3) {
27145
27145
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -27149,7 +27149,7 @@ var FactoryTarget2;
27149
27149
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
27150
27150
  })(FactoryTarget2 || (FactoryTarget2 = {}));
27151
27151
 
27152
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27152
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27153
27153
  function compileClassMetadata(metadata) {
27154
27154
  const fnCall = internalCompileClassMetadata(metadata);
27155
27155
  return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
@@ -27183,7 +27183,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
27183
27183
  return arrowFn([], literalArr(dynamicImports));
27184
27184
  }
27185
27185
 
27186
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27186
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27187
27187
  function compileClassDebugInfo(debugInfo) {
27188
27188
  const debugInfoObject = {
27189
27189
  className: debugInfo.className
@@ -27200,13 +27200,13 @@ function compileClassDebugInfo(debugInfo) {
27200
27200
  return iife.callFn([]);
27201
27201
  }
27202
27202
 
27203
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27203
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27204
27204
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
27205
27205
  var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
27206
27206
  function compileDeclareClassMetadata(metadata) {
27207
27207
  const definitionMap = new DefinitionMap();
27208
27208
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
27209
- definitionMap.set("version", literal("18.1.3"));
27209
+ definitionMap.set("version", literal("18.1.5"));
27210
27210
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27211
27211
  definitionMap.set("type", metadata.type);
27212
27212
  definitionMap.set("decorators", metadata.decorators);
@@ -27225,7 +27225,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27225
27225
  callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
27226
27226
  callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
27227
27227
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
27228
- definitionMap.set("version", literal("18.1.3"));
27228
+ definitionMap.set("version", literal("18.1.5"));
27229
27229
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27230
27230
  definitionMap.set("type", metadata.type);
27231
27231
  definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
@@ -27233,7 +27233,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27233
27233
  return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
27234
27234
  }
27235
27235
 
27236
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27236
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27237
27237
  function toOptionalLiteralArray(values, mapper) {
27238
27238
  if (values === null || values.length === 0) {
27239
27239
  return null;
@@ -27281,7 +27281,7 @@ function compileDependency(dep) {
27281
27281
  return depMeta.toLiteralMap();
27282
27282
  }
27283
27283
 
27284
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27284
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27285
27285
  function compileDeclareDirectiveFromMetadata(meta) {
27286
27286
  const definitionMap = createDirectiveDefinitionMap(meta);
27287
27287
  const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
@@ -27293,7 +27293,7 @@ function createDirectiveDefinitionMap(meta) {
27293
27293
  const definitionMap = new DefinitionMap();
27294
27294
  const minVersion = getMinimumVersionForPartialOutput(meta);
27295
27295
  definitionMap.set("minVersion", literal(minVersion));
27296
- definitionMap.set("version", literal("18.1.3"));
27296
+ definitionMap.set("version", literal("18.1.5"));
27297
27297
  definitionMap.set("type", meta.type.value);
27298
27298
  if (meta.isStandalone) {
27299
27299
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -27455,7 +27455,7 @@ function legacyInputsPartialMetadata(inputs) {
27455
27455
  }));
27456
27456
  }
27457
27457
 
27458
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27458
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27459
27459
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
27460
27460
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
27461
27461
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -27606,12 +27606,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
27606
27606
  }
27607
27607
  };
27608
27608
 
27609
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27609
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27610
27610
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
27611
27611
  function compileDeclareFactoryFunction(meta) {
27612
27612
  const definitionMap = new DefinitionMap();
27613
27613
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
27614
- definitionMap.set("version", literal("18.1.3"));
27614
+ definitionMap.set("version", literal("18.1.5"));
27615
27615
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27616
27616
  definitionMap.set("type", meta.type.value);
27617
27617
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -27623,7 +27623,7 @@ function compileDeclareFactoryFunction(meta) {
27623
27623
  };
27624
27624
  }
27625
27625
 
27626
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27626
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27627
27627
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
27628
27628
  function compileDeclareInjectableFromMetadata(meta) {
27629
27629
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -27634,7 +27634,7 @@ function compileDeclareInjectableFromMetadata(meta) {
27634
27634
  function createInjectableDefinitionMap(meta) {
27635
27635
  const definitionMap = new DefinitionMap();
27636
27636
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
27637
- definitionMap.set("version", literal("18.1.3"));
27637
+ definitionMap.set("version", literal("18.1.5"));
27638
27638
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27639
27639
  definitionMap.set("type", meta.type.value);
27640
27640
  if (meta.providedIn !== void 0) {
@@ -27661,7 +27661,7 @@ function createInjectableDefinitionMap(meta) {
27661
27661
  return definitionMap;
27662
27662
  }
27663
27663
 
27664
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27664
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27665
27665
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
27666
27666
  function compileDeclareInjectorFromMetadata(meta) {
27667
27667
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -27672,7 +27672,7 @@ function compileDeclareInjectorFromMetadata(meta) {
27672
27672
  function createInjectorDefinitionMap(meta) {
27673
27673
  const definitionMap = new DefinitionMap();
27674
27674
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
27675
- definitionMap.set("version", literal("18.1.3"));
27675
+ definitionMap.set("version", literal("18.1.5"));
27676
27676
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27677
27677
  definitionMap.set("type", meta.type.value);
27678
27678
  definitionMap.set("providers", meta.providers);
@@ -27682,7 +27682,7 @@ function createInjectorDefinitionMap(meta) {
27682
27682
  return definitionMap;
27683
27683
  }
27684
27684
 
27685
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27685
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27686
27686
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
27687
27687
  function compileDeclareNgModuleFromMetadata(meta) {
27688
27688
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -27696,7 +27696,7 @@ function createNgModuleDefinitionMap(meta) {
27696
27696
  throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
27697
27697
  }
27698
27698
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
27699
- definitionMap.set("version", literal("18.1.3"));
27699
+ definitionMap.set("version", literal("18.1.5"));
27700
27700
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27701
27701
  definitionMap.set("type", meta.type.value);
27702
27702
  if (meta.bootstrap.length > 0) {
@@ -27720,7 +27720,7 @@ function createNgModuleDefinitionMap(meta) {
27720
27720
  return definitionMap;
27721
27721
  }
27722
27722
 
27723
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27723
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27724
27724
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
27725
27725
  function compileDeclarePipeFromMetadata(meta) {
27726
27726
  const definitionMap = createPipeDefinitionMap(meta);
@@ -27731,7 +27731,7 @@ function compileDeclarePipeFromMetadata(meta) {
27731
27731
  function createPipeDefinitionMap(meta) {
27732
27732
  const definitionMap = new DefinitionMap();
27733
27733
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
27734
- definitionMap.set("version", literal("18.1.3"));
27734
+ definitionMap.set("version", literal("18.1.5"));
27735
27735
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27736
27736
  definitionMap.set("type", meta.type.value);
27737
27737
  if (meta.isStandalone) {
@@ -27744,16 +27744,16 @@ function createPipeDefinitionMap(meta) {
27744
27744
  return definitionMap;
27745
27745
  }
27746
27746
 
27747
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
27747
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
27748
27748
  publishFacade(_global);
27749
27749
 
27750
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27751
- var VERSION3 = new Version("18.1.3");
27750
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
27751
+ var VERSION3 = new Version("18.1.5");
27752
27752
 
27753
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27753
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27754
27754
  var import_typescript5 = __toESM(require("typescript"), 1);
27755
27755
 
27756
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27756
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27757
27757
  var ErrorCode;
27758
27758
  (function(ErrorCode2) {
27759
27759
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -27847,7 +27847,7 @@ var ErrorCode;
27847
27847
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
27848
27848
  })(ErrorCode || (ErrorCode = {}));
27849
27849
 
27850
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27850
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27851
27851
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27852
27852
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
27853
27853
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -27859,15 +27859,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27859
27859
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
27860
27860
  ]);
27861
27861
 
27862
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27862
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27863
27863
  var import_typescript2 = __toESM(require("typescript"), 1);
27864
27864
 
27865
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27865
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27866
27866
  function ngErrorCode(code) {
27867
27867
  return parseInt("-99" + code);
27868
27868
  }
27869
27869
 
27870
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27870
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27871
27871
  var FatalDiagnosticError = class extends Error {
27872
27872
  constructor(code, node, diagnosticMessage, relatedInformation) {
27873
27873
  super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
@@ -27928,10 +27928,10 @@ function isFatalDiagnosticError(err) {
27928
27928
  return err._isFatalDiagnosticError === true;
27929
27929
  }
27930
27930
 
27931
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27931
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27932
27932
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
27933
27933
 
27934
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27934
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27935
27935
  var ExtendedTemplateDiagnosticName;
27936
27936
  (function(ExtendedTemplateDiagnosticName2) {
27937
27937
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -27947,7 +27947,7 @@ var ExtendedTemplateDiagnosticName;
27947
27947
  ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
27948
27948
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
27949
27949
 
27950
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
27950
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
27951
27951
  var import_typescript3 = __toESM(require("typescript"), 1);
27952
27952
  var TS = /\.tsx?$/i;
27953
27953
  var D_TS = /\.d\.ts$/i;
@@ -28048,7 +28048,7 @@ function toUnredirectedSourceFile(sf) {
28048
28048
  return redirectInfo.unredirected;
28049
28049
  }
28050
28050
 
28051
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28051
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28052
28052
  function findExportedNameOfNode(target, file, reflector) {
28053
28053
  const exports = reflector.getExportsOfModule(file);
28054
28054
  if (exports === null) {
@@ -28068,7 +28068,7 @@ function findExportedNameOfNode(target, file, reflector) {
28068
28068
  return foundExportName;
28069
28069
  }
28070
28070
 
28071
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28071
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28072
28072
  var ImportFlags;
28073
28073
  (function(ImportFlags2) {
28074
28074
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -28299,7 +28299,7 @@ var UnifiedModulesStrategy = class {
28299
28299
  }
28300
28300
  };
28301
28301
 
28302
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28302
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28303
28303
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
28304
28304
  var UnifiedModulesAliasingHost = class {
28305
28305
  constructor(unifiedModulesHost) {
@@ -28366,7 +28366,7 @@ var AliasStrategy = class {
28366
28366
  }
28367
28367
  };
28368
28368
 
28369
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28369
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28370
28370
  function relativePathBetween(from, to) {
28371
28371
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
28372
28372
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -28375,7 +28375,7 @@ function normalizeSeparators2(path4) {
28375
28375
  return path4.replace(/\\/g, "/");
28376
28376
  }
28377
28377
 
28378
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28378
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28379
28379
  var NoopImportRewriter = class {
28380
28380
  rewriteSymbol(symbol, specifier) {
28381
28381
  return symbol;
@@ -28428,7 +28428,7 @@ function validateAndRewriteCoreSymbol(name) {
28428
28428
  return CORE_SUPPORTED_SYMBOLS.get(name);
28429
28429
  }
28430
28430
 
28431
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28431
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28432
28432
  var import_typescript7 = __toESM(require("typescript"), 1);
28433
28433
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
28434
28434
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -28463,7 +28463,7 @@ function throwIncompatibleTransformationContextError() {
28463
28463
  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.");
28464
28464
  }
28465
28465
 
28466
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28466
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28467
28467
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
28468
28468
  function attachDefaultImportDeclaration(expr, importDecl) {
28469
28469
  expr[DefaultImportDeclaration] = importDecl;
@@ -28504,13 +28504,13 @@ var DefaultImportTracker = class {
28504
28504
  }
28505
28505
  };
28506
28506
 
28507
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28507
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28508
28508
  var import_typescript13 = __toESM(require("typescript"), 1);
28509
28509
 
28510
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28510
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28511
28511
  var import_typescript12 = __toESM(require("typescript"), 1);
28512
28512
 
28513
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28513
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28514
28514
  var import_typescript9 = __toESM(require("typescript"), 1);
28515
28515
  function isDecoratorIdentifier(exp) {
28516
28516
  return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
@@ -28533,7 +28533,7 @@ var ClassMemberAccessLevel;
28533
28533
  })(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
28534
28534
  var AmbientImport = {};
28535
28535
 
28536
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28536
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28537
28537
  var import_typescript10 = __toESM(require("typescript"), 1);
28538
28538
  function typeToValue(typeNode, checker, isLocalCompilation) {
28539
28539
  var _a2, _b2;
@@ -28717,7 +28717,7 @@ function extractModuleName(node) {
28717
28717
  return node.moduleSpecifier.text;
28718
28718
  }
28719
28719
 
28720
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28720
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28721
28721
  var import_typescript11 = __toESM(require("typescript"), 1);
28722
28722
  function isNamedClassDeclaration(node) {
28723
28723
  return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -28741,7 +28741,7 @@ function classMemberAccessLevelToString(level) {
28741
28741
  }
28742
28742
  }
28743
28743
 
28744
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28744
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28745
28745
  var TypeScriptReflectionHost = class {
28746
28746
  constructor(checker, isLocalCompilation = false) {
28747
28747
  this.checker = checker;
@@ -29228,7 +29228,7 @@ function getExportedName(decl, originalId) {
29228
29228
  }
29229
29229
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
29230
29230
 
29231
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29231
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29232
29232
  var AssumeEager = "AssumeEager";
29233
29233
  var DeferredSymbolTracker = class {
29234
29234
  constructor(typeChecker, onlyExplicitDeferDependencyImports) {
@@ -29348,7 +29348,7 @@ var DeferredSymbolTracker = class {
29348
29348
  }
29349
29349
  };
29350
29350
 
29351
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29351
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29352
29352
  var import_typescript15 = __toESM(require("typescript"), 1);
29353
29353
  var ImportedSymbolsTracker = class {
29354
29354
  constructor() {
@@ -29418,7 +29418,7 @@ var ImportedSymbolsTracker = class {
29418
29418
  }
29419
29419
  };
29420
29420
 
29421
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29421
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29422
29422
  var import_typescript16 = __toESM(require("typescript"), 1);
29423
29423
  var LocalCompilationExtraImportsTracker = class {
29424
29424
  constructor(typeChecker) {
@@ -29469,7 +29469,7 @@ function removeQuotations(s) {
29469
29469
  return s.substring(1, s.length - 1).trim();
29470
29470
  }
29471
29471
 
29472
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29472
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29473
29473
  var Reference2 = class {
29474
29474
  constructor(node, bestGuessOwningModule = null) {
29475
29475
  this.node = node;
@@ -29538,7 +29538,7 @@ var Reference2 = class {
29538
29538
  }
29539
29539
  };
29540
29540
 
29541
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29541
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29542
29542
  var ModuleResolver = class {
29543
29543
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29544
29544
  this.program = program;
@@ -29555,16 +29555,16 @@ var ModuleResolver = class {
29555
29555
  }
29556
29556
  };
29557
29557
 
29558
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29558
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29559
29559
  var import_typescript21 = __toESM(require("typescript"), 1);
29560
29560
 
29561
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29561
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29562
29562
  var import_typescript95 = __toESM(require("typescript"), 1);
29563
29563
 
29564
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29564
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29565
29565
  var import_typescript23 = __toESM(require("typescript"), 1);
29566
29566
 
29567
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29567
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29568
29568
  var import_typescript22 = __toESM(require("typescript"), 1);
29569
29569
  var CORE_MODULE2 = "@angular/core";
29570
29570
  function valueReferenceToExpression(valueRef) {
@@ -29822,7 +29822,7 @@ function isAbstractClassDeclaration(clazz) {
29822
29822
  return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
29823
29823
  }
29824
29824
 
29825
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29825
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29826
29826
  function getConstructorDependencies(clazz, reflector, isCore) {
29827
29827
  const deps = [];
29828
29828
  const errors = [];
@@ -29966,10 +29966,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
29966
29966
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
29967
29967
  }
29968
29968
 
29969
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29969
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29970
29970
  var import_typescript46 = __toESM(require("typescript"), 1);
29971
29971
 
29972
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29972
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29973
29973
  var MetaKind;
29974
29974
  (function(MetaKind2) {
29975
29975
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -29982,10 +29982,10 @@ var MatchSource;
29982
29982
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
29983
29983
  })(MatchSource || (MatchSource = {}));
29984
29984
 
29985
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29985
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29986
29986
  var import_typescript26 = __toESM(require("typescript"), 1);
29987
29987
 
29988
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29988
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29989
29989
  var ClassPropertyMapping = class {
29990
29990
  constructor(forwardMap) {
29991
29991
  this.forwardMap = forwardMap;
@@ -30065,7 +30065,7 @@ function reverseMapFromForwardMap(forwardMap) {
30065
30065
  return reverseMap;
30066
30066
  }
30067
30067
 
30068
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30068
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30069
30069
  var import_typescript24 = __toESM(require("typescript"), 1);
30070
30070
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
30071
30071
  if (!import_typescript24.default.isTupleTypeNode(def)) {
@@ -30261,7 +30261,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
30261
30261
  return hostDirectiveMeta.directive instanceof Reference2;
30262
30262
  }
30263
30263
 
30264
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30264
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30265
30265
  var DtsMetadataReader = class {
30266
30266
  constructor(checker, reflector) {
30267
30267
  this.checker = checker;
@@ -30444,7 +30444,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
30444
30444
  return result.length > 0 ? result : null;
30445
30445
  }
30446
30446
 
30447
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30447
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30448
30448
  function flattenInheritedDirectiveMetadata(reader, dir) {
30449
30449
  const topMeta = reader.getDirectiveMetadata(dir);
30450
30450
  if (topMeta === null) {
@@ -30507,7 +30507,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
30507
30507
  });
30508
30508
  }
30509
30509
 
30510
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30510
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30511
30511
  var LocalMetadataRegistry = class {
30512
30512
  constructor() {
30513
30513
  this.directives = /* @__PURE__ */ new Map();
@@ -30564,7 +30564,7 @@ var CompoundMetadataRegistry = class {
30564
30564
  }
30565
30565
  };
30566
30566
 
30567
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30567
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30568
30568
  var ResourceRegistry = class {
30569
30569
  constructor() {
30570
30570
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -30629,7 +30629,7 @@ var ResourceRegistry = class {
30629
30629
  }
30630
30630
  };
30631
30631
 
30632
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30632
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30633
30633
  var ExportedProviderStatusResolver = class {
30634
30634
  constructor(metaReader) {
30635
30635
  this.metaReader = metaReader;
@@ -30673,7 +30673,7 @@ var ExportedProviderStatusResolver = class {
30673
30673
  }
30674
30674
  };
30675
30675
 
30676
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30676
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30677
30677
  var EMPTY_ARRAY = [];
30678
30678
  var HostDirectivesResolver = class {
30679
30679
  constructor(metaReader) {
@@ -30738,10 +30738,10 @@ function resolveOutput(bindingName) {
30738
30738
  return bindingName;
30739
30739
  }
30740
30740
 
30741
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30741
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30742
30742
  var import_typescript28 = __toESM(require("typescript"), 1);
30743
30743
 
30744
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30744
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30745
30745
  var DynamicValue = class {
30746
30746
  constructor(node, reason, code) {
30747
30747
  this.node = node;
@@ -30831,7 +30831,7 @@ var DynamicValue = class {
30831
30831
  }
30832
30832
  };
30833
30833
 
30834
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30834
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30835
30835
  var ResolvedModule = class {
30836
30836
  constructor(exports, evaluate) {
30837
30837
  this.exports = exports;
@@ -30861,7 +30861,7 @@ var EnumValue = class {
30861
30861
  var KnownFn = class {
30862
30862
  };
30863
30863
 
30864
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30864
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30865
30865
  function describeResolvedType(value, maxDepth = 1) {
30866
30866
  var _a2, _b2;
30867
30867
  if (value === null) {
@@ -30994,10 +30994,10 @@ function getContainerNode(node) {
30994
30994
  return node.getSourceFile();
30995
30995
  }
30996
30996
 
30997
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30997
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30998
30998
  var import_typescript29 = __toESM(require("typescript"), 1);
30999
30999
 
31000
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31000
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31001
31001
  var ArraySliceBuiltinFn = class extends KnownFn {
31002
31002
  constructor(lhs) {
31003
31003
  super();
@@ -31049,14 +31049,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
31049
31049
  }
31050
31050
  };
31051
31051
 
31052
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31052
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31053
31053
  var SyntheticValue = class {
31054
31054
  constructor(value) {
31055
31055
  this.value = value;
31056
31056
  }
31057
31057
  };
31058
31058
 
31059
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31059
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31060
31060
  function literalBinaryOp(op) {
31061
31061
  return { op, literal: true };
31062
31062
  }
@@ -31631,7 +31631,7 @@ function owningModule(context, override = null) {
31631
31631
  }
31632
31632
  }
31633
31633
 
31634
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31634
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31635
31635
  var PartialEvaluator = class {
31636
31636
  constructor(host, checker, dependencyTracker) {
31637
31637
  this.host = host;
@@ -31651,7 +31651,7 @@ var PartialEvaluator = class {
31651
31651
  }
31652
31652
  };
31653
31653
 
31654
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31654
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31655
31655
  var CompilationMode;
31656
31656
  (function(CompilationMode2) {
31657
31657
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -31665,7 +31665,7 @@ var HandlerPrecedence;
31665
31665
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
31666
31666
  })(HandlerPrecedence || (HandlerPrecedence = {}));
31667
31667
 
31668
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31668
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31669
31669
  var import_typescript31 = __toESM(require("typescript"), 1);
31670
31670
  function aliasTransformFactory(exportStatements) {
31671
31671
  return () => {
@@ -31690,10 +31690,10 @@ function aliasTransformFactory(exportStatements) {
31690
31690
  };
31691
31691
  }
31692
31692
 
31693
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31693
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31694
31694
  var import_typescript32 = __toESM(require("typescript"), 1);
31695
31695
 
31696
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31696
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31697
31697
  var PerfPhase;
31698
31698
  (function(PerfPhase2) {
31699
31699
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -31761,7 +31761,7 @@ var PerfCheckpoint;
31761
31761
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
31762
31762
  })(PerfCheckpoint || (PerfCheckpoint = {}));
31763
31763
 
31764
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31764
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31765
31765
  var NoopPerfRecorder = class {
31766
31766
  eventCount() {
31767
31767
  }
@@ -31778,7 +31778,7 @@ var NoopPerfRecorder = class {
31778
31778
  };
31779
31779
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
31780
31780
 
31781
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31781
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31782
31782
  function mark() {
31783
31783
  return process.hrtime();
31784
31784
  }
@@ -31787,7 +31787,7 @@ function timeSinceInMicros(mark2) {
31787
31787
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
31788
31788
  }
31789
31789
 
31790
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31790
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31791
31791
  var ActivePerfRecorder = class {
31792
31792
  static zeroedToNow() {
31793
31793
  return new ActivePerfRecorder(mark());
@@ -31881,7 +31881,7 @@ var DelegatingPerfRecorder = class {
31881
31881
  }
31882
31882
  };
31883
31883
 
31884
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31884
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31885
31885
  var TraitState;
31886
31886
  (function(TraitState2) {
31887
31887
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -31938,7 +31938,7 @@ var TraitImpl = class {
31938
31938
  }
31939
31939
  };
31940
31940
 
31941
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31941
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31942
31942
  var TraitCompiler = class {
31943
31943
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
31944
31944
  this.handlers = handlers;
@@ -32397,10 +32397,10 @@ function containsErrors(diagnostics) {
32397
32397
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
32398
32398
  }
32399
32399
 
32400
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32400
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32401
32401
  var import_typescript43 = __toESM(require("typescript"), 1);
32402
32402
 
32403
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32403
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32404
32404
  var Context = class {
32405
32405
  constructor(isStatement) {
32406
32406
  this.isStatement = isStatement;
@@ -32413,10 +32413,10 @@ var Context = class {
32413
32413
  }
32414
32414
  };
32415
32415
 
32416
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32416
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32417
32417
  var import_typescript38 = __toESM(require("typescript"), 1);
32418
32418
 
32419
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32419
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32420
32420
  var import_typescript34 = __toESM(require("typescript"), 1);
32421
32421
  function createGenerateUniqueIdentifierHelper() {
32422
32422
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -32442,7 +32442,7 @@ function createGenerateUniqueIdentifierHelper() {
32442
32442
  };
32443
32443
  }
32444
32444
 
32445
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32445
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32446
32446
  var import_typescript35 = __toESM(require("typescript"), 1);
32447
32447
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
32448
32448
  return (ctx) => {
@@ -32503,7 +32503,7 @@ function isImportStatement(stmt) {
32503
32503
  return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
32504
32504
  }
32505
32505
 
32506
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32506
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32507
32507
  var import_typescript36 = __toESM(require("typescript"), 1);
32508
32508
  function attemptToReuseGeneratedImports(tracker, request) {
32509
32509
  const requestHash = hashImportRequest(request);
@@ -32530,7 +32530,7 @@ function hashImportRequest(req) {
32530
32530
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
32531
32531
  }
32532
32532
 
32533
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32533
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32534
32534
  var import_typescript37 = __toESM(require("typescript"), 1);
32535
32535
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32536
32536
  let candidateImportToBeUpdated = null;
@@ -32583,7 +32583,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32583
32583
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
32584
32584
  }
32585
32585
 
32586
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32586
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32587
32587
  var presetImportManagerForceNamespaceImports = {
32588
32588
  disableOriginalSourceFileReuse: true,
32589
32589
  forceGenerateNamespacesForNewImports: true
@@ -32732,7 +32732,7 @@ function createImportReference(asTypeReference, ref) {
32732
32732
  }
32733
32733
  }
32734
32734
 
32735
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32735
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32736
32736
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
32737
32737
  [UnaryOperator.Minus, "-"],
32738
32738
  [UnaryOperator.Plus, "+"]
@@ -32977,7 +32977,7 @@ function createRange(span) {
32977
32977
  };
32978
32978
  }
32979
32979
 
32980
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32980
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32981
32981
  var import_typescript39 = __toESM(require("typescript"), 1);
32982
32982
  var INELIGIBLE = {};
32983
32983
  function canEmitType(type, canEmit) {
@@ -33052,10 +33052,10 @@ var TypeEmitter = class {
33052
33052
  }
33053
33053
  };
33054
33054
 
33055
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33055
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33056
33056
  var import_typescript41 = __toESM(require("typescript"), 1);
33057
33057
 
33058
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33058
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33059
33059
  var import_typescript40 = __toESM(require("typescript"), 1);
33060
33060
  function tsNumericExpression(value) {
33061
33061
  if (value < 0) {
@@ -33065,7 +33065,7 @@ function tsNumericExpression(value) {
33065
33065
  return import_typescript40.default.factory.createNumericLiteral(value);
33066
33066
  }
33067
33067
 
33068
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33068
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33069
33069
  function translateType(type, contextFile, reflector, refEmitter, imports) {
33070
33070
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
33071
33071
  }
@@ -33282,7 +33282,7 @@ var TypeTranslatorVisitor = class {
33282
33282
  }
33283
33283
  };
33284
33284
 
33285
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33285
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33286
33286
  var import_typescript42 = __toESM(require("typescript"), 1);
33287
33287
  var PureAnnotation;
33288
33288
  (function(PureAnnotation2) {
@@ -33485,7 +33485,7 @@ function attachComments(statement, leadingComments) {
33485
33485
  }
33486
33486
  }
33487
33487
 
33488
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33488
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33489
33489
  function translateExpression(contextFile, expression, imports, options = {}) {
33490
33490
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
33491
33491
  }
@@ -33493,7 +33493,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
33493
33493
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
33494
33494
  }
33495
33495
 
33496
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33496
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33497
33497
  var DtsTransformRegistry = class {
33498
33498
  constructor() {
33499
33499
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -33641,10 +33641,10 @@ function markForEmitAsSingleLine(node) {
33641
33641
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
33642
33642
  }
33643
33643
 
33644
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33644
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33645
33645
  var import_typescript45 = __toESM(require("typescript"), 1);
33646
33646
 
33647
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33647
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33648
33648
  var import_typescript44 = __toESM(require("typescript"), 1);
33649
33649
  function visit(node, visitor, context) {
33650
33650
  return visitor._visit(node, context);
@@ -33705,7 +33705,7 @@ var Visitor = class {
33705
33705
  }
33706
33706
  };
33707
33707
 
33708
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33708
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33709
33709
  var NO_DECORATORS = /* @__PURE__ */ new Set();
33710
33710
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
33711
33711
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -33940,7 +33940,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
33940
33940
  return array;
33941
33941
  }
33942
33942
 
33943
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33943
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33944
33944
  function makeDuplicateDeclarationError(node, data, kind) {
33945
33945
  const context = [];
33946
33946
  for (const decl of data) {
@@ -34149,7 +34149,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
34149
34149
  }
34150
34150
  }
34151
34151
 
34152
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34152
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34153
34153
  var import_typescript48 = __toESM(require("typescript"), 1);
34154
34154
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
34155
34155
  let resolved = null;
@@ -34199,7 +34199,7 @@ function resolveLiteral(decorator, literalCache) {
34199
34199
  return meta;
34200
34200
  }
34201
34201
 
34202
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34202
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34203
34203
  function compileNgFactoryDefField(metadata) {
34204
34204
  const res = compileFactoryFunction(metadata);
34205
34205
  return {
@@ -34221,7 +34221,7 @@ function compileDeclareFactory(metadata) {
34221
34221
  };
34222
34222
  }
34223
34223
 
34224
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34224
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34225
34225
  var InjectableClassRegistry = class {
34226
34226
  constructor(host, isCore) {
34227
34227
  this.host = host;
@@ -34247,7 +34247,7 @@ var InjectableClassRegistry = class {
34247
34247
  }
34248
34248
  };
34249
34249
 
34250
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34250
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34251
34251
  var import_typescript49 = __toESM(require("typescript"), 1);
34252
34252
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
34253
34253
  if (!reflection.isClass(clazz)) {
@@ -34333,7 +34333,7 @@ function removeIdentifierReferences(node, names) {
34333
34333
  return result.transformed[0];
34334
34334
  }
34335
34335
 
34336
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34336
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34337
34337
  var path = __toESM(require("path"), 1);
34338
34338
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
34339
34339
  if (!reflection.isClass(clazz)) {
@@ -34359,13 +34359,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
34359
34359
  return null;
34360
34360
  }
34361
34361
 
34362
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34362
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34363
34363
  var NoopReferencesRegistry = class {
34364
34364
  add(source, ...references) {
34365
34365
  }
34366
34366
  };
34367
34367
 
34368
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34368
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34369
34369
  function extractSchemas(rawExpr, evaluator, context) {
34370
34370
  const schemas = [];
34371
34371
  const result = evaluator.evaluate(rawExpr);
@@ -34394,7 +34394,7 @@ function extractSchemas(rawExpr, evaluator, context) {
34394
34394
  return schemas;
34395
34395
  }
34396
34396
 
34397
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34397
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34398
34398
  function compileInputTransformFields(inputs) {
34399
34399
  const extraFields = [];
34400
34400
  for (const input of inputs) {
@@ -34411,10 +34411,10 @@ function compileInputTransformFields(inputs) {
34411
34411
  return extraFields;
34412
34412
  }
34413
34413
 
34414
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34414
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34415
34415
  var import_typescript88 = __toESM(require("typescript"), 1);
34416
34416
 
34417
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34417
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34418
34418
  var import_typescript50 = __toESM(require("typescript"), 1);
34419
34419
  var SemanticSymbol = class {
34420
34420
  constructor(decl) {
@@ -34430,7 +34430,7 @@ function getSymbolIdentifier(decl) {
34430
34430
  return decl.name.text;
34431
34431
  }
34432
34432
 
34433
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34433
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34434
34434
  var OpaqueSymbol = class extends SemanticSymbol {
34435
34435
  isPublicApiAffected() {
34436
34436
  return false;
@@ -34572,10 +34572,10 @@ function getImportPath(expr) {
34572
34572
  }
34573
34573
  }
34574
34574
 
34575
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34575
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34576
34576
  var import_typescript51 = __toESM(require("typescript"), 1);
34577
34577
 
34578
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34578
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34579
34579
  function isSymbolEqual(a, b) {
34580
34580
  if (a.decl === b.decl) {
34581
34581
  return true;
@@ -34625,7 +34625,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
34625
34625
  return true;
34626
34626
  }
34627
34627
 
34628
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34628
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34629
34629
  function extractSemanticTypeParameters(node) {
34630
34630
  if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
34631
34631
  return null;
@@ -34647,14 +34647,14 @@ function isTypeParameterEqual(a, b) {
34647
34647
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
34648
34648
  }
34649
34649
 
34650
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34650
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34651
34651
  var ComponentScopeKind;
34652
34652
  (function(ComponentScopeKind2) {
34653
34653
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
34654
34654
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
34655
34655
  })(ComponentScopeKind || (ComponentScopeKind = {}));
34656
34656
 
34657
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34657
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34658
34658
  var CompoundComponentScopeReader = class {
34659
34659
  constructor(readers) {
34660
34660
  this.readers = readers;
@@ -34679,7 +34679,7 @@ var CompoundComponentScopeReader = class {
34679
34679
  }
34680
34680
  };
34681
34681
 
34682
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34682
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34683
34683
  var MetadataDtsModuleScopeResolver = class {
34684
34684
  constructor(dtsMetaReader, aliasingHost) {
34685
34685
  this.dtsMetaReader = dtsMetaReader;
@@ -34754,10 +34754,10 @@ var MetadataDtsModuleScopeResolver = class {
34754
34754
  }
34755
34755
  };
34756
34756
 
34757
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34757
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34758
34758
  var import_typescript52 = __toESM(require("typescript"), 1);
34759
34759
 
34760
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34760
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34761
34761
  function getDiagnosticNode(ref, rawExpr) {
34762
34762
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
34763
34763
  }
@@ -34783,7 +34783,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
34783
34783
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
34784
34784
  }
34785
34785
 
34786
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34786
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34787
34787
  var LocalModuleScopeRegistry = class {
34788
34788
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
34789
34789
  this.localReader = localReader;
@@ -35124,7 +35124,7 @@ function reexportCollision(module2, refA, refB) {
35124
35124
  ]);
35125
35125
  }
35126
35126
 
35127
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35127
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35128
35128
  var import_typescript54 = __toESM(require("typescript"), 1);
35129
35129
  var TypeCheckScopeRegistry = class {
35130
35130
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -35204,10 +35204,10 @@ var TypeCheckScopeRegistry = class {
35204
35204
  }
35205
35205
  };
35206
35206
 
35207
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35207
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35208
35208
  var import_typescript58 = __toESM(require("typescript"), 1);
35209
35209
 
35210
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35210
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35211
35211
  function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35212
35212
  if (!api.allowedAccessLevels.includes(member.accessLevel)) {
35213
35213
  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)}.`, [
@@ -35216,7 +35216,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35216
35216
  }
35217
35217
  }
35218
35218
 
35219
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35219
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35220
35220
  var import_typescript55 = __toESM(require("typescript"), 1);
35221
35221
  function tryParseInitializerApi(functions, expression, reflector, importTracker) {
35222
35222
  if (!import_typescript55.default.isCallExpression(expression)) {
@@ -35285,7 +35285,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
35285
35285
  return { api: matchingApi, apiReference, isRequired };
35286
35286
  }
35287
35287
 
35288
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35288
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35289
35289
  var import_typescript56 = __toESM(require("typescript"), 1);
35290
35290
  function parseAndValidateInputAndOutputOptions(optionsNode) {
35291
35291
  if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
@@ -35303,7 +35303,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
35303
35303
  return { alias };
35304
35304
  }
35305
35305
 
35306
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35306
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35307
35307
  var INPUT_INITIALIZER_FN = {
35308
35308
  functionName: "input",
35309
35309
  owningModule: "@angular/core",
@@ -35335,7 +35335,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
35335
35335
  };
35336
35336
  }
35337
35337
 
35338
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35338
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35339
35339
  var MODEL_INITIALIZER_FN = {
35340
35340
  functionName: "model",
35341
35341
  owningModule: "@angular/core",
@@ -35376,7 +35376,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
35376
35376
  };
35377
35377
  }
35378
35378
 
35379
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35379
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35380
35380
  var allowedAccessLevels = [
35381
35381
  ClassMemberAccessLevel.PublicWritable,
35382
35382
  ClassMemberAccessLevel.PublicReadonly,
@@ -35420,7 +35420,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
35420
35420
  };
35421
35421
  }
35422
35422
 
35423
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35423
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35424
35424
  var import_typescript57 = __toESM(require("typescript"), 1);
35425
35425
  var queryFunctionNames = [
35426
35426
  "viewChild",
@@ -35504,7 +35504,7 @@ function parseDescendantsOption(value) {
35504
35504
  throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
35505
35505
  }
35506
35506
 
35507
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35507
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35508
35508
  var EMPTY_OBJECT = {};
35509
35509
  var queryDecoratorNames = [
35510
35510
  "ViewChild",
@@ -36302,7 +36302,7 @@ function toR3InputMetadata(mapping) {
36302
36302
  };
36303
36303
  }
36304
36304
 
36305
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36305
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36306
36306
  var DirectiveSymbol = class extends SemanticSymbol {
36307
36307
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
36308
36308
  super(decl);
@@ -36382,7 +36382,7 @@ function isBaseClassEqual(current, previous) {
36382
36382
  return isSymbolEqual(current, previous);
36383
36383
  }
36384
36384
 
36385
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36385
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36386
36386
  var FIELD_DECORATORS = [
36387
36387
  "Input",
36388
36388
  "Output",
@@ -36575,10 +36575,10 @@ var DirectiveDecoratorHandler = class {
36575
36575
  }
36576
36576
  };
36577
36577
 
36578
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36578
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36579
36579
  var import_typescript60 = __toESM(require("typescript"), 1);
36580
36580
 
36581
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36581
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36582
36582
  var import_typescript59 = __toESM(require("typescript"), 1);
36583
36583
  function createModuleWithProvidersResolver(reflector, isCore) {
36584
36584
  function _reflectModuleFromTypeParam(type, node) {
@@ -36650,7 +36650,7 @@ function isResolvedModuleWithProviders(sv) {
36650
36650
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
36651
36651
  }
36652
36652
 
36653
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36653
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36654
36654
  var NgModuleSymbol = class extends SemanticSymbol {
36655
36655
  constructor(decl, hasProviders) {
36656
36656
  super(decl);
@@ -37263,7 +37263,7 @@ function isSyntheticReference(ref) {
37263
37263
  return ref.synthetic;
37264
37264
  }
37265
37265
 
37266
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37266
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37267
37267
  function makeCyclicImportInfo(ref, type, cycle) {
37268
37268
  const name = ref.debugName || "(unknown)";
37269
37269
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -37286,7 +37286,7 @@ function checkCustomElementSelectorForErrors(selector) {
37286
37286
  return null;
37287
37287
  }
37288
37288
 
37289
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37289
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37290
37290
  var import_typescript62 = __toESM(require("typescript"), 1);
37291
37291
  function getTemplateDeclarationNodeForError(declaration) {
37292
37292
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -37638,7 +37638,7 @@ function _extractTemplateStyleUrls(template2) {
37638
37638
  }));
37639
37639
  }
37640
37640
 
37641
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37641
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37642
37642
  var ComponentSymbol = class extends DirectiveSymbol {
37643
37643
  constructor() {
37644
37644
  super(...arguments);
@@ -37673,7 +37673,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
37673
37673
  }
37674
37674
  };
37675
37675
 
37676
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37676
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37677
37677
  function collectAnimationNames(value, animationTriggerNames) {
37678
37678
  if (value instanceof Map) {
37679
37679
  const name = value.get("name");
@@ -37750,7 +37750,7 @@ function isLikelyModuleWithProviders(value) {
37750
37750
  return false;
37751
37751
  }
37752
37752
 
37753
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
37753
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
37754
37754
  var NgOriginalFile = Symbol("NgOriginalFile");
37755
37755
  var UpdateMode;
37756
37756
  (function(UpdateMode2) {
@@ -37758,13 +37758,13 @@ var UpdateMode;
37758
37758
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
37759
37759
  })(UpdateMode || (UpdateMode = {}));
37760
37760
 
37761
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37761
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37762
37762
  var import_typescript66 = __toESM(require("typescript"), 1);
37763
37763
 
37764
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37764
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37765
37765
  var import_typescript63 = __toESM(require("typescript"), 1);
37766
37766
 
37767
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
37767
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
37768
37768
  var NgExtension = Symbol("NgExtension");
37769
37769
  function isExtended(sf) {
37770
37770
  return sf[NgExtension] !== void 0;
@@ -37824,13 +37824,13 @@ function retagTsFile(sf) {
37824
37824
  }
37825
37825
  }
37826
37826
 
37827
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
37827
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
37828
37828
  var TS_EXTENSIONS = /\.tsx?$/i;
37829
37829
  function makeShimFileName(fileName, suffix) {
37830
37830
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
37831
37831
  }
37832
37832
 
37833
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37833
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37834
37834
  var ShimAdapter = class {
37835
37835
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
37836
37836
  this.delegate = delegate;
@@ -37925,7 +37925,7 @@ var ShimAdapter = class {
37925
37925
  }
37926
37926
  };
37927
37927
 
37928
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
37928
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
37929
37929
  var ShimReferenceTagger = class {
37930
37930
  constructor(shimExtensions) {
37931
37931
  this.tagged = /* @__PURE__ */ new Set();
@@ -37959,7 +37959,7 @@ var ShimReferenceTagger = class {
37959
37959
  }
37960
37960
  };
37961
37961
 
37962
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37962
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37963
37963
  var DelegatingCompilerHost = class {
37964
37964
  get jsDocParsingMode() {
37965
37965
  return this.delegate.jsDocParsingMode;
@@ -38077,14 +38077,14 @@ var TsCreateProgramDriver = class {
38077
38077
  }
38078
38078
  };
38079
38079
 
38080
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
38080
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
38081
38081
  var OptimizeFor;
38082
38082
  (function(OptimizeFor2) {
38083
38083
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
38084
38084
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
38085
38085
  })(OptimizeFor || (OptimizeFor = {}));
38086
38086
 
38087
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
38087
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
38088
38088
  var CompletionKind;
38089
38089
  (function(CompletionKind2) {
38090
38090
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
@@ -38092,7 +38092,7 @@ var CompletionKind;
38092
38092
  CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
38093
38093
  })(CompletionKind || (CompletionKind = {}));
38094
38094
 
38095
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
38095
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
38096
38096
  var PotentialImportKind;
38097
38097
  (function(PotentialImportKind2) {
38098
38098
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -38104,7 +38104,7 @@ var PotentialImportMode;
38104
38104
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
38105
38105
  })(PotentialImportMode || (PotentialImportMode = {}));
38106
38106
 
38107
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
38107
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
38108
38108
  var SymbolKind;
38109
38109
  (function(SymbolKind2) {
38110
38110
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -38121,7 +38121,7 @@ var SymbolKind;
38121
38121
  SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
38122
38122
  })(SymbolKind || (SymbolKind = {}));
38123
38123
 
38124
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
38124
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
38125
38125
  var import_typescript68 = __toESM(require("typescript"), 1);
38126
38126
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
38127
38127
  var _a2;
@@ -38232,7 +38232,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
38232
38232
  );
38233
38233
  }
38234
38234
 
38235
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
38235
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
38236
38236
  var TEMPLATE_ID = Symbol("ngTemplateId");
38237
38237
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
38238
38238
  function getTemplateId(clazz) {
@@ -38249,10 +38249,10 @@ function allocateTemplateId(sf) {
38249
38249
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
38250
38250
  }
38251
38251
 
38252
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38252
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38253
38253
  var import_typescript70 = __toESM(require("typescript"), 1);
38254
38254
 
38255
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38255
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38256
38256
  var import_typescript69 = __toESM(require("typescript"), 1);
38257
38257
  var parseSpanComment = /^(\d+),(\d+)$/;
38258
38258
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -38382,7 +38382,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
38382
38382
  }) || false;
38383
38383
  }
38384
38384
 
38385
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38385
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38386
38386
  var CompletionEngine = class {
38387
38387
  constructor(tcb, data, tcbPath, tcbIsShim) {
38388
38388
  this.tcb = tcb;
@@ -39659,10 +39659,10 @@ var MagicString = class {
39659
39659
  }
39660
39660
  };
39661
39661
 
39662
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39662
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39663
39663
  var import_typescript84 = __toESM(require("typescript"), 1);
39664
39664
 
39665
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39665
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39666
39666
  var import_typescript71 = __toESM(require("typescript"), 1);
39667
39667
  var REGISTRY = new DomElementSchemaRegistry();
39668
39668
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -39714,10 +39714,10 @@ var RegistryDomSchemaChecker = class {
39714
39714
  }
39715
39715
  };
39716
39716
 
39717
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39717
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39718
39718
  var import_typescript77 = __toESM(require("typescript"), 1);
39719
39719
 
39720
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
39720
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
39721
39721
  var ReferenceEmitEnvironment = class {
39722
39722
  constructor(importManager, refEmitter, reflector, contextFile) {
39723
39723
  this.importManager = importManager;
@@ -39747,7 +39747,7 @@ var ReferenceEmitEnvironment = class {
39747
39747
  }
39748
39748
  };
39749
39749
 
39750
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39750
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39751
39751
  var import_typescript72 = __toESM(require("typescript"), 1);
39752
39752
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
39753
39753
  import_typescript72.default.SyntaxKind.ParenthesizedExpression,
@@ -39830,13 +39830,13 @@ function tsNumericExpression2(value) {
39830
39830
  return import_typescript72.default.factory.createNumericLiteral(value);
39831
39831
  }
39832
39832
 
39833
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39833
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39834
39834
  var import_typescript76 = __toESM(require("typescript"), 1);
39835
39835
 
39836
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39836
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39837
39837
  var import_typescript74 = __toESM(require("typescript"), 1);
39838
39838
 
39839
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39839
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39840
39840
  var import_typescript73 = __toESM(require("typescript"), 1);
39841
39841
  var TypeParameterEmitter = class {
39842
39842
  constructor(typeParameters, reflector) {
@@ -39914,7 +39914,7 @@ var TypeParameterEmitter = class {
39914
39914
  }
39915
39915
  };
39916
39916
 
39917
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39917
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39918
39918
  var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
39919
39919
  Identifiers.InputSignalBrandWriteType
39920
39920
  ];
@@ -40006,7 +40006,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
40006
40006
  return emitter.canEmit((ref) => env.canReferenceType(ref));
40007
40007
  }
40008
40008
 
40009
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40009
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40010
40010
  function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
40011
40011
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
40012
40012
  const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -40129,7 +40129,7 @@ function typeParametersWithDefaultTypes(params) {
40129
40129
  });
40130
40130
  }
40131
40131
 
40132
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40132
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40133
40133
  var Environment = class extends ReferenceEmitEnvironment {
40134
40134
  constructor(config, importManager, refEmitter, reflector, contextFile) {
40135
40135
  super(importManager, refEmitter, reflector, contextFile);
@@ -40201,7 +40201,7 @@ var Environment = class extends ReferenceEmitEnvironment {
40201
40201
  }
40202
40202
  };
40203
40203
 
40204
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40204
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40205
40205
  var import_typescript78 = __toESM(require("typescript"), 1);
40206
40206
  var OutOfBandDiagnosticRecorderImpl = class {
40207
40207
  constructor(resolver) {
@@ -40401,7 +40401,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
40401
40401
  });
40402
40402
  }
40403
40403
 
40404
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40404
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40405
40405
  var import_typescript79 = __toESM(require("typescript"), 1);
40406
40406
  var TypeCheckShimGenerator = class {
40407
40407
  constructor() {
@@ -40419,10 +40419,10 @@ var TypeCheckShimGenerator = class {
40419
40419
  }
40420
40420
  };
40421
40421
 
40422
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40422
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40423
40423
  var import_typescript82 = __toESM(require("typescript"), 1);
40424
40424
 
40425
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40425
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40426
40426
  var import_typescript80 = __toESM(require("typescript"), 1);
40427
40427
  function wrapForDiagnostics(expr) {
40428
40428
  return import_typescript80.default.factory.createParenthesizedExpression(expr);
@@ -40477,9 +40477,9 @@ function translateDiagnostic(diagnostic, resolver) {
40477
40477
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
40478
40478
  }
40479
40479
 
40480
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40480
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40481
40481
  var import_typescript81 = __toESM(require("typescript"), 1);
40482
- var NULL_AS_ANY = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNull(), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
40482
+ var ANY_EXPRESSION = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNumericLiteral("0"), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
40483
40483
  var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
40484
40484
  var UNARY_OPS = /* @__PURE__ */ new Map([
40485
40485
  ["+", import_typescript81.default.SyntaxKind.PlusToken],
@@ -40663,7 +40663,7 @@ var AstTranslator = class {
40663
40663
  if (this.config.strictSafeNavigationTypes) {
40664
40664
  const expr = import_typescript81.default.factory.createPropertyAccessExpression(import_typescript81.default.factory.createNonNullExpression(receiver), ast.name);
40665
40665
  addParseSpanInfo(expr, ast.nameSpan);
40666
- node = import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(NULL_AS_ANY, void 0, expr, void 0, UNDEFINED));
40666
+ node = import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(ANY_EXPRESSION, void 0, expr, void 0, UNDEFINED));
40667
40667
  } else if (VeSafeLhsInferenceBugDetector.veWillInferAnyFor(ast)) {
40668
40668
  node = import_typescript81.default.factory.createPropertyAccessExpression(tsCastToAny(receiver), ast.name);
40669
40669
  } else {
@@ -40681,7 +40681,7 @@ var AstTranslator = class {
40681
40681
  if (this.config.strictSafeNavigationTypes) {
40682
40682
  const expr = import_typescript81.default.factory.createElementAccessExpression(import_typescript81.default.factory.createNonNullExpression(receiver), key);
40683
40683
  addParseSpanInfo(expr, ast.sourceSpan);
40684
- node = import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(NULL_AS_ANY, void 0, expr, void 0, UNDEFINED));
40684
+ node = import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(ANY_EXPRESSION, void 0, expr, void 0, UNDEFINED));
40685
40685
  } else if (VeSafeLhsInferenceBugDetector.veWillInferAnyFor(ast)) {
40686
40686
  node = import_typescript81.default.factory.createElementAccessExpression(tsCastToAny(receiver), key);
40687
40687
  } else {
@@ -40727,7 +40727,7 @@ var AstTranslator = class {
40727
40727
  convertToSafeCall(ast, expr, args) {
40728
40728
  if (this.config.strictSafeNavigationTypes) {
40729
40729
  const call2 = import_typescript81.default.factory.createCallExpression(import_typescript81.default.factory.createNonNullExpression(expr), void 0, args);
40730
- return import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(NULL_AS_ANY, void 0, call2, void 0, UNDEFINED));
40730
+ return import_typescript81.default.factory.createParenthesizedExpression(import_typescript81.default.factory.createConditionalExpression(ANY_EXPRESSION, void 0, call2, void 0, UNDEFINED));
40731
40731
  }
40732
40732
  if (VeSafeLhsInferenceBugDetector.veWillInferAnyFor(ast)) {
40733
40733
  return import_typescript81.default.factory.createCallExpression(tsCastToAny(expr), void 0, args);
@@ -40809,7 +40809,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
40809
40809
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
40810
40810
  })();
40811
40811
 
40812
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40812
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40813
40813
  var TcbGenericContextBehavior;
40814
40814
  (function(TcbGenericContextBehavior2) {
40815
40815
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -41113,7 +41113,7 @@ var TcbInvalidReferenceOp = class extends TcbOp {
41113
41113
  }
41114
41114
  execute() {
41115
41115
  const id = this.tcb.allocateId();
41116
- this.scope.addStatement(tsCreateVariable(id, NULL_AS_ANY));
41116
+ this.scope.addStatement(tsCreateVariable(id, ANY_EXPRESSION));
41117
41117
  return id;
41118
41118
  }
41119
41119
  };
@@ -42177,10 +42177,10 @@ var TcbExpressionTranslator = class {
42177
42177
  let pipe2;
42178
42178
  if (pipeMeta === null) {
42179
42179
  this.tcb.oobRecorder.missingPipe(this.tcb.id, ast);
42180
- pipe2 = NULL_AS_ANY;
42180
+ pipe2 = ANY_EXPRESSION;
42181
42181
  } else if (pipeMeta.isExplicitlyDeferred && this.tcb.boundTarget.getEagerlyUsedPipes().includes(ast.name)) {
42182
42182
  this.tcb.oobRecorder.deferredPipeUsedEagerly(this.tcb.id, ast);
42183
- pipe2 = NULL_AS_ANY;
42183
+ pipe2 = ANY_EXPRESSION;
42184
42184
  } else {
42185
42185
  pipe2 = this.tcb.env.pipeInst(pipeMeta.ref);
42186
42186
  }
@@ -42245,7 +42245,7 @@ function tcbCallTypeCtor(dir, tcb, inputs) {
42245
42245
  addParseSpanInfo(assignment, input.sourceSpan);
42246
42246
  return assignment;
42247
42247
  } else {
42248
- return import_typescript82.default.factory.createPropertyAssignment(propertyName, NULL_AS_ANY);
42248
+ return import_typescript82.default.factory.createPropertyAssignment(propertyName, ANY_EXPRESSION);
42249
42249
  }
42250
42250
  });
42251
42251
  return import_typescript82.default.factory.createCallExpression(
@@ -42399,7 +42399,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
42399
42399
  }
42400
42400
  };
42401
42401
 
42402
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42402
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42403
42403
  var import_typescript83 = __toESM(require("typescript"), 1);
42404
42404
  var TypeCheckFile = class extends Environment {
42405
42405
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -42447,7 +42447,7 @@ var TypeCheckFile = class extends Environment {
42447
42447
  }
42448
42448
  };
42449
42449
 
42450
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42450
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42451
42451
  var InliningMode;
42452
42452
  (function(InliningMode2) {
42453
42453
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -42699,7 +42699,7 @@ var TypeCtorOp = class {
42699
42699
  }
42700
42700
  };
42701
42701
 
42702
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42702
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42703
42703
  var LF_CHAR = 10;
42704
42704
  var CR_CHAR = 13;
42705
42705
  var LINE_SEP_CHAR = 8232;
@@ -42740,7 +42740,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
42740
42740
  return low - 1;
42741
42741
  }
42742
42742
 
42743
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42743
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42744
42744
  var TemplateSource = class {
42745
42745
  constructor(mapping, file) {
42746
42746
  this.mapping = mapping;
@@ -42791,7 +42791,7 @@ var TemplateSourceManager = class {
42791
42791
  }
42792
42792
  };
42793
42793
 
42794
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42794
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42795
42795
  var import_typescript85 = __toESM(require("typescript"), 1);
42796
42796
  var SymbolBuilder = class {
42797
42797
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -43358,7 +43358,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
43358
43358
  };
43359
43359
  }
43360
43360
 
43361
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43361
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43362
43362
  var REGISTRY2 = new DomElementSchemaRegistry();
43363
43363
  var TemplateTypeCheckerImpl = class {
43364
43364
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -44056,7 +44056,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
44056
44056
  }
44057
44057
  };
44058
44058
 
44059
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
44059
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
44060
44060
  var EMPTY_ARRAY2 = [];
44061
44061
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
44062
44062
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
@@ -45075,7 +45075,7 @@ function isDefaultImport(node) {
45075
45075
  return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
45076
45076
  }
45077
45077
 
45078
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
45078
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
45079
45079
  var import_typescript90 = __toESM(require("typescript"), 1);
45080
45080
  var InjectableDecoratorHandler = class {
45081
45081
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -45306,7 +45306,7 @@ function getDep(dep, reflector) {
45306
45306
  return meta;
45307
45307
  }
45308
45308
 
45309
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45309
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45310
45310
  var import_typescript91 = __toESM(require("typescript"), 1);
45311
45311
  var PipeSymbol = class extends SemanticSymbol {
45312
45312
  constructor(decl, name) {
@@ -45462,13 +45462,13 @@ var PipeDecoratorHandler = class {
45462
45462
  }
45463
45463
  };
45464
45464
 
45465
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45465
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45466
45466
  var import_typescript92 = __toESM(require("typescript"), 1);
45467
45467
 
45468
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45468
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45469
45469
  var import_typescript93 = __toESM(require("typescript"), 1);
45470
45470
 
45471
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45471
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45472
45472
  var EmitFlags;
45473
45473
  (function(EmitFlags2) {
45474
45474
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -45480,13 +45480,13 @@ var EmitFlags;
45480
45480
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
45481
45481
  })(EmitFlags || (EmitFlags = {}));
45482
45482
 
45483
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45483
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45484
45484
  var import_typescript96 = __toESM(require("typescript"), 1);
45485
45485
 
45486
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45486
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45487
45487
  var import_typescript123 = __toESM(require("typescript"), 1);
45488
45488
 
45489
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45489
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45490
45490
  var path2 = __toESM(require("path"), 1);
45491
45491
  function i18nGetExtension(formatName) {
45492
45492
  const format = formatName.toLowerCase();
@@ -45536,10 +45536,10 @@ function getPathNormalizer(basePath) {
45536
45536
  };
45537
45537
  }
45538
45538
 
45539
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45539
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45540
45540
  var import_typescript97 = __toESM(require("typescript"), 1);
45541
45541
 
45542
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45542
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45543
45543
  function toNumbers(value) {
45544
45544
  const suffixIndex = value.lastIndexOf("-");
45545
45545
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -45574,7 +45574,7 @@ function compareVersions(v1, v2) {
45574
45574
  return compareNumbers(toNumbers(v1), toNumbers(v2));
45575
45575
  }
45576
45576
 
45577
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45577
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45578
45578
  var MIN_TS_VERSION = "5.4.0";
45579
45579
  var MAX_TS_VERSION = "5.6.0";
45580
45580
  var tsVersion = import_typescript97.default.version;
@@ -45587,10 +45587,10 @@ function verifySupportedTypeScriptVersion() {
45587
45587
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
45588
45588
  }
45589
45589
 
45590
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45590
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45591
45591
  var import_typescript119 = __toESM(require("typescript"), 1);
45592
45592
 
45593
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45593
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45594
45594
  var CycleAnalyzer = class {
45595
45595
  constructor(importGraph) {
45596
45596
  this.importGraph = importGraph;
@@ -45661,7 +45661,7 @@ var Cycle = class {
45661
45661
  }
45662
45662
  };
45663
45663
 
45664
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45664
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45665
45665
  var import_typescript98 = __toESM(require("typescript"), 1);
45666
45666
  var ImportGraph = class {
45667
45667
  constructor(checker, perf) {
@@ -45753,13 +45753,13 @@ var Found = class {
45753
45753
  }
45754
45754
  };
45755
45755
 
45756
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
45756
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
45757
45757
  var import_typescript107 = __toESM(require("typescript"), 1);
45758
45758
 
45759
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45759
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45760
45760
  var import_typescript102 = __toESM(require("typescript"), 1);
45761
45761
 
45762
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
45762
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
45763
45763
  var EntryType;
45764
45764
  (function(EntryType2) {
45765
45765
  EntryType2["Block"] = "block";
@@ -45803,17 +45803,17 @@ var MemberTags;
45803
45803
  MemberTags2["Inherited"] = "override";
45804
45804
  })(MemberTags || (MemberTags = {}));
45805
45805
 
45806
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
45806
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
45807
45807
  function isAngularPrivateName(name) {
45808
45808
  var _a2;
45809
45809
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
45810
45810
  return firstChar === "\u0275" || firstChar === "_";
45811
45811
  }
45812
45812
 
45813
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45813
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45814
45814
  var import_typescript100 = __toESM(require("typescript"), 1);
45815
45815
 
45816
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
45816
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
45817
45817
  function extractGenerics(declaration) {
45818
45818
  var _a2, _b2;
45819
45819
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -45826,7 +45826,7 @@ function extractGenerics(declaration) {
45826
45826
  })) != null ? _b2 : [];
45827
45827
  }
45828
45828
 
45829
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
45829
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
45830
45830
  var import_typescript99 = __toESM(require("typescript"), 1);
45831
45831
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
45832
45832
  function extractJsDocTags(node) {
@@ -45870,12 +45870,12 @@ function unescapeAngularDecorators(comment) {
45870
45870
  return comment.replace(/_NG_AT_/g, "@");
45871
45871
  }
45872
45872
 
45873
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
45873
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
45874
45874
  function extractResolvedTypeString(node, checker) {
45875
45875
  return checker.typeToString(checker.getTypeAtLocation(node));
45876
45876
  }
45877
45877
 
45878
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45878
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45879
45879
  var FunctionExtractor = class {
45880
45880
  constructor(name, declaration, typeChecker) {
45881
45881
  this.name = name;
@@ -45938,7 +45938,7 @@ function extractAllParams(params, typeChecker) {
45938
45938
  }));
45939
45939
  }
45940
45940
 
45941
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
45941
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
45942
45942
  var import_typescript101 = __toESM(require("typescript"), 1);
45943
45943
  function isInternal(member) {
45944
45944
  return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
@@ -45957,7 +45957,7 @@ function hasLeadingInternalComment(member) {
45957
45957
  )) != null ? _a2 : false;
45958
45958
  }
45959
45959
 
45960
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45960
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45961
45961
  var ClassExtractor = class {
45962
45962
  constructor(declaration, typeChecker) {
45963
45963
  this.declaration = declaration;
@@ -46215,7 +46215,7 @@ function extractInterface(declaration, typeChecker) {
46215
46215
  return extractor.extract();
46216
46216
  }
46217
46217
 
46218
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
46218
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
46219
46219
  var import_typescript103 = __toESM(require("typescript"), 1);
46220
46220
  var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
46221
46221
  function extractConstant(declaration, typeChecker) {
@@ -46273,7 +46273,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
46273
46273
  });
46274
46274
  }
46275
46275
 
46276
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
46276
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
46277
46277
  var import_typescript104 = __toESM(require("typescript"), 1);
46278
46278
  function extractorDecorator(declaration, typeChecker) {
46279
46279
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -46346,7 +46346,7 @@ function getDecoratorJsDocNode(declaration) {
46346
46346
  return callSignature;
46347
46347
  }
46348
46348
 
46349
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46349
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46350
46350
  var import_typescript105 = __toESM(require("typescript"), 1);
46351
46351
  function extractEnum(declaration, typeChecker) {
46352
46352
  return {
@@ -46377,7 +46377,7 @@ function getEnumMemberValue(memberNode) {
46377
46377
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
46378
46378
  }
46379
46379
 
46380
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46380
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46381
46381
  var import_typescript106 = __toESM(require("typescript"), 1);
46382
46382
  var initializerApiTag = "initializerApiFunction";
46383
46383
  function isInitializerApiFunction(node, typeChecker) {
@@ -46518,7 +46518,7 @@ function findImplementationOfFunction(node, typeChecker) {
46518
46518
  return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript106.default.isFunctionDeclaration(s) && s.body !== void 0);
46519
46519
  }
46520
46520
 
46521
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46521
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46522
46522
  function extractTypeAlias(declaration) {
46523
46523
  return {
46524
46524
  name: declaration.name.getText(),
@@ -46530,7 +46530,7 @@ function extractTypeAlias(declaration) {
46530
46530
  };
46531
46531
  }
46532
46532
 
46533
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46533
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46534
46534
  var DocsExtractor = class {
46535
46535
  constructor(typeChecker, metadataReader) {
46536
46536
  this.typeChecker = typeChecker;
@@ -46614,7 +46614,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
46614
46614
  return relativePath;
46615
46615
  }
46616
46616
 
46617
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46617
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46618
46618
  var import_typescript108 = __toESM(require("typescript"), 1);
46619
46619
  var FlatIndexGenerator = class {
46620
46620
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -46639,7 +46639,7 @@ export * from '${relativeEntryPoint}';
46639
46639
  }
46640
46640
  };
46641
46641
 
46642
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46642
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46643
46643
  function findFlatIndexEntryPoint(rootFiles) {
46644
46644
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
46645
46645
  let resolvedEntryPoint = null;
@@ -46655,7 +46655,7 @@ function findFlatIndexEntryPoint(rootFiles) {
46655
46655
  return resolvedEntryPoint;
46656
46656
  }
46657
46657
 
46658
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46658
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46659
46659
  var import_typescript110 = __toESM(require("typescript"), 1);
46660
46660
  function checkForPrivateExports(entryPoint, checker, refGraph) {
46661
46661
  const diagnostics = [];
@@ -46735,7 +46735,7 @@ function getDescriptorOfDeclaration(decl) {
46735
46735
  }
46736
46736
  }
46737
46737
 
46738
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
46738
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
46739
46739
  var ReferenceGraph = class {
46740
46740
  constructor() {
46741
46741
  this.references = /* @__PURE__ */ new Map();
@@ -46789,7 +46789,7 @@ var ReferenceGraph = class {
46789
46789
  }
46790
46790
  };
46791
46791
 
46792
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
46792
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
46793
46793
  var FileDependencyGraph = class {
46794
46794
  constructor() {
46795
46795
  this.nodes = /* @__PURE__ */ new Map();
@@ -46856,7 +46856,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
46856
46856
  return false;
46857
46857
  }
46858
46858
 
46859
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
46859
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
46860
46860
  var IncrementalStateKind;
46861
46861
  (function(IncrementalStateKind2) {
46862
46862
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -46864,7 +46864,7 @@ var IncrementalStateKind;
46864
46864
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
46865
46865
  })(IncrementalStateKind || (IncrementalStateKind = {}));
46866
46866
 
46867
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
46867
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
46868
46868
  var PhaseKind;
46869
46869
  (function(PhaseKind2) {
46870
46870
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -47065,7 +47065,7 @@ function toOriginalSourceFile(sf) {
47065
47065
  }
47066
47066
  }
47067
47067
 
47068
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
47068
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
47069
47069
  var TrackedIncrementalBuildStrategy = class {
47070
47070
  constructor() {
47071
47071
  this.state = null;
@@ -47086,7 +47086,7 @@ var TrackedIncrementalBuildStrategy = class {
47086
47086
  };
47087
47087
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
47088
47088
 
47089
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
47089
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
47090
47090
  var IdentifierKind;
47091
47091
  (function(IdentifierKind2) {
47092
47092
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -47105,7 +47105,7 @@ var AbsoluteSourceSpan2 = class {
47105
47105
  }
47106
47106
  };
47107
47107
 
47108
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
47108
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
47109
47109
  var IndexingContext = class {
47110
47110
  constructor() {
47111
47111
  this.components = /* @__PURE__ */ new Set();
@@ -47115,7 +47115,7 @@ var IndexingContext = class {
47115
47115
  }
47116
47116
  };
47117
47117
 
47118
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
47118
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
47119
47119
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
47120
47120
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
47121
47121
  super();
@@ -47409,7 +47409,7 @@ function getTemplateIdentifiers(boundTemplate) {
47409
47409
  return { identifiers: visitor.identifiers, errors: visitor.errors };
47410
47410
  }
47411
47411
 
47412
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47412
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47413
47413
  function generateAnalysis(context) {
47414
47414
  const analysis = /* @__PURE__ */ new Map();
47415
47415
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -47445,7 +47445,7 @@ function generateAnalysis(context) {
47445
47445
  return analysis;
47446
47446
  }
47447
47447
 
47448
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47448
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47449
47449
  var NgModuleIndexImpl = class {
47450
47450
  constructor(metaReader, localReader) {
47451
47451
  this.metaReader = metaReader;
@@ -47534,7 +47534,7 @@ var NgModuleIndexImpl = class {
47534
47534
  }
47535
47535
  };
47536
47536
 
47537
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47537
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47538
47538
  var import_typescript112 = __toESM(require("typescript"), 1);
47539
47539
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
47540
47540
  var RESOURCE_MARKER = ".$ngresource$";
@@ -47686,7 +47686,7 @@ function createLookupResolutionHost(adapter) {
47686
47686
  };
47687
47687
  }
47688
47688
 
47689
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
47689
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
47690
47690
  var StandaloneComponentScopeReader = class {
47691
47691
  constructor(metaReader, localModuleReader, dtsModuleReader) {
47692
47692
  this.metaReader = metaReader;
@@ -47782,7 +47782,7 @@ var StandaloneComponentScopeReader = class {
47782
47782
  }
47783
47783
  };
47784
47784
 
47785
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47785
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47786
47786
  var import_typescript113 = __toESM(require("typescript"), 1);
47787
47787
  var SIGNAL_FNS = /* @__PURE__ */ new Set([
47788
47788
  "WritableSignal",
@@ -47802,7 +47802,7 @@ function isSignalSymbol(symbol) {
47802
47802
  });
47803
47803
  }
47804
47804
 
47805
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47805
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47806
47806
  var TemplateCheckWithVisitor = class {
47807
47807
  run(ctx, component, template2) {
47808
47808
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -47929,7 +47929,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
47929
47929
  }
47930
47930
  };
47931
47931
 
47932
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47932
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47933
47933
  var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
47934
47934
  var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
47935
47935
  var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
@@ -47941,8 +47941,8 @@ var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
47941
47941
  if (node instanceof Interpolation) {
47942
47942
  return node.expressions.filter((item) => item instanceof PropertyRead).flatMap((item) => buildDiagnosticForSignal(ctx, item, component));
47943
47943
  } else if (node instanceof BoundAttribute) {
47944
- const symbol = ctx.templateTypeChecker.getSymbolOfNode(node, component);
47945
- if (symbol !== null && symbol.kind === SymbolKind.Input) {
47944
+ const usedDirectives = ctx.templateTypeChecker.getUsedDirectives(component);
47945
+ if (usedDirectives !== null && usedDirectives.some((dir) => dir.inputs.getByBindingPropertyName(node.name) !== null)) {
47946
47946
  return [];
47947
47947
  }
47948
47948
  if ((node.type === BindingType.Property || node.type === BindingType.Class || node.type === BindingType.Style || node.type === BindingType.Attribute || node.type === BindingType.Animation) && node.value instanceof ASTWithSource && node.value.ast instanceof PropertyRead) {
@@ -47981,7 +47981,7 @@ var factory = {
47981
47981
  create: () => new InterpolatedSignalCheck()
47982
47982
  };
47983
47983
 
47984
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47984
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47985
47985
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
47986
47986
  constructor() {
47987
47987
  super(...arguments);
@@ -48006,7 +48006,7 @@ var factory2 = {
48006
48006
  create: () => new InvalidBananaInBoxCheck()
48007
48007
  };
48008
48008
 
48009
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
48009
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
48010
48010
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
48011
48011
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
48012
48012
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -48050,7 +48050,7 @@ var factory3 = {
48050
48050
  }
48051
48051
  };
48052
48052
 
48053
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
48053
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
48054
48054
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
48055
48055
  constructor() {
48056
48056
  super(...arguments);
@@ -48082,7 +48082,7 @@ var factory4 = {
48082
48082
  create: () => new MissingNgForOfLetCheck()
48083
48083
  };
48084
48084
 
48085
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48085
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48086
48086
  var import_typescript114 = __toESM(require("typescript"), 1);
48087
48087
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
48088
48088
  constructor() {
@@ -48126,7 +48126,7 @@ var factory5 = {
48126
48126
  }
48127
48127
  };
48128
48128
 
48129
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48129
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48130
48130
  var import_typescript115 = __toESM(require("typescript"), 1);
48131
48131
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
48132
48132
  constructor() {
@@ -48171,7 +48171,7 @@ var factory6 = {
48171
48171
  }
48172
48172
  };
48173
48173
 
48174
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48174
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48175
48175
  var STYLE_SUFFIXES = ["px", "%", "em"];
48176
48176
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
48177
48177
  constructor() {
@@ -48194,7 +48194,7 @@ var factory7 = {
48194
48194
  create: () => new SuffixNotSupportedCheck()
48195
48195
  };
48196
48196
 
48197
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48197
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48198
48198
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
48199
48199
  constructor() {
48200
48200
  super(...arguments);
@@ -48232,7 +48232,7 @@ var factory8 = {
48232
48232
  create: () => new TextAttributeNotBindingSpec()
48233
48233
  };
48234
48234
 
48235
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
48235
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
48236
48236
  var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
48237
48237
  constructor() {
48238
48238
  super(...arguments);
@@ -48283,10 +48283,10 @@ var factory9 = {
48283
48283
  create: () => new UninvokedFunctionInEventBindingSpec()
48284
48284
  };
48285
48285
 
48286
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48286
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48287
48287
  var import_typescript116 = __toESM(require("typescript"), 1);
48288
48288
 
48289
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48289
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48290
48290
  var DiagnosticCategoryLabel;
48291
48291
  (function(DiagnosticCategoryLabel2) {
48292
48292
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -48294,7 +48294,7 @@ var DiagnosticCategoryLabel;
48294
48294
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
48295
48295
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
48296
48296
 
48297
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48297
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48298
48298
  var ExtendedTemplateCheckerImpl = class {
48299
48299
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
48300
48300
  var _a2, _b2, _c2, _d2, _e2;
@@ -48346,7 +48346,7 @@ function assertNever(value) {
48346
48346
  ${value}`);
48347
48347
  }
48348
48348
 
48349
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48349
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48350
48350
  var ALL_DIAGNOSTIC_FACTORIES = [
48351
48351
  factory2,
48352
48352
  factory5,
@@ -48363,7 +48363,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
48363
48363
  ...ALL_DIAGNOSTIC_FACTORIES.map((factory10) => factory10.name)
48364
48364
  ]);
48365
48365
 
48366
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48366
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48367
48367
  var import_typescript117 = __toESM(require("typescript"), 1);
48368
48368
  var TemplateSemanticsCheckerImpl = class {
48369
48369
  constructor(templateTypeChecker) {
@@ -48453,7 +48453,7 @@ function unwrapAstWithSource(ast) {
48453
48453
  return ast instanceof ASTWithSource ? ast.ast : ast;
48454
48454
  }
48455
48455
 
48456
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48456
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48457
48457
  var import_typescript118 = __toESM(require("typescript"), 1);
48458
48458
  var APIS_TO_CHECK = [
48459
48459
  INPUT_INITIALIZER_FN,
@@ -48504,7 +48504,7 @@ var InitializerApiUsageRule = class {
48504
48504
  }
48505
48505
  };
48506
48506
 
48507
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48507
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48508
48508
  var SourceFileValidator = class {
48509
48509
  constructor(reflector, importedSymbolsTracker) {
48510
48510
  this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
@@ -48542,7 +48542,7 @@ var SourceFileValidator = class {
48542
48542
  }
48543
48543
  };
48544
48544
 
48545
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48545
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48546
48546
  function coreHasSymbol(program, symbol) {
48547
48547
  const checker = program.getTypeChecker();
48548
48548
  for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
@@ -48561,7 +48561,7 @@ function isMaybeCore(sf) {
48561
48561
  return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
48562
48562
  }
48563
48563
 
48564
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48564
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48565
48565
  var import_semver = __toESM(require_semver2(), 1);
48566
48566
  function coreVersionSupportsFeature(coreVersion, minVersion) {
48567
48567
  if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
@@ -48570,7 +48570,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
48570
48570
  return import_semver.default.satisfies(coreVersion, minVersion);
48571
48571
  }
48572
48572
 
48573
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48573
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48574
48574
  var CompilationTicketKind;
48575
48575
  (function(CompilationTicketKind2) {
48576
48576
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -49354,7 +49354,7 @@ function versionMapFromProgram(program, driver) {
49354
49354
  return versions;
49355
49355
  }
49356
49356
 
49357
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49357
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49358
49358
  var import_typescript121 = __toESM(require("typescript"), 1);
49359
49359
  var DelegatingCompilerHost2 = class {
49360
49360
  get jsDocParsingMode() {
@@ -49493,7 +49493,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
49493
49493
  }
49494
49494
  };
49495
49495
 
49496
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49496
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49497
49497
  var NgtscProgram = class {
49498
49498
  constructor(rootNames, options, delegateHost, oldProgram) {
49499
49499
  this.options = options;
@@ -49719,18 +49719,18 @@ function mergeEmitResults(emitResults) {
49719
49719
  return { diagnostics, emitSkipped, emittedFiles };
49720
49720
  }
49721
49721
 
49722
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49722
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49723
49723
  function createProgram({ rootNames, options, host, oldProgram }) {
49724
49724
  return new NgtscProgram(rootNames, options, host, oldProgram);
49725
49725
  }
49726
49726
 
49727
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49727
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49728
49728
  var import_typescript125 = __toESM(require("typescript"), 1);
49729
49729
 
49730
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49730
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49731
49731
  var import_typescript124 = __toESM(require("typescript"), 1);
49732
49732
 
49733
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49733
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49734
49734
  var GLOBAL_DEFS_FOR_TERSER = {
49735
49735
  ngDevMode: false,
49736
49736
  ngI18nClosureMode: false
@@ -49739,7 +49739,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
49739
49739
  ngJitMode: false
49740
49740
  });
49741
49741
 
49742
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49742
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49743
49743
  var LogLevel;
49744
49744
  (function(LogLevel2) {
49745
49745
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -49748,7 +49748,7 @@ var LogLevel;
49748
49748
  LogLevel2[LogLevel2["error"] = 3] = "error";
49749
49749
  })(LogLevel || (LogLevel = {}));
49750
49750
 
49751
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49751
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49752
49752
  var RESET = "\x1B[0m";
49753
49753
  var RED = "\x1B[31m";
49754
49754
  var YELLOW = "\x1B[33m";
@@ -49757,18 +49757,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
49757
49757
  var WARN = `${YELLOW}Warning:${RESET}`;
49758
49758
  var ERROR = `${RED}Error:${RESET}`;
49759
49759
 
49760
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
49760
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
49761
49761
  setFileSystem(new NodeJSFileSystem());
49762
49762
 
49763
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49763
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49764
49764
  var import_fs2 = require("fs");
49765
49765
  var import_path8 = require("path");
49766
49766
  var import_typescript138 = __toESM(require("typescript"), 1);
49767
49767
 
49768
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49768
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49769
49769
  var import_typescript127 = __toESM(require("typescript"), 1);
49770
49770
 
49771
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49771
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49772
49772
  var import_path4 = require("path");
49773
49773
  var import_typescript126 = __toESM(require("typescript"), 1);
49774
49774
  var ImportManager2 = class {
@@ -49952,7 +49952,7 @@ ${text2}`;
49952
49952
  }
49953
49953
  };
49954
49954
 
49955
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49955
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49956
49956
  var ChangeTracker = class {
49957
49957
  constructor(_printer, _importRemapper) {
49958
49958
  __publicField(this, "_printer");
@@ -50015,7 +50015,7 @@ function normalizePath(path4) {
50015
50015
  return path4.replace(/\\/g, "/");
50016
50016
  }
50017
50017
 
50018
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
50018
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
50019
50019
  var import_core19 = require("@angular-devkit/core");
50020
50020
  function getProjectTsConfigPaths(tree) {
50021
50021
  return __async(this, null, function* () {
@@ -50095,11 +50095,11 @@ function getWorkspace(tree) {
50095
50095
  });
50096
50096
  }
50097
50097
 
50098
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50098
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50099
50099
  var import_path5 = require("path");
50100
50100
  var import_typescript129 = __toESM(require("typescript"), 1);
50101
50101
 
50102
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
50102
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
50103
50103
  var path3 = __toESM(require("path"), 1);
50104
50104
  var import_typescript128 = __toESM(require("typescript"), 1);
50105
50105
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -50116,7 +50116,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
50116
50116
  return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
50117
50117
  }
50118
50118
 
50119
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50119
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50120
50120
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
50121
50121
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
50122
50122
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -50145,13 +50145,13 @@ function canMigrateFile(basePath, sourceFile, program) {
50145
50145
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
50146
50146
  }
50147
50147
 
50148
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50148
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50149
50149
  var import_typescript134 = __toESM(require("typescript"), 1);
50150
50150
 
50151
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50151
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50152
50152
  var import_typescript131 = __toESM(require("typescript"), 1);
50153
50153
 
50154
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50154
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50155
50155
  var import_typescript130 = __toESM(require("typescript"), 1);
50156
50156
  function getImportOfIdentifier(typeChecker, node) {
50157
50157
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -50202,7 +50202,7 @@ function findImportSpecifier(nodes, specifierName) {
50202
50202
  });
50203
50203
  }
50204
50204
 
50205
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50205
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50206
50206
  function getCallDecoratorImport(typeChecker, decorator) {
50207
50207
  if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
50208
50208
  return null;
@@ -50211,7 +50211,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
50211
50211
  return getImportOfIdentifier(typeChecker, identifier);
50212
50212
  }
50213
50213
 
50214
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50214
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50215
50215
  function getAngularDecorators2(typeChecker, decorators) {
50216
50216
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
50217
50217
  node,
@@ -50221,7 +50221,7 @@ function getAngularDecorators2(typeChecker, decorators) {
50221
50221
  }));
50222
50222
  }
50223
50223
 
50224
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50224
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50225
50225
  var import_typescript132 = __toESM(require("typescript"), 1);
50226
50226
  function closestNode(node, predicate) {
50227
50227
  let current = node.parent;
@@ -50234,7 +50234,7 @@ function closestNode(node, predicate) {
50234
50234
  return null;
50235
50235
  }
50236
50236
 
50237
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50237
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50238
50238
  var import_path6 = require("path");
50239
50239
  var import_typescript133 = __toESM(require("typescript"), 1);
50240
50240
  var UniqueItemTracker = class {
@@ -50412,7 +50412,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
50412
50412
  }));
50413
50413
  }
50414
50414
 
50415
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50415
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50416
50416
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
50417
50417
  const filesToRemove = /* @__PURE__ */ new Set();
50418
50418
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -50611,14 +50611,14 @@ function findNgModuleDecorator(node, typeChecker) {
50611
50611
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
50612
50612
  }
50613
50613
 
50614
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50614
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50615
50615
  var import_path7 = require("path");
50616
50616
  var import_typescript137 = __toESM(require("typescript"), 1);
50617
50617
 
50618
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50618
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50619
50619
  var import_typescript136 = __toESM(require("typescript"), 1);
50620
50620
 
50621
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50621
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50622
50622
  var import_typescript135 = __toESM(require("typescript"), 1);
50623
50623
  function isReferenceToImport(typeChecker, node, importSpecifier) {
50624
50624
  var _a2, _b2;
@@ -50627,7 +50627,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
50627
50627
  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];
50628
50628
  }
50629
50629
 
50630
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50630
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50631
50631
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
50632
50632
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
50633
50633
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -50997,7 +50997,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
50997
50997
  return metadata != null && metadata.isStandalone;
50998
50998
  }
50999
50999
 
51000
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
51000
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
51001
51001
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
51002
51002
  const tracker = new ChangeTracker(printer, importRemapper);
51003
51003
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51374,7 +51374,7 @@ function hasImport(program, rootFileNames, moduleName) {
51374
51374
  return false;
51375
51375
  }
51376
51376
 
51377
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51377
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51378
51378
  var MigrationMode;
51379
51379
  (function(MigrationMode2) {
51380
51380
  MigrationMode2["toStandalone"] = "convert-to-standalone";