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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/esm2022/primitives/event-dispatch/contract_binary.mjs +3 -3
  2. package/esm2022/primitives/event-dispatch/index.mjs +2 -2
  3. package/esm2022/primitives/event-dispatch/src/action_resolver.mjs +221 -0
  4. package/esm2022/primitives/event-dispatch/src/attribute.mjs +63 -65
  5. package/esm2022/primitives/event-dispatch/src/cache.mjs +10 -10
  6. package/esm2022/primitives/event-dispatch/src/dispatcher.mjs +52 -176
  7. package/esm2022/primitives/event-dispatch/src/earlyeventcontract.mjs +15 -9
  8. package/esm2022/primitives/event-dispatch/src/event_contract_defines.mjs +1 -19
  9. package/esm2022/primitives/event-dispatch/src/eventcontract.mjs +24 -362
  10. package/esm2022/primitives/event-dispatch/src/key_code.mjs +11 -13
  11. package/esm2022/primitives/event-dispatch/src/legacy_dispatcher.mjs +252 -2
  12. package/esm2022/primitives/event-dispatch/src/property.mjs +30 -27
  13. package/esm2022/primitives/event-dispatch/src/register_events.mjs +16 -17
  14. package/esm2022/primitives/event-dispatch/src/restriction.mjs +2 -2
  15. package/esm2022/src/application/application_ref.mjs +6 -3
  16. package/esm2022/src/application/create_application.mjs +12 -5
  17. package/esm2022/src/change_detection/scheduling/exhaustive_check_no_changes.mjs +150 -0
  18. package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +6 -4
  19. package/esm2022/src/change_detection/scheduling/zoneless_scheduling.mjs +3 -1
  20. package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +9 -6
  21. package/esm2022/src/core.mjs +2 -1
  22. package/esm2022/src/core_private_export.mjs +2 -1
  23. package/esm2022/src/core_reactivity_export_internal.mjs +1 -3
  24. package/esm2022/src/core_render3_private_export.mjs +1 -3
  25. package/esm2022/src/defer/instructions.mjs +20 -12
  26. package/esm2022/src/defer/interfaces.mjs +1 -3
  27. package/esm2022/src/errors.mjs +1 -1
  28. package/esm2022/src/hydration/event_replay.mjs +67 -79
  29. package/esm2022/src/hydration/utils.mjs +1 -2
  30. package/esm2022/src/metadata/directives.mjs +1 -1
  31. package/esm2022/src/platform/platform_ref.mjs +10 -4
  32. package/esm2022/src/render3/after_render_hooks.mjs +4 -2
  33. package/esm2022/src/render3/component_ref.mjs +1 -1
  34. package/esm2022/src/render3/index.mjs +1 -3
  35. package/esm2022/src/render3/instructions/change_detection.mjs +13 -10
  36. package/esm2022/src/render3/instructions/listener.mjs +12 -1
  37. package/esm2022/src/render3/interfaces/public_definitions.mjs +1 -1
  38. package/esm2022/src/render3/state.mjs +14 -4
  39. package/esm2022/src/render3/view_ref.mjs +3 -2
  40. package/esm2022/src/util/callback_scheduler.mjs +12 -26
  41. package/esm2022/src/version.mjs +1 -1
  42. package/esm2022/src/zone/ng_zone.mjs +9 -23
  43. package/esm2022/testing/src/component_fixture.mjs +2 -4
  44. package/esm2022/testing/src/defer.mjs +1 -2
  45. package/esm2022/testing/src/logger.mjs +3 -3
  46. package/esm2022/testing/src/test_bed.mjs +1 -3
  47. package/esm2022/testing/src/test_bed_compiler.mjs +3 -6
  48. package/event-dispatch-contract.min.js +1 -1
  49. package/fesm2022/core.mjs +800 -660
  50. package/fesm2022/core.mjs.map +1 -1
  51. package/fesm2022/primitives/event-dispatch.mjs +484 -807
  52. package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
  53. package/fesm2022/primitives/signals.mjs +1 -1
  54. package/fesm2022/rxjs-interop.mjs +1 -1
  55. package/fesm2022/testing.mjs +4 -10
  56. package/fesm2022/testing.mjs.map +1 -1
  57. package/index.d.ts +36 -4
  58. package/package.json +1 -1
  59. package/primitives/event-dispatch/index.d.ts +111 -162
  60. package/primitives/signals/index.d.ts +1 -1
  61. package/rxjs-interop/index.d.ts +1 -1
  62. package/schematics/migrations/http-providers/bundle.js +110 -71
  63. package/schematics/migrations/http-providers/bundle.js.map +3 -3
  64. package/schematics/migrations/invalid-two-way-bindings/bundle.js +197 -167
  65. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
  66. package/schematics/ng-generate/control-flow-migration/bundle.js +205 -175
  67. package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
  68. package/schematics/ng-generate/standalone-migration/bundle.js +481 -451
  69. package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
  70. package/testing/index.d.ts +1 -4
  71. package/esm2022/primitives/event-dispatch/src/base_dispatcher.mjs +0 -96
  72. package/esm2022/primitives/event-dispatch/src/custom_events.mjs +0 -63
  73. package/esm2022/primitives/event-dispatch/src/replay.mjs +0 -389
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
63
63
  });
64
64
  };
65
65
 
66
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
66
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
67
67
  var control_flow_migration_exports = {};
68
68
  __export(control_flow_migration_exports, {
69
69
  default: () => control_flow_migration_default
@@ -72,22 +72,22 @@ module.exports = __toCommonJS(control_flow_migration_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/change_tracker.mjs
75
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
76
76
  var import_typescript2 = __toESM(require("typescript"), 1);
77
77
 
78
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
78
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
79
79
  var import_typescript = __toESM(require("typescript"), 1);
80
80
 
81
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
81
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
82
82
  function normalizePath(path2) {
83
83
  return path2.replace(/\\/g, "/");
84
84
  }
85
85
 
86
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
86
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
87
87
  var import_path = require("path");
88
88
  var import_typescript4 = __toESM(require("typescript"), 1);
89
89
 
90
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
90
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
91
91
  var path = __toESM(require("path"), 1);
92
92
  var import_typescript3 = __toESM(require("typescript"), 1);
93
93
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -104,7 +104,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
104
104
  return import_typescript3.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
105
105
  }
106
106
 
107
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
107
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
108
108
  function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
109
109
  const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
110
110
  return import_typescript4.default.createProgram(rootNames, options, host);
@@ -137,7 +137,7 @@ function canMigrateFile(basePath, sourceFile, program) {
137
137
  return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
138
138
  }
139
139
 
140
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
140
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
141
141
  var _SELECTOR_REGEXP = new RegExp(
142
142
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
143
143
  "g"
@@ -445,7 +445,7 @@ var SelectorContext = class {
445
445
  }
446
446
  };
447
447
 
448
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
448
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
449
449
  var ViewEncapsulation;
450
450
  (function(ViewEncapsulation2) {
451
451
  ViewEncapsulation2[ViewEncapsulation2["Emulated"] = 0] = "Emulated";
@@ -513,7 +513,7 @@ function parseSelectorToR3Selector(selector) {
513
513
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
514
514
  }
515
515
 
516
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
516
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
517
517
  var textEncoder;
518
518
  function computeDigest(message) {
519
519
  return sha1(serializeNodes(message.nodes).join("") + `[${message.meaning}]`);
@@ -753,7 +753,7 @@ function wordAt(bytes, index, endian) {
753
753
  return word;
754
754
  }
755
755
 
756
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
756
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
757
757
  var TypeModifier;
758
758
  (function(TypeModifier2) {
759
759
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -1691,7 +1691,7 @@ function serializeTags(tags) {
1691
1691
  return out;
1692
1692
  }
1693
1693
 
1694
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
1695
1695
  var CONSTANT_PREFIX = "_c";
1696
1696
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
1697
1697
  var KEY_CONTEXT = {};
@@ -1879,7 +1879,7 @@ function isLongStringLiteral(expr) {
1879
1879
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
1880
1880
  }
1881
1881
 
1882
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
1882
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
1883
1883
  var CORE = "@angular/core";
1884
1884
  var _Identifiers = class {
1885
1885
  };
@@ -2767,7 +2767,7 @@ var Identifiers = _Identifiers;
2767
2767
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
2768
2768
  })();
2769
2769
 
2770
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
2770
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
2771
2771
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
2772
2772
  function dashCaseToCamelCase(input) {
2773
2773
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -2844,7 +2844,7 @@ var Version = class {
2844
2844
  };
2845
2845
  var _global = globalThis;
2846
2846
 
2847
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2847
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
2848
2848
  var VERSION = 3;
2849
2849
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
2850
2850
  var SourceMapGenerator = class {
@@ -2973,7 +2973,7 @@ function toBase64Digit(value) {
2973
2973
  return B64_DIGITS[value];
2974
2974
  }
2975
2975
 
2976
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2976
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
2977
2977
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
2978
2978
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
2979
2979
  var _INDENT_WITH = " ";
@@ -3461,7 +3461,7 @@ function _createIndent(count) {
3461
3461
  return res;
3462
3462
  }
3463
3463
 
3464
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
3464
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
3465
3465
  function typeWithParameters(type, numParams) {
3466
3466
  if (numParams === 0) {
3467
3467
  return expressionType(type);
@@ -3516,7 +3516,7 @@ function generateForwardRef(expr) {
3516
3516
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
3517
3517
  }
3518
3518
 
3519
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3519
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
3520
3520
  var R3FactoryDelegateType;
3521
3521
  (function(R3FactoryDelegateType2) {
3522
3522
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -3661,7 +3661,7 @@ function getInjectFn(target) {
3661
3661
  }
3662
3662
  }
3663
3663
 
3664
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
3664
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
3665
3665
  var ParserError = class {
3666
3666
  constructor(message, input, errLocation, ctxLocation) {
3667
3667
  this.input = input;
@@ -4099,7 +4099,7 @@ var BoundElementProperty = class {
4099
4099
  }
4100
4100
  };
4101
4101
 
4102
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
4102
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
4103
4103
  var TagContentType;
4104
4104
  (function(TagContentType2) {
4105
4105
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -4136,7 +4136,7 @@ function mergeNsAndName(prefix, localName) {
4136
4136
  return prefix ? `:${prefix}:${localName}` : localName;
4137
4137
  }
4138
4138
 
4139
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
4139
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
4140
4140
  var Comment = class {
4141
4141
  constructor(value, sourceSpan) {
4142
4142
  this.value = value;
@@ -4518,7 +4518,7 @@ function visitAll(visitor, nodes) {
4518
4518
  return result;
4519
4519
  }
4520
4520
 
4521
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4521
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
4522
4522
  var Message = class {
4523
4523
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
4524
4524
  this.nodes = nodes;
@@ -4658,7 +4658,7 @@ var LocalizeMessageStringVisitor = class {
4658
4658
  }
4659
4659
  };
4660
4660
 
4661
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4661
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
4662
4662
  var _Visitor = class {
4663
4663
  visitTag(tag) {
4664
4664
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -4686,12 +4686,12 @@ ${doctype.dtd}
4686
4686
  };
4687
4687
  var _visitor = new _Visitor();
4688
4688
 
4689
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4689
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
4690
4690
  function toPublicName(internalName) {
4691
4691
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
4692
4692
  }
4693
4693
 
4694
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
4695
4695
  var I18N_ATTR = "i18n";
4696
4696
  var I18N_ATTR_PREFIX = "i18n-";
4697
4697
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -4731,7 +4731,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
4731
4731
  return postfix ? `${raw}_${postfix}` : raw;
4732
4732
  }
4733
4733
 
4734
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4734
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
4735
4735
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
4736
4736
  var TEMPORARY_NAME = "_t";
4737
4737
  var CONTEXT_NAME = "ctx";
@@ -4858,7 +4858,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
4858
4858
  return attributesMap;
4859
4859
  }
4860
4860
 
4861
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4861
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
4862
4862
  function compileInjectable(meta, resolveForwardRefs) {
4863
4863
  let result = null;
4864
4864
  const factoryMeta = {
@@ -4945,7 +4945,7 @@ function createFactoryFunction(type) {
4945
4945
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
4946
4946
  }
4947
4947
 
4948
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
4948
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
4949
4949
  var UNUSABLE_INTERPOLATION_REGEXPS = [
4950
4950
  /^\s*$/,
4951
4951
  /[<>]/,
@@ -4967,7 +4967,7 @@ function assertInterpolationSymbols(identifier, value) {
4967
4967
  }
4968
4968
  }
4969
4969
 
4970
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
4970
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
4971
4971
  var InterpolationConfig = class {
4972
4972
  static fromArray(markers) {
4973
4973
  if (!markers) {
@@ -4984,7 +4984,7 @@ var InterpolationConfig = class {
4984
4984
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
4985
4985
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
4986
4986
 
4987
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
4987
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
4988
4988
  var $EOF = 0;
4989
4989
  var $BSPACE = 8;
4990
4990
  var $TAB = 9;
@@ -5066,7 +5066,7 @@ function isQuote(code) {
5066
5066
  return code === $SQ || code === $DQ || code === $BT;
5067
5067
  }
5068
5068
 
5069
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
5069
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
5070
5070
  var ParseLocation = class {
5071
5071
  constructor(file, offset, line, col) {
5072
5072
  this.file = file;
@@ -5213,7 +5213,7 @@ function sanitizeIdentifier(name) {
5213
5213
  return name.replace(/\W/g, "_");
5214
5214
  }
5215
5215
 
5216
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5216
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
5217
5217
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
5218
5218
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5219
5219
  constructor() {
@@ -5306,7 +5306,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
5306
5306
  }
5307
5307
  };
5308
5308
 
5309
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5309
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
5310
5310
  var policy;
5311
5311
  function getPolicy() {
5312
5312
  if (policy === void 0) {
@@ -5344,7 +5344,7 @@ function newTrustedFunctionForJIT(...args) {
5344
5344
  return fn2.bind(_global);
5345
5345
  }
5346
5346
 
5347
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5347
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
5348
5348
  var JitEvaluator = class {
5349
5349
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
5350
5350
  const converter = new JitEmitterVisitor(refResolver);
@@ -5432,7 +5432,7 @@ function isUseStrictStatement(statement) {
5432
5432
  return statement.isEquivalent(literal("use strict").toStmt());
5433
5433
  }
5434
5434
 
5435
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5435
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
5436
5436
  function compileInjector(meta) {
5437
5437
  const definitionMap = new DefinitionMap();
5438
5438
  if (meta.providers !== null) {
@@ -5449,7 +5449,7 @@ function createInjectorType(meta) {
5449
5449
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
5450
5450
  }
5451
5451
 
5452
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5452
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
5453
5453
  var R3JitReflector = class {
5454
5454
  constructor(context) {
5455
5455
  this.context = context;
@@ -5465,7 +5465,7 @@ var R3JitReflector = class {
5465
5465
  }
5466
5466
  };
5467
5467
 
5468
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5468
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
5469
5469
  var R3SelectorScopeMode;
5470
5470
  (function(R3SelectorScopeMode2) {
5471
5471
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -5600,7 +5600,7 @@ function tupleOfTypes(types) {
5600
5600
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
5601
5601
  }
5602
5602
 
5603
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5603
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
5604
5604
  function compilePipeFromMetadata(metadata) {
5605
5605
  const definitionMapValues = [];
5606
5606
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -5621,7 +5621,7 @@ function createPipeType(metadata) {
5621
5621
  ]));
5622
5622
  }
5623
5623
 
5624
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5624
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
5625
5625
  var R3TemplateDependencyKind;
5626
5626
  (function(R3TemplateDependencyKind2) {
5627
5627
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -5629,7 +5629,7 @@ var R3TemplateDependencyKind;
5629
5629
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
5630
5630
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
5631
5631
 
5632
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
5632
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
5633
5633
  var animationKeywords = /* @__PURE__ */ new Set([
5634
5634
  "inherit",
5635
5635
  "initial",
@@ -5817,7 +5817,7 @@ var ShadowCss = class {
5817
5817
  });
5818
5818
  }
5819
5819
  _scopeSelector(selector, scopeSelector, hostSelector) {
5820
- return selector.split(",").map((part) => part.trim().split(_shadowDeepSelectors)).map((deepParts) => {
5820
+ return selector.split(/ ?, ?/).map((part) => part.split(_shadowDeepSelectors)).map((deepParts) => {
5821
5821
  const [shallowPart, ...otherParts] = deepParts;
5822
5822
  const applyScope = (shallowPart2) => {
5823
5823
  if (this._selectorNeedsScoping(shallowPart2, scopeSelector)) {
@@ -5859,9 +5859,9 @@ var ShadowCss = class {
5859
5859
  const _scopeSelectorPart = (p) => {
5860
5860
  let scopedP = p.trim();
5861
5861
  if (!scopedP) {
5862
- return "";
5862
+ return p;
5863
5863
  }
5864
- if (p.indexOf(_polyfillHostNoCombinator) > -1) {
5864
+ if (p.includes(_polyfillHostNoCombinator)) {
5865
5865
  scopedP = this._applySimpleSelectorScope(p, scopeSelector, hostSelector);
5866
5866
  } else {
5867
5867
  const t = p.replace(_polyfillHostRe, "");
@@ -5880,21 +5880,21 @@ var ShadowCss = class {
5880
5880
  let startIndex = 0;
5881
5881
  let res;
5882
5882
  const sep = /( |>|\+|~(?!=))\s*/g;
5883
- const hasHost = selector.indexOf(_polyfillHostNoCombinator) > -1;
5883
+ const hasHost = selector.includes(_polyfillHostNoCombinator);
5884
5884
  let shouldScope = !hasHost;
5885
5885
  while ((res = sep.exec(selector)) !== null) {
5886
5886
  const separator = res[1];
5887
- const part2 = selector.slice(startIndex, res.index).trim();
5887
+ const part2 = selector.slice(startIndex, res.index);
5888
5888
  if (part2.match(/__esc-ph-(\d+)__/) && ((_a2 = selector[res.index + 1]) == null ? void 0 : _a2.match(/[a-fA-F\d]/))) {
5889
5889
  continue;
5890
5890
  }
5891
- shouldScope = shouldScope || part2.indexOf(_polyfillHostNoCombinator) > -1;
5891
+ shouldScope = shouldScope || part2.includes(_polyfillHostNoCombinator);
5892
5892
  const scopedPart = shouldScope ? _scopeSelectorPart(part2) : part2;
5893
5893
  scopedSelector += `${scopedPart} ${separator} `;
5894
5894
  startIndex = sep.lastIndex;
5895
5895
  }
5896
5896
  const part = selector.substring(startIndex);
5897
- shouldScope = shouldScope || part.indexOf(_polyfillHostNoCombinator) > -1;
5897
+ shouldScope = shouldScope || part.includes(_polyfillHostNoCombinator);
5898
5898
  scopedSelector += shouldScope ? _scopeSelectorPart(part) : part;
5899
5899
  return safeContent.restore(scopedSelector);
5900
5900
  }
@@ -6109,7 +6109,7 @@ function repeatGroups(groups, multiples) {
6109
6109
  }
6110
6110
  }
6111
6111
 
6112
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
6112
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
6113
6113
  var OpKind;
6114
6114
  (function(OpKind2) {
6115
6115
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -6263,7 +6263,7 @@ var TemplateKind;
6263
6263
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
6264
6264
  })(TemplateKind || (TemplateKind = {}));
6265
6265
 
6266
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
6266
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
6267
6267
  var ConsumesSlot = Symbol("ConsumesSlot");
6268
6268
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
6269
6269
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -6291,7 +6291,7 @@ function hasUsesVarOffsetTrait(expr) {
6291
6291
  return expr[UsesVarOffset] === true;
6292
6292
  }
6293
6293
 
6294
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
6294
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
6295
6295
  function createStatementOp(statement) {
6296
6296
  return __spreadValues({
6297
6297
  kind: OpKind.Statement,
@@ -6313,7 +6313,7 @@ var NEW_OP = {
6313
6313
  next: null
6314
6314
  };
6315
6315
 
6316
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
6316
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
6317
6317
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
6318
6318
  return __spreadValues(__spreadValues(__spreadValues({
6319
6319
  kind: OpKind.InterpolateText,
@@ -6493,7 +6493,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
6493
6493
  }, NEW_OP);
6494
6494
  }
6495
6495
 
6496
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
6496
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
6497
6497
  var _a;
6498
6498
  var _b;
6499
6499
  var _c;
@@ -7355,7 +7355,7 @@ function isStringLiteral(expr) {
7355
7355
  return expr instanceof LiteralExpr && typeof expr.value === "string";
7356
7356
  }
7357
7357
 
7358
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7358
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
7359
7359
  var _OpList = class {
7360
7360
  constructor() {
7361
7361
  this.debugListId = _OpList.nextListId++;
@@ -7546,14 +7546,14 @@ var OpList = _OpList;
7546
7546
  _OpList.nextListId = 0;
7547
7547
  })();
7548
7548
 
7549
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
7549
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
7550
7550
  var SlotHandle = class {
7551
7551
  constructor() {
7552
7552
  this.slot = null;
7553
7553
  }
7554
7554
  };
7555
7555
 
7556
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7556
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
7557
7557
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
7558
7558
  OpKind.Element,
7559
7559
  OpKind.ElementStart,
@@ -7857,7 +7857,7 @@ function createI18nAttributesOp(xref, handle, target) {
7857
7857
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
7858
7858
  }
7859
7859
 
7860
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
7860
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
7861
7861
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
7862
7862
  return __spreadValues(__spreadValues({
7863
7863
  kind: OpKind.HostProperty,
@@ -7871,10 +7871,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
7871
7871
  }, TRAIT_CONSUMES_VARS), NEW_OP);
7872
7872
  }
7873
7873
 
7874
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
7874
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
7875
7875
  var CTX_REF = "CTX_REF_MARKER";
7876
7876
 
7877
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
7877
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
7878
7878
  var CompilationJobKind;
7879
7879
  (function(CompilationJobKind2) {
7880
7880
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -7982,7 +7982,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
7982
7982
  }
7983
7983
  };
7984
7984
 
7985
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
7985
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
7986
7986
  function deleteAnyCasts(job) {
7987
7987
  for (const unit of job.units) {
7988
7988
  for (const op of unit.ops()) {
@@ -8000,7 +8000,7 @@ function removeAnys(e) {
8000
8000
  return e;
8001
8001
  }
8002
8002
 
8003
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
8003
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
8004
8004
  function applyI18nExpressions(job) {
8005
8005
  const i18nContexts = /* @__PURE__ */ new Map();
8006
8006
  for (const unit of job.units) {
@@ -8043,7 +8043,7 @@ function needsApplication(i18nContexts, op) {
8043
8043
  return false;
8044
8044
  }
8045
8045
 
8046
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
8046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
8047
8047
  function assignI18nSlotDependencies(job) {
8048
8048
  for (const unit of job.units) {
8049
8049
  let updateOp = unit.update.head;
@@ -8088,7 +8088,7 @@ function assignI18nSlotDependencies(job) {
8088
8088
  }
8089
8089
  }
8090
8090
 
8091
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
8091
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
8092
8092
  function createOpXrefMap(unit) {
8093
8093
  const map = /* @__PURE__ */ new Map();
8094
8094
  for (const op of unit.create) {
@@ -8103,7 +8103,7 @@ function createOpXrefMap(unit) {
8103
8103
  return map;
8104
8104
  }
8105
8105
 
8106
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
8106
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
8107
8107
  function extractAttributes(job) {
8108
8108
  for (const unit of job.units) {
8109
8109
  const elements = createOpXrefMap(unit);
@@ -8232,7 +8232,7 @@ function extractAttributeOp(unit, op, elements) {
8232
8232
  }
8233
8233
  }
8234
8234
 
8235
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
8235
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
8236
8236
  function lookupElement2(elements, xref) {
8237
8237
  const el = elements.get(xref);
8238
8238
  if (el === void 0) {
@@ -8289,7 +8289,7 @@ function specializeBindings(job) {
8289
8289
  }
8290
8290
  }
8291
8291
 
8292
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
8293
8293
  var CHAINABLE = /* @__PURE__ */ new Set([
8294
8294
  Identifiers.attribute,
8295
8295
  Identifiers.classProp,
@@ -8357,7 +8357,7 @@ function chainOperationsInList(opList) {
8357
8357
  }
8358
8358
  }
8359
8359
 
8360
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
8360
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
8361
8361
  function collapseSingletonInterpolations(job) {
8362
8362
  for (const unit of job.units) {
8363
8363
  for (const op of unit.update) {
@@ -8369,7 +8369,7 @@ function collapseSingletonInterpolations(job) {
8369
8369
  }
8370
8370
  }
8371
8371
 
8372
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
8372
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
8373
8373
  function generateConditionalExpressions(job) {
8374
8374
  for (const unit of job.units) {
8375
8375
  for (const op of unit.ops()) {
@@ -8406,7 +8406,7 @@ function generateConditionalExpressions(job) {
8406
8406
  }
8407
8407
  }
8408
8408
 
8409
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
8409
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
8410
8410
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
8411
8411
  ["&&", BinaryOperator.And],
8412
8412
  [">", BinaryOperator.Bigger],
@@ -8463,7 +8463,7 @@ function literalOrArrayLiteral(value) {
8463
8463
  return literal(value);
8464
8464
  }
8465
8465
 
8466
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
8466
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
8467
8467
  function collectElementConsts(job) {
8468
8468
  const allElementAttributes = /* @__PURE__ */ new Map();
8469
8469
  for (const unit of job.units) {
@@ -8632,7 +8632,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
8632
8632
  return literalArr(attrArray);
8633
8633
  }
8634
8634
 
8635
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
8635
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
8636
8636
  function convertI18nBindings(job) {
8637
8637
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
8638
8638
  for (const unit of job.units) {
@@ -8673,7 +8673,7 @@ function convertI18nBindings(job) {
8673
8673
  }
8674
8674
  }
8675
8675
 
8676
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
8676
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
8677
8677
  function resolveDeferDepsFns(job) {
8678
8678
  var _a2;
8679
8679
  for (const unit of job.units) {
@@ -8698,7 +8698,7 @@ function resolveDeferDepsFns(job) {
8698
8698
  }
8699
8699
  }
8700
8700
 
8701
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
8701
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
8702
8702
  function createI18nContexts(job) {
8703
8703
  const attrContextByMessage = /* @__PURE__ */ new Map();
8704
8704
  for (const unit of job.units) {
@@ -8776,7 +8776,7 @@ function createI18nContexts(job) {
8776
8776
  }
8777
8777
  }
8778
8778
 
8779
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
8779
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
8780
8780
  function deduplicateTextBindings(job) {
8781
8781
  const seen = /* @__PURE__ */ new Map();
8782
8782
  for (const unit of job.units) {
@@ -8798,7 +8798,7 @@ function deduplicateTextBindings(job) {
8798
8798
  }
8799
8799
  }
8800
8800
 
8801
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
8801
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
8802
8802
  function configureDeferInstructions(job) {
8803
8803
  for (const unit of job.units) {
8804
8804
  for (const op of unit.create) {
@@ -8815,7 +8815,7 @@ function configureDeferInstructions(job) {
8815
8815
  }
8816
8816
  }
8817
8817
 
8818
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
8818
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
8819
8819
  function resolveDeferTargetNames(job) {
8820
8820
  const scopes = /* @__PURE__ */ new Map();
8821
8821
  function getScopeForView2(view) {
@@ -8909,7 +8909,7 @@ var Scope = class {
8909
8909
  }
8910
8910
  };
8911
8911
 
8912
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
8912
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
8913
8913
  var REPLACEMENTS = /* @__PURE__ */ new Map([
8914
8914
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
8915
8915
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -8936,7 +8936,7 @@ function collapseEmptyInstructions(job) {
8936
8936
  }
8937
8937
  }
8938
8938
 
8939
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
8939
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
8940
8940
  function expandSafeReads(job) {
8941
8941
  for (const unit of job.units) {
8942
8942
  for (const op of unit.ops()) {
@@ -9072,7 +9072,7 @@ function ternaryTransform(e) {
9072
9072
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
9073
9073
  }
9074
9074
 
9075
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
9075
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
9076
9076
  var ESCAPE = "\uFFFD";
9077
9077
  var ELEMENT_MARKER = "#";
9078
9078
  var TEMPLATE_MARKER = "*";
@@ -9208,7 +9208,7 @@ function formatValue(value) {
9208
9208
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
9209
9209
  }
9210
9210
 
9211
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
9211
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
9212
9212
  function generateAdvance(job) {
9213
9213
  for (const unit of job.units) {
9214
9214
  const slotMap = /* @__PURE__ */ new Map();
@@ -9240,7 +9240,7 @@ function generateAdvance(job) {
9240
9240
  }
9241
9241
  }
9242
9242
 
9243
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
9243
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
9244
9244
  function generateProjectionDefs(job) {
9245
9245
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
9246
9246
  const selectors = [];
@@ -9264,7 +9264,7 @@ function generateProjectionDefs(job) {
9264
9264
  }
9265
9265
  }
9266
9266
 
9267
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
9267
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
9268
9268
  function generateVariables(job) {
9269
9269
  recursivelyProcessView(job.root, null);
9270
9270
  }
@@ -9363,7 +9363,7 @@ function generateVariablesInScopeForView(view, scope) {
9363
9363
  return newOps;
9364
9364
  }
9365
9365
 
9366
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
9366
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
9367
9367
  function collectConstExpressions(job) {
9368
9368
  for (const unit of job.units) {
9369
9369
  for (const op of unit.ops()) {
@@ -9377,7 +9377,7 @@ function collectConstExpressions(job) {
9377
9377
  }
9378
9378
  }
9379
9379
 
9380
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
9380
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
9381
9381
  var STYLE_DOT = "style.";
9382
9382
  var CLASS_DOT = "class.";
9383
9383
  var STYLE_BANG = "style!";
@@ -9435,7 +9435,7 @@ function parseProperty(name) {
9435
9435
  return { property: property2, suffix };
9436
9436
  }
9437
9437
 
9438
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
9438
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
9439
9439
  function mapLiteral(obj, quoted = false) {
9440
9440
  return literalMap(Object.keys(obj).map((key) => ({
9441
9441
  key,
@@ -9444,7 +9444,7 @@ function mapLiteral(obj, quoted = false) {
9444
9444
  })));
9445
9445
  }
9446
9446
 
9447
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
9447
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
9448
9448
  var IcuSerializerVisitor = class {
9449
9449
  visitText(text2) {
9450
9450
  return text2.value;
@@ -9478,7 +9478,7 @@ function serializeIcuNode(icu) {
9478
9478
  return icu.visit(serializer);
9479
9479
  }
9480
9480
 
9481
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9481
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
9482
9482
  var TokenType;
9483
9483
  (function(TokenType2) {
9484
9484
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -9839,7 +9839,7 @@ function parseIntAutoRadix(text2) {
9839
9839
  return result;
9840
9840
  }
9841
9841
 
9842
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
9842
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
9843
9843
  var SplitInterpolation = class {
9844
9844
  constructor(strings, expressions, offsets) {
9845
9845
  this.strings = strings;
@@ -10721,7 +10721,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
10721
10721
  return offsetMap;
10722
10722
  }
10723
10723
 
10724
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10724
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
10725
10725
  var NodeWithI18n = class {
10726
10726
  constructor(sourceSpan, i18n2) {
10727
10727
  this.sourceSpan = sourceSpan;
@@ -10873,7 +10873,7 @@ var RecursiveVisitor = class {
10873
10873
  }
10874
10874
  };
10875
10875
 
10876
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
10876
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
10877
10877
  var _SECURITY_SCHEMA;
10878
10878
  function SECURITY_SCHEMA() {
10879
10879
  if (!_SECURITY_SCHEMA) {
@@ -10934,11 +10934,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
10934
10934
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
10935
10935
  }
10936
10936
 
10937
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
10937
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
10938
10938
  var ElementSchemaRegistry = class {
10939
10939
  };
10940
10940
 
10941
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
10941
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
10942
10942
  var BOOLEAN = "boolean";
10943
10943
  var NUMBER = "number";
10944
10944
  var STRING = "string";
@@ -11095,7 +11095,37 @@ var SCHEMA = [
11095
11095
  "menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radiogroup,!default",
11096
11096
  "summary^[HTMLElement]|",
11097
11097
  "time^[HTMLElement]|dateTime",
11098
- ":svg:cursor^:svg:|"
11098
+ ":svg:cursor^:svg:|",
11099
+ ":math:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforeinput,*beforematch,*beforetoggle,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contentvisibilityautostatechange,*contextlost,*contextmenu,*contextrestored,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*scrollend,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex",
11100
+ ":math:math^:math:|",
11101
+ ":math:maction^:math:|",
11102
+ ":math:menclose^:math:|",
11103
+ ":math:merror^:math:|",
11104
+ ":math:mfenced^:math:|",
11105
+ ":math:mfrac^:math:|",
11106
+ ":math:mi^:math:|",
11107
+ ":math:mmultiscripts^:math:|",
11108
+ ":math:mn^:math:|",
11109
+ ":math:mo^:math:|",
11110
+ ":math:mover^:math:|",
11111
+ ":math:mpadded^:math:|",
11112
+ ":math:mphantom^:math:|",
11113
+ ":math:mroot^:math:|",
11114
+ ":math:mrow^:math:|",
11115
+ ":math:ms^:math:|",
11116
+ ":math:mspace^:math:|",
11117
+ ":math:msqrt^:math:|",
11118
+ ":math:mstyle^:math:|",
11119
+ ":math:msub^:math:|",
11120
+ ":math:msubsup^:math:|",
11121
+ ":math:msup^:math:|",
11122
+ ":math:mtable^:math:|",
11123
+ ":math:mtd^:math:|",
11124
+ ":math:mtext^:math:|",
11125
+ ":math:mtr^:math:|",
11126
+ ":math:munder^:math:|",
11127
+ ":math:munderover^:math:|",
11128
+ ":math:semantics^:math:|"
11099
11129
  ];
11100
11130
  var _ATTR_TO_PROP = new Map(Object.entries({
11101
11131
  "class": "className",
@@ -11291,7 +11321,7 @@ function _isPixelDimensionStyle(prop) {
11291
11321
  }
11292
11322
  }
11293
11323
 
11294
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11324
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
11295
11325
  var HtmlTagDefinition = class {
11296
11326
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
11297
11327
  this.closedByChildren = {};
@@ -11427,7 +11457,7 @@ function getHtmlTagDefinition(tagName) {
11427
11457
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
11428
11458
  }
11429
11459
 
11430
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
11460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
11431
11461
  var TAG_TO_PLACEHOLDER_NAMES = {
11432
11462
  "A": "LINK",
11433
11463
  "B": "BOLD_TEXT",
@@ -11549,7 +11579,7 @@ var PlaceholderRegistry = class {
11549
11579
  }
11550
11580
  };
11551
11581
 
11552
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
11582
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
11553
11583
  var _expParser = new Parser(new Lexer());
11554
11584
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
11555
11585
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -11728,14 +11758,14 @@ function extractPlaceholderName(input) {
11728
11758
  return input.split(_CUSTOM_PH_EXP)[2];
11729
11759
  }
11730
11760
 
11731
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
11761
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
11732
11762
  var I18nError = class extends ParseError {
11733
11763
  constructor(span, msg) {
11734
11764
  super(span, msg);
11735
11765
  }
11736
11766
  };
11737
11767
 
11738
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11768
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
11739
11769
  var NAMED_ENTITIES = {
11740
11770
  "AElig": "\xC6",
11741
11771
  "AMP": "&",
@@ -13866,7 +13896,7 @@ var NAMED_ENTITIES = {
13866
13896
  var NGSP_UNICODE = "\uE500";
13867
13897
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
13868
13898
 
13869
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
13899
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
13870
13900
  var TokenError = class extends ParseError {
13871
13901
  constructor(errorMsg, tokenType, span) {
13872
13902
  super(span, errorMsg);
@@ -14792,7 +14822,7 @@ var CursorError = class {
14792
14822
  }
14793
14823
  };
14794
14824
 
14795
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
14825
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
14796
14826
  var TreeError = class extends ParseError {
14797
14827
  static create(elementName, span, msg) {
14798
14828
  return new TreeError(elementName, span, msg);
@@ -15176,7 +15206,7 @@ function decodeEntity(match, entity) {
15176
15206
  return match;
15177
15207
  }
15178
15208
 
15179
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
15209
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
15180
15210
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
15181
15211
  "iframe|srcdoc",
15182
15212
  "*|innerhtml",
@@ -15191,7 +15221,7 @@ function isTrustedTypesSink(tagName, propName) {
15191
15221
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
15192
15222
  }
15193
15223
 
15194
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15224
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
15195
15225
  var setI18nRefs = (htmlNode, i18nNode) => {
15196
15226
  if (htmlNode instanceof NodeWithI18n) {
15197
15227
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -15348,7 +15378,7 @@ function i18nMetaToJSDoc(meta) {
15348
15378
  return jsDocComment(tags);
15349
15379
  }
15350
15380
 
15351
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
15381
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
15352
15382
  var GOOG_GET_MSG = "goog.getMsg";
15353
15383
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
15354
15384
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -15399,7 +15429,7 @@ function serializeI18nMessageForGetMsg(message) {
15399
15429
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
15400
15430
  }
15401
15431
 
15402
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
15432
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
15403
15433
  function createLocalizeStatements(variable2, message, params) {
15404
15434
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
15405
15435
  const sourceSpan = getSourceSpan(message);
@@ -15488,7 +15518,7 @@ function createEmptyMessagePart(location) {
15488
15518
  return new LiteralPiece("", new ParseSourceSpan(location, location));
15489
15519
  }
15490
15520
 
15491
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
15521
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
15492
15522
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
15493
15523
  var TRANSLATION_VAR_PREFIX = "i18n_";
15494
15524
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -15659,7 +15689,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
15659
15689
  return variable(name);
15660
15690
  }
15661
15691
 
15662
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
15692
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
15663
15693
  function convertI18nText(job) {
15664
15694
  var _a2, _b2, _c2;
15665
15695
  for (const unit of job.units) {
@@ -15729,7 +15759,7 @@ function convertI18nText(job) {
15729
15759
  }
15730
15760
  }
15731
15761
 
15732
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
15762
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
15733
15763
  function liftLocalRefs(job) {
15734
15764
  for (const unit of job.units) {
15735
15765
  for (const op of unit.create) {
@@ -15759,7 +15789,7 @@ function serializeLocalRefs(refs) {
15759
15789
  return literalArr(constRefs);
15760
15790
  }
15761
15791
 
15762
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
15792
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
15763
15793
  function emitNamespaceChanges(job) {
15764
15794
  for (const unit of job.units) {
15765
15795
  let activeNamespace = Namespace.HTML;
@@ -15775,7 +15805,7 @@ function emitNamespaceChanges(job) {
15775
15805
  }
15776
15806
  }
15777
15807
 
15778
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
15808
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
15779
15809
  function parse(value) {
15780
15810
  const styles = [];
15781
15811
  let i = 0;
@@ -15869,7 +15899,7 @@ function parseExtractedStyles(job) {
15869
15899
  }
15870
15900
  }
15871
15901
 
15872
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
15902
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
15873
15903
  function nameFunctionsAndVariables(job) {
15874
15904
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
15875
15905
  }
@@ -16013,7 +16043,7 @@ function stripImportant(name) {
16013
16043
  return name;
16014
16044
  }
16015
16045
 
16016
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
16046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
16017
16047
  function mergeNextContextExpressions(job) {
16018
16048
  for (const unit of job.units) {
16019
16049
  for (const op of unit.create) {
@@ -16059,7 +16089,7 @@ function mergeNextContextsInOps(ops) {
16059
16089
  }
16060
16090
  }
16061
16091
 
16062
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
16092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
16063
16093
  var CONTAINER_TAG = "ng-container";
16064
16094
  function generateNgContainerOps(job) {
16065
16095
  for (const unit of job.units) {
@@ -16076,7 +16106,7 @@ function generateNgContainerOps(job) {
16076
16106
  }
16077
16107
  }
16078
16108
 
16079
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
16109
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
16080
16110
  function lookupElement3(elements, xref) {
16081
16111
  const el = elements.get(xref);
16082
16112
  if (el === void 0) {
@@ -16106,7 +16136,7 @@ function disableBindings(job) {
16106
16136
  }
16107
16137
  }
16108
16138
 
16109
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
16139
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
16110
16140
  function generateNullishCoalesceExpressions(job) {
16111
16141
  for (const unit of job.units) {
16112
16142
  for (const op of unit.ops()) {
@@ -16122,7 +16152,7 @@ function generateNullishCoalesceExpressions(job) {
16122
16152
  }
16123
16153
  }
16124
16154
 
16125
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
16155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
16126
16156
  function kindTest(kind) {
16127
16157
  return (op) => op.kind === kind;
16128
16158
  }
@@ -16212,7 +16242,7 @@ function keepLast(ops) {
16212
16242
  return ops.slice(ops.length - 1);
16213
16243
  }
16214
16244
 
16215
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
16245
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
16216
16246
  function removeContentSelectors(job) {
16217
16247
  for (const unit of job.units) {
16218
16248
  const elements = createOpXrefMap(unit);
@@ -16239,7 +16269,7 @@ function lookupInXrefMap(map, xref) {
16239
16269
  return el;
16240
16270
  }
16241
16271
 
16242
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
16272
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
16243
16273
  function createPipes(job) {
16244
16274
  for (const unit of job.units) {
16245
16275
  processPipeBindingsInView(unit);
@@ -16287,7 +16317,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
16287
16317
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
16288
16318
  }
16289
16319
 
16290
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
16320
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
16291
16321
  function createVariadicPipes(job) {
16292
16322
  for (const unit of job.units) {
16293
16323
  for (const op of unit.update) {
@@ -16304,7 +16334,7 @@ function createVariadicPipes(job) {
16304
16334
  }
16305
16335
  }
16306
16336
 
16307
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
16337
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
16308
16338
  function propagateI18nBlocks(job) {
16309
16339
  propagateI18nBlocksToTemplates(job.root, 0);
16310
16340
  }
@@ -16358,7 +16388,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
16358
16388
  }
16359
16389
  }
16360
16390
 
16361
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
16391
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
16362
16392
  function extractPureFunctions(job) {
16363
16393
  for (const view of job.units) {
16364
16394
  for (const op of view.ops()) {
@@ -16400,7 +16430,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
16400
16430
  }
16401
16431
  };
16402
16432
 
16403
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
16433
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
16404
16434
  function generatePureLiteralStructures(job) {
16405
16435
  for (const unit of job.units) {
16406
16436
  for (const op of unit.update) {
@@ -16447,7 +16477,7 @@ function transformLiteralMap(expr) {
16447
16477
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
16448
16478
  }
16449
16479
 
16450
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
16480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
16451
16481
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
16452
16482
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
16453
16483
  }
@@ -16970,7 +17000,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
16970
17000
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
16971
17001
  }
16972
17002
 
16973
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
17003
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
16974
17004
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
16975
17005
  ["window", Identifiers.resolveWindow],
16976
17006
  ["document", Identifiers.resolveDocument],
@@ -17326,7 +17356,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
17326
17356
  return fn(params, handlerStmts, void 0, void 0, name);
17327
17357
  }
17328
17358
 
17329
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
17359
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
17330
17360
  function removeEmptyBindings(job) {
17331
17361
  for (const unit of job.units) {
17332
17362
  for (const op of unit.update) {
@@ -17347,7 +17377,7 @@ function removeEmptyBindings(job) {
17347
17377
  }
17348
17378
  }
17349
17379
 
17350
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
17380
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
17351
17381
  function removeI18nContexts(job) {
17352
17382
  for (const unit of job.units) {
17353
17383
  for (const op of unit.create) {
@@ -17363,7 +17393,7 @@ function removeI18nContexts(job) {
17363
17393
  }
17364
17394
  }
17365
17395
 
17366
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
17396
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
17367
17397
  function removeUnusedI18nAttributesOps(job) {
17368
17398
  for (const unit of job.units) {
17369
17399
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -17385,7 +17415,7 @@ function removeUnusedI18nAttributesOps(job) {
17385
17415
  }
17386
17416
  }
17387
17417
 
17388
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
17418
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
17389
17419
  function resolveContexts(job) {
17390
17420
  for (const unit of job.units) {
17391
17421
  processLexicalScope(unit, unit.create);
@@ -17427,7 +17457,7 @@ function processLexicalScope(view, ops) {
17427
17457
  }
17428
17458
  }
17429
17459
 
17430
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
17460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
17431
17461
  function resolveDollarEvent(job) {
17432
17462
  for (const unit of job.units) {
17433
17463
  transformDollarEvent(unit.create);
@@ -17450,7 +17480,7 @@ function transformDollarEvent(ops) {
17450
17480
  }
17451
17481
  }
17452
17482
 
17453
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
17483
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
17454
17484
  function resolveI18nElementPlaceholders(job) {
17455
17485
  const i18nContexts = /* @__PURE__ */ new Map();
17456
17486
  const elements = /* @__PURE__ */ new Map();
@@ -17629,7 +17659,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
17629
17659
  params.set(placeholder, values);
17630
17660
  }
17631
17661
 
17632
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
17662
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
17633
17663
  function resolveI18nExpressionPlaceholders(job) {
17634
17664
  var _a2;
17635
17665
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -17682,7 +17712,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
17682
17712
  }
17683
17713
  }
17684
17714
 
17685
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
17715
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
17686
17716
  function resolveNames(job) {
17687
17717
  for (const unit of job.units) {
17688
17718
  processLexicalScope2(unit, unit.create, null);
@@ -17747,7 +17777,7 @@ function processLexicalScope2(unit, ops, savedView) {
17747
17777
  }
17748
17778
  }
17749
17779
 
17750
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
17780
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
17751
17781
  var sanitizerFns = /* @__PURE__ */ new Map([
17752
17782
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
17753
17783
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -17817,7 +17847,7 @@ function getOnlySecurityContext(securityContext) {
17817
17847
  return securityContext;
17818
17848
  }
17819
17849
 
17820
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
17850
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
17821
17851
  function transformTwoWayBindingSet(job) {
17822
17852
  for (const unit of job.units) {
17823
17853
  for (const op of unit.create) {
@@ -17840,7 +17870,7 @@ function transformTwoWayBindingSet(job) {
17840
17870
  }
17841
17871
  }
17842
17872
 
17843
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
17873
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
17844
17874
  function saveAndRestoreView(job) {
17845
17875
  for (const unit of job.units) {
17846
17876
  unit.create.prepend([
@@ -17885,7 +17915,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
17885
17915
  }
17886
17916
  }
17887
17917
 
17888
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
17918
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
17889
17919
  function allocateSlots(job) {
17890
17920
  const slotMap = /* @__PURE__ */ new Map();
17891
17921
  for (const unit of job.units) {
@@ -17910,7 +17940,7 @@ function allocateSlots(job) {
17910
17940
  }
17911
17941
  }
17912
17942
 
17913
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
17943
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
17914
17944
  function specializeStyleBindings(job) {
17915
17945
  for (const unit of job.units) {
17916
17946
  for (const op of unit.update) {
@@ -17940,7 +17970,7 @@ function specializeStyleBindings(job) {
17940
17970
  }
17941
17971
  }
17942
17972
 
17943
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
17973
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
17944
17974
  function generateTemporaryVariables(job) {
17945
17975
  for (const unit of job.units) {
17946
17976
  unit.create.prepend(generateTemporaries(unit.create));
@@ -17998,7 +18028,7 @@ function assignName(names, expr) {
17998
18028
  expr.name = name;
17999
18029
  }
18000
18030
 
18001
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18031
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
18002
18032
  function generateTrackFns(job) {
18003
18033
  for (const unit of job.units) {
18004
18034
  for (const op of unit.create) {
@@ -18031,7 +18061,7 @@ function generateTrackFns(job) {
18031
18061
  }
18032
18062
  }
18033
18063
 
18034
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18064
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
18035
18065
  function optimizeTrackFns(job) {
18036
18066
  for (const unit of job.units) {
18037
18067
  for (const op of unit.create) {
@@ -18079,7 +18109,7 @@ function isTrackByFunctionCall(rootView, expr) {
18079
18109
  return true;
18080
18110
  }
18081
18111
 
18082
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18112
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
18083
18113
  function generateTrackVariables(job) {
18084
18114
  for (const unit of job.units) {
18085
18115
  for (const op of unit.create) {
@@ -18100,7 +18130,7 @@ function generateTrackVariables(job) {
18100
18130
  }
18101
18131
  }
18102
18132
 
18103
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18133
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
18104
18134
  function countVariables(job) {
18105
18135
  for (const unit of job.units) {
18106
18136
  let varCount = 0;
@@ -18210,7 +18240,7 @@ function isSingletonInterpolation(expr) {
18210
18240
  return true;
18211
18241
  }
18212
18242
 
18213
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
18243
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
18214
18244
  function optimizeVariables(job) {
18215
18245
  for (const unit of job.units) {
18216
18246
  inlineAlwaysInlineVariables(unit.create);
@@ -18459,7 +18489,7 @@ function allowConservativeInlining(decl, target) {
18459
18489
  }
18460
18490
  }
18461
18491
 
18462
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
18492
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
18463
18493
  function wrapI18nIcus(job) {
18464
18494
  for (const unit of job.units) {
18465
18495
  let currentI18nOp = null;
@@ -18489,7 +18519,7 @@ function wrapI18nIcus(job) {
18489
18519
  }
18490
18520
  }
18491
18521
 
18492
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
18522
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
18493
18523
  var phases = [
18494
18524
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
18495
18525
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -18531,6 +18561,7 @@ var phases = [
18531
18561
  { kind: CompilationJobKind.Both, fn: generateNullishCoalesceExpressions },
18532
18562
  { kind: CompilationJobKind.Both, fn: expandSafeReads },
18533
18563
  { kind: CompilationJobKind.Both, fn: generateTemporaryVariables },
18564
+ { kind: CompilationJobKind.Both, fn: optimizeVariables },
18534
18565
  { kind: CompilationJobKind.Tmpl, fn: allocateSlots },
18535
18566
  { kind: CompilationJobKind.Tmpl, fn: resolveI18nElementPlaceholders },
18536
18567
  { kind: CompilationJobKind.Tmpl, fn: resolveI18nExpressionPlaceholders },
@@ -18542,7 +18573,6 @@ var phases = [
18542
18573
  { kind: CompilationJobKind.Tmpl, fn: removeI18nContexts },
18543
18574
  { kind: CompilationJobKind.Both, fn: countVariables },
18544
18575
  { kind: CompilationJobKind.Tmpl, fn: generateAdvance },
18545
- { kind: CompilationJobKind.Both, fn: optimizeVariables },
18546
18576
  { kind: CompilationJobKind.Both, fn: nameFunctionsAndVariables },
18547
18577
  { kind: CompilationJobKind.Tmpl, fn: resolveDeferDepsFns },
18548
18578
  { kind: CompilationJobKind.Tmpl, fn: mergeNextContextExpressions },
@@ -18643,7 +18673,7 @@ function emitHostBindingFunction(job) {
18643
18673
  );
18644
18674
  }
18645
18675
 
18646
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
18676
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
18647
18677
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
18648
18678
  var domSchema = new DomElementSchemaRegistry();
18649
18679
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -19394,7 +19424,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
19394
19424
  return null;
19395
19425
  }
19396
19426
 
19397
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
19427
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
19398
19428
  function renderFlagCheckIfStmt(flags, statements) {
19399
19429
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
19400
19430
  }
@@ -19514,7 +19544,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
19514
19544
  ], INFERRED_TYPE, null, contentQueriesFnName);
19515
19545
  }
19516
19546
 
19517
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
19547
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
19518
19548
  var HtmlParser = class extends Parser2 {
19519
19549
  constructor() {
19520
19550
  super(getHtmlTagDefinition);
@@ -19524,7 +19554,7 @@ var HtmlParser = class extends Parser2 {
19524
19554
  }
19525
19555
  };
19526
19556
 
19527
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
19557
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
19528
19558
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
19529
19559
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
19530
19560
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -19590,7 +19620,7 @@ function visitAllWithSiblings(visitor, nodes) {
19590
19620
  return result;
19591
19621
  }
19592
19622
 
19593
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
19623
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
19594
19624
  var PROPERTY_PARTS_SEPARATOR = ".";
19595
19625
  var ATTRIBUTE_PREFIX = "attr";
19596
19626
  var CLASS_PREFIX = "class";
@@ -19944,7 +19974,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
19944
19974
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
19945
19975
  }
19946
19976
 
19947
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
19977
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
19948
19978
  function isStyleUrlResolvable(url) {
19949
19979
  if (url == null || url.length === 0 || url[0] == "/")
19950
19980
  return false;
@@ -19953,7 +19983,7 @@ function isStyleUrlResolvable(url) {
19953
19983
  }
19954
19984
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
19955
19985
 
19956
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
19986
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
19957
19987
  var NG_CONTENT_SELECT_ATTR = "select";
19958
19988
  var LINK_ELEMENT = "link";
19959
19989
  var LINK_STYLE_REL_ATTR = "rel";
@@ -20023,7 +20053,7 @@ function normalizeNgContentSelect(selectAttr) {
20023
20053
  return selectAttr;
20024
20054
  }
20025
20055
 
20026
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20056
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
20027
20057
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
20028
20058
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
20029
20059
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -20346,7 +20376,7 @@ function stripOptionalParentheses(param, errors) {
20346
20376
  return expression.slice(start, end);
20347
20377
  }
20348
20378
 
20349
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
20379
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
20350
20380
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
20351
20381
  var SEPARATOR_PATTERN = /^\s$/;
20352
20382
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -20610,7 +20640,7 @@ function parseDeferredTime(value) {
20610
20640
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
20611
20641
  }
20612
20642
 
20613
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
20643
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
20614
20644
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
20615
20645
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
20616
20646
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -20745,7 +20775,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
20745
20775
  return { triggers, prefetchTriggers };
20746
20776
  }
20747
20777
 
20748
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
20778
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
20749
20779
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
20750
20780
  var KW_BIND_IDX = 1;
20751
20781
  var KW_LET_IDX = 2;
@@ -21199,7 +21229,7 @@ function textContents(node) {
21199
21229
  }
21200
21230
  }
21201
21231
 
21202
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
21232
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
21203
21233
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
21204
21234
  function parseTemplate(template2, templateUrl, options = {}) {
21205
21235
  var _a2;
@@ -21277,7 +21307,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
21277
21307
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
21278
21308
  }
21279
21309
 
21280
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
21310
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
21281
21311
  var COMPONENT_VARIABLE = "%COMP%";
21282
21312
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
21283
21313
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -21644,7 +21674,7 @@ function createHostDirectivesMappingArray(mapping) {
21644
21674
  return elements.length > 0 ? literalArr(elements) : null;
21645
21675
  }
21646
21676
 
21647
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
21677
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
21648
21678
  var R3TargetBinder = class {
21649
21679
  constructor(directiveMatcher) {
21650
21680
  this.directiveMatcher = directiveMatcher;
@@ -22277,11 +22307,11 @@ function extractScopedNodeEntities(rootScope) {
22277
22307
  return templateEntities;
22278
22308
  }
22279
22309
 
22280
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
22310
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
22281
22311
  var ResourceLoader = class {
22282
22312
  };
22283
22313
 
22284
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
22314
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
22285
22315
  var CompilerFacadeImpl = class {
22286
22316
  constructor(jitEvaluator = new JitEvaluator()) {
22287
22317
  this.jitEvaluator = jitEvaluator;
@@ -22847,17 +22877,17 @@ function publishFacade(global) {
22847
22877
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
22848
22878
  }
22849
22879
 
22850
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
22851
- var VERSION2 = new Version("18.0.0-rc.0");
22880
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
22881
+ var VERSION2 = new Version("18.0.0-rc.2");
22852
22882
 
22853
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
22883
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
22854
22884
  var _VisitorMode;
22855
22885
  (function(_VisitorMode2) {
22856
22886
  _VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
22857
22887
  _VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
22858
22888
  })(_VisitorMode || (_VisitorMode = {}));
22859
22889
 
22860
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
22890
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
22861
22891
  var XmlTagDefinition = class {
22862
22892
  constructor() {
22863
22893
  this.closedByParent = false;
@@ -22879,7 +22909,7 @@ var XmlTagDefinition = class {
22879
22909
  };
22880
22910
  var _TAG_DEFINITION = new XmlTagDefinition();
22881
22911
 
22882
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
22912
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
22883
22913
  var FactoryTarget2;
22884
22914
  (function(FactoryTarget3) {
22885
22915
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -22889,10 +22919,10 @@ var FactoryTarget2;
22889
22919
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
22890
22920
  })(FactoryTarget2 || (FactoryTarget2 = {}));
22891
22921
 
22892
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
22922
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
22893
22923
  publishFacade(_global);
22894
22924
 
22895
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/identifier-lookup.mjs
22925
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/identifier-lookup.mjs
22896
22926
  var import_typescript5 = __toESM(require("typescript"), 1);
22897
22927
  function lookupIdentifiersInSourceFile(sourceFile, names) {
22898
22928
  const results = /* @__PURE__ */ new Set();
@@ -22906,7 +22936,7 @@ function lookupIdentifiersInSourceFile(sourceFile, names) {
22906
22936
  return results;
22907
22937
  }
22908
22938
 
22909
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/types.mjs
22939
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/types.mjs
22910
22940
  var ngtemplate = "ng-template";
22911
22941
  var boundngifelse = "[ngIfElse]";
22912
22942
  var boundngifthenelse = "[ngIfThenElse]";
@@ -23235,7 +23265,7 @@ var TemplateCollector = class extends RecursiveVisitor {
23235
23265
  }
23236
23266
  };
23237
23267
 
23238
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/util.mjs
23268
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/util.mjs
23239
23269
  var import_path2 = require("path");
23240
23270
  var import_typescript6 = __toESM(require("typescript"), 1);
23241
23271
  var startMarkerRegex = new RegExp(startMarker, "gm");
@@ -23755,7 +23785,7 @@ function forEachClass(sourceFile, callback) {
23755
23785
  });
23756
23786
  }
23757
23787
 
23758
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/cases.mjs
23788
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/cases.mjs
23759
23789
  var boundcase = "[ngSwitchCase]";
23760
23790
  var switchcase = "*ngSwitchCase";
23761
23791
  var nakedcase = "ngSwitchCase";
@@ -23827,7 +23857,7 @@ function migrateNgSwitchDefault(etm, tmpl, offset) {
23827
23857
  return { tmpl: updatedTmpl, offsets: { pre, post } };
23828
23858
  }
23829
23859
 
23830
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/fors.mjs
23860
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/fors.mjs
23831
23861
  var ngfor = "*ngFor";
23832
23862
  var nakedngfor2 = "ngFor";
23833
23863
  var fors = [ngfor, nakedngfor2];
@@ -23998,7 +24028,7 @@ function getNgForParts(expression) {
23998
24028
  return parts;
23999
24029
  }
24000
24030
 
24001
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/ifs.mjs
24031
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/ifs.mjs
24002
24032
  var ngif = "*ngIf";
24003
24033
  var boundngif = "[ngIf]";
24004
24034
  var nakedngif = "ngIf";
@@ -24147,7 +24177,7 @@ function buildIfThenBlock(etm, tmpl, condition, thenPlaceholder, offset) {
24147
24177
  return { tmpl: updatedTmpl, offsets: { pre, post } };
24148
24178
  }
24149
24179
 
24150
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/switches.mjs
24180
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/switches.mjs
24151
24181
  var ngswitch = "[ngSwitch]";
24152
24182
  var switches = [ngswitch];
24153
24183
  function migrateSwitch(template2) {
@@ -24213,7 +24243,7 @@ function migrateNgSwitch(etm, tmpl, offset) {
24213
24243
  return { tmpl: updatedTmpl, offsets: { pre, post } };
24214
24244
  }
24215
24245
 
24216
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/migration.mjs
24246
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/migration.mjs
24217
24247
  function migrateTemplate(template2, templateType, node, file, format = true, analyzedFiles) {
24218
24248
  let errors = [];
24219
24249
  let migrated = template2;
@@ -24264,7 +24294,7 @@ function migrateTemplate(template2, templateType, node, file, format = true, ana
24264
24294
  return { migrated, errors };
24265
24295
  }
24266
24296
 
24267
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
24297
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
24268
24298
  function control_flow_migration_default(options) {
24269
24299
  return (tree, context) => __async(this, null, function* () {
24270
24300
  const basePath = process.cwd();