@angular/core 17.0.0 → 17.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/esm2022/src/application_ref.mjs +1 -1
  2. package/esm2022/src/core_private_export.mjs +2 -2
  3. package/esm2022/src/core_render3_private_export.mjs +2 -2
  4. package/esm2022/src/defer/instructions.mjs +3 -3
  5. package/esm2022/src/hydration/api.mjs +3 -3
  6. package/esm2022/src/image_performance_warning.mjs +4 -4
  7. package/esm2022/src/linker/component_factory.mjs +1 -3
  8. package/esm2022/src/linker/view_ref.mjs +1 -1
  9. package/esm2022/src/render3/after_render_hooks.mjs +4 -4
  10. package/esm2022/src/render3/component_ref.mjs +3 -3
  11. package/esm2022/src/render3/features/standalone_feature.mjs +3 -6
  12. package/esm2022/src/render3/instructions/change_detection.mjs +22 -19
  13. package/esm2022/src/render3/instructions/control_flow.mjs +4 -7
  14. package/esm2022/src/render3/list_reconciliation.mjs +5 -4
  15. package/esm2022/src/render3/metadata.mjs +20 -20
  16. package/esm2022/src/render3/view_ref.mjs +5 -28
  17. package/esm2022/src/util/performance.mjs +9 -4
  18. package/esm2022/src/version.mjs +1 -1
  19. package/esm2022/testing/src/logger.mjs +3 -3
  20. package/esm2022/testing/src/test_bed.mjs +3 -3
  21. package/esm2022/testing/src/test_bed_compiler.mjs +7 -7
  22. package/fesm2022/core.mjs +70 -92
  23. package/fesm2022/core.mjs.map +1 -1
  24. package/fesm2022/primitives/signals.mjs +1 -1
  25. package/fesm2022/rxjs-interop.mjs +1 -1
  26. package/fesm2022/testing.mjs +8 -8
  27. package/fesm2022/testing.mjs.map +1 -1
  28. package/index.d.ts +12 -17
  29. package/package.json +1 -1
  30. package/primitives/signals/index.d.ts +1 -1
  31. package/rxjs-interop/index.d.ts +1 -1
  32. package/schematics/migrations/block-template-entities/bundle.js +160 -160
  33. package/schematics/migrations/block-template-entities/bundle.js.map +1 -1
  34. package/schematics/migrations/compiler-options/bundle.js +13 -13
  35. package/schematics/migrations/transfer-state/bundle.js +13 -13
  36. package/schematics/ng-generate/control-flow-migration/bundle.js +494 -370
  37. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  38. package/schematics/ng-generate/standalone-migration/bundle.js +506 -446
  39. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  40. package/testing/index.d.ts +1 -1
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
63
63
  });
64
64
  };
65
65
 
66
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
66
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
67
67
  var standalone_migration_exports = {};
68
68
  __export(standalone_migration_exports, {
69
69
  default: () => standalone_migration_default
@@ -71,10 +71,10 @@ __export(standalone_migration_exports, {
71
71
  module.exports = __toCommonJS(standalone_migration_exports);
72
72
  var import_schematics = require("@angular-devkit/schematics");
73
73
 
74
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
74
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
75
75
  var import_typescript = __toESM(require("typescript"), 1);
76
76
 
77
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
77
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
78
78
  var InvalidFileSystem = class {
79
79
  exists(path4) {
80
80
  throw makeError();
@@ -162,7 +162,7 @@ function makeError() {
162
162
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
163
163
  }
164
164
 
165
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
165
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
166
166
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
167
167
  function stripExtension(path4) {
168
168
  return path4.replace(TS_DTS_JS_EXTENSION, "");
@@ -175,7 +175,7 @@ function getSourceFileOrError(program, fileName) {
175
175
  return sf;
176
176
  }
177
177
 
178
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
178
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
179
179
  var fs = new InvalidFileSystem();
180
180
  function getFileSystem() {
181
181
  return fs;
@@ -219,7 +219,7 @@ function toRelativeImport(relativePath) {
219
219
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
220
220
  }
221
221
 
222
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
222
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
223
223
  var LogicalProjectPath = {
224
224
  relativePathBetween: function(from, to) {
225
225
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -265,7 +265,7 @@ function isWithinBasePath(base, path4) {
265
265
  return isLocalRelativePath(relative(base, path4));
266
266
  }
267
267
 
268
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
268
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
269
269
  var import_fs = __toESM(require("fs"), 1);
270
270
  var import_module = __toESM(require("module"), 1);
271
271
  var p = __toESM(require("path"), 1);
@@ -373,7 +373,7 @@ function toggleCase(str) {
373
373
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
374
374
  }
375
375
 
376
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
376
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
377
377
  var _SELECTOR_REGEXP = new RegExp(
378
378
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
379
379
  "g"
@@ -681,7 +681,7 @@ var SelectorContext = class {
681
681
  }
682
682
  };
683
683
 
684
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
684
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
685
685
  var emitDistinctChangesOnlyDefaultValue = true;
686
686
  var ViewEncapsulation;
687
687
  (function(ViewEncapsulation2) {
@@ -744,7 +744,7 @@ function parseSelectorToR3Selector(selector) {
744
744
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
745
745
  }
746
746
 
747
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
747
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
748
748
  var output_ast_exports = {};
749
749
  __export(output_ast_exports, {
750
750
  ArrayType: () => ArrayType,
@@ -832,7 +832,7 @@ __export(output_ast_exports, {
832
832
  variable: () => variable
833
833
  });
834
834
 
835
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
835
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
836
836
  var textEncoder;
837
837
  function digest(message) {
838
838
  return message.id || computeDigest(message);
@@ -1072,7 +1072,7 @@ function wordAt(bytes, index, endian) {
1072
1072
  return word;
1073
1073
  }
1074
1074
 
1075
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1075
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
1076
1076
  var TypeModifier;
1077
1077
  (function(TypeModifier2) {
1078
1078
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -2263,7 +2263,7 @@ function serializeTags(tags) {
2263
2263
  return out;
2264
2264
  }
2265
2265
 
2266
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
2266
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
2267
2267
  var CONSTANT_PREFIX = "_c";
2268
2268
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
2269
2269
  var KEY_CONTEXT = {};
@@ -2446,7 +2446,7 @@ function isLongStringLiteral(expr) {
2446
2446
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
2447
2447
  }
2448
2448
 
2449
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2449
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2450
2450
  var CORE = "@angular/core";
2451
2451
  var _Identifiers = class {
2452
2452
  };
@@ -3079,7 +3079,7 @@ var Identifiers = _Identifiers;
3079
3079
  _Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
3080
3080
  })();
3081
3081
 
3082
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
3082
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
3083
3083
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
3084
3084
  function dashCaseToCamelCase(input) {
3085
3085
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -3167,7 +3167,7 @@ function partitionArray(arr, conditionFn) {
3167
3167
  return [truthy, falsy];
3168
3168
  }
3169
3169
 
3170
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
3170
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
3171
3171
  var VERSION = 3;
3172
3172
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
3173
3173
  var SourceMapGenerator = class {
@@ -3296,7 +3296,7 @@ function toBase64Digit(value) {
3296
3296
  return B64_DIGITS[value];
3297
3297
  }
3298
3298
 
3299
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3299
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3300
3300
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
3301
3301
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
3302
3302
  var _INDENT_WITH = " ";
@@ -3781,7 +3781,7 @@ function _createIndent(count) {
3781
3781
  return res;
3782
3782
  }
3783
3783
 
3784
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
3784
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
3785
3785
  function typeWithParameters(type, numParams) {
3786
3786
  if (numParams === 0) {
3787
3787
  return expressionType(type);
@@ -3849,7 +3849,7 @@ function generateForwardRef(expr) {
3849
3849
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
3850
3850
  }
3851
3851
 
3852
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3852
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3853
3853
  var R3FactoryDelegateType;
3854
3854
  (function(R3FactoryDelegateType2) {
3855
3855
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3994,7 +3994,7 @@ function getInjectFn(target) {
3994
3994
  }
3995
3995
  }
3996
3996
 
3997
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3997
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
3998
3998
  var Comment = class {
3999
3999
  constructor(value, sourceSpan) {
4000
4000
  this.value = value;
@@ -4440,7 +4440,7 @@ function visitAll(visitor, nodes) {
4440
4440
  return result;
4441
4441
  }
4442
4442
 
4443
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4443
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4444
4444
  var Message = class {
4445
4445
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
4446
4446
  this.nodes = nodes;
@@ -4603,7 +4603,7 @@ var LocalizeMessageStringVisitor = class {
4603
4603
  }
4604
4604
  };
4605
4605
 
4606
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
4606
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
4607
4607
  var Serializer = class {
4608
4608
  createNameMapper(message) {
4609
4609
  return null;
@@ -4655,7 +4655,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
4655
4655
  }
4656
4656
  };
4657
4657
 
4658
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4658
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4659
4659
  var _Visitor = class {
4660
4660
  visitTag(tag) {
4661
4661
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -4743,7 +4743,7 @@ function escapeXml(text2) {
4743
4743
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
4744
4744
  }
4745
4745
 
4746
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4746
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4747
4747
  var _MESSAGES_TAG = "messagebundle";
4748
4748
  var _MESSAGE_TAG = "msg";
4749
4749
  var _PLACEHOLDER_TAG = "ph";
@@ -4886,7 +4886,7 @@ function toPublicName(internalName) {
4886
4886
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
4887
4887
  }
4888
4888
 
4889
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4889
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4890
4890
  var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
4891
4891
  var TRANSLATION_VAR_PREFIX = "i18n_";
4892
4892
  var I18N_ATTR = "i18n";
@@ -4988,7 +4988,7 @@ function declareI18nVariable(variable2) {
4988
4988
  return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
4989
4989
  }
4990
4990
 
4991
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4991
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4992
4992
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
4993
4993
  var TEMPORARY_NAME = "_t";
4994
4994
  var CONTEXT_NAME = "ctx";
@@ -5211,7 +5211,7 @@ function getInstructionStatements(instructions) {
5211
5211
  return statements;
5212
5212
  }
5213
5213
 
5214
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
5214
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
5215
5215
  function compileInjectable(meta, resolveForwardRefs) {
5216
5216
  let result = null;
5217
5217
  const factoryMeta = {
@@ -5296,7 +5296,7 @@ function createFactoryFunction(type) {
5296
5296
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
5297
5297
  }
5298
5298
 
5299
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
5299
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
5300
5300
  var UNUSABLE_INTERPOLATION_REGEXPS = [
5301
5301
  /^\s*$/,
5302
5302
  /[<>]/,
@@ -5318,7 +5318,7 @@ function assertInterpolationSymbols(identifier, value) {
5318
5318
  }
5319
5319
  }
5320
5320
 
5321
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
5321
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
5322
5322
  var InterpolationConfig = class {
5323
5323
  static fromArray(markers) {
5324
5324
  if (!markers) {
@@ -5334,7 +5334,7 @@ var InterpolationConfig = class {
5334
5334
  };
5335
5335
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
5336
5336
 
5337
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
5337
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
5338
5338
  var $EOF = 0;
5339
5339
  var $BSPACE = 8;
5340
5340
  var $TAB = 9;
@@ -5416,7 +5416,7 @@ function isQuote(code) {
5416
5416
  return code === $SQ || code === $DQ || code === $BT;
5417
5417
  }
5418
5418
 
5419
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
5419
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
5420
5420
  var ParseLocation = class {
5421
5421
  constructor(file, offset, line, col) {
5422
5422
  this.file = file;
@@ -5563,7 +5563,7 @@ function sanitizeIdentifier(name) {
5563
5563
  return name.replace(/\W/g, "_");
5564
5564
  }
5565
5565
 
5566
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5566
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5567
5567
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
5568
5568
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5569
5569
  constructor() {
@@ -5656,7 +5656,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5656
5656
  }
5657
5657
  };
5658
5658
 
5659
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5659
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5660
5660
  var policy;
5661
5661
  function getPolicy() {
5662
5662
  if (policy === void 0) {
@@ -5694,7 +5694,7 @@ function newTrustedFunctionForJIT(...args) {
5694
5694
  return fn2.bind(_global);
5695
5695
  }
5696
5696
 
5697
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5697
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5698
5698
  var JitEvaluator = class {
5699
5699
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
5700
5700
  const converter = new JitEmitterVisitor(refResolver);
@@ -5785,7 +5785,7 @@ function isUseStrictStatement(statement) {
5785
5785
  return statement.isEquivalent(literal("use strict").toStmt());
5786
5786
  }
5787
5787
 
5788
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5788
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5789
5789
  function compileInjector(meta) {
5790
5790
  const definitionMap = new DefinitionMap();
5791
5791
  if (meta.providers !== null) {
@@ -5802,7 +5802,7 @@ function createInjectorType(meta) {
5802
5802
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
5803
5803
  }
5804
5804
 
5805
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5805
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5806
5806
  var R3JitReflector = class {
5807
5807
  constructor(context) {
5808
5808
  this.context = context;
@@ -5818,7 +5818,7 @@ var R3JitReflector = class {
5818
5818
  }
5819
5819
  };
5820
5820
 
5821
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5821
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5822
5822
  var R3SelectorScopeMode;
5823
5823
  (function(R3SelectorScopeMode2) {
5824
5824
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -5959,7 +5959,7 @@ function tupleOfTypes(types) {
5959
5959
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
5960
5960
  }
5961
5961
 
5962
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5962
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5963
5963
  function compilePipeFromMetadata(metadata) {
5964
5964
  const definitionMapValues = [];
5965
5965
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -5980,7 +5980,7 @@ function createPipeType(metadata) {
5980
5980
  ]));
5981
5981
  }
5982
5982
 
5983
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5983
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5984
5984
  var R3TemplateDependencyKind;
5985
5985
  (function(R3TemplateDependencyKind2) {
5986
5986
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -5988,7 +5988,7 @@ var R3TemplateDependencyKind;
5988
5988
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
5989
5989
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
5990
5990
 
5991
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5991
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
5992
5992
  var ParserError = class {
5993
5993
  constructor(message, input, errLocation, ctxLocation) {
5994
5994
  this.input = input;
@@ -6654,7 +6654,7 @@ var BoundElementProperty = class {
6654
6654
  }
6655
6655
  };
6656
6656
 
6657
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
6657
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
6658
6658
  var _EventHandlerVars = class {
6659
6659
  };
6660
6660
  var EventHandlerVars = _EventHandlerVars;
@@ -7295,7 +7295,7 @@ var BuiltinFunctionCall = class extends Call {
7295
7295
  }
7296
7296
  };
7297
7297
 
7298
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
7298
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
7299
7299
  var _SECURITY_SCHEMA;
7300
7300
  function SECURITY_SCHEMA() {
7301
7301
  if (!_SECURITY_SCHEMA) {
@@ -7353,7 +7353,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
7353
7353
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
7354
7354
  }
7355
7355
 
7356
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
7356
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
7357
7357
  var animationKeywords = /* @__PURE__ */ new Set([
7358
7358
  "inherit",
7359
7359
  "initial",
@@ -7824,7 +7824,7 @@ function repeatGroups(groups, multiples) {
7824
7824
  }
7825
7825
  }
7826
7826
 
7827
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
7827
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
7828
7828
  var OpKind;
7829
7829
  (function(OpKind2) {
7830
7830
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -7978,7 +7978,7 @@ var DerivedRepeaterVarIdentity;
7978
7978
  DerivedRepeaterVarIdentity2[DerivedRepeaterVarIdentity2["Odd"] = 3] = "Odd";
7979
7979
  })(DerivedRepeaterVarIdentity || (DerivedRepeaterVarIdentity = {}));
7980
7980
 
7981
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
7981
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
7982
7982
  var ConsumesSlot = Symbol("ConsumesSlot");
7983
7983
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
7984
7984
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -8010,7 +8010,7 @@ function hasUsesVarOffsetTrait(expr) {
8010
8010
  return expr[UsesVarOffset] === true;
8011
8011
  }
8012
8012
 
8013
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
8013
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
8014
8014
  function createStatementOp(statement) {
8015
8015
  return __spreadValues({
8016
8016
  kind: OpKind.Statement,
@@ -8032,7 +8032,7 @@ var NEW_OP = {
8032
8032
  next: null
8033
8033
  };
8034
8034
 
8035
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
8035
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
8036
8036
  function createInterpolateTextOp(xref, interpolation, i18nPlaceholders, sourceSpan) {
8037
8037
  return __spreadValues(__spreadValues(__spreadValues({
8038
8038
  kind: OpKind.InterpolateText,
@@ -8188,7 +8188,7 @@ function createIcuUpdateOp(xref, sourceSpan) {
8188
8188
  }, NEW_OP);
8189
8189
  }
8190
8190
 
8191
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
8191
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
8192
8192
  var _a;
8193
8193
  var _b;
8194
8194
  var _c;
@@ -9039,7 +9039,7 @@ function isStringLiteral(expr) {
9039
9039
  return expr instanceof LiteralExpr && typeof expr.value === "string";
9040
9040
  }
9041
9041
 
9042
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
9042
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
9043
9043
  var _OpList = class {
9044
9044
  constructor() {
9045
9045
  this.debugListId = _OpList.nextListId++;
@@ -9230,14 +9230,14 @@ var OpList = _OpList;
9230
9230
  _OpList.nextListId = 0;
9231
9231
  })();
9232
9232
 
9233
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
9233
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
9234
9234
  var SlotHandle = class {
9235
9235
  constructor() {
9236
9236
  this.slot = null;
9237
9237
  }
9238
9238
  };
9239
9239
 
9240
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
9240
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
9241
9241
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
9242
9242
  OpKind.Element,
9243
9243
  OpKind.ElementStart,
@@ -9476,7 +9476,7 @@ function createI18nContextOp(xref, i18nBlock, message, sourceSpan) {
9476
9476
  }, NEW_OP);
9477
9477
  }
9478
9478
 
9479
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
9479
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
9480
9480
  function createHostPropertyOp(name, expression, isAnimationTrigger, sourceSpan) {
9481
9481
  return __spreadValues(__spreadValues({
9482
9482
  kind: OpKind.HostProperty,
@@ -9487,10 +9487,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, sourceSpan)
9487
9487
  }, TRAIT_CONSUMES_VARS), NEW_OP);
9488
9488
  }
9489
9489
 
9490
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
9490
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
9491
9491
  var CTX_REF = "CTX_REF_MARKER";
9492
9492
 
9493
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
9493
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
9494
9494
  var CompilationJobKind;
9495
9495
  (function(CompilationJobKind2) {
9496
9496
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -9597,7 +9597,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
9597
9597
  }
9598
9598
  };
9599
9599
 
9600
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
9600
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
9601
9601
  function deleteAnyCasts(job) {
9602
9602
  for (const unit of job.units) {
9603
9603
  for (const op of unit.ops()) {
@@ -9615,7 +9615,7 @@ function removeAnys(e) {
9615
9615
  return e;
9616
9616
  }
9617
9617
 
9618
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
9618
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
9619
9619
  function applyI18nExpressions(job) {
9620
9620
  for (const unit of job.units) {
9621
9621
  for (const op of unit.update) {
@@ -9636,7 +9636,7 @@ function needsApplication(op) {
9636
9636
  return false;
9637
9637
  }
9638
9638
 
9639
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
9639
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
9640
9640
  function assignI18nSlotDependencies(job) {
9641
9641
  const i18nLastSlotConsumers = /* @__PURE__ */ new Map();
9642
9642
  const i18nContexts = /* @__PURE__ */ new Map();
@@ -9669,7 +9669,7 @@ function assignI18nSlotDependencies(job) {
9669
9669
  }
9670
9670
  }
9671
9671
 
9672
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
9672
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
9673
9673
  function createOpXrefMap(unit) {
9674
9674
  const map = /* @__PURE__ */ new Map();
9675
9675
  for (const op of unit.create) {
@@ -9681,7 +9681,7 @@ function createOpXrefMap(unit) {
9681
9681
  return map;
9682
9682
  }
9683
9683
 
9684
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
9684
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
9685
9685
  function extractAttributes(job) {
9686
9686
  for (const unit of job.units) {
9687
9687
  const elements = createOpXrefMap(unit);
@@ -9748,7 +9748,7 @@ function extractAttributeOp(unit, op, elements) {
9748
9748
  }
9749
9749
  }
9750
9750
 
9751
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
9751
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
9752
9752
  function lookupElement2(elements, xref) {
9753
9753
  const el = elements.get(xref);
9754
9754
  if (el === void 0) {
@@ -9798,7 +9798,7 @@ function specializeBindings(job) {
9798
9798
  }
9799
9799
  }
9800
9800
 
9801
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
9801
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
9802
9802
  var CHAINABLE = /* @__PURE__ */ new Set([
9803
9803
  Identifiers.attribute,
9804
9804
  Identifiers.classProp,
@@ -9864,7 +9864,7 @@ function chainOperationsInList(opList) {
9864
9864
  }
9865
9865
  }
9866
9866
 
9867
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
9867
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
9868
9868
  function collapseSingletonInterpolations(job) {
9869
9869
  for (const unit of job.units) {
9870
9870
  for (const op of unit.update) {
@@ -9876,7 +9876,7 @@ function collapseSingletonInterpolations(job) {
9876
9876
  }
9877
9877
  }
9878
9878
 
9879
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
9879
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
9880
9880
  function generateConditionalExpressions(job) {
9881
9881
  for (const unit of job.units) {
9882
9882
  for (const op of unit.ops()) {
@@ -9913,7 +9913,7 @@ function generateConditionalExpressions(job) {
9913
9913
  }
9914
9914
  }
9915
9915
 
9916
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
9916
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
9917
9917
  var TagContentType;
9918
9918
  (function(TagContentType2) {
9919
9919
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -9946,7 +9946,7 @@ function mergeNsAndName(prefix, localName) {
9946
9946
  return prefix ? `:${prefix}:${localName}` : localName;
9947
9947
  }
9948
9948
 
9949
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
9949
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
9950
9950
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
9951
9951
  ["&&", BinaryOperator.And],
9952
9952
  [">", BinaryOperator.Bigger],
@@ -9996,7 +9996,7 @@ function literalOrArrayLiteral(value) {
9996
9996
  return literal(value);
9997
9997
  }
9998
9998
 
9999
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
9999
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
10000
10000
  function collectElementConsts(job) {
10001
10001
  const allElementAttributes = /* @__PURE__ */ new Map();
10002
10002
  for (const unit of job.units) {
@@ -10130,7 +10130,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
10130
10130
  return literalArr(attrArray);
10131
10131
  }
10132
10132
 
10133
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
10133
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
10134
10134
  function createDeferDepsFns(job) {
10135
10135
  for (const unit of job.units) {
10136
10136
  for (const op of unit.create) {
@@ -10158,7 +10158,7 @@ function createDeferDepsFns(job) {
10158
10158
  }
10159
10159
  }
10160
10160
 
10161
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
10161
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
10162
10162
  function createI18nContexts(job) {
10163
10163
  let currentI18nOp = null;
10164
10164
  let xref;
@@ -10191,7 +10191,7 @@ function createI18nContexts(job) {
10191
10191
  }
10192
10192
  }
10193
10193
 
10194
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_icu_expressions.mjs
10194
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_icu_expressions.mjs
10195
10195
  function createI18nIcuExpressions(job) {
10196
10196
  const icus = /* @__PURE__ */ new Map();
10197
10197
  const i18nContexts = /* @__PURE__ */ new Map();
@@ -10237,7 +10237,7 @@ function createI18nIcuExpressions(job) {
10237
10237
  }
10238
10238
  }
10239
10239
 
10240
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
10240
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
10241
10241
  function configureDeferInstructions(job) {
10242
10242
  for (const unit of job.units) {
10243
10243
  for (const op of unit.create) {
@@ -10254,7 +10254,7 @@ function configureDeferInstructions(job) {
10254
10254
  }
10255
10255
  }
10256
10256
 
10257
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
10257
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
10258
10258
  function resolveDeferTargetNames(job) {
10259
10259
  const scopes = /* @__PURE__ */ new Map();
10260
10260
  function getScopeForView2(view) {
@@ -10348,7 +10348,7 @@ var Scope = class {
10348
10348
  }
10349
10349
  };
10350
10350
 
10351
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
10351
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
10352
10352
  var REPLACEMENTS = /* @__PURE__ */ new Map([
10353
10353
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
10354
10354
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -10375,7 +10375,7 @@ function collapseEmptyInstructions(job) {
10375
10375
  }
10376
10376
  }
10377
10377
 
10378
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
10378
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
10379
10379
  function expandSafeReads(job) {
10380
10380
  for (const unit of job.units) {
10381
10381
  for (const op of unit.ops()) {
@@ -10511,7 +10511,7 @@ function ternaryTransform(e) {
10511
10511
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
10512
10512
  }
10513
10513
 
10514
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
10514
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
10515
10515
  var ESCAPE = "\uFFFD";
10516
10516
  var ELEMENT_MARKER = "#";
10517
10517
  var TEMPLATE_MARKER = "*";
@@ -10610,7 +10610,7 @@ function formatValue(value) {
10610
10610
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
10611
10611
  }
10612
10612
 
10613
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
10613
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
10614
10614
  function generateAdvance(job) {
10615
10615
  for (const unit of job.units) {
10616
10616
  const slotMap = /* @__PURE__ */ new Map();
@@ -10642,7 +10642,7 @@ function generateAdvance(job) {
10642
10642
  }
10643
10643
  }
10644
10644
 
10645
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
10645
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
10646
10646
  function generateProjectionDefs(job) {
10647
10647
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
10648
10648
  const selectors = [];
@@ -10666,7 +10666,7 @@ function generateProjectionDefs(job) {
10666
10666
  }
10667
10667
  }
10668
10668
 
10669
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
10669
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
10670
10670
  function generateVariables(job) {
10671
10671
  recursivelyProcessView(job.root, null);
10672
10672
  }
@@ -10754,7 +10754,7 @@ function generateVariablesInScopeForView(view, scope) {
10754
10754
  return newOps;
10755
10755
  }
10756
10756
 
10757
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
10757
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
10758
10758
  function collectConstExpressions(job) {
10759
10759
  for (const unit of job.units) {
10760
10760
  for (const op of unit.ops()) {
@@ -10768,7 +10768,7 @@ function collectConstExpressions(job) {
10768
10768
  }
10769
10769
  }
10770
10770
 
10771
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
10771
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
10772
10772
  var STYLE_DOT = "style.";
10773
10773
  var CLASS_DOT = "class.";
10774
10774
  var STYLE_BANG = "style!";
@@ -10826,7 +10826,7 @@ function parseProperty(name) {
10826
10826
  return { property: property2, suffix };
10827
10827
  }
10828
10828
 
10829
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
10829
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
10830
10830
  function mapLiteral(obj, quoted = false) {
10831
10831
  return literalMap(Object.keys(obj).map((key) => ({
10832
10832
  key,
@@ -10835,7 +10835,7 @@ function mapLiteral(obj, quoted = false) {
10835
10835
  })));
10836
10836
  }
10837
10837
 
10838
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
10838
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
10839
10839
  var IcuSerializerVisitor = class {
10840
10840
  visitText(text2) {
10841
10841
  return text2.value;
@@ -10866,7 +10866,7 @@ function serializeIcuNode(icu) {
10866
10866
  return icu.visit(serializer);
10867
10867
  }
10868
10868
 
10869
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
10869
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
10870
10870
  var TokenType;
10871
10871
  (function(TokenType2) {
10872
10872
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -11227,7 +11227,7 @@ function parseIntAutoRadix(text2) {
11227
11227
  return result;
11228
11228
  }
11229
11229
 
11230
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
11230
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
11231
11231
  var SplitInterpolation = class {
11232
11232
  constructor(strings, expressions, offsets) {
11233
11233
  this.strings = strings;
@@ -12121,7 +12121,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
12121
12121
  return offsetMap;
12122
12122
  }
12123
12123
 
12124
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
12124
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
12125
12125
  var NodeWithI18n = class {
12126
12126
  constructor(sourceSpan, i18n2) {
12127
12127
  this.sourceSpan = sourceSpan;
@@ -12232,11 +12232,11 @@ function visitAll2(visitor, nodes, context = null) {
12232
12232
  return result;
12233
12233
  }
12234
12234
 
12235
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
12235
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
12236
12236
  var ElementSchemaRegistry = class {
12237
12237
  };
12238
12238
 
12239
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
12239
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
12240
12240
  var BOOLEAN = "boolean";
12241
12241
  var NUMBER = "number";
12242
12242
  var STRING = "string";
@@ -12589,7 +12589,7 @@ function _isPixelDimensionStyle(prop) {
12589
12589
  }
12590
12590
  }
12591
12591
 
12592
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
12592
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
12593
12593
  var HtmlTagDefinition = class {
12594
12594
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
12595
12595
  this.closedByChildren = {};
@@ -12707,7 +12707,7 @@ function getHtmlTagDefinition(tagName) {
12707
12707
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
12708
12708
  }
12709
12709
 
12710
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
12710
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
12711
12711
  var TAG_TO_PLACEHOLDER_NAMES = {
12712
12712
  "A": "LINK",
12713
12713
  "B": "BOLD_TEXT",
@@ -12801,7 +12801,7 @@ var PlaceholderRegistry = class {
12801
12801
  }
12802
12802
  };
12803
12803
 
12804
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
12804
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
12805
12805
  var _expParser = new Parser(new Lexer());
12806
12806
  function createI18nMessageFactory(interpolationConfig) {
12807
12807
  const visitor = new _I18nVisitor(_expParser, interpolationConfig);
@@ -12963,14 +12963,14 @@ function extractPlaceholderName(input) {
12963
12963
  return input.split(_CUSTOM_PH_EXP)[2];
12964
12964
  }
12965
12965
 
12966
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
12966
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
12967
12967
  var I18nError = class extends ParseError {
12968
12968
  constructor(span, msg) {
12969
12969
  super(span, msg);
12970
12970
  }
12971
12971
  };
12972
12972
 
12973
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
12973
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
12974
12974
  var NAMED_ENTITIES = {
12975
12975
  "AElig": "\xC6",
12976
12976
  "AMP": "&",
@@ -15101,7 +15101,7 @@ var NAMED_ENTITIES = {
15101
15101
  var NGSP_UNICODE = "\uE500";
15102
15102
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
15103
15103
 
15104
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
15104
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
15105
15105
  var TokenError = class extends ParseError {
15106
15106
  constructor(errorMsg, tokenType, span) {
15107
15107
  super(span, errorMsg);
@@ -16022,7 +16022,7 @@ var CursorError = class {
16022
16022
  }
16023
16023
  };
16024
16024
 
16025
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
16025
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
16026
16026
  var TreeError = class extends ParseError {
16027
16027
  static create(elementName, span, msg) {
16028
16028
  return new TreeError(elementName, span, msg);
@@ -16406,7 +16406,7 @@ function decodeEntity(match, entity) {
16406
16406
  return match;
16407
16407
  }
16408
16408
 
16409
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
16409
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
16410
16410
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
16411
16411
  "iframe|srcdoc",
16412
16412
  "*|innerhtml",
@@ -16421,7 +16421,7 @@ function isTrustedTypesSink(tagName, propName) {
16421
16421
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
16422
16422
  }
16423
16423
 
16424
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
16424
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
16425
16425
  var setI18nRefs = (htmlNode, i18nNode) => {
16426
16426
  if (htmlNode instanceof NodeWithI18n) {
16427
16427
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -16577,7 +16577,7 @@ function i18nMetaToJSDoc(meta) {
16577
16577
  return jsDocComment(tags);
16578
16578
  }
16579
16579
 
16580
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
16580
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
16581
16581
  var GOOG_GET_MSG = "goog.getMsg";
16582
16582
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
16583
16583
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -16625,7 +16625,7 @@ function serializeI18nMessageForGetMsg(message) {
16625
16625
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
16626
16626
  }
16627
16627
 
16628
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
16628
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
16629
16629
  function createLocalizeStatements(variable2, message, params) {
16630
16630
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
16631
16631
  const sourceSpan = getSourceSpan(message);
@@ -16708,7 +16708,7 @@ function createEmptyMessagePart(location) {
16708
16708
  return new LiteralPiece("", new ParseSourceSpan(location, location));
16709
16709
  }
16710
16710
 
16711
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
16711
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
16712
16712
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
16713
16713
  var TRANSLATION_VAR_PREFIX2 = "i18n_";
16714
16714
  function collectI18nConsts(job) {
@@ -16799,7 +16799,7 @@ function assertAllParamsResolved(op) {
16799
16799
  }
16800
16800
  }
16801
16801
 
16802
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
16802
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
16803
16803
  function extractI18nText(job) {
16804
16804
  var _a2;
16805
16805
  for (const unit of job.units) {
@@ -16844,7 +16844,7 @@ function extractI18nText(job) {
16844
16844
  }
16845
16845
  }
16846
16846
 
16847
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
16847
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
16848
16848
  function liftLocalRefs(job) {
16849
16849
  for (const unit of job.units) {
16850
16850
  for (const op of unit.create) {
@@ -16874,7 +16874,7 @@ function serializeLocalRefs(refs) {
16874
16874
  return literalArr(constRefs);
16875
16875
  }
16876
16876
 
16877
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/merge_i18n_contexts.mjs
16877
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/merge_i18n_contexts.mjs
16878
16878
  function mergeI18nContexts(job) {
16879
16879
  const i18nOps = /* @__PURE__ */ new Map();
16880
16880
  const i18nContexts = /* @__PURE__ */ new Map();
@@ -16915,7 +16915,7 @@ function mergeParams(to, from) {
16915
16915
  }
16916
16916
  }
16917
16917
 
16918
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
16918
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
16919
16919
  function emitNamespaceChanges(job) {
16920
16920
  for (const unit of job.units) {
16921
16921
  let activeNamespace = Namespace.HTML;
@@ -16931,7 +16931,7 @@ function emitNamespaceChanges(job) {
16931
16931
  }
16932
16932
  }
16933
16933
 
16934
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
16934
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
16935
16935
  function parse(value) {
16936
16936
  const styles = [];
16937
16937
  let i = 0;
@@ -16992,7 +16992,7 @@ function hyphenate2(value) {
16992
16992
  }).toLowerCase();
16993
16993
  }
16994
16994
 
16995
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
16995
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
16996
16996
  function nameFunctionsAndVariables(job) {
16997
16997
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
16998
16998
  }
@@ -17107,7 +17107,7 @@ function stripImportant(name) {
17107
17107
  return name;
17108
17108
  }
17109
17109
 
17110
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
17110
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
17111
17111
  function mergeNextContextExpressions(job) {
17112
17112
  for (const unit of job.units) {
17113
17113
  for (const op of unit.create) {
@@ -17153,7 +17153,7 @@ function mergeNextContextsInOps(ops) {
17153
17153
  }
17154
17154
  }
17155
17155
 
17156
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
17156
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
17157
17157
  var CONTAINER_TAG = "ng-container";
17158
17158
  function generateNgContainerOps(job) {
17159
17159
  for (const unit of job.units) {
@@ -17170,7 +17170,7 @@ function generateNgContainerOps(job) {
17170
17170
  }
17171
17171
  }
17172
17172
 
17173
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
17173
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
17174
17174
  function lookupElement3(elements, xref) {
17175
17175
  const el = elements.get(xref);
17176
17176
  if (el === void 0) {
@@ -17200,7 +17200,7 @@ function disableBindings(job) {
17200
17200
  }
17201
17201
  }
17202
17202
 
17203
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
17203
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
17204
17204
  function generateNullishCoalesceExpressions(job) {
17205
17205
  for (const unit of job.units) {
17206
17206
  for (const op of unit.ops()) {
@@ -17216,7 +17216,7 @@ function generateNullishCoalesceExpressions(job) {
17216
17216
  }
17217
17217
  }
17218
17218
 
17219
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
17219
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
17220
17220
  function kindTest(kind) {
17221
17221
  return (op) => op.kind === kind;
17222
17222
  }
@@ -17290,7 +17290,7 @@ function keepLast(ops) {
17290
17290
  return ops.slice(ops.length - 1);
17291
17291
  }
17292
17292
 
17293
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
17293
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
17294
17294
  function parseExtractedStyles(job) {
17295
17295
  for (const unit of job.units) {
17296
17296
  for (const op of unit.create) {
@@ -17313,7 +17313,7 @@ function parseExtractedStyles(job) {
17313
17313
  }
17314
17314
  }
17315
17315
 
17316
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
17316
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
17317
17317
  function removeContentSelectors(job) {
17318
17318
  for (const unit of job.units) {
17319
17319
  const elements = createOpXrefMap(unit);
@@ -17337,7 +17337,7 @@ function lookupInXrefMap(map, xref) {
17337
17337
  return el;
17338
17338
  }
17339
17339
 
17340
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
17340
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
17341
17341
  function createPipes(job) {
17342
17342
  for (const unit of job.units) {
17343
17343
  processPipeBindingsInView(unit);
@@ -17385,7 +17385,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
17385
17385
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
17386
17386
  }
17387
17387
 
17388
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
17388
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
17389
17389
  function createVariadicPipes(job) {
17390
17390
  for (const unit of job.units) {
17391
17391
  for (const op of unit.update) {
@@ -17402,7 +17402,7 @@ function createVariadicPipes(job) {
17402
17402
  }
17403
17403
  }
17404
17404
 
17405
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
17405
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
17406
17406
  function propagateI18nBlocks(job) {
17407
17407
  propagateI18nBlocksToTemplates(job.root, 0);
17408
17408
  }
@@ -17439,7 +17439,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
17439
17439
  }
17440
17440
  }
17441
17441
 
17442
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
17442
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
17443
17443
  function extractPureFunctions(job) {
17444
17444
  for (const view of job.units) {
17445
17445
  for (const op of view.ops()) {
@@ -17481,7 +17481,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
17481
17481
  }
17482
17482
  };
17483
17483
 
17484
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
17484
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
17485
17485
  function generatePureLiteralStructures(job) {
17486
17486
  for (const unit of job.units) {
17487
17487
  for (const op of unit.update) {
@@ -17528,7 +17528,7 @@ function transformLiteralMap(expr) {
17528
17528
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
17529
17529
  }
17530
17530
 
17531
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
17531
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
17532
17532
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
17533
17533
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
17534
17534
  }
@@ -18039,7 +18039,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
18039
18039
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
18040
18040
  }
18041
18041
 
18042
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
18042
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
18043
18043
  var sanitizerIdentifierMap = /* @__PURE__ */ new Map([
18044
18044
  [SanitizerFn.Html, Identifiers.sanitizeHtml],
18045
18045
  [SanitizerFn.IframeAttribute, Identifiers.validateIframeAttribute],
@@ -18368,7 +18368,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
18368
18368
  return fn(params, handlerStmts, void 0, void 0, name);
18369
18369
  }
18370
18370
 
18371
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
18371
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
18372
18372
  function removeEmptyBindings(job) {
18373
18373
  for (const unit of job.units) {
18374
18374
  for (const op of unit.update) {
@@ -18389,7 +18389,7 @@ function removeEmptyBindings(job) {
18389
18389
  }
18390
18390
  }
18391
18391
 
18392
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
18392
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
18393
18393
  function removeI18nContexts(job) {
18394
18394
  for (const unit of job.units) {
18395
18395
  for (const op of unit.create) {
@@ -18405,7 +18405,7 @@ function removeI18nContexts(job) {
18405
18405
  }
18406
18406
  }
18407
18407
 
18408
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/repeater_derived_vars.mjs
18408
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/repeater_derived_vars.mjs
18409
18409
  function generateRepeaterDerivedVars(job) {
18410
18410
  const repeaters = /* @__PURE__ */ new Map();
18411
18411
  for (const unit of job.units) {
@@ -18437,7 +18437,7 @@ function generateRepeaterDerivedVars(job) {
18437
18437
  }
18438
18438
  }
18439
18439
 
18440
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
18440
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
18441
18441
  function resolveContexts(job) {
18442
18442
  for (const unit of job.units) {
18443
18443
  processLexicalScope(unit, unit.create);
@@ -18478,7 +18478,7 @@ function processLexicalScope(view, ops) {
18478
18478
  }
18479
18479
  }
18480
18480
 
18481
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
18481
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
18482
18482
  function resolveDollarEvent(job) {
18483
18483
  for (const unit of job.units) {
18484
18484
  transformDollarEvent(unit, unit.create);
@@ -18499,7 +18499,7 @@ function transformDollarEvent(unit, ops) {
18499
18499
  }
18500
18500
  }
18501
18501
 
18502
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
18502
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
18503
18503
  function resolveI18nElementPlaceholders(job) {
18504
18504
  const i18nContexts = /* @__PURE__ */ new Map();
18505
18505
  const elements = /* @__PURE__ */ new Map();
@@ -18582,7 +18582,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags = I18nPara
18582
18582
  params.set(placeholder, values);
18583
18583
  }
18584
18584
 
18585
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
18585
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
18586
18586
  function resolveI18nExpressionPlaceholders(job) {
18587
18587
  const subTemplateIndicies = /* @__PURE__ */ new Map();
18588
18588
  const i18nContexts = /* @__PURE__ */ new Map();
@@ -18615,7 +18615,7 @@ function resolveI18nExpressionPlaceholders(job) {
18615
18615
  }
18616
18616
  }
18617
18617
 
18618
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
18618
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
18619
18619
  function resolveNames(job) {
18620
18620
  for (const unit of job.units) {
18621
18621
  processLexicalScope2(unit, unit.create, null);
@@ -18679,7 +18679,7 @@ function processLexicalScope2(unit, ops, savedView) {
18679
18679
  }
18680
18680
  }
18681
18681
 
18682
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
18682
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
18683
18683
  var sanitizers = /* @__PURE__ */ new Map([
18684
18684
  [SecurityContext.HTML, SanitizerFn.Html],
18685
18685
  [SecurityContext.SCRIPT, SanitizerFn.Script],
@@ -18716,7 +18716,7 @@ function isIframeElement(op) {
18716
18716
  return op.kind === OpKind.ElementStart && ((_a2 = op.tag) == null ? void 0 : _a2.toLowerCase()) === "iframe";
18717
18717
  }
18718
18718
 
18719
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
18719
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
18720
18720
  function saveAndRestoreView(job) {
18721
18721
  for (const unit of job.units) {
18722
18722
  unit.create.prepend([
@@ -18761,7 +18761,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
18761
18761
  }
18762
18762
  }
18763
18763
 
18764
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
18764
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
18765
18765
  function allocateSlots(job) {
18766
18766
  const slotMap = /* @__PURE__ */ new Map();
18767
18767
  for (const unit of job.units) {
@@ -18786,7 +18786,7 @@ function allocateSlots(job) {
18786
18786
  }
18787
18787
  }
18788
18788
 
18789
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
18789
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
18790
18790
  function specializeStyleBindings(job) {
18791
18791
  for (const unit of job.units) {
18792
18792
  for (const op of unit.update) {
@@ -18816,7 +18816,7 @@ function specializeStyleBindings(job) {
18816
18816
  }
18817
18817
  }
18818
18818
 
18819
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
18819
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
18820
18820
  function generateTemporaryVariables(job) {
18821
18821
  for (const unit of job.units) {
18822
18822
  unit.create.prepend(generateTemporaries(unit.create));
@@ -18874,7 +18874,7 @@ function assignName(names, expr) {
18874
18874
  expr.name = name;
18875
18875
  }
18876
18876
 
18877
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18877
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18878
18878
  function generateTrackFns(job) {
18879
18879
  for (const unit of job.units) {
18880
18880
  for (const op of unit.create) {
@@ -18904,7 +18904,7 @@ function generateTrackFns(job) {
18904
18904
  }
18905
18905
  }
18906
18906
 
18907
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18907
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18908
18908
  function optimizeTrackFns(job) {
18909
18909
  for (const unit of job.units) {
18910
18910
  for (const op of unit.create) {
@@ -18951,7 +18951,7 @@ function isTrackByFunctionCall(rootView, expr) {
18951
18951
  return true;
18952
18952
  }
18953
18953
 
18954
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18954
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18955
18955
  function generateTrackVariables(job) {
18956
18956
  for (const unit of job.units) {
18957
18957
  for (const op of unit.create) {
@@ -18972,7 +18972,7 @@ function generateTrackVariables(job) {
18972
18972
  }
18973
18973
  }
18974
18974
 
18975
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18975
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18976
18976
  function countVariables(job) {
18977
18977
  for (const unit of job.units) {
18978
18978
  let varCount = 0;
@@ -19077,7 +19077,7 @@ function isSingletonInterpolation(expr) {
19077
19077
  return true;
19078
19078
  }
19079
19079
 
19080
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
19080
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
19081
19081
  function optimizeVariables(job) {
19082
19082
  for (const unit of job.units) {
19083
19083
  inlineAlwaysInlineVariables(unit.create);
@@ -19327,7 +19327,7 @@ function allowConservativeInlining(decl, target) {
19327
19327
  }
19328
19328
  }
19329
19329
 
19330
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
19330
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
19331
19331
  function wrapI18nIcus(job) {
19332
19332
  for (const unit of job.units) {
19333
19333
  let currentI18nOp = null;
@@ -19351,7 +19351,7 @@ function wrapI18nIcus(job) {
19351
19351
  }
19352
19352
  }
19353
19353
 
19354
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
19354
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
19355
19355
  var phases = [
19356
19356
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
19357
19357
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -19516,7 +19516,7 @@ function emitHostBindingFunction(job) {
19516
19516
  );
19517
19517
  }
19518
19518
 
19519
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
19519
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
19520
19520
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
19521
19521
  function ingestComponent(componentName, template2, constantPool, relativeContextFilePath, i18nUseExternalIds, deferBlocksMeta) {
19522
19522
  const job = new ComponentCompilationJob(componentName, constantPool, compatibilityMode, relativeContextFilePath, i18nUseExternalIds, deferBlocksMeta);
@@ -20079,10 +20079,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
20079
20079
  return null;
20080
20080
  }
20081
20081
 
20082
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
20082
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
20083
20083
  var USE_TEMPLATE_PIPELINE = false;
20084
20084
 
20085
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
20085
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
20086
20086
  var IMPORTANT_FLAG = "!important";
20087
20087
  var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
20088
20088
  var StylingBuilder = class {
@@ -20415,7 +20415,7 @@ function isEmptyExpression(ast) {
20415
20415
  return ast instanceof EmptyExpr;
20416
20416
  }
20417
20417
 
20418
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
20418
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
20419
20419
  var HtmlParser = class extends Parser2 {
20420
20420
  constructor() {
20421
20421
  super(getHtmlTagDefinition);
@@ -20425,7 +20425,7 @@ var HtmlParser = class extends Parser2 {
20425
20425
  }
20426
20426
  };
20427
20427
 
20428
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
20428
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
20429
20429
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
20430
20430
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
20431
20431
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -20491,7 +20491,7 @@ function visitAllWithSiblings(visitor, nodes) {
20491
20491
  return result;
20492
20492
  }
20493
20493
 
20494
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
20494
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
20495
20495
  var PROPERTY_PARTS_SEPARATOR = ".";
20496
20496
  var ATTRIBUTE_PREFIX = "attr";
20497
20497
  var CLASS_PREFIX = "class";
@@ -20811,7 +20811,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
20811
20811
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
20812
20812
  }
20813
20813
 
20814
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
20814
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
20815
20815
  function isStyleUrlResolvable(url) {
20816
20816
  if (url == null || url.length === 0 || url[0] == "/")
20817
20817
  return false;
@@ -20820,7 +20820,7 @@ function isStyleUrlResolvable(url) {
20820
20820
  }
20821
20821
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
20822
20822
 
20823
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
20823
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
20824
20824
  var NG_CONTENT_SELECT_ATTR = "select";
20825
20825
  var LINK_ELEMENT = "link";
20826
20826
  var LINK_STYLE_REL_ATTR = "rel";
@@ -20890,7 +20890,7 @@ function normalizeNgContentSelect(selectAttr) {
20890
20890
  return selectAttr;
20891
20891
  }
20892
20892
 
20893
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20893
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20894
20894
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
20895
20895
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
20896
20896
  var CONDITIONAL_ALIAS_PATTERN = /^as\s+(.*)/;
@@ -21181,7 +21181,7 @@ function stripOptionalParentheses(param, errors) {
21181
21181
  return expression.slice(start, end);
21182
21182
  }
21183
21183
 
21184
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
21184
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
21185
21185
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
21186
21186
  var SEPARATOR_PATTERN = /^\s$/;
21187
21187
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -21445,7 +21445,7 @@ function parseDeferredTime(value) {
21445
21445
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
21446
21446
  }
21447
21447
 
21448
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
21448
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
21449
21449
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
21450
21450
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
21451
21451
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -21580,7 +21580,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
21580
21580
  return { triggers, prefetchTriggers };
21581
21581
  }
21582
21582
 
21583
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
21583
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
21584
21584
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
21585
21585
  var KW_BIND_IDX = 1;
21586
21586
  var KW_LET_IDX = 2;
@@ -22011,7 +22011,7 @@ function textContents(node) {
22011
22011
  }
22012
22012
  }
22013
22013
 
22014
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
22014
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
22015
22015
  var TagType;
22016
22016
  (function(TagType2) {
22017
22017
  TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
@@ -22146,7 +22146,7 @@ function serializePlaceholderValue(value) {
22146
22146
  }
22147
22147
  }
22148
22148
 
22149
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
22149
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
22150
22150
  var NG_CONTENT_SELECT_ATTR2 = "select";
22151
22151
  var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
22152
22152
  var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
@@ -23810,7 +23810,7 @@ function createClosureModeGuard2() {
23810
23810
  return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
23811
23811
  }
23812
23812
 
23813
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
23813
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
23814
23814
  var ATTR_REGEX = /attr\.([^\]]+)/;
23815
23815
  var COMPONENT_VARIABLE = "%COMP%";
23816
23816
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
@@ -24412,7 +24412,7 @@ function createHostDirectivesMappingArray(mapping) {
24412
24412
  return elements.length > 0 ? literalArr(elements) : null;
24413
24413
  }
24414
24414
 
24415
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24415
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24416
24416
  var R3TargetBinder = class {
24417
24417
  constructor(directiveMatcher) {
24418
24418
  this.directiveMatcher = directiveMatcher;
@@ -25017,11 +25017,11 @@ function extractScopedNodeEntities(rootScope) {
25017
25017
  return templateEntities;
25018
25018
  }
25019
25019
 
25020
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25020
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25021
25021
  var ResourceLoader = class {
25022
25022
  };
25023
25023
 
25024
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25024
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25025
25025
  var CompilerFacadeImpl = class {
25026
25026
  constructor(jitEvaluator = new JitEvaluator()) {
25027
25027
  this.jitEvaluator = jitEvaluator;
@@ -25573,10 +25573,10 @@ function publishFacade(global) {
25573
25573
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
25574
25574
  }
25575
25575
 
25576
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
25577
- var VERSION2 = new Version("17.0.0");
25576
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
25577
+ var VERSION2 = new Version("17.0.2");
25578
25578
 
25579
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
25579
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
25580
25580
  var _I18N_ATTR = "i18n";
25581
25581
  var _I18N_ATTR_PREFIX = "i18n-";
25582
25582
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -25885,7 +25885,7 @@ function _parseMessageMeta(i18n2) {
25885
25885
  return { meaning, description, id: id.trim() };
25886
25886
  }
25887
25887
 
25888
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
25888
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
25889
25889
  var XmlTagDefinition = class {
25890
25890
  constructor() {
25891
25891
  this.closedByParent = false;
@@ -25910,7 +25910,7 @@ function getXmlTagDefinition(tagName) {
25910
25910
  return _TAG_DEFINITION;
25911
25911
  }
25912
25912
 
25913
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
25913
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
25914
25914
  var XmlParser = class extends Parser2 {
25915
25915
  constructor() {
25916
25916
  super(getXmlTagDefinition);
@@ -25920,7 +25920,7 @@ var XmlParser = class extends Parser2 {
25920
25920
  }
25921
25921
  };
25922
25922
 
25923
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
25923
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
25924
25924
  var _VERSION = "1.2";
25925
25925
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
25926
25926
  var _DEFAULT_SOURCE_LANG = "en";
@@ -26168,7 +26168,7 @@ function getCtypeForTag(tag) {
26168
26168
  }
26169
26169
  }
26170
26170
 
26171
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26171
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26172
26172
  var _VERSION2 = "2.0";
26173
26173
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
26174
26174
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -26467,7 +26467,7 @@ function getTypeForTag(tag) {
26467
26467
  }
26468
26468
  }
26469
26469
 
26470
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
26470
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
26471
26471
  var MessageBundle = class {
26472
26472
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
26473
26473
  this._htmlParser = _htmlParser;
@@ -26534,7 +26534,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
26534
26534
  }
26535
26535
  };
26536
26536
 
26537
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
26537
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
26538
26538
  var FactoryTarget2;
26539
26539
  (function(FactoryTarget3) {
26540
26540
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -26544,7 +26544,7 @@ var FactoryTarget2;
26544
26544
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
26545
26545
  })(FactoryTarget2 || (FactoryTarget2 = {}));
26546
26546
 
26547
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
26547
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
26548
26548
  function compileClassMetadata(metadata) {
26549
26549
  var _a2, _b2;
26550
26550
  const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
@@ -26586,7 +26586,7 @@ function compileComponentClassMetadata(metadata, deferrableTypes) {
26586
26586
  return iife.callFn([]);
26587
26587
  }
26588
26588
 
26589
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
26589
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
26590
26590
  function compileClassDebugInfo(debugInfo) {
26591
26591
  const debugInfoObject = {
26592
26592
  className: debugInfo.className
@@ -26606,12 +26606,12 @@ function compileClassDebugInfo(debugInfo) {
26606
26606
  return iife.callFn([]);
26607
26607
  }
26608
26608
 
26609
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
26609
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
26610
26610
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
26611
26611
  function compileDeclareClassMetadata(metadata) {
26612
26612
  const definitionMap = new DefinitionMap();
26613
26613
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
26614
- definitionMap.set("version", literal("17.0.0"));
26614
+ definitionMap.set("version", literal("17.0.2"));
26615
26615
  definitionMap.set("ngImport", importExpr(Identifiers.core));
26616
26616
  definitionMap.set("type", metadata.type);
26617
26617
  definitionMap.set("decorators", metadata.decorators);
@@ -26620,7 +26620,7 @@ function compileDeclareClassMetadata(metadata) {
26620
26620
  return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
26621
26621
  }
26622
26622
 
26623
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
26623
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
26624
26624
  function toOptionalLiteralArray(values, mapper) {
26625
26625
  if (values === null || values.length === 0) {
26626
26626
  return null;
@@ -26668,7 +26668,7 @@ function compileDependency(dep) {
26668
26668
  return depMeta.toLiteralMap();
26669
26669
  }
26670
26670
 
26671
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
26671
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
26672
26672
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "16.1.0";
26673
26673
  function compileDeclareDirectiveFromMetadata(meta) {
26674
26674
  const definitionMap = createDirectiveDefinitionMap(meta);
@@ -26682,7 +26682,7 @@ function createDirectiveDefinitionMap(meta) {
26682
26682
  const hasTransformFunctions = Object.values(meta.inputs).some((input) => input.transformFunction !== null);
26683
26683
  const minVersion = hasTransformFunctions ? MINIMUM_PARTIAL_LINKER_VERSION2 : "14.0.0";
26684
26684
  definitionMap.set("minVersion", literal(minVersion));
26685
- definitionMap.set("version", literal("17.0.0"));
26685
+ definitionMap.set("version", literal("17.0.2"));
26686
26686
  definitionMap.set("type", meta.type.value);
26687
26687
  if (meta.isStandalone) {
26688
26688
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -26775,7 +26775,7 @@ function createHostDirectives(hostDirectives) {
26775
26775
  return literalArr(expressions);
26776
26776
  }
26777
26777
 
26778
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
26778
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
26779
26779
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
26780
26780
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
26781
26781
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -26909,12 +26909,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
26909
26909
  }
26910
26910
  };
26911
26911
 
26912
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
26912
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
26913
26913
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
26914
26914
  function compileDeclareFactoryFunction(meta) {
26915
26915
  const definitionMap = new DefinitionMap();
26916
26916
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
26917
- definitionMap.set("version", literal("17.0.0"));
26917
+ definitionMap.set("version", literal("17.0.2"));
26918
26918
  definitionMap.set("ngImport", importExpr(Identifiers.core));
26919
26919
  definitionMap.set("type", meta.type.value);
26920
26920
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -26926,7 +26926,7 @@ function compileDeclareFactoryFunction(meta) {
26926
26926
  };
26927
26927
  }
26928
26928
 
26929
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
26929
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
26930
26930
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
26931
26931
  function compileDeclareInjectableFromMetadata(meta) {
26932
26932
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -26937,7 +26937,7 @@ function compileDeclareInjectableFromMetadata(meta) {
26937
26937
  function createInjectableDefinitionMap(meta) {
26938
26938
  const definitionMap = new DefinitionMap();
26939
26939
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
26940
- definitionMap.set("version", literal("17.0.0"));
26940
+ definitionMap.set("version", literal("17.0.2"));
26941
26941
  definitionMap.set("ngImport", importExpr(Identifiers.core));
26942
26942
  definitionMap.set("type", meta.type.value);
26943
26943
  if (meta.providedIn !== void 0) {
@@ -26964,7 +26964,7 @@ function createInjectableDefinitionMap(meta) {
26964
26964
  return definitionMap;
26965
26965
  }
26966
26966
 
26967
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
26967
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
26968
26968
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
26969
26969
  function compileDeclareInjectorFromMetadata(meta) {
26970
26970
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -26975,7 +26975,7 @@ function compileDeclareInjectorFromMetadata(meta) {
26975
26975
  function createInjectorDefinitionMap(meta) {
26976
26976
  const definitionMap = new DefinitionMap();
26977
26977
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
26978
- definitionMap.set("version", literal("17.0.0"));
26978
+ definitionMap.set("version", literal("17.0.2"));
26979
26979
  definitionMap.set("ngImport", importExpr(Identifiers.core));
26980
26980
  definitionMap.set("type", meta.type.value);
26981
26981
  definitionMap.set("providers", meta.providers);
@@ -26985,7 +26985,7 @@ function createInjectorDefinitionMap(meta) {
26985
26985
  return definitionMap;
26986
26986
  }
26987
26987
 
26988
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
26988
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
26989
26989
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
26990
26990
  function compileDeclareNgModuleFromMetadata(meta) {
26991
26991
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -26999,7 +26999,7 @@ function createNgModuleDefinitionMap(meta) {
26999
26999
  throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
27000
27000
  }
27001
27001
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
27002
- definitionMap.set("version", literal("17.0.0"));
27002
+ definitionMap.set("version", literal("17.0.2"));
27003
27003
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27004
27004
  definitionMap.set("type", meta.type.value);
27005
27005
  if (meta.bootstrap.length > 0) {
@@ -27023,7 +27023,7 @@ function createNgModuleDefinitionMap(meta) {
27023
27023
  return definitionMap;
27024
27024
  }
27025
27025
 
27026
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27026
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27027
27027
  var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
27028
27028
  function compileDeclarePipeFromMetadata(meta) {
27029
27029
  const definitionMap = createPipeDefinitionMap(meta);
@@ -27034,7 +27034,7 @@ function compileDeclarePipeFromMetadata(meta) {
27034
27034
  function createPipeDefinitionMap(meta) {
27035
27035
  const definitionMap = new DefinitionMap();
27036
27036
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
27037
- definitionMap.set("version", literal("17.0.0"));
27037
+ definitionMap.set("version", literal("17.0.2"));
27038
27038
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27039
27039
  definitionMap.set("type", meta.type.value);
27040
27040
  if (meta.isStandalone) {
@@ -27047,13 +27047,13 @@ function createPipeDefinitionMap(meta) {
27047
27047
  return definitionMap;
27048
27048
  }
27049
27049
 
27050
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
27050
+ // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
27051
27051
  publishFacade(_global);
27052
27052
 
27053
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27054
- var VERSION3 = new Version("17.0.0");
27053
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
27054
+ var VERSION3 = new Version("17.0.2");
27055
27055
 
27056
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
27056
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
27057
27057
  var EmitFlags;
27058
27058
  (function(EmitFlags2) {
27059
27059
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -27065,13 +27065,13 @@ var EmitFlags;
27065
27065
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
27066
27066
  })(EmitFlags || (EmitFlags = {}));
27067
27067
 
27068
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
27068
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
27069
27069
  var import_typescript2 = __toESM(require("typescript"), 1);
27070
27070
 
27071
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
27071
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
27072
27072
  var import_typescript102 = __toESM(require("typescript"), 1);
27073
27073
 
27074
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
27074
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
27075
27075
  var path = __toESM(require("path"), 1);
27076
27076
  function i18nGetExtension(formatName) {
27077
27077
  const format = formatName.toLowerCase();
@@ -27121,10 +27121,10 @@ function getPathNormalizer(basePath) {
27121
27121
  };
27122
27122
  }
27123
27123
 
27124
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
27124
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
27125
27125
  var import_typescript3 = __toESM(require("typescript"), 1);
27126
27126
 
27127
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
27127
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
27128
27128
  function toNumbers(value) {
27129
27129
  const suffixIndex = value.lastIndexOf("-");
27130
27130
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -27159,7 +27159,7 @@ function compareVersions(v1, v2) {
27159
27159
  return compareNumbers(toNumbers(v1), toNumbers(v2));
27160
27160
  }
27161
27161
 
27162
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
27162
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
27163
27163
  var MIN_TS_VERSION = "5.2.0";
27164
27164
  var MAX_TS_VERSION = "5.3.0";
27165
27165
  var tsVersion = import_typescript3.default.version;
@@ -27172,13 +27172,13 @@ function verifySupportedTypeScriptVersion() {
27172
27172
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
27173
27173
  }
27174
27174
 
27175
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
27175
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
27176
27176
  var import_typescript98 = __toESM(require("typescript"), 1);
27177
27177
 
27178
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
27178
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
27179
27179
  var import_typescript32 = __toESM(require("typescript"), 1);
27180
27180
 
27181
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27181
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27182
27182
  var ErrorCode;
27183
27183
  (function(ErrorCode2) {
27184
27184
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -27257,7 +27257,7 @@ var ErrorCode;
27257
27257
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_IMPORTED_STYLES_STRING"] = 11002] = "LOCAL_COMPILATION_IMPORTED_STYLES_STRING";
27258
27258
  })(ErrorCode || (ErrorCode = {}));
27259
27259
 
27260
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27260
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27261
27261
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27262
27262
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
27263
27263
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -27269,15 +27269,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
27269
27269
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
27270
27270
  ]);
27271
27271
 
27272
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27272
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27273
27273
  var import_typescript4 = __toESM(require("typescript"), 1);
27274
27274
 
27275
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27275
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27276
27276
  function ngErrorCode(code) {
27277
27277
  return parseInt("-99" + code);
27278
27278
  }
27279
27279
 
27280
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27280
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27281
27281
  var FatalDiagnosticError = class {
27282
27282
  constructor(code, node, message, relatedInformation) {
27283
27283
  this.code = code;
@@ -27333,10 +27333,10 @@ function addDiagnosticChain(messageText, add) {
27333
27333
  return messageText;
27334
27334
  }
27335
27335
 
27336
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27336
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27337
27337
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
27338
27338
 
27339
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27339
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27340
27340
  var ExtendedTemplateDiagnosticName;
27341
27341
  (function(ExtendedTemplateDiagnosticName2) {
27342
27342
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -27350,7 +27350,7 @@ var ExtendedTemplateDiagnosticName;
27350
27350
  ExtendedTemplateDiagnosticName2["INTERPOLATED_SIGNAL_NOT_INVOKED"] = "interpolatedSignalNotInvoked";
27351
27351
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
27352
27352
 
27353
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
27353
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
27354
27354
  var CompilationMode;
27355
27355
  (function(CompilationMode2) {
27356
27356
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -27364,7 +27364,7 @@ var HandlerPrecedence;
27364
27364
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
27365
27365
  })(HandlerPrecedence || (HandlerPrecedence = {}));
27366
27366
 
27367
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
27367
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
27368
27368
  var import_typescript5 = __toESM(require("typescript"), 1);
27369
27369
  function aliasTransformFactory(exportStatements) {
27370
27370
  return () => {
@@ -27387,10 +27387,10 @@ function aliasTransformFactory(exportStatements) {
27387
27387
  };
27388
27388
  }
27389
27389
 
27390
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
27390
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
27391
27391
  var import_typescript12 = __toESM(require("typescript"), 1);
27392
27392
 
27393
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
27393
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
27394
27394
  var PerfPhase;
27395
27395
  (function(PerfPhase2) {
27396
27396
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -27458,7 +27458,7 @@ var PerfCheckpoint;
27458
27458
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
27459
27459
  })(PerfCheckpoint || (PerfCheckpoint = {}));
27460
27460
 
27461
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
27461
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
27462
27462
  var NoopPerfRecorder = class {
27463
27463
  eventCount() {
27464
27464
  }
@@ -27475,7 +27475,7 @@ var NoopPerfRecorder = class {
27475
27475
  };
27476
27476
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
27477
27477
 
27478
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
27478
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
27479
27479
  function mark() {
27480
27480
  return process.hrtime();
27481
27481
  }
@@ -27484,7 +27484,7 @@ function timeSinceInMicros(mark2) {
27484
27484
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
27485
27485
  }
27486
27486
 
27487
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
27487
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
27488
27488
  var ActivePerfRecorder = class {
27489
27489
  static zeroedToNow() {
27490
27490
  return new ActivePerfRecorder(mark());
@@ -27578,7 +27578,7 @@ var DelegatingPerfRecorder = class {
27578
27578
  }
27579
27579
  };
27580
27580
 
27581
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
27581
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
27582
27582
  var import_typescript6 = __toESM(require("typescript"), 1);
27583
27583
  function isDecoratorIdentifier(exp) {
27584
27584
  return import_typescript6.default.isIdentifier(exp) || import_typescript6.default.isPropertyAccessExpression(exp) && import_typescript6.default.isIdentifier(exp.expression) && import_typescript6.default.isIdentifier(exp.name);
@@ -27592,7 +27592,7 @@ var ClassMemberKind;
27592
27592
  ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
27593
27593
  })(ClassMemberKind || (ClassMemberKind = {}));
27594
27594
 
27595
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
27595
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
27596
27596
  var import_typescript7 = __toESM(require("typescript"), 1);
27597
27597
  function typeToValue(typeNode, checker) {
27598
27598
  if (typeNode === null) {
@@ -27758,10 +27758,10 @@ function extractModuleName(node) {
27758
27758
  return node.moduleSpecifier.text;
27759
27759
  }
27760
27760
 
27761
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
27761
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
27762
27762
  var import_typescript9 = __toESM(require("typescript"), 1);
27763
27763
 
27764
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
27764
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
27765
27765
  var import_typescript8 = __toESM(require("typescript"), 1);
27766
27766
  function isNamedClassDeclaration(node) {
27767
27767
  return import_typescript8.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -27770,7 +27770,7 @@ function isIdentifier(node) {
27770
27770
  return node !== void 0 && import_typescript8.default.isIdentifier(node);
27771
27771
  }
27772
27772
 
27773
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
27773
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
27774
27774
  var TypeScriptReflectionHost = class {
27775
27775
  constructor(checker) {
27776
27776
  this.checker = checker;
@@ -28204,7 +28204,7 @@ function getExportedName(decl, originalId) {
28204
28204
  }
28205
28205
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
28206
28206
 
28207
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
28207
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
28208
28208
  var import_typescript11 = __toESM(require("typescript"), 1);
28209
28209
  var TS = /\.tsx?$/i;
28210
28210
  var D_TS = /\.d\.ts$/i;
@@ -28305,7 +28305,7 @@ function toUnredirectedSourceFile(sf) {
28305
28305
  return redirectInfo.unredirected;
28306
28306
  }
28307
28307
 
28308
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
28308
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
28309
28309
  var TraitState;
28310
28310
  (function(TraitState2) {
28311
28311
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -28362,7 +28362,7 @@ var TraitImpl = class {
28362
28362
  }
28363
28363
  };
28364
28364
 
28365
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
28365
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
28366
28366
  var TraitCompiler = class {
28367
28367
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
28368
28368
  this.handlers = handlers;
@@ -28810,10 +28810,10 @@ function containsErrors(diagnostics) {
28810
28810
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript12.default.DiagnosticCategory.Error);
28811
28811
  }
28812
28812
 
28813
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
28813
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
28814
28814
  var import_typescript28 = __toESM(require("typescript"), 1);
28815
28815
 
28816
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
28816
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
28817
28817
  var Context = class {
28818
28818
  constructor(isStatement) {
28819
28819
  this.isStatement = isStatement;
@@ -28826,13 +28826,13 @@ var Context = class {
28826
28826
  }
28827
28827
  };
28828
28828
 
28829
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
28829
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
28830
28830
  var import_typescript23 = __toESM(require("typescript"), 1);
28831
28831
 
28832
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28832
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28833
28833
  var import_typescript15 = __toESM(require("typescript"), 1);
28834
28834
 
28835
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28835
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28836
28836
  function findExportedNameOfNode(target, file, reflector) {
28837
28837
  const exports = reflector.getExportsOfModule(file);
28838
28838
  if (exports === null) {
@@ -28852,7 +28852,7 @@ function findExportedNameOfNode(target, file, reflector) {
28852
28852
  return foundExportName;
28853
28853
  }
28854
28854
 
28855
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28855
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28856
28856
  var ImportFlags;
28857
28857
  (function(ImportFlags2) {
28858
28858
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -29068,7 +29068,7 @@ var UnifiedModulesStrategy = class {
29068
29068
  }
29069
29069
  };
29070
29070
 
29071
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
29071
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
29072
29072
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
29073
29073
  var UnifiedModulesAliasingHost = class {
29074
29074
  constructor(unifiedModulesHost) {
@@ -29135,7 +29135,7 @@ var AliasStrategy = class {
29135
29135
  }
29136
29136
  };
29137
29137
 
29138
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
29138
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
29139
29139
  function relativePathBetween(from, to) {
29140
29140
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
29141
29141
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -29144,7 +29144,7 @@ function normalizeSeparators2(path4) {
29144
29144
  return path4.replace(/\\/g, "/");
29145
29145
  }
29146
29146
 
29147
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
29147
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
29148
29148
  var NoopImportRewriter = class {
29149
29149
  shouldImportSymbol(symbol, specifier) {
29150
29150
  return true;
@@ -29203,7 +29203,7 @@ function validateAndRewriteCoreSymbol(name) {
29203
29203
  return CORE_SUPPORTED_SYMBOLS.get(name);
29204
29204
  }
29205
29205
 
29206
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
29206
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
29207
29207
  var import_typescript17 = __toESM(require("typescript"), 1);
29208
29208
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
29209
29209
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -29238,7 +29238,7 @@ function throwIncompatibleTransformationContextError() {
29238
29238
  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.");
29239
29239
  }
29240
29240
 
29241
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
29241
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
29242
29242
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
29243
29243
  function attachDefaultImportDeclaration(expr, importDecl) {
29244
29244
  expr[DefaultImportDeclaration] = importDecl;
@@ -29279,7 +29279,7 @@ var DefaultImportTracker = class {
29279
29279
  }
29280
29280
  };
29281
29281
 
29282
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29282
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29283
29283
  var import_typescript19 = __toESM(require("typescript"), 1);
29284
29284
  var AssumeEager = "AssumeEager";
29285
29285
  var DeferredSymbolTracker = class {
@@ -29377,7 +29377,7 @@ var DeferredSymbolTracker = class {
29377
29377
  }
29378
29378
  };
29379
29379
 
29380
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29380
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29381
29381
  var Reference2 = class {
29382
29382
  constructor(node, bestGuessOwningModule = null) {
29383
29383
  this.node = node;
@@ -29440,7 +29440,7 @@ var Reference2 = class {
29440
29440
  }
29441
29441
  };
29442
29442
 
29443
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29443
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29444
29444
  var ModuleResolver = class {
29445
29445
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29446
29446
  this.program = program;
@@ -29457,7 +29457,7 @@ var ModuleResolver = class {
29457
29457
  }
29458
29458
  };
29459
29459
 
29460
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
29460
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
29461
29461
  var ImportManager = class {
29462
29462
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
29463
29463
  this.rewriter = rewriter;
@@ -29492,7 +29492,7 @@ var ImportManager = class {
29492
29492
  }
29493
29493
  };
29494
29494
 
29495
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
29495
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
29496
29496
  var UNARY_OPERATORS = /* @__PURE__ */ new Map([
29497
29497
  [UnaryOperator.Minus, "-"],
29498
29498
  [UnaryOperator.Plus, "+"]
@@ -29517,8 +29517,8 @@ var BINARY_OPERATORS2 = /* @__PURE__ */ new Map([
29517
29517
  [BinaryOperator.NullishCoalesce, "??"]
29518
29518
  ]);
29519
29519
  var ExpressionTranslatorVisitor = class {
29520
- constructor(factory8, imports, options) {
29521
- this.factory = factory8;
29520
+ constructor(factory9, imports, options) {
29521
+ this.factory = factory9;
29522
29522
  this.imports = imports;
29523
29523
  this.downlevelTaggedTemplates = options.downlevelTaggedTemplates === true;
29524
29524
  this.downlevelVariableDeclarations = options.downlevelVariableDeclarations === true;
@@ -29729,7 +29729,7 @@ function createRange(span) {
29729
29729
  };
29730
29730
  }
29731
29731
 
29732
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
29732
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
29733
29733
  var import_typescript24 = __toESM(require("typescript"), 1);
29734
29734
  var INELIGIBLE = {};
29735
29735
  function canEmitType(type, canEmit) {
@@ -29804,7 +29804,7 @@ var TypeEmitter = class {
29804
29804
  }
29805
29805
  };
29806
29806
 
29807
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
29807
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
29808
29808
  var import_typescript25 = __toESM(require("typescript"), 1);
29809
29809
  function translateType(type, contextFile, reflector, refEmitter, imports) {
29810
29810
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
@@ -30019,7 +30019,7 @@ var TypeTranslatorVisitor = class {
30019
30019
  }
30020
30020
  };
30021
30021
 
30022
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
30022
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
30023
30023
  var import_typescript26 = __toESM(require("typescript"), 1);
30024
30024
  var PureAnnotation;
30025
30025
  (function(PureAnnotation2) {
@@ -30215,7 +30215,7 @@ function attachComments(statement, leadingComments) {
30215
30215
  }
30216
30216
  }
30217
30217
 
30218
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
30218
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
30219
30219
  function translateExpression(expression, imports, options = {}) {
30220
30220
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
30221
30221
  }
@@ -30223,7 +30223,7 @@ function translateStatement(statement, imports, options = {}) {
30223
30223
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
30224
30224
  }
30225
30225
 
30226
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
30226
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
30227
30227
  var import_typescript27 = __toESM(require("typescript"), 1);
30228
30228
  function addImports(importManager, sf, extraStatements = []) {
30229
30229
  const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
@@ -30259,7 +30259,7 @@ function isImportStatement(stmt) {
30259
30259
  return import_typescript27.default.isImportDeclaration(stmt) || import_typescript27.default.isImportEqualsDeclaration(stmt) || import_typescript27.default.isNamespaceImport(stmt);
30260
30260
  }
30261
30261
 
30262
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
30262
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
30263
30263
  var DtsTransformRegistry = class {
30264
30264
  constructor() {
30265
30265
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -30406,10 +30406,10 @@ function markForEmitAsSingleLine(node) {
30406
30406
  import_typescript28.default.forEachChild(node, markForEmitAsSingleLine);
30407
30407
  }
30408
30408
 
30409
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
30409
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
30410
30410
  var import_typescript30 = __toESM(require("typescript"), 1);
30411
30411
 
30412
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
30412
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
30413
30413
  var import_typescript29 = __toESM(require("typescript"), 1);
30414
30414
  function visit(node, visitor, context) {
30415
30415
  return visitor._visit(node, context);
@@ -30470,7 +30470,7 @@ var Visitor = class {
30470
30470
  }
30471
30471
  };
30472
30472
 
30473
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
30473
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
30474
30474
  var NO_DECORATORS = /* @__PURE__ */ new Set();
30475
30475
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
30476
30476
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -30694,7 +30694,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
30694
30694
  return array;
30695
30695
  }
30696
30696
 
30697
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
30697
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
30698
30698
  var import_typescript31 = __toESM(require("typescript"), 1);
30699
30699
  function valueReferenceToExpression(valueRef) {
30700
30700
  if (valueRef.kind === 2) {
@@ -30938,7 +30938,7 @@ function isAbstractClassDeclaration(clazz) {
30938
30938
  return import_typescript31.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript31.default.SyntaxKind.AbstractKeyword) : false;
30939
30939
  }
30940
30940
 
30941
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
30941
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
30942
30942
  function getConstructorDependencies(clazz, reflector, isCore, compilationMode) {
30943
30943
  const deps = [];
30944
30944
  const errors = [];
@@ -31094,10 +31094,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
31094
31094
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
31095
31095
  }
31096
31096
 
31097
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
31097
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
31098
31098
  var import_typescript40 = __toESM(require("typescript"), 1);
31099
31099
 
31100
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
31100
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
31101
31101
  var MetaKind;
31102
31102
  (function(MetaKind2) {
31103
31103
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -31110,10 +31110,10 @@ var MatchSource;
31110
31110
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
31111
31111
  })(MatchSource || (MatchSource = {}));
31112
31112
 
31113
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
31113
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
31114
31114
  var import_typescript35 = __toESM(require("typescript"), 1);
31115
31115
 
31116
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
31116
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
31117
31117
  var ClassPropertyMapping = class {
31118
31118
  constructor(forwardMap) {
31119
31119
  this.forwardMap = forwardMap;
@@ -31191,7 +31191,7 @@ function reverseMapFromForwardMap(forwardMap) {
31191
31191
  return reverseMap;
31192
31192
  }
31193
31193
 
31194
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
31194
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
31195
31195
  var import_typescript33 = __toESM(require("typescript"), 1);
31196
31196
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
31197
31197
  if (!import_typescript33.default.isTupleTypeNode(def)) {
@@ -31375,7 +31375,7 @@ function hasInjectableFields(clazz, host) {
31375
31375
  return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
31376
31376
  }
31377
31377
 
31378
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
31378
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
31379
31379
  var DtsMetadataReader = class {
31380
31380
  constructor(checker, reflector) {
31381
31381
  this.checker = checker;
@@ -31550,7 +31550,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
31550
31550
  return result.length > 0 ? result : null;
31551
31551
  }
31552
31552
 
31553
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
31553
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
31554
31554
  function flattenInheritedDirectiveMetadata(reader, dir) {
31555
31555
  const topMeta = reader.getDirectiveMetadata(dir);
31556
31556
  if (topMeta === null) {
@@ -31607,7 +31607,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
31607
31607
  });
31608
31608
  }
31609
31609
 
31610
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
31610
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
31611
31611
  var LocalMetadataRegistry = class {
31612
31612
  constructor() {
31613
31613
  this.directives = /* @__PURE__ */ new Map();
@@ -31664,7 +31664,7 @@ var CompoundMetadataRegistry = class {
31664
31664
  }
31665
31665
  };
31666
31666
 
31667
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
31667
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
31668
31668
  var ResourceRegistry = class {
31669
31669
  constructor() {
31670
31670
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -31729,7 +31729,7 @@ var ResourceRegistry = class {
31729
31729
  }
31730
31730
  };
31731
31731
 
31732
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
31732
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
31733
31733
  var ExportedProviderStatusResolver = class {
31734
31734
  constructor(metaReader) {
31735
31735
  this.metaReader = metaReader;
@@ -31773,7 +31773,7 @@ var ExportedProviderStatusResolver = class {
31773
31773
  }
31774
31774
  };
31775
31775
 
31776
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
31776
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
31777
31777
  var EMPTY_ARRAY = [];
31778
31778
  var HostDirectivesResolver = class {
31779
31779
  constructor(metaReader) {
@@ -31834,10 +31834,10 @@ function resolveOutput(bindingName) {
31834
31834
  return bindingName;
31835
31835
  }
31836
31836
 
31837
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31837
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31838
31838
  var import_typescript37 = __toESM(require("typescript"), 1);
31839
31839
 
31840
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
31840
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
31841
31841
  var DynamicValue = class {
31842
31842
  constructor(node, reason, code) {
31843
31843
  this.node = node;
@@ -31927,7 +31927,7 @@ var DynamicValue = class {
31927
31927
  }
31928
31928
  };
31929
31929
 
31930
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
31930
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
31931
31931
  var ResolvedModule = class {
31932
31932
  constructor(exports, evaluate) {
31933
31933
  this.exports = exports;
@@ -31957,7 +31957,7 @@ var EnumValue = class {
31957
31957
  var KnownFn = class {
31958
31958
  };
31959
31959
 
31960
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31960
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31961
31961
  function describeResolvedType(value, maxDepth = 1) {
31962
31962
  var _a2, _b2;
31963
31963
  if (value === null) {
@@ -32086,10 +32086,10 @@ function getContainerNode(node) {
32086
32086
  return node.getSourceFile();
32087
32087
  }
32088
32088
 
32089
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
32089
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
32090
32090
  var import_typescript38 = __toESM(require("typescript"), 1);
32091
32091
 
32092
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
32092
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
32093
32093
  var ArraySliceBuiltinFn = class extends KnownFn {
32094
32094
  constructor(lhs) {
32095
32095
  super();
@@ -32141,14 +32141,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
32141
32141
  }
32142
32142
  };
32143
32143
 
32144
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
32144
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
32145
32145
  var SyntheticValue = class {
32146
32146
  constructor(value) {
32147
32147
  this.value = value;
32148
32148
  }
32149
32149
  };
32150
32150
 
32151
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
32151
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
32152
32152
  function literalBinaryOp(op) {
32153
32153
  return { op, literal: true };
32154
32154
  }
@@ -32723,7 +32723,7 @@ function owningModule(context, override = null) {
32723
32723
  }
32724
32724
  }
32725
32725
 
32726
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
32726
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
32727
32727
  var PartialEvaluator = class {
32728
32728
  constructor(host, checker, dependencyTracker) {
32729
32729
  this.host = host;
@@ -32743,7 +32743,7 @@ var PartialEvaluator = class {
32743
32743
  }
32744
32744
  };
32745
32745
 
32746
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
32746
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
32747
32747
  function makeDuplicateDeclarationError(node, data, kind) {
32748
32748
  const context = [];
32749
32749
  for (const decl of data) {
@@ -32939,7 +32939,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
32939
32939
  return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${kind.toLowerCase()} ${node.name.text} inherits its constructor from ${baseClassName}, but the latter does not have an Angular decorator of its own. Dependency injection will not be able to resolve the parameters of ${baseClassName}'s constructor. Either add a @${baseNeedsDecorator} decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
32940
32940
  }
32941
32941
 
32942
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
32942
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
32943
32943
  var import_typescript42 = __toESM(require("typescript"), 1);
32944
32944
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
32945
32945
  let resolved = null;
@@ -32989,7 +32989,7 @@ function resolveLiteral(decorator, literalCache) {
32989
32989
  return meta;
32990
32990
  }
32991
32991
 
32992
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
32992
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
32993
32993
  function compileNgFactoryDefField(metadata) {
32994
32994
  const res = compileFactoryFunction(metadata);
32995
32995
  return {
@@ -33011,7 +33011,7 @@ function compileDeclareFactory(metadata) {
33011
33011
  };
33012
33012
  }
33013
33013
 
33014
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
33014
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
33015
33015
  var InjectableClassRegistry = class {
33016
33016
  constructor(host, isCore) {
33017
33017
  this.host = host;
@@ -33037,7 +33037,7 @@ var InjectableClassRegistry = class {
33037
33037
  }
33038
33038
  };
33039
33039
 
33040
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
33040
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
33041
33041
  var import_typescript43 = __toESM(require("typescript"), 1);
33042
33042
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
33043
33043
  if (!reflection.isClass(clazz)) {
@@ -33121,7 +33121,7 @@ function removeIdentifierReferences(node, names) {
33121
33121
  return result.transformed[0];
33122
33122
  }
33123
33123
 
33124
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
33124
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
33125
33125
  var path2 = __toESM(require("path"), 1);
33126
33126
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
33127
33127
  if (!reflection.isClass(clazz)) {
@@ -33147,13 +33147,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
33147
33147
  return null;
33148
33148
  }
33149
33149
 
33150
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
33150
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
33151
33151
  var NoopReferencesRegistry = class {
33152
33152
  add(source, ...references) {
33153
33153
  }
33154
33154
  };
33155
33155
 
33156
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
33156
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
33157
33157
  function extractSchemas(rawExpr, evaluator, context) {
33158
33158
  const schemas = [];
33159
33159
  const result = evaluator.evaluate(rawExpr);
@@ -33182,7 +33182,7 @@ function extractSchemas(rawExpr, evaluator, context) {
33182
33182
  return schemas;
33183
33183
  }
33184
33184
 
33185
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
33185
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
33186
33186
  function compileInputTransformFields(inputs) {
33187
33187
  const extraFields = [];
33188
33188
  for (const input of inputs) {
@@ -33199,10 +33199,10 @@ function compileInputTransformFields(inputs) {
33199
33199
  return extraFields;
33200
33200
  }
33201
33201
 
33202
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
33202
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
33203
33203
  var import_typescript54 = __toESM(require("typescript"), 1);
33204
33204
 
33205
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
33205
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
33206
33206
  var import_typescript44 = __toESM(require("typescript"), 1);
33207
33207
  var SemanticSymbol = class {
33208
33208
  constructor(decl) {
@@ -33218,7 +33218,7 @@ function getSymbolIdentifier(decl) {
33218
33218
  return decl.name.text;
33219
33219
  }
33220
33220
 
33221
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
33221
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
33222
33222
  var OpaqueSymbol = class extends SemanticSymbol {
33223
33223
  isPublicApiAffected() {
33224
33224
  return false;
@@ -33360,10 +33360,10 @@ function getImportPath(expr) {
33360
33360
  }
33361
33361
  }
33362
33362
 
33363
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
33363
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
33364
33364
  var import_typescript45 = __toESM(require("typescript"), 1);
33365
33365
 
33366
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
33366
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
33367
33367
  function isSymbolEqual(a, b) {
33368
33368
  if (a.decl === b.decl) {
33369
33369
  return true;
@@ -33413,7 +33413,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
33413
33413
  return true;
33414
33414
  }
33415
33415
 
33416
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
33416
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
33417
33417
  function extractSemanticTypeParameters(node) {
33418
33418
  if (!import_typescript45.default.isClassDeclaration(node) || node.typeParameters === void 0) {
33419
33419
  return null;
@@ -33433,14 +33433,14 @@ function isTypeParameterEqual(a, b) {
33433
33433
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
33434
33434
  }
33435
33435
 
33436
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
33436
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
33437
33437
  var ComponentScopeKind;
33438
33438
  (function(ComponentScopeKind2) {
33439
33439
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
33440
33440
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
33441
33441
  })(ComponentScopeKind || (ComponentScopeKind = {}));
33442
33442
 
33443
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
33443
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
33444
33444
  var CompoundComponentScopeReader = class {
33445
33445
  constructor(readers) {
33446
33446
  this.readers = readers;
@@ -33465,7 +33465,7 @@ var CompoundComponentScopeReader = class {
33465
33465
  }
33466
33466
  };
33467
33467
 
33468
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
33468
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
33469
33469
  var MetadataDtsModuleScopeResolver = class {
33470
33470
  constructor(dtsMetaReader, aliasingHost) {
33471
33471
  this.dtsMetaReader = dtsMetaReader;
@@ -33540,10 +33540,10 @@ var MetadataDtsModuleScopeResolver = class {
33540
33540
  }
33541
33541
  };
33542
33542
 
33543
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
33543
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
33544
33544
  var import_typescript46 = __toESM(require("typescript"), 1);
33545
33545
 
33546
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
33546
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
33547
33547
  function getDiagnosticNode(ref, rawExpr) {
33548
33548
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
33549
33549
  }
@@ -33566,7 +33566,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
33566
33566
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
33567
33567
  }
33568
33568
 
33569
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
33569
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
33570
33570
  var LocalModuleScopeRegistry = class {
33571
33571
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
33572
33572
  this.localReader = localReader;
@@ -33905,7 +33905,7 @@ function reexportCollision(module3, refA, refB) {
33905
33905
  ]);
33906
33906
  }
33907
33907
 
33908
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
33908
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
33909
33909
  var import_typescript48 = __toESM(require("typescript"), 1);
33910
33910
  var TypeCheckScopeRegistry = class {
33911
33911
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -33973,7 +33973,7 @@ var TypeCheckScopeRegistry = class {
33973
33973
  }
33974
33974
  };
33975
33975
 
33976
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
33976
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
33977
33977
  var import_typescript49 = __toESM(require("typescript"), 1);
33978
33978
  var EMPTY_OBJECT = {};
33979
33979
  var QUERY_TYPES = /* @__PURE__ */ new Set([
@@ -34565,7 +34565,7 @@ function toR3InputMetadata(mapping) {
34565
34565
  };
34566
34566
  }
34567
34567
 
34568
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
34568
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
34569
34569
  var DirectiveSymbol = class extends SemanticSymbol {
34570
34570
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
34571
34571
  super(decl);
@@ -34645,7 +34645,7 @@ function isBaseClassEqual(current, previous) {
34645
34645
  return isSymbolEqual(current, previous);
34646
34646
  }
34647
34647
 
34648
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
34648
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
34649
34649
  var FIELD_DECORATORS = [
34650
34650
  "Input",
34651
34651
  "Output",
@@ -34817,10 +34817,10 @@ var DirectiveDecoratorHandler = class {
34817
34817
  }
34818
34818
  };
34819
34819
 
34820
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
34820
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
34821
34821
  var import_typescript51 = __toESM(require("typescript"), 1);
34822
34822
 
34823
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
34823
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
34824
34824
  var import_typescript50 = __toESM(require("typescript"), 1);
34825
34825
  function createModuleWithProvidersResolver(reflector, isCore) {
34826
34826
  function _reflectModuleFromTypeParam(type, node) {
@@ -34887,7 +34887,7 @@ function isResolvedModuleWithProviders(sv) {
34887
34887
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
34888
34888
  }
34889
34889
 
34890
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
34890
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
34891
34891
  var NgModuleSymbol = class extends SemanticSymbol {
34892
34892
  constructor(decl, hasProviders) {
34893
34893
  super(decl);
@@ -35452,7 +35452,7 @@ function isSyntheticReference(ref) {
35452
35452
  return ref.synthetic;
35453
35453
  }
35454
35454
 
35455
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
35455
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
35456
35456
  function makeCyclicImportInfo(ref, type, cycle) {
35457
35457
  const name = ref.debugName || "(unknown)";
35458
35458
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -35475,7 +35475,7 @@ function checkCustomElementSelectorForErrors(selector) {
35475
35475
  return null;
35476
35476
  }
35477
35477
 
35478
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
35478
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
35479
35479
  var import_typescript53 = __toESM(require("typescript"), 1);
35480
35480
  function getTemplateDeclarationNodeForError(declaration) {
35481
35481
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -35561,7 +35561,8 @@ function parseExtractedTemplate(template2, sourceStr, sourceParseRange, escapedS
35561
35561
  escapedString,
35562
35562
  enableI18nLegacyMessageIdFormat: options.enableI18nLegacyMessageIdFormat,
35563
35563
  i18nNormalizeLineEndingsInICUs,
35564
- alwaysAttemptHtmlToR3AstConversion: options.usePoisonedData
35564
+ alwaysAttemptHtmlToR3AstConversion: options.usePoisonedData,
35565
+ enableBlockSyntax: options.enableBlockSyntax
35565
35566
  });
35566
35567
  const { nodes: diagNodes } = parseTemplate(sourceStr, sourceMapUrl != null ? sourceMapUrl : "", {
35567
35568
  preserveWhitespaces: true,
@@ -35572,7 +35573,8 @@ function parseExtractedTemplate(template2, sourceStr, sourceParseRange, escapedS
35572
35573
  enableI18nLegacyMessageIdFormat: options.enableI18nLegacyMessageIdFormat,
35573
35574
  i18nNormalizeLineEndingsInICUs,
35574
35575
  leadingTriviaChars: [],
35575
- alwaysAttemptHtmlToR3AstConversion: options.usePoisonedData
35576
+ alwaysAttemptHtmlToR3AstConversion: options.usePoisonedData,
35577
+ enableBlockSyntax: options.enableBlockSyntax
35576
35578
  });
35577
35579
  return __spreadProps(__spreadValues({}, parsedTemplate), {
35578
35580
  diagNodes,
@@ -35828,7 +35830,7 @@ function _extractTemplateStyleUrls(template2) {
35828
35830
  return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
35829
35831
  }
35830
35832
 
35831
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
35833
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
35832
35834
  var ComponentSymbol = class extends DirectiveSymbol {
35833
35835
  constructor() {
35834
35836
  super(...arguments);
@@ -35863,7 +35865,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
35863
35865
  }
35864
35866
  };
35865
35867
 
35866
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
35868
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
35867
35869
  function collectAnimationNames(value, animationTriggerNames) {
35868
35870
  if (value instanceof Map) {
35869
35871
  const name = value.get("name");
@@ -35939,12 +35941,12 @@ function isLikelyModuleWithProviders(value) {
35939
35941
  return false;
35940
35942
  }
35941
35943
 
35942
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
35944
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
35943
35945
  var EMPTY_ARRAY2 = [];
35944
35946
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
35945
35947
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
35946
35948
  var ComponentDecoratorHandler = class {
35947
- constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver, includeClassMetadata, compilationMode, deferredSymbolTracker, forbidOrphanRendering) {
35949
+ constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver, includeClassMetadata, compilationMode, deferredSymbolTracker, forbidOrphanRendering, enableBlockSyntax) {
35948
35950
  this.reflector = reflector;
35949
35951
  this.evaluator = evaluator;
35950
35952
  this.metaRegistry = metaRegistry;
@@ -35978,6 +35980,7 @@ var ComponentDecoratorHandler = class {
35978
35980
  this.compilationMode = compilationMode;
35979
35981
  this.deferredSymbolTracker = deferredSymbolTracker;
35980
35982
  this.forbidOrphanRendering = forbidOrphanRendering;
35983
+ this.enableBlockSyntax = enableBlockSyntax;
35981
35984
  this.literalCache = /* @__PURE__ */ new Map();
35982
35985
  this.elementSchemaRegistry = new DomElementSchemaRegistry();
35983
35986
  this.preanalyzeTemplateCache = /* @__PURE__ */ new Map();
@@ -35987,7 +35990,8 @@ var ComponentDecoratorHandler = class {
35987
35990
  this.extractTemplateOptions = {
35988
35991
  enableI18nLegacyMessageIdFormat: this.enableI18nLegacyMessageIdFormat,
35989
35992
  i18nNormalizeLineEndingsInICUs: this.i18nNormalizeLineEndingsInICUs,
35990
- usePoisonedData: this.usePoisonedData
35993
+ usePoisonedData: this.usePoisonedData,
35994
+ enableBlockSyntax: this.enableBlockSyntax
35991
35995
  };
35992
35996
  }
35993
35997
  detect(node, decorators) {
@@ -36140,7 +36144,8 @@ var ComponentDecoratorHandler = class {
36140
36144
  template2 = extractTemplate(node, templateDecl, this.evaluator, this.depTracker, this.resourceLoader, {
36141
36145
  enableI18nLegacyMessageIdFormat: this.enableI18nLegacyMessageIdFormat,
36142
36146
  i18nNormalizeLineEndingsInICUs: this.i18nNormalizeLineEndingsInICUs,
36143
- usePoisonedData: this.usePoisonedData
36147
+ usePoisonedData: this.usePoisonedData,
36148
+ enableBlockSyntax: this.enableBlockSyntax
36144
36149
  }, this.compilationMode);
36145
36150
  }
36146
36151
  const templateResource = template2.declaration.isInline ? { path: null, expression: component.get("template") } : {
@@ -36746,7 +36751,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
36746
36751
  return diagnostics;
36747
36752
  }
36748
36753
 
36749
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
36754
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
36750
36755
  var import_typescript56 = __toESM(require("typescript"), 1);
36751
36756
  var InjectableDecoratorHandler = class {
36752
36757
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -36971,7 +36976,7 @@ function getDep(dep, reflector) {
36971
36976
  return meta;
36972
36977
  }
36973
36978
 
36974
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
36979
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
36975
36980
  var import_typescript57 = __toESM(require("typescript"), 1);
36976
36981
  var PipeSymbol = class extends SemanticSymbol {
36977
36982
  constructor(decl, name) {
@@ -37122,7 +37127,7 @@ var PipeDecoratorHandler = class {
37122
37127
  }
37123
37128
  };
37124
37129
 
37125
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
37130
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
37126
37131
  var CycleAnalyzer = class {
37127
37132
  constructor(importGraph) {
37128
37133
  this.importGraph = importGraph;
@@ -37193,7 +37198,7 @@ var Cycle = class {
37193
37198
  }
37194
37199
  };
37195
37200
 
37196
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
37201
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
37197
37202
  var import_typescript58 = __toESM(require("typescript"), 1);
37198
37203
  var ImportGraph = class {
37199
37204
  constructor(checker, perf) {
@@ -37285,13 +37290,13 @@ var Found = class {
37285
37290
  }
37286
37291
  };
37287
37292
 
37288
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
37293
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
37289
37294
  var import_typescript64 = __toESM(require("typescript"), 1);
37290
37295
 
37291
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
37296
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
37292
37297
  var import_typescript61 = __toESM(require("typescript"), 1);
37293
37298
 
37294
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
37299
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
37295
37300
  var EntryType;
37296
37301
  (function(EntryType2) {
37297
37302
  EntryType2["Block"] = "block";
@@ -37334,17 +37339,17 @@ var MemberTags;
37334
37339
  MemberTags2["Inherited"] = "override";
37335
37340
  })(MemberTags || (MemberTags = {}));
37336
37341
 
37337
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
37342
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
37338
37343
  function isAngularPrivateName(name) {
37339
37344
  var _a2;
37340
37345
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
37341
37346
  return firstChar === "\u0275" || firstChar === "_";
37342
37347
  }
37343
37348
 
37344
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
37349
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
37345
37350
  var import_typescript60 = __toESM(require("typescript"), 1);
37346
37351
 
37347
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
37352
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
37348
37353
  function extractGenerics(declaration) {
37349
37354
  var _a2, _b2;
37350
37355
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -37357,7 +37362,7 @@ function extractGenerics(declaration) {
37357
37362
  })) != null ? _b2 : [];
37358
37363
  }
37359
37364
 
37360
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
37365
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
37361
37366
  var import_typescript59 = __toESM(require("typescript"), 1);
37362
37367
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
37363
37368
  function extractJsDocTags(node) {
@@ -37401,12 +37406,12 @@ function unescapeAngularDecorators(comment) {
37401
37406
  return comment.replace(/_NG_AT_/g, "@");
37402
37407
  }
37403
37408
 
37404
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
37409
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
37405
37410
  function extractResolvedTypeString(node, checker) {
37406
37411
  return checker.typeToString(checker.getTypeAtLocation(node));
37407
37412
  }
37408
37413
 
37409
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
37414
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
37410
37415
  var FunctionExtractor = class {
37411
37416
  constructor(declaration, typeChecker) {
37412
37417
  this.declaration = declaration;
@@ -37460,7 +37465,7 @@ var FunctionExtractor = class {
37460
37465
  }
37461
37466
  };
37462
37467
 
37463
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
37468
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
37464
37469
  var ClassExtractor = class {
37465
37470
  constructor(declaration, typeChecker) {
37466
37471
  this.declaration = declaration;
@@ -37687,7 +37692,7 @@ function extractInterface(declaration, typeChecker) {
37687
37692
  return extractor.extract();
37688
37693
  }
37689
37694
 
37690
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
37695
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
37691
37696
  function extractConstant(declaration, typeChecker) {
37692
37697
  const resolvedType = typeChecker.getBaseTypeOfLiteralType(typeChecker.getTypeAtLocation(declaration));
37693
37698
  const variableStatement = declaration.parent.parent;
@@ -37705,7 +37710,7 @@ function isSyntheticAngularConstant(declaration) {
37705
37710
  return declaration.name.getText() === "USED_FOR_NG_TYPE_CHECKING";
37706
37711
  }
37707
37712
 
37708
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
37713
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
37709
37714
  var import_typescript62 = __toESM(require("typescript"), 1);
37710
37715
  function extractorDecorator(declaration, typeChecker) {
37711
37716
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -37778,7 +37783,7 @@ function getDecoratorJsDocNode(declaration) {
37778
37783
  return callSignature;
37779
37784
  }
37780
37785
 
37781
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
37786
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
37782
37787
  var import_typescript63 = __toESM(require("typescript"), 1);
37783
37788
  function extractEnum(declaration, typeChecker) {
37784
37789
  return {
@@ -37807,7 +37812,7 @@ function getEnumMemberValue(memberNode) {
37807
37812
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
37808
37813
  }
37809
37814
 
37810
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
37815
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
37811
37816
  function extractTypeAlias(declaration) {
37812
37817
  return {
37813
37818
  name: declaration.name.getText(),
@@ -37819,7 +37824,7 @@ function extractTypeAlias(declaration) {
37819
37824
  };
37820
37825
  }
37821
37826
 
37822
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
37827
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
37823
37828
  var DocsExtractor = class {
37824
37829
  constructor(typeChecker, metadataReader) {
37825
37830
  this.typeChecker = typeChecker;
@@ -37881,7 +37886,7 @@ function isIgnoredInterface(node) {
37881
37886
  return node.name.getText().endsWith("Decorator") || isDecoratorOptionsInterface(node);
37882
37887
  }
37883
37888
 
37884
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
37889
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
37885
37890
  var import_typescript65 = __toESM(require("typescript"), 1);
37886
37891
  var FlatIndexGenerator = class {
37887
37892
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -37906,7 +37911,7 @@ export * from '${relativeEntryPoint}';
37906
37911
  }
37907
37912
  };
37908
37913
 
37909
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
37914
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
37910
37915
  function findFlatIndexEntryPoint(rootFiles) {
37911
37916
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
37912
37917
  let resolvedEntryPoint = null;
@@ -37922,7 +37927,7 @@ function findFlatIndexEntryPoint(rootFiles) {
37922
37927
  return resolvedEntryPoint;
37923
37928
  }
37924
37929
 
37925
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
37930
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
37926
37931
  var import_typescript67 = __toESM(require("typescript"), 1);
37927
37932
  function checkForPrivateExports(entryPoint, checker, refGraph) {
37928
37933
  const diagnostics = [];
@@ -38002,7 +38007,7 @@ function getDescriptorOfDeclaration(decl) {
38002
38007
  }
38003
38008
  }
38004
38009
 
38005
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
38010
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
38006
38011
  var ReferenceGraph = class {
38007
38012
  constructor() {
38008
38013
  this.references = /* @__PURE__ */ new Map();
@@ -38056,7 +38061,7 @@ var ReferenceGraph = class {
38056
38061
  }
38057
38062
  };
38058
38063
 
38059
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
38064
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
38060
38065
  var NgOriginalFile = Symbol("NgOriginalFile");
38061
38066
  var UpdateMode;
38062
38067
  (function(UpdateMode2) {
@@ -38064,13 +38069,13 @@ var UpdateMode;
38064
38069
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
38065
38070
  })(UpdateMode || (UpdateMode = {}));
38066
38071
 
38067
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38072
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38068
38073
  var import_typescript71 = __toESM(require("typescript"), 1);
38069
38074
 
38070
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38075
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38071
38076
  var import_typescript68 = __toESM(require("typescript"), 1);
38072
38077
 
38073
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
38078
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
38074
38079
  var NgExtension = Symbol("NgExtension");
38075
38080
  function isExtended(sf) {
38076
38081
  return sf[NgExtension] !== void 0;
@@ -38130,13 +38135,13 @@ function retagTsFile(sf) {
38130
38135
  }
38131
38136
  }
38132
38137
 
38133
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
38138
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
38134
38139
  var TS_EXTENSIONS = /\.tsx?$/i;
38135
38140
  function makeShimFileName(fileName, suffix) {
38136
38141
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
38137
38142
  }
38138
38143
 
38139
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38144
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38140
38145
  var ShimAdapter = class {
38141
38146
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
38142
38147
  this.delegate = delegate;
@@ -38231,7 +38236,7 @@ var ShimAdapter = class {
38231
38236
  }
38232
38237
  };
38233
38238
 
38234
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
38239
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
38235
38240
  var ShimReferenceTagger = class {
38236
38241
  constructor(shimExtensions) {
38237
38242
  this.tagged = /* @__PURE__ */ new Set();
@@ -38265,7 +38270,7 @@ var ShimReferenceTagger = class {
38265
38270
  }
38266
38271
  };
38267
38272
 
38268
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38273
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38269
38274
  var DelegatingCompilerHost = class {
38270
38275
  constructor(delegate) {
38271
38276
  this.delegate = delegate;
@@ -38378,7 +38383,7 @@ var TsCreateProgramDriver = class {
38378
38383
  }
38379
38384
  };
38380
38385
 
38381
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
38386
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
38382
38387
  var FileDependencyGraph = class {
38383
38388
  constructor() {
38384
38389
  this.nodes = /* @__PURE__ */ new Map();
@@ -38445,7 +38450,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
38445
38450
  return false;
38446
38451
  }
38447
38452
 
38448
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
38453
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
38449
38454
  var IncrementalStateKind;
38450
38455
  (function(IncrementalStateKind2) {
38451
38456
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -38453,7 +38458,7 @@ var IncrementalStateKind;
38453
38458
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
38454
38459
  })(IncrementalStateKind || (IncrementalStateKind = {}));
38455
38460
 
38456
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
38461
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
38457
38462
  var PhaseKind;
38458
38463
  (function(PhaseKind2) {
38459
38464
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -38654,7 +38659,7 @@ function toOriginalSourceFile(sf) {
38654
38659
  }
38655
38660
  }
38656
38661
 
38657
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
38662
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
38658
38663
  var TrackedIncrementalBuildStrategy = class {
38659
38664
  constructor() {
38660
38665
  this.state = null;
@@ -38675,7 +38680,7 @@ var TrackedIncrementalBuildStrategy = class {
38675
38680
  };
38676
38681
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
38677
38682
 
38678
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
38683
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
38679
38684
  var IdentifierKind;
38680
38685
  (function(IdentifierKind2) {
38681
38686
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -38693,7 +38698,7 @@ var AbsoluteSourceSpan2 = class {
38693
38698
  }
38694
38699
  };
38695
38700
 
38696
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
38701
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
38697
38702
  var IndexingContext = class {
38698
38703
  constructor() {
38699
38704
  this.components = /* @__PURE__ */ new Set();
@@ -38703,7 +38708,7 @@ var IndexingContext = class {
38703
38708
  }
38704
38709
  };
38705
38710
 
38706
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
38711
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
38707
38712
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
38708
38713
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
38709
38714
  super();
@@ -38984,7 +38989,7 @@ function getTemplateIdentifiers(boundTemplate) {
38984
38989
  return { identifiers: visitor.identifiers, errors: visitor.errors };
38985
38990
  }
38986
38991
 
38987
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
38992
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
38988
38993
  function generateAnalysis(context) {
38989
38994
  const analysis = /* @__PURE__ */ new Map();
38990
38995
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -39020,7 +39025,7 @@ function generateAnalysis(context) {
39020
39025
  return analysis;
39021
39026
  }
39022
39027
 
39023
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
39028
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
39024
39029
  var NgModuleIndexImpl = class {
39025
39030
  constructor(metaReader, localReader) {
39026
39031
  this.metaReader = metaReader;
@@ -39109,7 +39114,7 @@ var NgModuleIndexImpl = class {
39109
39114
  }
39110
39115
  };
39111
39116
 
39112
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
39117
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
39113
39118
  var import_typescript74 = __toESM(require("typescript"), 1);
39114
39119
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
39115
39120
  var RESOURCE_MARKER = ".$ngresource$";
@@ -39257,7 +39262,7 @@ function createLookupResolutionHost(adapter) {
39257
39262
  };
39258
39263
  }
39259
39264
 
39260
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
39265
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
39261
39266
  var StandaloneComponentScopeReader = class {
39262
39267
  constructor(metaReader, localModuleReader, dtsModuleReader) {
39263
39268
  this.metaReader = metaReader;
@@ -39335,21 +39340,21 @@ var StandaloneComponentScopeReader = class {
39335
39340
  }
39336
39341
  };
39337
39342
 
39338
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
39343
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
39339
39344
  var OptimizeFor;
39340
39345
  (function(OptimizeFor2) {
39341
39346
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
39342
39347
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
39343
39348
  })(OptimizeFor || (OptimizeFor = {}));
39344
39349
 
39345
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
39350
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
39346
39351
  var CompletionKind;
39347
39352
  (function(CompletionKind2) {
39348
39353
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
39349
39354
  CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
39350
39355
  })(CompletionKind || (CompletionKind = {}));
39351
39356
 
39352
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
39357
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
39353
39358
  var PotentialImportKind;
39354
39359
  (function(PotentialImportKind2) {
39355
39360
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -39361,7 +39366,7 @@ var PotentialImportMode;
39361
39366
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
39362
39367
  })(PotentialImportMode || (PotentialImportMode = {}));
39363
39368
 
39364
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
39369
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
39365
39370
  var SymbolKind;
39366
39371
  (function(SymbolKind2) {
39367
39372
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -39377,7 +39382,7 @@ var SymbolKind;
39377
39382
  SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
39378
39383
  })(SymbolKind || (SymbolKind = {}));
39379
39384
 
39380
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
39385
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
39381
39386
  var import_typescript75 = __toESM(require("typescript"), 1);
39382
39387
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
39383
39388
  var _a2;
@@ -39484,7 +39489,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
39484
39489
  return import_typescript75.default.createSourceFile(fileName, template2, import_typescript75.default.ScriptTarget.Latest, false, import_typescript75.default.ScriptKind.JSX);
39485
39490
  }
39486
39491
 
39487
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
39492
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
39488
39493
  var TEMPLATE_ID = Symbol("ngTemplateId");
39489
39494
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
39490
39495
  function getTemplateId(clazz) {
@@ -39501,10 +39506,10 @@ function allocateTemplateId(sf) {
39501
39506
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
39502
39507
  }
39503
39508
 
39504
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
39509
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
39505
39510
  var import_typescript77 = __toESM(require("typescript"), 1);
39506
39511
 
39507
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
39512
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
39508
39513
  var import_typescript76 = __toESM(require("typescript"), 1);
39509
39514
  var parseSpanComment = /^(\d+),(\d+)$/;
39510
39515
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -39633,7 +39638,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
39633
39638
  }) || false;
39634
39639
  }
39635
39640
 
39636
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
39641
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
39637
39642
  var CompletionEngine = class {
39638
39643
  constructor(tcb, data, tcbPath, tcbIsShim) {
39639
39644
  this.tcb = tcb;
@@ -39790,10 +39795,10 @@ var CompletionEngine = class {
39790
39795
  }
39791
39796
  };
39792
39797
 
39793
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39798
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39794
39799
  var import_typescript91 = __toESM(require("typescript"), 1);
39795
39800
 
39796
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39801
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39797
39802
  var import_typescript78 = __toESM(require("typescript"), 1);
39798
39803
  var REGISTRY = new DomElementSchemaRegistry();
39799
39804
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -39845,10 +39850,10 @@ var RegistryDomSchemaChecker = class {
39845
39850
  }
39846
39851
  };
39847
39852
 
39848
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39853
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39849
39854
  var import_typescript84 = __toESM(require("typescript"), 1);
39850
39855
 
39851
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39856
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39852
39857
  var import_typescript79 = __toESM(require("typescript"), 1);
39853
39858
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
39854
39859
  import_typescript79.default.SyntaxKind.ParenthesizedExpression,
@@ -39884,11 +39889,15 @@ function tsCreateElement(tagName) {
39884
39889
  );
39885
39890
  }
39886
39891
  function tsDeclareVariable(id, type) {
39892
+ let initializer = import_typescript79.default.factory.createNonNullExpression(import_typescript79.default.factory.createNull());
39893
+ if (type.kind === import_typescript79.default.SyntaxKind.BooleanKeyword) {
39894
+ initializer = import_typescript79.default.factory.createAsExpression(initializer, import_typescript79.default.factory.createKeywordTypeNode(import_typescript79.default.SyntaxKind.BooleanKeyword));
39895
+ }
39887
39896
  const decl = import_typescript79.default.factory.createVariableDeclaration(
39888
39897
  id,
39889
39898
  void 0,
39890
39899
  type,
39891
- import_typescript79.default.factory.createNonNullExpression(import_typescript79.default.factory.createNull())
39900
+ initializer
39892
39901
  );
39893
39902
  return import_typescript79.default.factory.createVariableStatement(
39894
39903
  void 0,
@@ -39922,13 +39931,13 @@ function isAccessExpression2(node) {
39922
39931
  return import_typescript79.default.isPropertyAccessExpression(node) || import_typescript79.default.isElementAccessExpression(node);
39923
39932
  }
39924
39933
 
39925
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39934
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39926
39935
  var import_typescript83 = __toESM(require("typescript"), 1);
39927
39936
 
39928
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39937
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39929
39938
  var import_typescript81 = __toESM(require("typescript"), 1);
39930
39939
 
39931
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39940
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39932
39941
  var import_typescript80 = __toESM(require("typescript"), 1);
39933
39942
  var TypeParameterEmitter = class {
39934
39943
  constructor(typeParameters, reflector) {
@@ -40006,7 +40015,7 @@ var TypeParameterEmitter = class {
40006
40015
  }
40007
40016
  };
40008
40017
 
40009
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
40018
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
40010
40019
  var TcbInliningRequirement;
40011
40020
  (function(TcbInliningRequirement2) {
40012
40021
  TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
@@ -40086,7 +40095,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
40086
40095
  return emitter.canEmit((ref) => env.canReferenceType(ref));
40087
40096
  }
40088
40097
 
40089
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40098
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40090
40099
  function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
40091
40100
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
40092
40101
  const rawType = import_typescript83.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -40197,7 +40206,7 @@ function typeParametersWithDefaultTypes(params) {
40197
40206
  });
40198
40207
  }
40199
40208
 
40200
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40209
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40201
40210
  var Environment = class {
40202
40211
  constructor(config, importManager, refEmitter, reflector, contextFile) {
40203
40212
  this.config = config;
@@ -40291,7 +40300,7 @@ var Environment = class {
40291
40300
  }
40292
40301
  };
40293
40302
 
40294
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40303
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40295
40304
  var import_typescript85 = __toESM(require("typescript"), 1);
40296
40305
  var OutOfBandDiagnosticRecorderImpl = class {
40297
40306
  constructor(resolver) {
@@ -40445,7 +40454,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
40445
40454
  });
40446
40455
  }
40447
40456
 
40448
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40457
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40449
40458
  var import_typescript86 = __toESM(require("typescript"), 1);
40450
40459
  var TypeCheckShimGenerator = class {
40451
40460
  constructor() {
@@ -40463,10 +40472,10 @@ var TypeCheckShimGenerator = class {
40463
40472
  }
40464
40473
  };
40465
40474
 
40466
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40475
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40467
40476
  var import_typescript89 = __toESM(require("typescript"), 1);
40468
40477
 
40469
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40478
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40470
40479
  var import_typescript87 = __toESM(require("typescript"), 1);
40471
40480
  function wrapForDiagnostics(expr) {
40472
40481
  return import_typescript87.default.factory.createParenthesizedExpression(expr);
@@ -40511,7 +40520,7 @@ function translateDiagnostic(diagnostic, resolver) {
40511
40520
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
40512
40521
  }
40513
40522
 
40514
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40523
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40515
40524
  var import_typescript88 = __toESM(require("typescript"), 1);
40516
40525
  var NULL_AS_ANY = import_typescript88.default.factory.createAsExpression(import_typescript88.default.factory.createNull(), import_typescript88.default.factory.createKeywordTypeNode(import_typescript88.default.SyntaxKind.AnyKeyword));
40517
40526
  var UNDEFINED = import_typescript88.default.factory.createIdentifier("undefined");
@@ -40843,7 +40852,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
40843
40852
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
40844
40853
  })();
40845
40854
 
40846
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
40855
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
40847
40856
  var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
40848
40857
  constructor(templateId, boundTarget, oob) {
40849
40858
  super();
@@ -40866,7 +40875,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
40866
40875
  }
40867
40876
  };
40868
40877
 
40869
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40878
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40870
40879
  var TcbGenericContextBehavior;
40871
40880
  (function(TcbGenericContextBehavior2) {
40872
40881
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -41684,7 +41693,7 @@ var Context2 = class {
41684
41693
  return this.pipes.get(name);
41685
41694
  }
41686
41695
  };
41687
- var Scope3 = class {
41696
+ var _Scope = class {
41688
41697
  constructor(tcb, parent = null, guard = null) {
41689
41698
  this.tcb = tcb;
41690
41699
  this.parent = parent;
@@ -41698,7 +41707,7 @@ var Scope3 = class {
41698
41707
  this.statements = [];
41699
41708
  }
41700
41709
  static forNodes(tcb, parentScope, scopedNode, children, guard) {
41701
- const scope = new Scope3(tcb, parentScope, guard);
41710
+ const scope = new _Scope(tcb, parentScope, guard);
41702
41711
  if (parentScope === null && tcb.env.config.enableTemplateTypeChecker) {
41703
41712
  scope.opQueue.push(new TcbComponentContextCompletionOp(scope));
41704
41713
  }
@@ -41720,8 +41729,11 @@ var Scope3 = class {
41720
41729
  }
41721
41730
  } else if (scopedNode instanceof ForLoopBlock) {
41722
41731
  this.registerVariable(scope, scopedNode.item, new TcbBlockVariableOp(tcb, scope, import_typescript89.default.factory.createIdentifier(scopedNode.item.name), scopedNode.item));
41723
- for (const variable2 of Object.values(scopedNode.contextVariables)) {
41724
- const type = import_typescript89.default.factory.createKeywordTypeNode(import_typescript89.default.SyntaxKind.NumberKeyword);
41732
+ for (const [name, variable2] of Object.entries(scopedNode.contextVariables)) {
41733
+ if (!this.forLoopContextVariableTypes.has(name)) {
41734
+ throw new Error(`Unrecognized for loop context variable ${name}`);
41735
+ }
41736
+ const type = import_typescript89.default.factory.createKeywordTypeNode(this.forLoopContextVariableTypes.get(name));
41725
41737
  this.registerVariable(scope, variable2, new TcbBlockImplicitVariableOp(tcb, scope, type, variable2));
41726
41738
  }
41727
41739
  }
@@ -41998,6 +42010,17 @@ var Scope3 = class {
41998
42010
  }
41999
42011
  }
42000
42012
  };
42013
+ var Scope3 = _Scope;
42014
+ (() => {
42015
+ _Scope.forLoopContextVariableTypes = /* @__PURE__ */ new Map([
42016
+ ["$first", import_typescript89.default.SyntaxKind.BooleanKeyword],
42017
+ ["$last", import_typescript89.default.SyntaxKind.BooleanKeyword],
42018
+ ["$even", import_typescript89.default.SyntaxKind.BooleanKeyword],
42019
+ ["$odd", import_typescript89.default.SyntaxKind.BooleanKeyword],
42020
+ ["$index", import_typescript89.default.SyntaxKind.NumberKeyword],
42021
+ ["$count", import_typescript89.default.SyntaxKind.NumberKeyword]
42022
+ ]);
42023
+ })();
42001
42024
  function tcbThisParam(name, typeArguments) {
42002
42025
  return import_typescript89.default.factory.createParameterDeclaration(
42003
42026
  void 0,
@@ -42238,7 +42261,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
42238
42261
  }
42239
42262
  };
42240
42263
 
42241
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42264
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42242
42265
  var import_typescript90 = __toESM(require("typescript"), 1);
42243
42266
  var TypeCheckFile = class extends Environment {
42244
42267
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -42274,7 +42297,7 @@ var TypeCheckFile = class extends Environment {
42274
42297
  }
42275
42298
  };
42276
42299
 
42277
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42300
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42278
42301
  var InliningMode;
42279
42302
  (function(InliningMode2) {
42280
42303
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -42511,7 +42534,7 @@ function splitStringAtPoints(str, points) {
42511
42534
  return splits;
42512
42535
  }
42513
42536
 
42514
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42537
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42515
42538
  var LF_CHAR = 10;
42516
42539
  var CR_CHAR = 13;
42517
42540
  var LINE_SEP_CHAR = 8232;
@@ -42552,7 +42575,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
42552
42575
  return low - 1;
42553
42576
  }
42554
42577
 
42555
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42578
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42556
42579
  var TemplateSource = class {
42557
42580
  constructor(mapping, file) {
42558
42581
  this.mapping = mapping;
@@ -42603,7 +42626,7 @@ var TemplateSourceManager = class {
42603
42626
  }
42604
42627
  };
42605
42628
 
42606
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42629
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42607
42630
  var import_typescript92 = __toESM(require("typescript"), 1);
42608
42631
  var SymbolBuilder = class {
42609
42632
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -43080,7 +43103,7 @@ function sourceSpanEqual(a, b) {
43080
43103
  return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
43081
43104
  }
43082
43105
 
43083
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43106
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43084
43107
  var REGISTRY2 = new DomElementSchemaRegistry();
43085
43108
  var TemplateTypeCheckerImpl = class {
43086
43109
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -43776,7 +43799,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
43776
43799
  }
43777
43800
  };
43778
43801
 
43779
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
43802
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
43780
43803
  var TemplateCheckWithVisitor = class {
43781
43804
  run(ctx, component, template2) {
43782
43805
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -43899,7 +43922,42 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
43899
43922
  }
43900
43923
  };
43901
43924
 
43902
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
43925
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
43926
+ var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
43927
+ constructor() {
43928
+ super(...arguments);
43929
+ this.code = ErrorCode.INTERPOLATED_SIGNAL_NOT_INVOKED;
43930
+ }
43931
+ visitNode(ctx, component, node) {
43932
+ if (node instanceof Interpolation) {
43933
+ return node.expressions.filter((item) => item instanceof PropertyRead).flatMap((item) => {
43934
+ if (item instanceof PropertyRead) {
43935
+ return buildDiagnosticForSignal(ctx, item, component);
43936
+ }
43937
+ return [];
43938
+ });
43939
+ }
43940
+ return [];
43941
+ }
43942
+ };
43943
+ function buildDiagnosticForSignal(ctx, node, component) {
43944
+ var _a2, _b2;
43945
+ const symbol = ctx.templateTypeChecker.getSymbolOfNode(node, component);
43946
+ if ((symbol == null ? void 0 : symbol.kind) === SymbolKind.Expression && (((_a2 = symbol.tsType.symbol) == null ? void 0 : _a2.escapedName) === "WritableSignal" || ((_b2 = symbol.tsType.symbol) == null ? void 0 : _b2.escapedName) === "Signal") && symbol.tsType.symbol.parent.escapedName.includes("@angular/core")) {
43947
+ const templateMapping = ctx.templateTypeChecker.getTemplateMappingAtTcbLocation(symbol.tcbLocation);
43948
+ const errorString = `${node.name} is a function and should be invoked: ${node.name}()`;
43949
+ const diagnostic = ctx.makeTemplateDiagnostic(templateMapping.span, errorString);
43950
+ return [diagnostic];
43951
+ }
43952
+ return [];
43953
+ }
43954
+ var factory = {
43955
+ code: ErrorCode.INTERPOLATED_SIGNAL_NOT_INVOKED,
43956
+ name: ExtendedTemplateDiagnosticName.INTERPOLATED_SIGNAL_NOT_INVOKED,
43957
+ create: () => new InterpolatedSignalCheck()
43958
+ };
43959
+
43960
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
43903
43961
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
43904
43962
  constructor() {
43905
43963
  super(...arguments);
@@ -43918,13 +43976,13 @@ var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
43918
43976
  return [diagnostic];
43919
43977
  }
43920
43978
  };
43921
- var factory = {
43979
+ var factory2 = {
43922
43980
  code: ErrorCode.INVALID_BANANA_IN_BOX,
43923
43981
  name: ExtendedTemplateDiagnosticName.INVALID_BANANA_IN_BOX,
43924
43982
  create: () => new InvalidBananaInBoxCheck()
43925
43983
  };
43926
43984
 
43927
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
43985
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
43928
43986
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
43929
43987
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
43930
43988
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -43960,7 +44018,7 @@ var MissingControlFlowDirectiveCheck = class extends TemplateCheckWithVisitor {
43960
44018
  return [diagnostic];
43961
44019
  }
43962
44020
  };
43963
- var factory2 = {
44021
+ var factory3 = {
43964
44022
  code: ErrorCode.MISSING_CONTROL_FLOW_DIRECTIVE,
43965
44023
  name: ExtendedTemplateDiagnosticName.MISSING_CONTROL_FLOW_DIRECTIVE,
43966
44024
  create: (options) => {
@@ -43968,7 +44026,7 @@ var factory2 = {
43968
44026
  }
43969
44027
  };
43970
44028
 
43971
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
44029
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
43972
44030
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
43973
44031
  constructor() {
43974
44032
  super(...arguments);
@@ -43994,13 +44052,13 @@ var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
43994
44052
  return [diagnostic];
43995
44053
  }
43996
44054
  };
43997
- var factory3 = {
44055
+ var factory4 = {
43998
44056
  code: ErrorCode.MISSING_NGFOROF_LET,
43999
44057
  name: ExtendedTemplateDiagnosticName.MISSING_NGFOROF_LET,
44000
44058
  create: () => new MissingNgForOfLetCheck()
44001
44059
  };
44002
44060
 
44003
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
44061
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
44004
44062
  var import_typescript95 = __toESM(require("typescript"), 1);
44005
44063
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
44006
44064
  constructor() {
@@ -44032,7 +44090,7 @@ var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
44032
44090
  return [diagnostic];
44033
44091
  }
44034
44092
  };
44035
- var factory4 = {
44093
+ var factory5 = {
44036
44094
  code: ErrorCode.NULLISH_COALESCING_NOT_NULLABLE,
44037
44095
  name: ExtendedTemplateDiagnosticName.NULLISH_COALESCING_NOT_NULLABLE,
44038
44096
  create: (options) => {
@@ -44044,7 +44102,7 @@ var factory4 = {
44044
44102
  }
44045
44103
  };
44046
44104
 
44047
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
44105
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
44048
44106
  var import_typescript96 = __toESM(require("typescript"), 1);
44049
44107
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
44050
44108
  constructor() {
@@ -44077,7 +44135,7 @@ var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
44077
44135
  return [diagnostic];
44078
44136
  }
44079
44137
  };
44080
- var factory5 = {
44138
+ var factory6 = {
44081
44139
  code: ErrorCode.OPTIONAL_CHAIN_NOT_NULLABLE,
44082
44140
  name: ExtendedTemplateDiagnosticName.OPTIONAL_CHAIN_NOT_NULLABLE,
44083
44141
  create: (options) => {
@@ -44089,7 +44147,7 @@ var factory5 = {
44089
44147
  }
44090
44148
  };
44091
44149
 
44092
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
44150
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
44093
44151
  var STYLE_SUFFIXES = ["px", "%", "em"];
44094
44152
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
44095
44153
  constructor() {
@@ -44106,13 +44164,13 @@ var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
44106
44164
  return [diagnostic];
44107
44165
  }
44108
44166
  };
44109
- var factory6 = {
44167
+ var factory7 = {
44110
44168
  code: ErrorCode.SUFFIX_NOT_SUPPORTED,
44111
44169
  name: ExtendedTemplateDiagnosticName.SUFFIX_NOT_SUPPORTED,
44112
44170
  create: () => new SuffixNotSupportedCheck()
44113
44171
  };
44114
44172
 
44115
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
44173
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
44116
44174
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
44117
44175
  constructor() {
44118
44176
  super(...arguments);
@@ -44144,16 +44202,16 @@ var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
44144
44202
  return [diagnostic];
44145
44203
  }
44146
44204
  };
44147
- var factory7 = {
44205
+ var factory8 = {
44148
44206
  code: ErrorCode.TEXT_ATTRIBUTE_NOT_BINDING,
44149
44207
  name: ExtendedTemplateDiagnosticName.TEXT_ATTRIBUTE_NOT_BINDING,
44150
44208
  create: () => new TextAttributeNotBindingSpec()
44151
44209
  };
44152
44210
 
44153
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
44211
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
44154
44212
  var import_typescript97 = __toESM(require("typescript"), 1);
44155
44213
 
44156
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
44214
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
44157
44215
  var DiagnosticCategoryLabel;
44158
44216
  (function(DiagnosticCategoryLabel2) {
44159
44217
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -44161,18 +44219,18 @@ var DiagnosticCategoryLabel;
44161
44219
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
44162
44220
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
44163
44221
 
44164
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
44222
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
44165
44223
  var ExtendedTemplateCheckerImpl = class {
44166
44224
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
44167
44225
  var _a2, _b2, _c2, _d2, _e2;
44168
44226
  this.partialCtx = { templateTypeChecker, typeChecker };
44169
44227
  this.templateChecks = /* @__PURE__ */ new Map();
44170
- for (const factory8 of templateCheckFactories) {
44171
- const category = diagnosticLabelToCategory((_e2 = (_d2 = (_b2 = (_a2 = options == null ? void 0 : options.extendedDiagnostics) == null ? void 0 : _a2.checks) == null ? void 0 : _b2[factory8.name]) != null ? _d2 : (_c2 = options == null ? void 0 : options.extendedDiagnostics) == null ? void 0 : _c2.defaultCategory) != null ? _e2 : DiagnosticCategoryLabel.Warning);
44228
+ for (const factory9 of templateCheckFactories) {
44229
+ const category = diagnosticLabelToCategory((_e2 = (_d2 = (_b2 = (_a2 = options == null ? void 0 : options.extendedDiagnostics) == null ? void 0 : _a2.checks) == null ? void 0 : _b2[factory9.name]) != null ? _d2 : (_c2 = options == null ? void 0 : options.extendedDiagnostics) == null ? void 0 : _c2.defaultCategory) != null ? _e2 : DiagnosticCategoryLabel.Warning);
44172
44230
  if (category === null) {
44173
44231
  continue;
44174
44232
  }
44175
- const check = factory8.create(options);
44233
+ const check = factory9.create(options);
44176
44234
  if (check === null) {
44177
44235
  continue;
44178
44236
  }
@@ -44213,18 +44271,19 @@ function assertNever(value) {
44213
44271
  ${value}`);
44214
44272
  }
44215
44273
 
44216
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
44274
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
44217
44275
  var ALL_DIAGNOSTIC_FACTORIES = [
44218
- factory,
44219
- factory4,
44220
- factory5,
44221
44276
  factory2,
44222
- factory7,
44277
+ factory5,
44278
+ factory6,
44223
44279
  factory3,
44224
- factory6
44280
+ factory8,
44281
+ factory4,
44282
+ factory7,
44283
+ factory
44225
44284
  ];
44226
44285
 
44227
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
44286
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
44228
44287
  var CompilationTicketKind;
44229
44288
  (function(CompilationTicketKind2) {
44230
44289
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -44279,7 +44338,7 @@ var NgCompiler = class {
44279
44338
  }
44280
44339
  }
44281
44340
  constructor(adapter, options, inputProgram, programDriver, incrementalStrategy, incrementalCompilation, enableTemplateTypeChecker, usePoisonedData, livePerfRecorder) {
44282
- var _a2;
44341
+ var _a2, _b2;
44283
44342
  this.adapter = adapter;
44284
44343
  this.options = options;
44285
44344
  this.inputProgram = inputProgram;
@@ -44293,6 +44352,7 @@ var NgCompiler = class {
44293
44352
  this.nonTemplateDiagnostics = null;
44294
44353
  this.delegatingPerfRecorder = new DelegatingPerfRecorder(this.perfRecorder);
44295
44354
  this.enableTemplateTypeChecker = enableTemplateTypeChecker || ((_a2 = options["_enableTemplateTypeChecker"]) != null ? _a2 : false);
44355
+ this.enableBlockSyntax = (_b2 = options["_enableBlockSyntax"]) != null ? _b2 : true;
44296
44356
  this.constructionDiagnostics.push(...this.adapter.constructionDiagnostics, ...verifyCompatibleTypeCheckOptions(this.options));
44297
44357
  this.currentProgram = inputProgram;
44298
44358
  this.closureCompilerEnabled = !!this.options.annotateForClosureCompiler;
@@ -44776,7 +44836,7 @@ var NgCompiler = class {
44776
44836
  throw new Error('JIT mode support ("supportJitMode" option) cannot be disabled when forbidOrphanComponents is set to true');
44777
44837
  }
44778
44838
  const handlers = [
44779
- new ComponentDecoratorHandler(reflector, evaluator, metaRegistry, metaReader, scopeReader, depScopeReader, ngModuleScopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, this.resourceManager, this.adapter.rootDirs, this.options.preserveWhitespaces || false, this.options.i18nUseExternalIds !== false, this.options.enableI18nLegacyMessageIdFormat !== false, this.usePoisonedData, this.options.i18nNormalizeLineEndingsInICUs === true, this.moduleResolver, this.cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, this.incrementalCompilation.depGraph, injectableRegistry, semanticDepGraphUpdater, this.closureCompilerEnabled, this.delegatingPerfRecorder, hostDirectivesResolver, supportTestBed, compilationMode, deferredSymbolsTracker, !!this.options.forbidOrphanComponents),
44839
+ new ComponentDecoratorHandler(reflector, evaluator, metaRegistry, metaReader, scopeReader, depScopeReader, ngModuleScopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, this.resourceManager, this.adapter.rootDirs, this.options.preserveWhitespaces || false, this.options.i18nUseExternalIds !== false, this.options.enableI18nLegacyMessageIdFormat !== false, this.usePoisonedData, this.options.i18nNormalizeLineEndingsInICUs === true, this.moduleResolver, this.cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, this.incrementalCompilation.depGraph, injectableRegistry, semanticDepGraphUpdater, this.closureCompilerEnabled, this.delegatingPerfRecorder, hostDirectivesResolver, supportTestBed, compilationMode, deferredSymbolsTracker, !!this.options.forbidOrphanComponents, this.enableBlockSyntax),
44780
44840
  new DirectiveDecoratorHandler(reflector, evaluator, metaRegistry, ngModuleScopeRegistry, metaReader, injectableRegistry, refEmitter, referencesRegistry, isCore, strictCtorDeps, semanticDepGraphUpdater, this.closureCompilerEnabled, this.delegatingPerfRecorder, supportTestBed, compilationMode),
44781
44841
  new PipeDecoratorHandler(reflector, evaluator, metaRegistry, ngModuleScopeRegistry, injectableRegistry, isCore, this.delegatingPerfRecorder, supportTestBed, compilationMode),
44782
44842
  new InjectableDecoratorHandler(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, this.delegatingPerfRecorder, supportTestBed, compilationMode),
@@ -44883,7 +44943,7 @@ ${allowedCategoryLabels.join("\n")}
44883
44943
  `.trim()
44884
44944
  });
44885
44945
  }
44886
- const allExtendedDiagnosticNames = ALL_DIAGNOSTIC_FACTORIES.map((factory8) => factory8.name);
44946
+ const allExtendedDiagnosticNames = ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name);
44887
44947
  for (const [checkName, category] of Object.entries((_c2 = (_b2 = options.extendedDiagnostics) == null ? void 0 : _b2.checks) != null ? _c2 : {})) {
44888
44948
  if (!allExtendedDiagnosticNames.includes(checkName)) {
44889
44949
  yield makeConfigDiagnostic({
@@ -44967,7 +45027,7 @@ function versionMapFromProgram(program, driver) {
44967
45027
  return versions;
44968
45028
  }
44969
45029
 
44970
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
45030
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
44971
45031
  var import_typescript100 = __toESM(require("typescript"), 1);
44972
45032
  var DelegatingCompilerHost2 = class {
44973
45033
  constructor(delegate) {
@@ -45100,7 +45160,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
45100
45160
  }
45101
45161
  };
45102
45162
 
45103
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45163
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45104
45164
  var NgtscProgram = class {
45105
45165
  constructor(rootNames, options, delegateHost, oldProgram) {
45106
45166
  this.options = options;
@@ -45327,21 +45387,21 @@ function mergeEmitResults(emitResults) {
45327
45387
  return { diagnostics, emitSkipped, emittedFiles };
45328
45388
  }
45329
45389
 
45330
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
45390
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
45331
45391
  function createProgram({ rootNames, options, host, oldProgram }) {
45332
45392
  return new NgtscProgram(rootNames, options, host, oldProgram);
45333
45393
  }
45334
45394
 
45335
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
45395
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
45336
45396
  var import_typescript104 = __toESM(require("typescript"), 1);
45337
45397
 
45338
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
45398
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
45339
45399
  var import_typescript103 = __toESM(require("typescript"), 1);
45340
45400
 
45341
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
45401
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
45342
45402
  var import_typescript105 = __toESM(require("typescript"), 1);
45343
45403
 
45344
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
45404
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
45345
45405
  var GLOBAL_DEFS_FOR_TERSER = {
45346
45406
  ngDevMode: false,
45347
45407
  ngI18nClosureMode: false
@@ -45350,7 +45410,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
45350
45410
  ngJitMode: false
45351
45411
  });
45352
45412
 
45353
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
45413
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
45354
45414
  var LogLevel;
45355
45415
  (function(LogLevel2) {
45356
45416
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -45359,7 +45419,7 @@ var LogLevel;
45359
45419
  LogLevel2[LogLevel2["error"] = 3] = "error";
45360
45420
  })(LogLevel || (LogLevel = {}));
45361
45421
 
45362
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
45422
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
45363
45423
  var RESET = "\x1B[0m";
45364
45424
  var RED = "\x1B[31m";
45365
45425
  var YELLOW = "\x1B[33m";
@@ -45368,18 +45428,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
45368
45428
  var WARN = `${YELLOW}Warning:${RESET}`;
45369
45429
  var ERROR = `${RED}Error:${RESET}`;
45370
45430
 
45371
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
45431
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
45372
45432
  setFileSystem(new NodeJSFileSystem());
45373
45433
 
45374
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
45434
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
45375
45435
  var import_fs2 = require("fs");
45376
45436
  var import_path8 = require("path");
45377
45437
  var import_typescript118 = __toESM(require("typescript"), 1);
45378
45438
 
45379
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
45439
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
45380
45440
  var import_typescript107 = __toESM(require("typescript"), 1);
45381
45441
 
45382
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
45442
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
45383
45443
  var import_path4 = require("path");
45384
45444
  var import_typescript106 = __toESM(require("typescript"), 1);
45385
45445
  var ImportManager2 = class {
@@ -45563,7 +45623,7 @@ ${text2}`;
45563
45623
  }
45564
45624
  };
45565
45625
 
45566
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
45626
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
45567
45627
  var ChangeTracker = class {
45568
45628
  constructor(_printer, _importRemapper) {
45569
45629
  __publicField(this, "_printer");
@@ -45622,7 +45682,7 @@ function normalizePath(path4) {
45622
45682
  return path4.replace(/\\/g, "/");
45623
45683
  }
45624
45684
 
45625
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
45685
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
45626
45686
  var import_core16 = require("@angular-devkit/core");
45627
45687
  function getProjectTsConfigPaths(tree) {
45628
45688
  return __async(this, null, function* () {
@@ -45702,11 +45762,11 @@ function getWorkspace(tree) {
45702
45762
  });
45703
45763
  }
45704
45764
 
45705
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
45765
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
45706
45766
  var import_path5 = require("path");
45707
45767
  var import_typescript109 = __toESM(require("typescript"), 1);
45708
45768
 
45709
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
45769
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
45710
45770
  var path3 = __toESM(require("path"), 1);
45711
45771
  var import_typescript108 = __toESM(require("typescript"), 1);
45712
45772
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -45723,7 +45783,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
45723
45783
  return import_typescript108.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
45724
45784
  }
45725
45785
 
45726
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
45786
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
45727
45787
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
45728
45788
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
45729
45789
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -45752,13 +45812,13 @@ function canMigrateFile(basePath, sourceFile, program) {
45752
45812
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
45753
45813
  }
45754
45814
 
45755
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
45815
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
45756
45816
  var import_typescript114 = __toESM(require("typescript"), 1);
45757
45817
 
45758
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
45818
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
45759
45819
  var import_typescript111 = __toESM(require("typescript"), 1);
45760
45820
 
45761
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
45821
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
45762
45822
  var import_typescript110 = __toESM(require("typescript"), 1);
45763
45823
  function getImportOfIdentifier(typeChecker, node) {
45764
45824
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -45809,7 +45869,7 @@ function findImportSpecifier(nodes, specifierName) {
45809
45869
  });
45810
45870
  }
45811
45871
 
45812
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
45872
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
45813
45873
  function getCallDecoratorImport(typeChecker, decorator) {
45814
45874
  if (!import_typescript111.default.isCallExpression(decorator.expression) || !import_typescript111.default.isIdentifier(decorator.expression.expression)) {
45815
45875
  return null;
@@ -45818,7 +45878,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
45818
45878
  return getImportOfIdentifier(typeChecker, identifier);
45819
45879
  }
45820
45880
 
45821
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
45881
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
45822
45882
  function getAngularDecorators(typeChecker, decorators) {
45823
45883
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
45824
45884
  node,
@@ -45828,7 +45888,7 @@ function getAngularDecorators(typeChecker, decorators) {
45828
45888
  }));
45829
45889
  }
45830
45890
 
45831
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
45891
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
45832
45892
  var import_typescript112 = __toESM(require("typescript"), 1);
45833
45893
  function closestNode(node, predicate) {
45834
45894
  let current = node.parent;
@@ -45841,7 +45901,7 @@ function closestNode(node, predicate) {
45841
45901
  return null;
45842
45902
  }
45843
45903
 
45844
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
45904
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
45845
45905
  var import_path6 = require("path");
45846
45906
  var import_typescript113 = __toESM(require("typescript"), 1);
45847
45907
  var UniqueItemTracker = class {
@@ -46017,7 +46077,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
46017
46077
  }));
46018
46078
  }
46019
46079
 
46020
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
46080
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
46021
46081
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
46022
46082
  const filesToRemove = /* @__PURE__ */ new Set();
46023
46083
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -46216,14 +46276,14 @@ function findNgModuleDecorator(node, typeChecker) {
46216
46276
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
46217
46277
  }
46218
46278
 
46219
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
46279
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
46220
46280
  var import_path7 = require("path");
46221
46281
  var import_typescript117 = __toESM(require("typescript"), 1);
46222
46282
 
46223
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
46283
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
46224
46284
  var import_typescript116 = __toESM(require("typescript"), 1);
46225
46285
 
46226
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
46286
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
46227
46287
  var import_typescript115 = __toESM(require("typescript"), 1);
46228
46288
  function isReferenceToImport(typeChecker, node, importSpecifier) {
46229
46289
  var _a2, _b2;
@@ -46232,7 +46292,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
46232
46292
  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];
46233
46293
  }
46234
46294
 
46235
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
46295
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
46236
46296
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
46237
46297
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
46238
46298
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -46595,7 +46655,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
46595
46655
  return metadata != null && metadata.isStandalone;
46596
46656
  }
46597
46657
 
46598
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
46658
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
46599
46659
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
46600
46660
  const tracker = new ChangeTracker(printer, importRemapper);
46601
46661
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -46972,7 +47032,7 @@ function hasImport(program, rootFileNames, moduleName) {
46972
47032
  return false;
46973
47033
  }
46974
47034
 
46975
- // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
47035
+ // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
46976
47036
  var MigrationMode;
46977
47037
  (function(MigrationMode2) {
46978
47038
  MigrationMode2["toStandalone"] = "convert-to-standalone";