@angular/core 18.1.0-next.1 → 18.1.0-next.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 (31) hide show
  1. package/esm2022/src/core.mjs +1 -1
  2. package/esm2022/src/event_emitter.mjs +20 -11
  3. package/esm2022/src/pending_tasks.mjs +15 -20
  4. package/esm2022/src/render3/after_render_hooks.mjs +67 -132
  5. package/esm2022/src/render3/component_ref.mjs +1 -1
  6. package/esm2022/src/render3/instructions/change_detection.mjs +27 -24
  7. package/esm2022/src/render3/reactive_lview_consumer.mjs +56 -3
  8. package/esm2022/src/version.mjs +1 -1
  9. package/esm2022/testing/src/logger.mjs +3 -3
  10. package/fesm2022/core.mjs +344 -349
  11. package/fesm2022/core.mjs.map +1 -1
  12. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  13. package/fesm2022/primitives/signals.mjs +1 -1
  14. package/fesm2022/rxjs-interop.mjs +1 -1
  15. package/fesm2022/testing.mjs +1 -1
  16. package/index.d.ts +212 -28
  17. package/package.json +1 -1
  18. package/primitives/event-dispatch/index.d.ts +1 -1
  19. package/primitives/signals/index.d.ts +1 -1
  20. package/rxjs-interop/index.d.ts +1 -1
  21. package/schematics/migrations/after-render-phase/bundle.js +602 -0
  22. package/schematics/migrations/after-render-phase/bundle.js.map +7 -0
  23. package/schematics/migrations/http-providers/bundle.js +15 -15
  24. package/schematics/migrations/invalid-two-way-bindings/bundle.js +158 -158
  25. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +1 -1
  26. package/schematics/migrations.json +5 -0
  27. package/schematics/ng-generate/control-flow-migration/bundle.js +166 -166
  28. package/schematics/ng-generate/control-flow-migration/bundle.js.map +1 -1
  29. package/schematics/ng-generate/standalone-migration/bundle.js +483 -1096
  30. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  31. package/testing/index.d.ts +1 -1
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
63
63
  });
64
64
  };
65
65
 
66
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/index.mjs
66
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/index.mjs
67
67
  var invalid_two_way_bindings_exports = {};
68
68
  __export(invalid_two_way_bindings_exports, {
69
69
  default: () => invalid_two_way_bindings_default
@@ -72,7 +72,7 @@ module.exports = __toCommonJS(invalid_two_way_bindings_exports);
72
72
  var import_schematics = require("@angular-devkit/schematics");
73
73
  var import_path3 = require("path");
74
74
 
75
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
75
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
76
76
  var import_core = require("@angular-devkit/core");
77
77
  function getProjectTsConfigPaths(tree) {
78
78
  return __async(this, null, function* () {
@@ -152,11 +152,11 @@ function getWorkspace(tree) {
152
152
  });
153
153
  }
154
154
 
155
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
156
156
  var import_path = require("path");
157
157
  var import_typescript2 = __toESM(require("typescript"), 1);
158
158
 
159
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
159
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
160
160
  var path = __toESM(require("path"), 1);
161
161
  var import_typescript = __toESM(require("typescript"), 1);
162
162
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -173,7 +173,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
173
173
  return import_typescript.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
174
174
  }
175
175
 
176
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
176
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
177
177
  function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
178
178
  const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
179
179
  return import_typescript2.default.createProgram(rootNames, options, host);
@@ -206,7 +206,7 @@ function canMigrateFile(basePath, sourceFile, program) {
206
206
  return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
207
207
  }
208
208
 
209
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/analysis.mjs
209
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/analysis.mjs
210
210
  var import_path2 = require("path");
211
211
  var import_typescript3 = __toESM(require("typescript"), 1);
212
212
  var AnalyzedFile = class {
@@ -266,7 +266,7 @@ function forEachClass(sourceFile, callback) {
266
266
  });
267
267
  }
268
268
 
269
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
269
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
270
270
  var _SELECTOR_REGEXP = new RegExp(
271
271
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
272
272
  "g"
@@ -574,7 +574,7 @@ var SelectorContext = class {
574
574
  }
575
575
  };
576
576
 
577
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
577
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
578
578
  var ViewEncapsulation;
579
579
  (function(ViewEncapsulation2) {
580
580
  ViewEncapsulation2[ViewEncapsulation2["Emulated"] = 0] = "Emulated";
@@ -642,7 +642,7 @@ function parseSelectorToR3Selector(selector) {
642
642
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
643
643
  }
644
644
 
645
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
645
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
646
646
  var textEncoder;
647
647
  function computeDigest(message) {
648
648
  return sha1(serializeNodes(message.nodes).join("") + `[${message.meaning}]`);
@@ -882,7 +882,7 @@ function wordAt(bytes, index, endian) {
882
882
  return word;
883
883
  }
884
884
 
885
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
885
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
886
886
  var TypeModifier;
887
887
  (function(TypeModifier2) {
888
888
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -1820,7 +1820,7 @@ function serializeTags(tags) {
1820
1820
  return out;
1821
1821
  }
1822
1822
 
1823
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1823
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1824
1824
  var CONSTANT_PREFIX = "_c";
1825
1825
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
1826
1826
  var KEY_CONTEXT = {};
@@ -2008,7 +2008,7 @@ function isLongStringLiteral(expr) {
2008
2008
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
2009
2009
  }
2010
2010
 
2011
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2011
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
2012
2012
  var CORE = "@angular/core";
2013
2013
  var _Identifiers = class {
2014
2014
  };
@@ -2896,7 +2896,7 @@ var Identifiers = _Identifiers;
2896
2896
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
2897
2897
  })();
2898
2898
 
2899
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
2899
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
2900
2900
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
2901
2901
  function dashCaseToCamelCase(input) {
2902
2902
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -2973,7 +2973,7 @@ var Version = class {
2973
2973
  };
2974
2974
  var _global = globalThis;
2975
2975
 
2976
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2976
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2977
2977
  var VERSION = 3;
2978
2978
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
2979
2979
  var SourceMapGenerator = class {
@@ -3102,7 +3102,7 @@ function toBase64Digit(value) {
3102
3102
  return B64_DIGITS[value];
3103
3103
  }
3104
3104
 
3105
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3105
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
3106
3106
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
3107
3107
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
3108
3108
  var _INDENT_WITH = " ";
@@ -3590,7 +3590,7 @@ function _createIndent(count) {
3590
3590
  return res;
3591
3591
  }
3592
3592
 
3593
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
3593
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
3594
3594
  function typeWithParameters(type, numParams) {
3595
3595
  if (numParams === 0) {
3596
3596
  return expressionType(type);
@@ -3645,7 +3645,7 @@ function generateForwardRef(expr) {
3645
3645
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
3646
3646
  }
3647
3647
 
3648
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3648
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3649
3649
  var R3FactoryDelegateType;
3650
3650
  (function(R3FactoryDelegateType2) {
3651
3651
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3790,7 +3790,7 @@ function getInjectFn(target) {
3790
3790
  }
3791
3791
  }
3792
3792
 
3793
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
3793
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
3794
3794
  var ParserError = class {
3795
3795
  constructor(message, input, errLocation, ctxLocation) {
3796
3796
  this.input = input;
@@ -4228,7 +4228,7 @@ var BoundElementProperty = class {
4228
4228
  }
4229
4229
  };
4230
4230
 
4231
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
4231
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
4232
4232
  var TagContentType;
4233
4233
  (function(TagContentType2) {
4234
4234
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -4265,7 +4265,7 @@ function mergeNsAndName(prefix, localName) {
4265
4265
  return prefix ? `:${prefix}:${localName}` : localName;
4266
4266
  }
4267
4267
 
4268
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
4268
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
4269
4269
  var Comment = class {
4270
4270
  constructor(value, sourceSpan) {
4271
4271
  this.value = value;
@@ -4735,7 +4735,7 @@ function visitAll(visitor, nodes) {
4735
4735
  return result;
4736
4736
  }
4737
4737
 
4738
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4738
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4739
4739
  var Message = class {
4740
4740
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
4741
4741
  this.nodes = nodes;
@@ -4875,7 +4875,7 @@ var LocalizeMessageStringVisitor = class {
4875
4875
  }
4876
4876
  };
4877
4877
 
4878
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4878
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4879
4879
  var _Visitor = class {
4880
4880
  visitTag(tag) {
4881
4881
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -4903,12 +4903,12 @@ ${doctype.dtd}
4903
4903
  };
4904
4904
  var _visitor = new _Visitor();
4905
4905
 
4906
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4906
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4907
4907
  function toPublicName(internalName) {
4908
4908
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
4909
4909
  }
4910
4910
 
4911
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4911
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4912
4912
  var I18N_ATTR = "i18n";
4913
4913
  var I18N_ATTR_PREFIX = "i18n-";
4914
4914
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -4948,7 +4948,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
4948
4948
  return postfix ? `${raw}_${postfix}` : raw;
4949
4949
  }
4950
4950
 
4951
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4951
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4952
4952
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
4953
4953
  var TEMPORARY_NAME = "_t";
4954
4954
  var CONTEXT_NAME = "ctx";
@@ -5075,7 +5075,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
5075
5075
  return attributesMap;
5076
5076
  }
5077
5077
 
5078
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
5078
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
5079
5079
  function compileInjectable(meta, resolveForwardRefs) {
5080
5080
  let result = null;
5081
5081
  const factoryMeta = {
@@ -5162,7 +5162,7 @@ function createFactoryFunction(type) {
5162
5162
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
5163
5163
  }
5164
5164
 
5165
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
5165
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
5166
5166
  var UNUSABLE_INTERPOLATION_REGEXPS = [
5167
5167
  /@/,
5168
5168
  /^\s*$/,
@@ -5185,7 +5185,7 @@ function assertInterpolationSymbols(identifier, value) {
5185
5185
  }
5186
5186
  }
5187
5187
 
5188
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
5188
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
5189
5189
  var InterpolationConfig = class {
5190
5190
  static fromArray(markers) {
5191
5191
  if (!markers) {
@@ -5202,7 +5202,7 @@ var InterpolationConfig = class {
5202
5202
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
5203
5203
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
5204
5204
 
5205
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
5205
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
5206
5206
  var $EOF = 0;
5207
5207
  var $BSPACE = 8;
5208
5208
  var $TAB = 9;
@@ -5284,7 +5284,7 @@ function isQuote(code) {
5284
5284
  return code === $SQ || code === $DQ || code === $BT;
5285
5285
  }
5286
5286
 
5287
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
5287
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
5288
5288
  var ParseLocation = class {
5289
5289
  constructor(file, offset, line, col) {
5290
5290
  this.file = file;
@@ -5431,7 +5431,7 @@ function sanitizeIdentifier(name) {
5431
5431
  return name.replace(/\W/g, "_");
5432
5432
  }
5433
5433
 
5434
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5434
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5435
5435
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
5436
5436
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5437
5437
  constructor() {
@@ -5524,7 +5524,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5524
5524
  }
5525
5525
  };
5526
5526
 
5527
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5527
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5528
5528
  var policy;
5529
5529
  function getPolicy() {
5530
5530
  if (policy === void 0) {
@@ -5562,7 +5562,7 @@ function newTrustedFunctionForJIT(...args) {
5562
5562
  return fn2.bind(_global);
5563
5563
  }
5564
5564
 
5565
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5565
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5566
5566
  var JitEvaluator = class {
5567
5567
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
5568
5568
  const converter = new JitEmitterVisitor(refResolver);
@@ -5650,7 +5650,7 @@ function isUseStrictStatement(statement) {
5650
5650
  return statement.isEquivalent(literal("use strict").toStmt());
5651
5651
  }
5652
5652
 
5653
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5653
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5654
5654
  function compileInjector(meta) {
5655
5655
  const definitionMap = new DefinitionMap();
5656
5656
  if (meta.providers !== null) {
@@ -5667,7 +5667,7 @@ function createInjectorType(meta) {
5667
5667
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
5668
5668
  }
5669
5669
 
5670
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5670
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5671
5671
  var R3JitReflector = class {
5672
5672
  constructor(context) {
5673
5673
  this.context = context;
@@ -5683,7 +5683,7 @@ var R3JitReflector = class {
5683
5683
  }
5684
5684
  };
5685
5685
 
5686
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5686
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5687
5687
  var R3SelectorScopeMode;
5688
5688
  (function(R3SelectorScopeMode2) {
5689
5689
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -5818,7 +5818,7 @@ function tupleOfTypes(types) {
5818
5818
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
5819
5819
  }
5820
5820
 
5821
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5821
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5822
5822
  function compilePipeFromMetadata(metadata) {
5823
5823
  const definitionMapValues = [];
5824
5824
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -5839,7 +5839,7 @@ function createPipeType(metadata) {
5839
5839
  ]));
5840
5840
  }
5841
5841
 
5842
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5842
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5843
5843
  var R3TemplateDependencyKind;
5844
5844
  (function(R3TemplateDependencyKind2) {
5845
5845
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -5847,7 +5847,7 @@ var R3TemplateDependencyKind;
5847
5847
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
5848
5848
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
5849
5849
 
5850
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
5850
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
5851
5851
  var animationKeywords = /* @__PURE__ */ new Set([
5852
5852
  "inherit",
5853
5853
  "initial",
@@ -6327,7 +6327,7 @@ function repeatGroups(groups, multiples) {
6327
6327
  }
6328
6328
  }
6329
6329
 
6330
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
6330
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
6331
6331
  var OpKind;
6332
6332
  (function(OpKind2) {
6333
6333
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -6481,7 +6481,7 @@ var TemplateKind;
6481
6481
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
6482
6482
  })(TemplateKind || (TemplateKind = {}));
6483
6483
 
6484
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
6484
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
6485
6485
  var ConsumesSlot = Symbol("ConsumesSlot");
6486
6486
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
6487
6487
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -6509,7 +6509,7 @@ function hasUsesVarOffsetTrait(expr) {
6509
6509
  return expr[UsesVarOffset] === true;
6510
6510
  }
6511
6511
 
6512
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
6512
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
6513
6513
  function createStatementOp(statement) {
6514
6514
  return __spreadValues({
6515
6515
  kind: OpKind.Statement,
@@ -6531,7 +6531,7 @@ var NEW_OP = {
6531
6531
  next: null
6532
6532
  };
6533
6533
 
6534
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
6534
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
6535
6535
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
6536
6536
  return __spreadValues(__spreadValues(__spreadValues({
6537
6537
  kind: OpKind.InterpolateText,
@@ -6711,7 +6711,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
6711
6711
  }, NEW_OP);
6712
6712
  }
6713
6713
 
6714
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
6714
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
6715
6715
  var _a;
6716
6716
  var _b;
6717
6717
  var _c;
@@ -7573,7 +7573,7 @@ function isStringLiteral(expr) {
7573
7573
  return expr instanceof LiteralExpr && typeof expr.value === "string";
7574
7574
  }
7575
7575
 
7576
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7576
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7577
7577
  var _OpList = class {
7578
7578
  constructor() {
7579
7579
  this.debugListId = _OpList.nextListId++;
@@ -7764,14 +7764,14 @@ var OpList = _OpList;
7764
7764
  _OpList.nextListId = 0;
7765
7765
  })();
7766
7766
 
7767
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
7767
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
7768
7768
  var SlotHandle = class {
7769
7769
  constructor() {
7770
7770
  this.slot = null;
7771
7771
  }
7772
7772
  };
7773
7773
 
7774
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7774
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7775
7775
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
7776
7776
  OpKind.Element,
7777
7777
  OpKind.ElementStart,
@@ -8075,7 +8075,7 @@ function createI18nAttributesOp(xref, handle, target) {
8075
8075
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
8076
8076
  }
8077
8077
 
8078
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
8078
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
8079
8079
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
8080
8080
  return __spreadValues(__spreadValues({
8081
8081
  kind: OpKind.HostProperty,
@@ -8089,10 +8089,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
8089
8089
  }, TRAIT_CONSUMES_VARS), NEW_OP);
8090
8090
  }
8091
8091
 
8092
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
8092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
8093
8093
  var CTX_REF = "CTX_REF_MARKER";
8094
8094
 
8095
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
8095
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
8096
8096
  var CompilationJobKind;
8097
8097
  (function(CompilationJobKind2) {
8098
8098
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -8200,7 +8200,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
8200
8200
  }
8201
8201
  };
8202
8202
 
8203
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
8203
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
8204
8204
  function deleteAnyCasts(job) {
8205
8205
  for (const unit of job.units) {
8206
8206
  for (const op of unit.ops()) {
@@ -8218,7 +8218,7 @@ function removeAnys(e) {
8218
8218
  return e;
8219
8219
  }
8220
8220
 
8221
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
8221
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
8222
8222
  function applyI18nExpressions(job) {
8223
8223
  const i18nContexts = /* @__PURE__ */ new Map();
8224
8224
  for (const unit of job.units) {
@@ -8261,7 +8261,7 @@ function needsApplication(i18nContexts, op) {
8261
8261
  return false;
8262
8262
  }
8263
8263
 
8264
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
8264
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
8265
8265
  function assignI18nSlotDependencies(job) {
8266
8266
  for (const unit of job.units) {
8267
8267
  let updateOp = unit.update.head;
@@ -8306,7 +8306,7 @@ function assignI18nSlotDependencies(job) {
8306
8306
  }
8307
8307
  }
8308
8308
 
8309
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
8309
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
8310
8310
  function createOpXrefMap(unit) {
8311
8311
  const map = /* @__PURE__ */ new Map();
8312
8312
  for (const op of unit.create) {
@@ -8321,7 +8321,7 @@ function createOpXrefMap(unit) {
8321
8321
  return map;
8322
8322
  }
8323
8323
 
8324
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
8324
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
8325
8325
  function extractAttributes(job) {
8326
8326
  for (const unit of job.units) {
8327
8327
  const elements = createOpXrefMap(unit);
@@ -8450,7 +8450,7 @@ function extractAttributeOp(unit, op, elements) {
8450
8450
  }
8451
8451
  }
8452
8452
 
8453
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
8453
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
8454
8454
  function lookupElement2(elements, xref) {
8455
8455
  const el = elements.get(xref);
8456
8456
  if (el === void 0) {
@@ -8507,7 +8507,7 @@ function specializeBindings(job) {
8507
8507
  }
8508
8508
  }
8509
8509
 
8510
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8510
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8511
8511
  var CHAINABLE = /* @__PURE__ */ new Set([
8512
8512
  Identifiers.attribute,
8513
8513
  Identifiers.classProp,
@@ -8575,7 +8575,7 @@ function chainOperationsInList(opList) {
8575
8575
  }
8576
8576
  }
8577
8577
 
8578
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
8578
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
8579
8579
  function collapseSingletonInterpolations(job) {
8580
8580
  for (const unit of job.units) {
8581
8581
  for (const op of unit.update) {
@@ -8587,7 +8587,7 @@ function collapseSingletonInterpolations(job) {
8587
8587
  }
8588
8588
  }
8589
8589
 
8590
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
8590
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
8591
8591
  function generateConditionalExpressions(job) {
8592
8592
  for (const unit of job.units) {
8593
8593
  for (const op of unit.ops()) {
@@ -8624,7 +8624,7 @@ function generateConditionalExpressions(job) {
8624
8624
  }
8625
8625
  }
8626
8626
 
8627
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
8627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
8628
8628
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
8629
8629
  ["&&", BinaryOperator.And],
8630
8630
  [">", BinaryOperator.Bigger],
@@ -8681,7 +8681,7 @@ function literalOrArrayLiteral(value) {
8681
8681
  return literal(value);
8682
8682
  }
8683
8683
 
8684
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
8684
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
8685
8685
  function collectElementConsts(job) {
8686
8686
  const allElementAttributes = /* @__PURE__ */ new Map();
8687
8687
  for (const unit of job.units) {
@@ -8850,7 +8850,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
8850
8850
  return literalArr(attrArray);
8851
8851
  }
8852
8852
 
8853
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
8853
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
8854
8854
  function convertI18nBindings(job) {
8855
8855
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
8856
8856
  for (const unit of job.units) {
@@ -8891,7 +8891,7 @@ function convertI18nBindings(job) {
8891
8891
  }
8892
8892
  }
8893
8893
 
8894
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
8894
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
8895
8895
  function resolveDeferDepsFns(job) {
8896
8896
  var _a2;
8897
8897
  for (const unit of job.units) {
@@ -8916,7 +8916,7 @@ function resolveDeferDepsFns(job) {
8916
8916
  }
8917
8917
  }
8918
8918
 
8919
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
8919
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
8920
8920
  function createI18nContexts(job) {
8921
8921
  const attrContextByMessage = /* @__PURE__ */ new Map();
8922
8922
  for (const unit of job.units) {
@@ -8994,7 +8994,7 @@ function createI18nContexts(job) {
8994
8994
  }
8995
8995
  }
8996
8996
 
8997
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
8997
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
8998
8998
  function deduplicateTextBindings(job) {
8999
8999
  const seen = /* @__PURE__ */ new Map();
9000
9000
  for (const unit of job.units) {
@@ -9016,7 +9016,7 @@ function deduplicateTextBindings(job) {
9016
9016
  }
9017
9017
  }
9018
9018
 
9019
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
9019
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
9020
9020
  function configureDeferInstructions(job) {
9021
9021
  for (const unit of job.units) {
9022
9022
  for (const op of unit.create) {
@@ -9033,7 +9033,7 @@ function configureDeferInstructions(job) {
9033
9033
  }
9034
9034
  }
9035
9035
 
9036
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
9036
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
9037
9037
  function resolveDeferTargetNames(job) {
9038
9038
  const scopes = /* @__PURE__ */ new Map();
9039
9039
  function getScopeForView2(view) {
@@ -9127,7 +9127,7 @@ var Scope = class {
9127
9127
  }
9128
9128
  };
9129
9129
 
9130
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
9130
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
9131
9131
  var REPLACEMENTS = /* @__PURE__ */ new Map([
9132
9132
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
9133
9133
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -9154,7 +9154,7 @@ function collapseEmptyInstructions(job) {
9154
9154
  }
9155
9155
  }
9156
9156
 
9157
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
9157
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
9158
9158
  function expandSafeReads(job) {
9159
9159
  for (const unit of job.units) {
9160
9160
  for (const op of unit.ops()) {
@@ -9290,7 +9290,7 @@ function ternaryTransform(e) {
9290
9290
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
9291
9291
  }
9292
9292
 
9293
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
9293
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
9294
9294
  var ESCAPE = "\uFFFD";
9295
9295
  var ELEMENT_MARKER = "#";
9296
9296
  var TEMPLATE_MARKER = "*";
@@ -9426,7 +9426,7 @@ function formatValue(value) {
9426
9426
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
9427
9427
  }
9428
9428
 
9429
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
9429
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
9430
9430
  function generateAdvance(job) {
9431
9431
  for (const unit of job.units) {
9432
9432
  const slotMap = /* @__PURE__ */ new Map();
@@ -9458,7 +9458,7 @@ function generateAdvance(job) {
9458
9458
  }
9459
9459
  }
9460
9460
 
9461
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
9461
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
9462
9462
  function generateProjectionDefs(job) {
9463
9463
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
9464
9464
  const selectors = [];
@@ -9482,7 +9482,7 @@ function generateProjectionDefs(job) {
9482
9482
  }
9483
9483
  }
9484
9484
 
9485
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
9485
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
9486
9486
  function generateVariables(job) {
9487
9487
  recursivelyProcessView(job.root, null);
9488
9488
  }
@@ -9581,7 +9581,7 @@ function generateVariablesInScopeForView(view, scope) {
9581
9581
  return newOps;
9582
9582
  }
9583
9583
 
9584
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
9584
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
9585
9585
  function collectConstExpressions(job) {
9586
9586
  for (const unit of job.units) {
9587
9587
  for (const op of unit.ops()) {
@@ -9595,7 +9595,7 @@ function collectConstExpressions(job) {
9595
9595
  }
9596
9596
  }
9597
9597
 
9598
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
9598
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
9599
9599
  var STYLE_DOT = "style.";
9600
9600
  var CLASS_DOT = "class.";
9601
9601
  var STYLE_BANG = "style!";
@@ -9653,7 +9653,7 @@ function parseProperty(name) {
9653
9653
  return { property: property2, suffix };
9654
9654
  }
9655
9655
 
9656
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
9656
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
9657
9657
  function mapLiteral(obj, quoted = false) {
9658
9658
  return literalMap(Object.keys(obj).map((key) => ({
9659
9659
  key,
@@ -9662,7 +9662,7 @@ function mapLiteral(obj, quoted = false) {
9662
9662
  })));
9663
9663
  }
9664
9664
 
9665
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
9665
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
9666
9666
  var IcuSerializerVisitor = class {
9667
9667
  visitText(text2) {
9668
9668
  return text2.value;
@@ -9696,7 +9696,7 @@ function serializeIcuNode(icu) {
9696
9696
  return icu.visit(serializer);
9697
9697
  }
9698
9698
 
9699
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9699
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9700
9700
  var TokenType;
9701
9701
  (function(TokenType2) {
9702
9702
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -10057,7 +10057,7 @@ function parseIntAutoRadix(text2) {
10057
10057
  return result;
10058
10058
  }
10059
10059
 
10060
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
10060
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
10061
10061
  var SplitInterpolation = class {
10062
10062
  constructor(strings, expressions, offsets) {
10063
10063
  this.strings = strings;
@@ -10939,7 +10939,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
10939
10939
  return offsetMap;
10940
10940
  }
10941
10941
 
10942
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10942
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10943
10943
  var NodeWithI18n = class {
10944
10944
  constructor(sourceSpan, i18n2) {
10945
10945
  this.sourceSpan = sourceSpan;
@@ -11062,7 +11062,7 @@ function visitAll2(visitor, nodes, context = null) {
11062
11062
  return result;
11063
11063
  }
11064
11064
 
11065
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
11065
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
11066
11066
  var _SECURITY_SCHEMA;
11067
11067
  function SECURITY_SCHEMA() {
11068
11068
  if (!_SECURITY_SCHEMA) {
@@ -11123,11 +11123,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
11123
11123
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
11124
11124
  }
11125
11125
 
11126
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
11126
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
11127
11127
  var ElementSchemaRegistry = class {
11128
11128
  };
11129
11129
 
11130
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
11130
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
11131
11131
  var BOOLEAN = "boolean";
11132
11132
  var NUMBER = "number";
11133
11133
  var STRING = "string";
@@ -11510,7 +11510,7 @@ function _isPixelDimensionStyle(prop) {
11510
11510
  }
11511
11511
  }
11512
11512
 
11513
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11513
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11514
11514
  var HtmlTagDefinition = class {
11515
11515
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
11516
11516
  this.closedByChildren = {};
@@ -11646,7 +11646,7 @@ function getHtmlTagDefinition(tagName) {
11646
11646
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
11647
11647
  }
11648
11648
 
11649
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
11649
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
11650
11650
  var TAG_TO_PLACEHOLDER_NAMES = {
11651
11651
  "A": "LINK",
11652
11652
  "B": "BOLD_TEXT",
@@ -11768,7 +11768,7 @@ var PlaceholderRegistry = class {
11768
11768
  }
11769
11769
  };
11770
11770
 
11771
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
11771
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
11772
11772
  var _expParser = new Parser(new Lexer());
11773
11773
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
11774
11774
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -11950,14 +11950,14 @@ function extractPlaceholderName(input) {
11950
11950
  return input.split(_CUSTOM_PH_EXP)[2];
11951
11951
  }
11952
11952
 
11953
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
11953
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
11954
11954
  var I18nError = class extends ParseError {
11955
11955
  constructor(span, msg) {
11956
11956
  super(span, msg);
11957
11957
  }
11958
11958
  };
11959
11959
 
11960
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11960
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11961
11961
  var NAMED_ENTITIES = {
11962
11962
  "AElig": "\xC6",
11963
11963
  "AMP": "&",
@@ -14088,7 +14088,7 @@ var NAMED_ENTITIES = {
14088
14088
  var NGSP_UNICODE = "\uE500";
14089
14089
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
14090
14090
 
14091
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
14091
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
14092
14092
  var TokenError = class extends ParseError {
14093
14093
  constructor(errorMsg, tokenType, span) {
14094
14094
  super(span, errorMsg);
@@ -15078,7 +15078,7 @@ var CursorError = class {
15078
15078
  }
15079
15079
  };
15080
15080
 
15081
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
15081
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
15082
15082
  var TreeError = class extends ParseError {
15083
15083
  static create(elementName, span, msg) {
15084
15084
  return new TreeError(elementName, span, msg);
@@ -15506,7 +15506,7 @@ function decodeEntity(match, entity) {
15506
15506
  return match;
15507
15507
  }
15508
15508
 
15509
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
15509
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
15510
15510
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
15511
15511
  "iframe|srcdoc",
15512
15512
  "*|innerhtml",
@@ -15521,7 +15521,7 @@ function isTrustedTypesSink(tagName, propName) {
15521
15521
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
15522
15522
  }
15523
15523
 
15524
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15524
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15525
15525
  var setI18nRefs = (htmlNode, i18nNode) => {
15526
15526
  if (htmlNode instanceof NodeWithI18n) {
15527
15527
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -15681,7 +15681,7 @@ function i18nMetaToJSDoc(meta) {
15681
15681
  return jsDocComment(tags);
15682
15682
  }
15683
15683
 
15684
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
15684
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
15685
15685
  var GOOG_GET_MSG = "goog.getMsg";
15686
15686
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
15687
15687
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -15732,7 +15732,7 @@ function serializeI18nMessageForGetMsg(message) {
15732
15732
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
15733
15733
  }
15734
15734
 
15735
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
15735
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
15736
15736
  function createLocalizeStatements(variable2, message, params) {
15737
15737
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
15738
15738
  const sourceSpan = getSourceSpan(message);
@@ -15821,7 +15821,7 @@ function createEmptyMessagePart(location) {
15821
15821
  return new LiteralPiece("", new ParseSourceSpan(location, location));
15822
15822
  }
15823
15823
 
15824
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
15824
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
15825
15825
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
15826
15826
  var TRANSLATION_VAR_PREFIX = "i18n_";
15827
15827
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -15992,7 +15992,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
15992
15992
  return variable(name);
15993
15993
  }
15994
15994
 
15995
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
15995
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
15996
15996
  function convertI18nText(job) {
15997
15997
  var _a2, _b2, _c2;
15998
15998
  for (const unit of job.units) {
@@ -16062,7 +16062,7 @@ function convertI18nText(job) {
16062
16062
  }
16063
16063
  }
16064
16064
 
16065
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
16065
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
16066
16066
  function liftLocalRefs(job) {
16067
16067
  for (const unit of job.units) {
16068
16068
  for (const op of unit.create) {
@@ -16092,7 +16092,7 @@ function serializeLocalRefs(refs) {
16092
16092
  return literalArr(constRefs);
16093
16093
  }
16094
16094
 
16095
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
16095
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
16096
16096
  function emitNamespaceChanges(job) {
16097
16097
  for (const unit of job.units) {
16098
16098
  let activeNamespace = Namespace.HTML;
@@ -16108,7 +16108,7 @@ function emitNamespaceChanges(job) {
16108
16108
  }
16109
16109
  }
16110
16110
 
16111
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
16111
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
16112
16112
  function parse(value) {
16113
16113
  const styles = [];
16114
16114
  let i = 0;
@@ -16202,7 +16202,7 @@ function parseExtractedStyles(job) {
16202
16202
  }
16203
16203
  }
16204
16204
 
16205
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
16205
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
16206
16206
  function nameFunctionsAndVariables(job) {
16207
16207
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
16208
16208
  }
@@ -16346,7 +16346,7 @@ function stripImportant(name) {
16346
16346
  return name;
16347
16347
  }
16348
16348
 
16349
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
16349
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
16350
16350
  function mergeNextContextExpressions(job) {
16351
16351
  for (const unit of job.units) {
16352
16352
  for (const op of unit.create) {
@@ -16392,7 +16392,7 @@ function mergeNextContextsInOps(ops) {
16392
16392
  }
16393
16393
  }
16394
16394
 
16395
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
16395
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
16396
16396
  var CONTAINER_TAG = "ng-container";
16397
16397
  function generateNgContainerOps(job) {
16398
16398
  for (const unit of job.units) {
@@ -16409,7 +16409,7 @@ function generateNgContainerOps(job) {
16409
16409
  }
16410
16410
  }
16411
16411
 
16412
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
16412
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
16413
16413
  function lookupElement3(elements, xref) {
16414
16414
  const el = elements.get(xref);
16415
16415
  if (el === void 0) {
@@ -16439,7 +16439,7 @@ function disableBindings(job) {
16439
16439
  }
16440
16440
  }
16441
16441
 
16442
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
16442
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
16443
16443
  function generateNullishCoalesceExpressions(job) {
16444
16444
  for (const unit of job.units) {
16445
16445
  for (const op of unit.ops()) {
@@ -16455,7 +16455,7 @@ function generateNullishCoalesceExpressions(job) {
16455
16455
  }
16456
16456
  }
16457
16457
 
16458
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
16458
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
16459
16459
  function kindTest(kind) {
16460
16460
  return (op) => op.kind === kind;
16461
16461
  }
@@ -16545,7 +16545,7 @@ function keepLast(ops) {
16545
16545
  return ops.slice(ops.length - 1);
16546
16546
  }
16547
16547
 
16548
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
16548
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
16549
16549
  function removeContentSelectors(job) {
16550
16550
  for (const unit of job.units) {
16551
16551
  const elements = createOpXrefMap(unit);
@@ -16572,7 +16572,7 @@ function lookupInXrefMap(map, xref) {
16572
16572
  return el;
16573
16573
  }
16574
16574
 
16575
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
16575
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
16576
16576
  function createPipes(job) {
16577
16577
  for (const unit of job.units) {
16578
16578
  processPipeBindingsInView(unit);
@@ -16620,7 +16620,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
16620
16620
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
16621
16621
  }
16622
16622
 
16623
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
16623
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
16624
16624
  function createVariadicPipes(job) {
16625
16625
  for (const unit of job.units) {
16626
16626
  for (const op of unit.update) {
@@ -16637,7 +16637,7 @@ function createVariadicPipes(job) {
16637
16637
  }
16638
16638
  }
16639
16639
 
16640
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
16640
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
16641
16641
  function propagateI18nBlocks(job) {
16642
16642
  propagateI18nBlocksToTemplates(job.root, 0);
16643
16643
  }
@@ -16691,7 +16691,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
16691
16691
  }
16692
16692
  }
16693
16693
 
16694
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
16694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
16695
16695
  function extractPureFunctions(job) {
16696
16696
  for (const view of job.units) {
16697
16697
  for (const op of view.ops()) {
@@ -16733,7 +16733,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
16733
16733
  }
16734
16734
  };
16735
16735
 
16736
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
16736
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
16737
16737
  function generatePureLiteralStructures(job) {
16738
16738
  for (const unit of job.units) {
16739
16739
  for (const op of unit.update) {
@@ -16780,7 +16780,7 @@ function transformLiteralMap(expr) {
16780
16780
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
16781
16781
  }
16782
16782
 
16783
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
16783
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
16784
16784
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
16785
16785
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
16786
16786
  }
@@ -17303,7 +17303,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
17303
17303
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
17304
17304
  }
17305
17305
 
17306
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
17306
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
17307
17307
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
17308
17308
  ["window", Identifiers.resolveWindow],
17309
17309
  ["document", Identifiers.resolveDocument],
@@ -17659,7 +17659,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
17659
17659
  return fn(params, handlerStmts, void 0, void 0, name);
17660
17660
  }
17661
17661
 
17662
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
17662
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
17663
17663
  function removeEmptyBindings(job) {
17664
17664
  for (const unit of job.units) {
17665
17665
  for (const op of unit.update) {
@@ -17680,7 +17680,7 @@ function removeEmptyBindings(job) {
17680
17680
  }
17681
17681
  }
17682
17682
 
17683
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
17683
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
17684
17684
  function removeI18nContexts(job) {
17685
17685
  for (const unit of job.units) {
17686
17686
  for (const op of unit.create) {
@@ -17696,7 +17696,7 @@ function removeI18nContexts(job) {
17696
17696
  }
17697
17697
  }
17698
17698
 
17699
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
17699
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
17700
17700
  function removeUnusedI18nAttributesOps(job) {
17701
17701
  for (const unit of job.units) {
17702
17702
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -17718,7 +17718,7 @@ function removeUnusedI18nAttributesOps(job) {
17718
17718
  }
17719
17719
  }
17720
17720
 
17721
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
17721
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
17722
17722
  function resolveContexts(job) {
17723
17723
  for (const unit of job.units) {
17724
17724
  processLexicalScope(unit, unit.create);
@@ -17760,7 +17760,7 @@ function processLexicalScope(view, ops) {
17760
17760
  }
17761
17761
  }
17762
17762
 
17763
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
17763
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
17764
17764
  function resolveDollarEvent(job) {
17765
17765
  for (const unit of job.units) {
17766
17766
  transformDollarEvent(unit.create);
@@ -17783,7 +17783,7 @@ function transformDollarEvent(ops) {
17783
17783
  }
17784
17784
  }
17785
17785
 
17786
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
17786
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
17787
17787
  function resolveI18nElementPlaceholders(job) {
17788
17788
  const i18nContexts = /* @__PURE__ */ new Map();
17789
17789
  const elements = /* @__PURE__ */ new Map();
@@ -17962,7 +17962,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
17962
17962
  params.set(placeholder, values);
17963
17963
  }
17964
17964
 
17965
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
17965
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
17966
17966
  function resolveI18nExpressionPlaceholders(job) {
17967
17967
  var _a2;
17968
17968
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -18015,7 +18015,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
18015
18015
  }
18016
18016
  }
18017
18017
 
18018
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
18018
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
18019
18019
  function resolveNames(job) {
18020
18020
  for (const unit of job.units) {
18021
18021
  processLexicalScope2(unit, unit.create, null);
@@ -18080,7 +18080,7 @@ function processLexicalScope2(unit, ops, savedView) {
18080
18080
  }
18081
18081
  }
18082
18082
 
18083
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
18083
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
18084
18084
  var sanitizerFns = /* @__PURE__ */ new Map([
18085
18085
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
18086
18086
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -18150,7 +18150,7 @@ function getOnlySecurityContext(securityContext) {
18150
18150
  return securityContext;
18151
18151
  }
18152
18152
 
18153
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
18153
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
18154
18154
  function transformTwoWayBindingSet(job) {
18155
18155
  for (const unit of job.units) {
18156
18156
  for (const op of unit.create) {
@@ -18173,7 +18173,7 @@ function transformTwoWayBindingSet(job) {
18173
18173
  }
18174
18174
  }
18175
18175
 
18176
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
18176
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
18177
18177
  function saveAndRestoreView(job) {
18178
18178
  for (const unit of job.units) {
18179
18179
  unit.create.prepend([
@@ -18218,7 +18218,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
18218
18218
  }
18219
18219
  }
18220
18220
 
18221
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
18221
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
18222
18222
  function allocateSlots(job) {
18223
18223
  const slotMap = /* @__PURE__ */ new Map();
18224
18224
  for (const unit of job.units) {
@@ -18243,7 +18243,7 @@ function allocateSlots(job) {
18243
18243
  }
18244
18244
  }
18245
18245
 
18246
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
18246
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
18247
18247
  function specializeStyleBindings(job) {
18248
18248
  for (const unit of job.units) {
18249
18249
  for (const op of unit.update) {
@@ -18273,7 +18273,7 @@ function specializeStyleBindings(job) {
18273
18273
  }
18274
18274
  }
18275
18275
 
18276
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
18276
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
18277
18277
  function generateTemporaryVariables(job) {
18278
18278
  for (const unit of job.units) {
18279
18279
  unit.create.prepend(generateTemporaries(unit.create));
@@ -18331,7 +18331,7 @@ function assignName(names, expr) {
18331
18331
  expr.name = name;
18332
18332
  }
18333
18333
 
18334
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18334
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18335
18335
  function generateTrackFns(job) {
18336
18336
  for (const unit of job.units) {
18337
18337
  for (const op of unit.create) {
@@ -18364,7 +18364,7 @@ function generateTrackFns(job) {
18364
18364
  }
18365
18365
  }
18366
18366
 
18367
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18367
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18368
18368
  function optimizeTrackFns(job) {
18369
18369
  for (const unit of job.units) {
18370
18370
  for (const op of unit.create) {
@@ -18414,7 +18414,7 @@ function isTrackByFunctionCall(rootView, expr) {
18414
18414
  return true;
18415
18415
  }
18416
18416
 
18417
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18417
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18418
18418
  function generateTrackVariables(job) {
18419
18419
  for (const unit of job.units) {
18420
18420
  for (const op of unit.create) {
@@ -18435,7 +18435,7 @@ function generateTrackVariables(job) {
18435
18435
  }
18436
18436
  }
18437
18437
 
18438
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18438
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18439
18439
  function countVariables(job) {
18440
18440
  for (const unit of job.units) {
18441
18441
  let varCount = 0;
@@ -18545,7 +18545,7 @@ function isSingletonInterpolation(expr) {
18545
18545
  return true;
18546
18546
  }
18547
18547
 
18548
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
18548
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
18549
18549
  function optimizeVariables(job) {
18550
18550
  for (const unit of job.units) {
18551
18551
  inlineAlwaysInlineVariables(unit.create);
@@ -18794,7 +18794,7 @@ function allowConservativeInlining(decl, target) {
18794
18794
  }
18795
18795
  }
18796
18796
 
18797
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
18797
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
18798
18798
  function wrapI18nIcus(job) {
18799
18799
  for (const unit of job.units) {
18800
18800
  let currentI18nOp = null;
@@ -18824,7 +18824,7 @@ function wrapI18nIcus(job) {
18824
18824
  }
18825
18825
  }
18826
18826
 
18827
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
18827
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
18828
18828
  var phases = [
18829
18829
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
18830
18830
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -18978,7 +18978,7 @@ function emitHostBindingFunction(job) {
18978
18978
  );
18979
18979
  }
18980
18980
 
18981
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
18981
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
18982
18982
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
18983
18983
  var domSchema = new DomElementSchemaRegistry();
18984
18984
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -19730,7 +19730,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
19730
19730
  return null;
19731
19731
  }
19732
19732
 
19733
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
19733
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
19734
19734
  function renderFlagCheckIfStmt(flags, statements) {
19735
19735
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
19736
19736
  }
@@ -19850,7 +19850,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
19850
19850
  ], INFERRED_TYPE, null, contentQueriesFnName);
19851
19851
  }
19852
19852
 
19853
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
19853
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
19854
19854
  var HtmlParser = class extends Parser2 {
19855
19855
  constructor() {
19856
19856
  super(getHtmlTagDefinition);
@@ -19860,7 +19860,7 @@ var HtmlParser = class extends Parser2 {
19860
19860
  }
19861
19861
  };
19862
19862
 
19863
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
19863
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
19864
19864
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
19865
19865
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
19866
19866
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -19929,7 +19929,7 @@ function visitAllWithSiblings(visitor, nodes) {
19929
19929
  return result;
19930
19930
  }
19931
19931
 
19932
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
19932
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
19933
19933
  var PROPERTY_PARTS_SEPARATOR = ".";
19934
19934
  var ATTRIBUTE_PREFIX = "attr";
19935
19935
  var CLASS_PREFIX = "class";
@@ -20283,7 +20283,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
20283
20283
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
20284
20284
  }
20285
20285
 
20286
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
20286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
20287
20287
  function isStyleUrlResolvable(url) {
20288
20288
  if (url == null || url.length === 0 || url[0] == "/")
20289
20289
  return false;
@@ -20292,7 +20292,7 @@ function isStyleUrlResolvable(url) {
20292
20292
  }
20293
20293
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
20294
20294
 
20295
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
20295
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
20296
20296
  var NG_CONTENT_SELECT_ATTR = "select";
20297
20297
  var LINK_ELEMENT = "link";
20298
20298
  var LINK_STYLE_REL_ATTR = "rel";
@@ -20362,7 +20362,7 @@ function normalizeNgContentSelect(selectAttr) {
20362
20362
  return selectAttr;
20363
20363
  }
20364
20364
 
20365
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20365
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20366
20366
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
20367
20367
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
20368
20368
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -20685,7 +20685,7 @@ function stripOptionalParentheses(param, errors) {
20685
20685
  return expression.slice(start, end);
20686
20686
  }
20687
20687
 
20688
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
20688
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
20689
20689
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
20690
20690
  var SEPARATOR_PATTERN = /^\s$/;
20691
20691
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -20949,7 +20949,7 @@ function parseDeferredTime(value) {
20949
20949
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
20950
20950
  }
20951
20951
 
20952
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
20952
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
20953
20953
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
20954
20954
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
20955
20955
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -21084,7 +21084,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
21084
21084
  return { triggers, prefetchTriggers };
21085
21085
  }
21086
21086
 
21087
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
21087
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
21088
21088
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
21089
21089
  var KW_BIND_IDX = 1;
21090
21090
  var KW_LET_IDX = 2;
@@ -21551,7 +21551,7 @@ function textContents(node) {
21551
21551
  }
21552
21552
  }
21553
21553
 
21554
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
21554
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
21555
21555
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
21556
21556
  function parseTemplate(template2, templateUrl, options = {}) {
21557
21557
  var _a2, _b2;
@@ -21630,7 +21630,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
21630
21630
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
21631
21631
  }
21632
21632
 
21633
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
21633
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
21634
21634
  var COMPONENT_VARIABLE = "%COMP%";
21635
21635
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
21636
21636
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -21997,7 +21997,7 @@ function createHostDirectivesMappingArray(mapping) {
21997
21997
  return elements.length > 0 ? literalArr(elements) : null;
21998
21998
  }
21999
21999
 
22000
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
22000
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
22001
22001
  var R3TargetBinder = class {
22002
22002
  constructor(directiveMatcher) {
22003
22003
  this.directiveMatcher = directiveMatcher;
@@ -22644,11 +22644,11 @@ function extractScopedNodeEntities(rootScope) {
22644
22644
  return templateEntities;
22645
22645
  }
22646
22646
 
22647
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
22647
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
22648
22648
  var ResourceLoader = class {
22649
22649
  };
22650
22650
 
22651
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
22651
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
22652
22652
  var CompilerFacadeImpl = class {
22653
22653
  constructor(jitEvaluator = new JitEvaluator()) {
22654
22654
  this.jitEvaluator = jitEvaluator;
@@ -23214,17 +23214,17 @@ function publishFacade(global) {
23214
23214
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
23215
23215
  }
23216
23216
 
23217
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
23218
- var VERSION2 = new Version("18.1.0-next.1");
23217
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
23218
+ var VERSION2 = new Version("18.1.0-next.2");
23219
23219
 
23220
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
23220
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
23221
23221
  var _VisitorMode;
23222
23222
  (function(_VisitorMode2) {
23223
23223
  _VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
23224
23224
  _VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
23225
23225
  })(_VisitorMode || (_VisitorMode = {}));
23226
23226
 
23227
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
23227
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
23228
23228
  var XmlTagDefinition = class {
23229
23229
  constructor() {
23230
23230
  this.closedByParent = false;
@@ -23246,7 +23246,7 @@ var XmlTagDefinition = class {
23246
23246
  };
23247
23247
  var _TAG_DEFINITION = new XmlTagDefinition();
23248
23248
 
23249
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
23249
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
23250
23250
  var FactoryTarget2;
23251
23251
  (function(FactoryTarget3) {
23252
23252
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -23256,10 +23256,10 @@ var FactoryTarget2;
23256
23256
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
23257
23257
  })(FactoryTarget2 || (FactoryTarget2 = {}));
23258
23258
 
23259
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
23259
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
23260
23260
  publishFacade(_global);
23261
23261
 
23262
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/migration.mjs
23262
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/migration.mjs
23263
23263
  var import_typescript4 = __toESM(require("typescript"), 1);
23264
23264
  function migrateTemplate(template2) {
23265
23265
  if (!template2.includes(")]=")) {
@@ -23384,7 +23384,7 @@ var InvalidTwoWayBindingCollector = class extends RecursiveVisitor {
23384
23384
  }
23385
23385
  };
23386
23386
 
23387
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/index.mjs
23387
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/invalid-two-way-bindings/index.mjs
23388
23388
  function invalid_two_way_bindings_default() {
23389
23389
  return (tree) => __async(this, null, function* () {
23390
23390
  const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);