@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
@@ -357,7 +357,7 @@ var require_semver = __commonJS({
357
357
  do {
358
358
  const a = this.build[i];
359
359
  const b = other.build[i];
360
- debug("prerelease compare", i, a, b);
360
+ debug("build compare", i, a, b);
361
361
  if (a === void 0 && b === void 0) {
362
362
  return 0;
363
363
  } else if (b === void 0) {
@@ -826,653 +826,39 @@ var require_coerce = __commonJS({
826
826
  }
827
827
  });
828
828
 
829
- // node_modules/yallist/iterator.js
830
- var require_iterator = __commonJS({
831
- "node_modules/yallist/iterator.js"(exports, module2) {
832
- "use strict";
833
- module2.exports = function(Yallist) {
834
- Yallist.prototype[Symbol.iterator] = function* () {
835
- for (let walker = this.head; walker; walker = walker.next) {
836
- yield walker.value;
837
- }
838
- };
839
- };
840
- }
841
- });
842
-
843
- // node_modules/yallist/yallist.js
844
- var require_yallist = __commonJS({
845
- "node_modules/yallist/yallist.js"(exports, module2) {
846
- "use strict";
847
- module2.exports = Yallist;
848
- Yallist.Node = Node;
849
- Yallist.create = Yallist;
850
- function Yallist(list) {
851
- var self = this;
852
- if (!(self instanceof Yallist)) {
853
- self = new Yallist();
854
- }
855
- self.tail = null;
856
- self.head = null;
857
- self.length = 0;
858
- if (list && typeof list.forEach === "function") {
859
- list.forEach(function(item) {
860
- self.push(item);
861
- });
862
- } else if (arguments.length > 0) {
863
- for (var i = 0, l = arguments.length; i < l; i++) {
864
- self.push(arguments[i]);
865
- }
866
- }
867
- return self;
868
- }
869
- Yallist.prototype.removeNode = function(node) {
870
- if (node.list !== this) {
871
- throw new Error("removing node which does not belong to this list");
872
- }
873
- var next = node.next;
874
- var prev = node.prev;
875
- if (next) {
876
- next.prev = prev;
877
- }
878
- if (prev) {
879
- prev.next = next;
880
- }
881
- if (node === this.head) {
882
- this.head = next;
883
- }
884
- if (node === this.tail) {
885
- this.tail = prev;
886
- }
887
- node.list.length--;
888
- node.next = null;
889
- node.prev = null;
890
- node.list = null;
891
- return next;
892
- };
893
- Yallist.prototype.unshiftNode = function(node) {
894
- if (node === this.head) {
895
- return;
896
- }
897
- if (node.list) {
898
- node.list.removeNode(node);
899
- }
900
- var head = this.head;
901
- node.list = this;
902
- node.next = head;
903
- if (head) {
904
- head.prev = node;
905
- }
906
- this.head = node;
907
- if (!this.tail) {
908
- this.tail = node;
909
- }
910
- this.length++;
911
- };
912
- Yallist.prototype.pushNode = function(node) {
913
- if (node === this.tail) {
914
- return;
915
- }
916
- if (node.list) {
917
- node.list.removeNode(node);
918
- }
919
- var tail = this.tail;
920
- node.list = this;
921
- node.prev = tail;
922
- if (tail) {
923
- tail.next = node;
924
- }
925
- this.tail = node;
926
- if (!this.head) {
927
- this.head = node;
928
- }
929
- this.length++;
930
- };
931
- Yallist.prototype.push = function() {
932
- for (var i = 0, l = arguments.length; i < l; i++) {
933
- push(this, arguments[i]);
934
- }
935
- return this.length;
936
- };
937
- Yallist.prototype.unshift = function() {
938
- for (var i = 0, l = arguments.length; i < l; i++) {
939
- unshift(this, arguments[i]);
940
- }
941
- return this.length;
942
- };
943
- Yallist.prototype.pop = function() {
944
- if (!this.tail) {
945
- return void 0;
946
- }
947
- var res = this.tail.value;
948
- this.tail = this.tail.prev;
949
- if (this.tail) {
950
- this.tail.next = null;
951
- } else {
952
- this.head = null;
953
- }
954
- this.length--;
955
- return res;
956
- };
957
- Yallist.prototype.shift = function() {
958
- if (!this.head) {
959
- return void 0;
960
- }
961
- var res = this.head.value;
962
- this.head = this.head.next;
963
- if (this.head) {
964
- this.head.prev = null;
965
- } else {
966
- this.tail = null;
967
- }
968
- this.length--;
969
- return res;
970
- };
971
- Yallist.prototype.forEach = function(fn2, thisp) {
972
- thisp = thisp || this;
973
- for (var walker = this.head, i = 0; walker !== null; i++) {
974
- fn2.call(thisp, walker.value, i, this);
975
- walker = walker.next;
976
- }
977
- };
978
- Yallist.prototype.forEachReverse = function(fn2, thisp) {
979
- thisp = thisp || this;
980
- for (var walker = this.tail, i = this.length - 1; walker !== null; i--) {
981
- fn2.call(thisp, walker.value, i, this);
982
- walker = walker.prev;
983
- }
984
- };
985
- Yallist.prototype.get = function(n2) {
986
- for (var i = 0, walker = this.head; walker !== null && i < n2; i++) {
987
- walker = walker.next;
988
- }
989
- if (i === n2 && walker !== null) {
990
- return walker.value;
991
- }
992
- };
993
- Yallist.prototype.getReverse = function(n2) {
994
- for (var i = 0, walker = this.tail; walker !== null && i < n2; i++) {
995
- walker = walker.prev;
996
- }
997
- if (i === n2 && walker !== null) {
998
- return walker.value;
999
- }
1000
- };
1001
- Yallist.prototype.map = function(fn2, thisp) {
1002
- thisp = thisp || this;
1003
- var res = new Yallist();
1004
- for (var walker = this.head; walker !== null; ) {
1005
- res.push(fn2.call(thisp, walker.value, this));
1006
- walker = walker.next;
1007
- }
1008
- return res;
1009
- };
1010
- Yallist.prototype.mapReverse = function(fn2, thisp) {
1011
- thisp = thisp || this;
1012
- var res = new Yallist();
1013
- for (var walker = this.tail; walker !== null; ) {
1014
- res.push(fn2.call(thisp, walker.value, this));
1015
- walker = walker.prev;
1016
- }
1017
- return res;
1018
- };
1019
- Yallist.prototype.reduce = function(fn2, initial) {
1020
- var acc;
1021
- var walker = this.head;
1022
- if (arguments.length > 1) {
1023
- acc = initial;
1024
- } else if (this.head) {
1025
- walker = this.head.next;
1026
- acc = this.head.value;
1027
- } else {
1028
- throw new TypeError("Reduce of empty list with no initial value");
1029
- }
1030
- for (var i = 0; walker !== null; i++) {
1031
- acc = fn2(acc, walker.value, i);
1032
- walker = walker.next;
1033
- }
1034
- return acc;
1035
- };
1036
- Yallist.prototype.reduceReverse = function(fn2, initial) {
1037
- var acc;
1038
- var walker = this.tail;
1039
- if (arguments.length > 1) {
1040
- acc = initial;
1041
- } else if (this.tail) {
1042
- walker = this.tail.prev;
1043
- acc = this.tail.value;
1044
- } else {
1045
- throw new TypeError("Reduce of empty list with no initial value");
1046
- }
1047
- for (var i = this.length - 1; walker !== null; i--) {
1048
- acc = fn2(acc, walker.value, i);
1049
- walker = walker.prev;
1050
- }
1051
- return acc;
1052
- };
1053
- Yallist.prototype.toArray = function() {
1054
- var arr = new Array(this.length);
1055
- for (var i = 0, walker = this.head; walker !== null; i++) {
1056
- arr[i] = walker.value;
1057
- walker = walker.next;
1058
- }
1059
- return arr;
1060
- };
1061
- Yallist.prototype.toArrayReverse = function() {
1062
- var arr = new Array(this.length);
1063
- for (var i = 0, walker = this.tail; walker !== null; i++) {
1064
- arr[i] = walker.value;
1065
- walker = walker.prev;
1066
- }
1067
- return arr;
1068
- };
1069
- Yallist.prototype.slice = function(from, to) {
1070
- to = to || this.length;
1071
- if (to < 0) {
1072
- to += this.length;
1073
- }
1074
- from = from || 0;
1075
- if (from < 0) {
1076
- from += this.length;
1077
- }
1078
- var ret = new Yallist();
1079
- if (to < from || to < 0) {
1080
- return ret;
1081
- }
1082
- if (from < 0) {
1083
- from = 0;
1084
- }
1085
- if (to > this.length) {
1086
- to = this.length;
1087
- }
1088
- for (var i = 0, walker = this.head; walker !== null && i < from; i++) {
1089
- walker = walker.next;
1090
- }
1091
- for (; walker !== null && i < to; i++, walker = walker.next) {
1092
- ret.push(walker.value);
1093
- }
1094
- return ret;
1095
- };
1096
- Yallist.prototype.sliceReverse = function(from, to) {
1097
- to = to || this.length;
1098
- if (to < 0) {
1099
- to += this.length;
1100
- }
1101
- from = from || 0;
1102
- if (from < 0) {
1103
- from += this.length;
1104
- }
1105
- var ret = new Yallist();
1106
- if (to < from || to < 0) {
1107
- return ret;
1108
- }
1109
- if (from < 0) {
1110
- from = 0;
1111
- }
1112
- if (to > this.length) {
1113
- to = this.length;
1114
- }
1115
- for (var i = this.length, walker = this.tail; walker !== null && i > to; i--) {
1116
- walker = walker.prev;
1117
- }
1118
- for (; walker !== null && i > from; i--, walker = walker.prev) {
1119
- ret.push(walker.value);
1120
- }
1121
- return ret;
1122
- };
1123
- Yallist.prototype.splice = function(start, deleteCount, ...nodes) {
1124
- if (start > this.length) {
1125
- start = this.length - 1;
1126
- }
1127
- if (start < 0) {
1128
- start = this.length + start;
1129
- }
1130
- for (var i = 0, walker = this.head; walker !== null && i < start; i++) {
1131
- walker = walker.next;
1132
- }
1133
- var ret = [];
1134
- for (var i = 0; walker && i < deleteCount; i++) {
1135
- ret.push(walker.value);
1136
- walker = this.removeNode(walker);
1137
- }
1138
- if (walker === null) {
1139
- walker = this.tail;
1140
- }
1141
- if (walker !== this.head && walker !== this.tail) {
1142
- walker = walker.prev;
1143
- }
1144
- for (var i = 0; i < nodes.length; i++) {
1145
- walker = insert(this, walker, nodes[i]);
1146
- }
1147
- return ret;
1148
- };
1149
- Yallist.prototype.reverse = function() {
1150
- var head = this.head;
1151
- var tail = this.tail;
1152
- for (var walker = head; walker !== null; walker = walker.prev) {
1153
- var p2 = walker.prev;
1154
- walker.prev = walker.next;
1155
- walker.next = p2;
1156
- }
1157
- this.head = tail;
1158
- this.tail = head;
1159
- return this;
1160
- };
1161
- function insert(self, node, value) {
1162
- var inserted = node === self.head ? new Node(value, null, node, self) : new Node(value, node, node.next, self);
1163
- if (inserted.next === null) {
1164
- self.tail = inserted;
1165
- }
1166
- if (inserted.prev === null) {
1167
- self.head = inserted;
1168
- }
1169
- self.length++;
1170
- return inserted;
1171
- }
1172
- function push(self, item) {
1173
- self.tail = new Node(item, self.tail, null, self);
1174
- if (!self.head) {
1175
- self.head = self.tail;
1176
- }
1177
- self.length++;
1178
- }
1179
- function unshift(self, item) {
1180
- self.head = new Node(item, null, self.head, self);
1181
- if (!self.tail) {
1182
- self.tail = self.head;
1183
- }
1184
- self.length++;
1185
- }
1186
- function Node(value, prev, next, list) {
1187
- if (!(this instanceof Node)) {
1188
- return new Node(value, prev, next, list);
1189
- }
1190
- this.list = list;
1191
- this.value = value;
1192
- if (prev) {
1193
- prev.next = this;
1194
- this.prev = prev;
1195
- } else {
1196
- this.prev = null;
1197
- }
1198
- if (next) {
1199
- next.prev = this;
1200
- this.next = next;
1201
- } else {
1202
- this.next = null;
1203
- }
1204
- }
1205
- try {
1206
- require_iterator()(Yallist);
1207
- } catch (er) {
1208
- }
1209
- }
1210
- });
1211
-
1212
- // node_modules/semver/node_modules/lru-cache/index.js
1213
- var require_lru_cache = __commonJS({
1214
- "node_modules/semver/node_modules/lru-cache/index.js"(exports, module2) {
1215
- "use strict";
1216
- var Yallist = require_yallist();
1217
- var MAX = Symbol("max");
1218
- var LENGTH = Symbol("length");
1219
- var LENGTH_CALCULATOR = Symbol("lengthCalculator");
1220
- var ALLOW_STALE = Symbol("allowStale");
1221
- var MAX_AGE = Symbol("maxAge");
1222
- var DISPOSE = Symbol("dispose");
1223
- var NO_DISPOSE_ON_SET = Symbol("noDisposeOnSet");
1224
- var LRU_LIST = Symbol("lruList");
1225
- var CACHE = Symbol("cache");
1226
- var UPDATE_AGE_ON_GET = Symbol("updateAgeOnGet");
1227
- var naiveLength = () => 1;
829
+ // node_modules/semver/internal/lrucache.js
830
+ var require_lrucache = __commonJS({
831
+ "node_modules/semver/internal/lrucache.js"(exports, module2) {
1228
832
  var LRUCache = class {
1229
- constructor(options) {
1230
- if (typeof options === "number")
1231
- options = { max: options };
1232
- if (!options)
1233
- options = {};
1234
- if (options.max && (typeof options.max !== "number" || options.max < 0))
1235
- throw new TypeError("max must be a non-negative number");
1236
- const max = this[MAX] = options.max || Infinity;
1237
- const lc = options.length || naiveLength;
1238
- this[LENGTH_CALCULATOR] = typeof lc !== "function" ? naiveLength : lc;
1239
- this[ALLOW_STALE] = options.stale || false;
1240
- if (options.maxAge && typeof options.maxAge !== "number")
1241
- throw new TypeError("maxAge must be a number");
1242
- this[MAX_AGE] = options.maxAge || 0;
1243
- this[DISPOSE] = options.dispose;
1244
- this[NO_DISPOSE_ON_SET] = options.noDisposeOnSet || false;
1245
- this[UPDATE_AGE_ON_GET] = options.updateAgeOnGet || false;
1246
- this.reset();
1247
- }
1248
- set max(mL) {
1249
- if (typeof mL !== "number" || mL < 0)
1250
- throw new TypeError("max must be a non-negative number");
1251
- this[MAX] = mL || Infinity;
1252
- trim(this);
1253
- }
1254
- get max() {
1255
- return this[MAX];
1256
- }
1257
- set allowStale(allowStale) {
1258
- this[ALLOW_STALE] = !!allowStale;
1259
- }
1260
- get allowStale() {
1261
- return this[ALLOW_STALE];
1262
- }
1263
- set maxAge(mA) {
1264
- if (typeof mA !== "number")
1265
- throw new TypeError("maxAge must be a non-negative number");
1266
- this[MAX_AGE] = mA;
1267
- trim(this);
1268
- }
1269
- get maxAge() {
1270
- return this[MAX_AGE];
1271
- }
1272
- set lengthCalculator(lC) {
1273
- if (typeof lC !== "function")
1274
- lC = naiveLength;
1275
- if (lC !== this[LENGTH_CALCULATOR]) {
1276
- this[LENGTH_CALCULATOR] = lC;
1277
- this[LENGTH] = 0;
1278
- this[LRU_LIST].forEach((hit) => {
1279
- hit.length = this[LENGTH_CALCULATOR](hit.value, hit.key);
1280
- this[LENGTH] += hit.length;
1281
- });
1282
- }
1283
- trim(this);
1284
- }
1285
- get lengthCalculator() {
1286
- return this[LENGTH_CALCULATOR];
1287
- }
1288
- get length() {
1289
- return this[LENGTH];
1290
- }
1291
- get itemCount() {
1292
- return this[LRU_LIST].length;
1293
- }
1294
- rforEach(fn2, thisp) {
1295
- thisp = thisp || this;
1296
- for (let walker = this[LRU_LIST].tail; walker !== null; ) {
1297
- const prev = walker.prev;
1298
- forEachStep(this, fn2, walker, thisp);
1299
- walker = prev;
1300
- }
1301
- }
1302
- forEach(fn2, thisp) {
1303
- thisp = thisp || this;
1304
- for (let walker = this[LRU_LIST].head; walker !== null; ) {
1305
- const next = walker.next;
1306
- forEachStep(this, fn2, walker, thisp);
1307
- walker = next;
1308
- }
1309
- }
1310
- keys() {
1311
- return this[LRU_LIST].toArray().map((k) => k.key);
1312
- }
1313
- values() {
1314
- return this[LRU_LIST].toArray().map((k) => k.value);
1315
- }
1316
- reset() {
1317
- if (this[DISPOSE] && this[LRU_LIST] && this[LRU_LIST].length) {
1318
- this[LRU_LIST].forEach((hit) => this[DISPOSE](hit.key, hit.value));
1319
- }
1320
- this[CACHE] = /* @__PURE__ */ new Map();
1321
- this[LRU_LIST] = new Yallist();
1322
- this[LENGTH] = 0;
1323
- }
1324
- dump() {
1325
- return this[LRU_LIST].map((hit) => isStale(this, hit) ? false : {
1326
- k: hit.key,
1327
- v: hit.value,
1328
- e: hit.now + (hit.maxAge || 0)
1329
- }).toArray().filter((h) => h);
1330
- }
1331
- dumpLru() {
1332
- return this[LRU_LIST];
1333
- }
1334
- set(key, value, maxAge) {
1335
- maxAge = maxAge || this[MAX_AGE];
1336
- if (maxAge && typeof maxAge !== "number")
1337
- throw new TypeError("maxAge must be a number");
1338
- const now = maxAge ? Date.now() : 0;
1339
- const len = this[LENGTH_CALCULATOR](value, key);
1340
- if (this[CACHE].has(key)) {
1341
- if (len > this[MAX]) {
1342
- del(this, this[CACHE].get(key));
1343
- return false;
1344
- }
1345
- const node = this[CACHE].get(key);
1346
- const item = node.value;
1347
- if (this[DISPOSE]) {
1348
- if (!this[NO_DISPOSE_ON_SET])
1349
- this[DISPOSE](key, item.value);
1350
- }
1351
- item.now = now;
1352
- item.maxAge = maxAge;
1353
- item.value = value;
1354
- this[LENGTH] += len - item.length;
1355
- item.length = len;
1356
- this.get(key);
1357
- trim(this);
1358
- return true;
1359
- }
1360
- const hit = new Entry(key, value, len, now, maxAge);
1361
- if (hit.length > this[MAX]) {
1362
- if (this[DISPOSE])
1363
- this[DISPOSE](key, value);
1364
- return false;
1365
- }
1366
- this[LENGTH] += hit.length;
1367
- this[LRU_LIST].unshift(hit);
1368
- this[CACHE].set(key, this[LRU_LIST].head);
1369
- trim(this);
1370
- return true;
1371
- }
1372
- has(key) {
1373
- if (!this[CACHE].has(key))
1374
- return false;
1375
- const hit = this[CACHE].get(key).value;
1376
- return !isStale(this, hit);
833
+ constructor() {
834
+ this.max = 1e3;
835
+ this.map = /* @__PURE__ */ new Map();
1377
836
  }
1378
837
  get(key) {
1379
- return get(this, key, true);
1380
- }
1381
- peek(key) {
1382
- return get(this, key, false);
1383
- }
1384
- pop() {
1385
- const node = this[LRU_LIST].tail;
1386
- if (!node)
1387
- return null;
1388
- del(this, node);
1389
- return node.value;
1390
- }
1391
- del(key) {
1392
- del(this, this[CACHE].get(key));
1393
- }
1394
- load(arr) {
1395
- this.reset();
1396
- const now = Date.now();
1397
- for (let l = arr.length - 1; l >= 0; l--) {
1398
- const hit = arr[l];
1399
- const expiresAt = hit.e || 0;
1400
- if (expiresAt === 0)
1401
- this.set(hit.k, hit.v);
1402
- else {
1403
- const maxAge = expiresAt - now;
1404
- if (maxAge > 0) {
1405
- this.set(hit.k, hit.v, maxAge);
1406
- }
1407
- }
838
+ const value = this.map.get(key);
839
+ if (value === void 0) {
840
+ return void 0;
841
+ } else {
842
+ this.map.delete(key);
843
+ this.map.set(key, value);
844
+ return value;
1408
845
  }
1409
846
  }
1410
- prune() {
1411
- this[CACHE].forEach((value, key) => get(this, key, false));
847
+ delete(key) {
848
+ return this.map.delete(key);
1412
849
  }
1413
- };
1414
- var get = (self, key, doUse) => {
1415
- const node = self[CACHE].get(key);
1416
- if (node) {
1417
- const hit = node.value;
1418
- if (isStale(self, hit)) {
1419
- del(self, node);
1420
- if (!self[ALLOW_STALE])
1421
- return void 0;
1422
- } else {
1423
- if (doUse) {
1424
- if (self[UPDATE_AGE_ON_GET])
1425
- node.value.now = Date.now();
1426
- self[LRU_LIST].unshiftNode(node);
850
+ set(key, value) {
851
+ const deleted = this.delete(key);
852
+ if (!deleted && value !== void 0) {
853
+ if (this.map.size >= this.max) {
854
+ const firstKey = this.map.keys().next().value;
855
+ this.delete(firstKey);
1427
856
  }
857
+ this.map.set(key, value);
1428
858
  }
1429
- return hit.value;
1430
- }
1431
- };
1432
- var isStale = (self, hit) => {
1433
- if (!hit || !hit.maxAge && !self[MAX_AGE])
1434
- return false;
1435
- const diff = Date.now() - hit.now;
1436
- return hit.maxAge ? diff > hit.maxAge : self[MAX_AGE] && diff > self[MAX_AGE];
1437
- };
1438
- var trim = (self) => {
1439
- if (self[LENGTH] > self[MAX]) {
1440
- for (let walker = self[LRU_LIST].tail; self[LENGTH] > self[MAX] && walker !== null; ) {
1441
- const prev = walker.prev;
1442
- del(self, walker);
1443
- walker = prev;
1444
- }
1445
- }
1446
- };
1447
- var del = (self, node) => {
1448
- if (node) {
1449
- const hit = node.value;
1450
- if (self[DISPOSE])
1451
- self[DISPOSE](hit.key, hit.value);
1452
- self[LENGTH] -= hit.length;
1453
- self[CACHE].delete(hit.key);
1454
- self[LRU_LIST].removeNode(node);
1455
- }
1456
- };
1457
- var Entry = class {
1458
- constructor(key, value, length, now, maxAge) {
1459
- this.key = key;
1460
- this.value = value;
1461
- this.length = length;
1462
- this.now = now;
1463
- this.maxAge = maxAge || 0;
859
+ return this;
1464
860
  }
1465
861
  };
1466
- var forEachStep = (self, fn2, node, thisp) => {
1467
- let hit = node.value;
1468
- if (isStale(self, hit)) {
1469
- del(self, node);
1470
- if (!self[ALLOW_STALE])
1471
- hit = void 0;
1472
- }
1473
- if (hit)
1474
- fn2.call(thisp, hit.value, hit.key, self);
1475
- };
1476
862
  module2.exports = LRUCache;
1477
863
  }
1478
864
  });
@@ -1601,8 +987,8 @@ var require_range = __commonJS({
1601
987
  }
1602
988
  };
1603
989
  module2.exports = Range;
1604
- var LRU = require_lru_cache();
1605
- var cache = new LRU({ max: 1e3 });
990
+ var LRU = require_lrucache();
991
+ var cache = new LRU();
1606
992
  var parseOptions = require_parse_options();
1607
993
  var Comparator = require_comparator();
1608
994
  var debug = require_debug();
@@ -1780,7 +1166,7 @@ var require_range = __commonJS({
1780
1166
  debug("replaceGTE0", comp, options);
1781
1167
  return comp.trim().replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
1782
1168
  };
1783
- var hyphenReplace = (incPr) => ($02, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr, tb) => {
1169
+ var hyphenReplace = (incPr) => ($02, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr) => {
1784
1170
  if (isX(fM)) {
1785
1171
  from = "";
1786
1172
  } else if (isX(fm)) {
@@ -2501,7 +1887,7 @@ var require_semver2 = __commonJS({
2501
1887
  }
2502
1888
  });
2503
1889
 
2504
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
1890
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
2505
1891
  var standalone_migration_exports = {};
2506
1892
  __export(standalone_migration_exports, {
2507
1893
  default: () => standalone_migration_default
@@ -2509,10 +1895,10 @@ __export(standalone_migration_exports, {
2509
1895
  module.exports = __toCommonJS(standalone_migration_exports);
2510
1896
  var import_schematics = require("@angular-devkit/schematics");
2511
1897
 
2512
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
1898
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
2513
1899
  var import_typescript = __toESM(require("typescript"), 1);
2514
1900
 
2515
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
1901
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
2516
1902
  var InvalidFileSystem = class {
2517
1903
  exists(path4) {
2518
1904
  throw makeError();
@@ -2600,7 +1986,7 @@ function makeError() {
2600
1986
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
2601
1987
  }
2602
1988
 
2603
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
1989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
2604
1990
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
2605
1991
  function stripExtension(path4) {
2606
1992
  return path4.replace(TS_DTS_JS_EXTENSION, "");
@@ -2613,7 +1999,7 @@ function getSourceFileOrError(program, fileName) {
2613
1999
  return sf;
2614
2000
  }
2615
2001
 
2616
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2002
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
2617
2003
  var fs = new InvalidFileSystem();
2618
2004
  function getFileSystem() {
2619
2005
  return fs;
@@ -2657,7 +2043,7 @@ function toRelativeImport(relativePath) {
2657
2043
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
2658
2044
  }
2659
2045
 
2660
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
2661
2047
  var LogicalProjectPath = {
2662
2048
  relativePathBetween: function(from, to) {
2663
2049
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -2703,7 +2089,7 @@ function isWithinBasePath(base, path4) {
2703
2089
  return isLocalRelativePath(relative(base, path4));
2704
2090
  }
2705
2091
 
2706
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
2707
2093
  var import_fs = __toESM(require("fs"), 1);
2708
2094
  var import_module = require("module");
2709
2095
  var p = __toESM(require("path"), 1);
@@ -2811,7 +2197,7 @@ function toggleCase(str) {
2811
2197
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
2812
2198
  }
2813
2199
 
2814
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
2200
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
2815
2201
  var _SELECTOR_REGEXP = new RegExp(
2816
2202
  `(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
2817
2203
  "g"
@@ -3119,7 +2505,7 @@ var SelectorContext = class {
3119
2505
  }
3120
2506
  };
3121
2507
 
3122
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
2508
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
3123
2509
  var emitDistinctChangesOnlyDefaultValue = true;
3124
2510
  var ViewEncapsulation;
3125
2511
  (function(ViewEncapsulation2) {
@@ -3188,7 +2574,7 @@ function parseSelectorToR3Selector(selector) {
3188
2574
  return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
3189
2575
  }
3190
2576
 
3191
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2577
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3192
2578
  var output_ast_exports = {};
3193
2579
  __export(output_ast_exports, {
3194
2580
  ArrayType: () => ArrayType,
@@ -3276,7 +2662,7 @@ __export(output_ast_exports, {
3276
2662
  variable: () => variable
3277
2663
  });
3278
2664
 
3279
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
2665
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
3280
2666
  var textEncoder;
3281
2667
  function digest(message) {
3282
2668
  return message.id || computeDigest(message);
@@ -3519,7 +2905,7 @@ function wordAt(bytes, index, endian) {
3519
2905
  return word;
3520
2906
  }
3521
2907
 
3522
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
2908
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
3523
2909
  var TypeModifier;
3524
2910
  (function(TypeModifier2) {
3525
2911
  TypeModifier2[TypeModifier2["None"] = 0] = "None";
@@ -4714,7 +4100,7 @@ function serializeTags(tags) {
4714
4100
  return out;
4715
4101
  }
4716
4102
 
4717
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4103
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
4718
4104
  var CONSTANT_PREFIX = "_c";
4719
4105
  var UNKNOWN_VALUE_KEY = variable("<unknown>");
4720
4106
  var KEY_CONTEXT = {};
@@ -4902,7 +4288,7 @@ function isLongStringLiteral(expr) {
4902
4288
  return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
4903
4289
  }
4904
4290
 
4905
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4291
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
4906
4292
  var CORE = "@angular/core";
4907
4293
  var _Identifiers = class {
4908
4294
  };
@@ -5790,7 +5176,7 @@ var Identifiers = _Identifiers;
5790
5176
  _Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
5791
5177
  })();
5792
5178
 
5793
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
5179
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
5794
5180
  var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
5795
5181
  function dashCaseToCamelCase(input) {
5796
5182
  return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
@@ -5867,7 +5253,7 @@ var Version = class {
5867
5253
  };
5868
5254
  var _global = globalThis;
5869
5255
 
5870
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5256
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
5871
5257
  var VERSION = 3;
5872
5258
  var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
5873
5259
  var SourceMapGenerator = class {
@@ -5996,7 +5382,7 @@ function toBase64Digit(value) {
5996
5382
  return B64_DIGITS[value];
5997
5383
  }
5998
5384
 
5999
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
5385
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
6000
5386
  var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
6001
5387
  var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
6002
5388
  var _INDENT_WITH = " ";
@@ -6484,7 +5870,7 @@ function _createIndent(count) {
6484
5870
  return res;
6485
5871
  }
6486
5872
 
6487
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
5873
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
6488
5874
  function typeWithParameters(type, numParams) {
6489
5875
  if (numParams === 0) {
6490
5876
  return expressionType(type);
@@ -6542,7 +5928,7 @@ function generateForwardRef(expr) {
6542
5928
  return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
6543
5929
  }
6544
5930
 
6545
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
5931
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
6546
5932
  var R3FactoryDelegateType;
6547
5933
  (function(R3FactoryDelegateType2) {
6548
5934
  R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
@@ -6687,7 +6073,7 @@ function getInjectFn(target) {
6687
6073
  }
6688
6074
  }
6689
6075
 
6690
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6076
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
6691
6077
  var ParserError = class {
6692
6078
  constructor(message, input, errLocation, ctxLocation) {
6693
6079
  this.input = input;
@@ -7125,7 +6511,7 @@ var BoundElementProperty = class {
7125
6511
  }
7126
6512
  };
7127
6513
 
7128
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
6514
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
7129
6515
  var TagContentType;
7130
6516
  (function(TagContentType2) {
7131
6517
  TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
@@ -7162,7 +6548,7 @@ function mergeNsAndName(prefix, localName) {
7162
6548
  return prefix ? `:${prefix}:${localName}` : localName;
7163
6549
  }
7164
6550
 
7165
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
6551
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
7166
6552
  var Comment = class {
7167
6553
  constructor(value, sourceSpan) {
7168
6554
  this.value = value;
@@ -7632,7 +7018,7 @@ function visitAll(visitor, nodes) {
7632
7018
  return result;
7633
7019
  }
7634
7020
 
7635
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7021
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
7636
7022
  var Message = class {
7637
7023
  constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
7638
7024
  this.nodes = nodes;
@@ -7823,7 +7209,7 @@ var LocalizeMessageStringVisitor = class {
7823
7209
  }
7824
7210
  };
7825
7211
 
7826
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7212
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
7827
7213
  var Serializer = class {
7828
7214
  createNameMapper(message) {
7829
7215
  return null;
@@ -7880,7 +7266,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
7880
7266
  }
7881
7267
  };
7882
7268
 
7883
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7269
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
7884
7270
  var _Visitor = class {
7885
7271
  visitTag(tag) {
7886
7272
  const strAttrs = this._serializeAttributes(tag.attrs);
@@ -7968,7 +7354,7 @@ function escapeXml(text2) {
7968
7354
  return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
7969
7355
  }
7970
7356
 
7971
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7357
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
7972
7358
  var _XMB_HANDLER = "angular";
7973
7359
  var _MESSAGES_TAG = "messagebundle";
7974
7360
  var _MESSAGE_TAG = "msg";
@@ -8130,7 +7516,7 @@ function toPublicName(internalName) {
8130
7516
  return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
8131
7517
  }
8132
7518
 
8133
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
7519
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
8134
7520
  var I18N_ATTR = "i18n";
8135
7521
  var I18N_ATTR_PREFIX = "i18n-";
8136
7522
  var I18N_ICU_VAR_PREFIX = "VAR_";
@@ -8170,7 +7556,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
8170
7556
  return postfix ? `${raw}_${postfix}` : raw;
8171
7557
  }
8172
7558
 
8173
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
7559
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
8174
7560
  var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
8175
7561
  var TEMPORARY_NAME = "_t";
8176
7562
  var CONTEXT_NAME = "ctx";
@@ -8297,7 +7683,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
8297
7683
  return attributesMap;
8298
7684
  }
8299
7685
 
8300
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
7686
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
8301
7687
  function compileInjectable(meta, resolveForwardRefs) {
8302
7688
  let result = null;
8303
7689
  const factoryMeta = {
@@ -8384,7 +7770,7 @@ function createFactoryFunction(type) {
8384
7770
  return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
8385
7771
  }
8386
7772
 
8387
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
7773
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
8388
7774
  var UNUSABLE_INTERPOLATION_REGEXPS = [
8389
7775
  /@/,
8390
7776
  /^\s*$/,
@@ -8407,7 +7793,7 @@ function assertInterpolationSymbols(identifier, value) {
8407
7793
  }
8408
7794
  }
8409
7795
 
8410
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
7796
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
8411
7797
  var InterpolationConfig = class {
8412
7798
  static fromArray(markers) {
8413
7799
  if (!markers) {
@@ -8424,7 +7810,7 @@ var InterpolationConfig = class {
8424
7810
  var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
8425
7811
  var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
8426
7812
 
8427
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
7813
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
8428
7814
  var $EOF = 0;
8429
7815
  var $BSPACE = 8;
8430
7816
  var $TAB = 9;
@@ -8506,7 +7892,7 @@ function isQuote(code) {
8506
7892
  return code === $SQ || code === $DQ || code === $BT;
8507
7893
  }
8508
7894
 
8509
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
7895
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
8510
7896
  var ParseLocation = class {
8511
7897
  constructor(file, offset, line, col) {
8512
7898
  this.file = file;
@@ -8653,7 +8039,7 @@ function sanitizeIdentifier(name) {
8653
8039
  return name.replace(/\W/g, "_");
8654
8040
  }
8655
8041
 
8656
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8042
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
8657
8043
  var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
8658
8044
  var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8659
8045
  constructor() {
@@ -8746,7 +8132,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
8746
8132
  }
8747
8133
  };
8748
8134
 
8749
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8135
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
8750
8136
  var policy;
8751
8137
  function getPolicy() {
8752
8138
  if (policy === void 0) {
@@ -8784,7 +8170,7 @@ function newTrustedFunctionForJIT(...args) {
8784
8170
  return fn2.bind(_global);
8785
8171
  }
8786
8172
 
8787
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8173
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
8788
8174
  var JitEvaluator = class {
8789
8175
  evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
8790
8176
  const converter = new JitEmitterVisitor(refResolver);
@@ -8872,7 +8258,7 @@ function isUseStrictStatement(statement) {
8872
8258
  return statement.isEquivalent(literal("use strict").toStmt());
8873
8259
  }
8874
8260
 
8875
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8261
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
8876
8262
  function compileInjector(meta) {
8877
8263
  const definitionMap = new DefinitionMap();
8878
8264
  if (meta.providers !== null) {
@@ -8889,7 +8275,7 @@ function createInjectorType(meta) {
8889
8275
  return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
8890
8276
  }
8891
8277
 
8892
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8278
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
8893
8279
  var R3JitReflector = class {
8894
8280
  constructor(context) {
8895
8281
  this.context = context;
@@ -8905,7 +8291,7 @@ var R3JitReflector = class {
8905
8291
  }
8906
8292
  };
8907
8293
 
8908
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8294
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
8909
8295
  var R3SelectorScopeMode;
8910
8296
  (function(R3SelectorScopeMode2) {
8911
8297
  R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
@@ -9040,7 +8426,7 @@ function tupleOfTypes(types) {
9040
8426
  return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
9041
8427
  }
9042
8428
 
9043
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
8429
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
9044
8430
  function compilePipeFromMetadata(metadata) {
9045
8431
  const definitionMapValues = [];
9046
8432
  definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
@@ -9061,7 +8447,7 @@ function createPipeType(metadata) {
9061
8447
  ]));
9062
8448
  }
9063
8449
 
9064
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
8450
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
9065
8451
  var R3TemplateDependencyKind;
9066
8452
  (function(R3TemplateDependencyKind2) {
9067
8453
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
@@ -9069,7 +8455,7 @@ var R3TemplateDependencyKind;
9069
8455
  R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
9070
8456
  })(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
9071
8457
 
9072
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
8458
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
9073
8459
  var animationKeywords = /* @__PURE__ */ new Set([
9074
8460
  "inherit",
9075
8461
  "initial",
@@ -9549,7 +8935,7 @@ function repeatGroups(groups, multiples) {
9549
8935
  }
9550
8936
  }
9551
8937
 
9552
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
8938
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
9553
8939
  var OpKind;
9554
8940
  (function(OpKind2) {
9555
8941
  OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
@@ -9703,7 +9089,7 @@ var TemplateKind;
9703
9089
  TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
9704
9090
  })(TemplateKind || (TemplateKind = {}));
9705
9091
 
9706
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9092
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
9707
9093
  var ConsumesSlot = Symbol("ConsumesSlot");
9708
9094
  var DependsOnSlotContext = Symbol("DependsOnSlotContext");
9709
9095
  var ConsumesVarsTrait = Symbol("ConsumesVars");
@@ -9731,7 +9117,7 @@ function hasUsesVarOffsetTrait(expr) {
9731
9117
  return expr[UsesVarOffset] === true;
9732
9118
  }
9733
9119
 
9734
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9120
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
9735
9121
  function createStatementOp(statement) {
9736
9122
  return __spreadValues({
9737
9123
  kind: OpKind.Statement,
@@ -9753,7 +9139,7 @@ var NEW_OP = {
9753
9139
  next: null
9754
9140
  };
9755
9141
 
9756
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9142
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
9757
9143
  function createInterpolateTextOp(xref, interpolation, sourceSpan) {
9758
9144
  return __spreadValues(__spreadValues(__spreadValues({
9759
9145
  kind: OpKind.InterpolateText,
@@ -9933,7 +9319,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
9933
9319
  }, NEW_OP);
9934
9320
  }
9935
9321
 
9936
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9322
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
9937
9323
  var _a;
9938
9324
  var _b;
9939
9325
  var _c;
@@ -10795,7 +10181,7 @@ function isStringLiteral(expr) {
10795
10181
  return expr instanceof LiteralExpr && typeof expr.value === "string";
10796
10182
  }
10797
10183
 
10798
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10184
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
10799
10185
  var _OpList = class {
10800
10186
  constructor() {
10801
10187
  this.debugListId = _OpList.nextListId++;
@@ -10986,14 +10372,14 @@ var OpList = _OpList;
10986
10372
  _OpList.nextListId = 0;
10987
10373
  })();
10988
10374
 
10989
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10375
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
10990
10376
  var SlotHandle = class {
10991
10377
  constructor() {
10992
10378
  this.slot = null;
10993
10379
  }
10994
10380
  };
10995
10381
 
10996
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10382
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
10997
10383
  var elementContainerOpKinds = /* @__PURE__ */ new Set([
10998
10384
  OpKind.Element,
10999
10385
  OpKind.ElementStart,
@@ -11297,7 +10683,7 @@ function createI18nAttributesOp(xref, handle, target) {
11297
10683
  }, NEW_OP), TRAIT_CONSUMES_SLOT);
11298
10684
  }
11299
10685
 
11300
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
10686
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
11301
10687
  function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
11302
10688
  return __spreadValues(__spreadValues({
11303
10689
  kind: OpKind.HostProperty,
@@ -11311,10 +10697,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
11311
10697
  }, TRAIT_CONSUMES_VARS), NEW_OP);
11312
10698
  }
11313
10699
 
11314
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
10700
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
11315
10701
  var CTX_REF = "CTX_REF_MARKER";
11316
10702
 
11317
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
10703
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
11318
10704
  var CompilationJobKind;
11319
10705
  (function(CompilationJobKind2) {
11320
10706
  CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
@@ -11422,7 +10808,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
11422
10808
  }
11423
10809
  };
11424
10810
 
11425
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
10811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
11426
10812
  function deleteAnyCasts(job) {
11427
10813
  for (const unit of job.units) {
11428
10814
  for (const op of unit.ops()) {
@@ -11440,7 +10826,7 @@ function removeAnys(e) {
11440
10826
  return e;
11441
10827
  }
11442
10828
 
11443
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
10829
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
11444
10830
  function applyI18nExpressions(job) {
11445
10831
  const i18nContexts = /* @__PURE__ */ new Map();
11446
10832
  for (const unit of job.units) {
@@ -11483,7 +10869,7 @@ function needsApplication(i18nContexts, op) {
11483
10869
  return false;
11484
10870
  }
11485
10871
 
11486
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
10872
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
11487
10873
  function assignI18nSlotDependencies(job) {
11488
10874
  for (const unit of job.units) {
11489
10875
  let updateOp = unit.update.head;
@@ -11528,7 +10914,7 @@ function assignI18nSlotDependencies(job) {
11528
10914
  }
11529
10915
  }
11530
10916
 
11531
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
10917
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
11532
10918
  function createOpXrefMap(unit) {
11533
10919
  const map = /* @__PURE__ */ new Map();
11534
10920
  for (const op of unit.create) {
@@ -11543,7 +10929,7 @@ function createOpXrefMap(unit) {
11543
10929
  return map;
11544
10930
  }
11545
10931
 
11546
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
10932
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
11547
10933
  function extractAttributes(job) {
11548
10934
  for (const unit of job.units) {
11549
10935
  const elements = createOpXrefMap(unit);
@@ -11672,7 +11058,7 @@ function extractAttributeOp(unit, op, elements) {
11672
11058
  }
11673
11059
  }
11674
11060
 
11675
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11061
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
11676
11062
  function lookupElement2(elements, xref) {
11677
11063
  const el = elements.get(xref);
11678
11064
  if (el === void 0) {
@@ -11729,7 +11115,7 @@ function specializeBindings(job) {
11729
11115
  }
11730
11116
  }
11731
11117
 
11732
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11118
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
11733
11119
  var CHAINABLE = /* @__PURE__ */ new Set([
11734
11120
  Identifiers.attribute,
11735
11121
  Identifiers.classProp,
@@ -11797,7 +11183,7 @@ function chainOperationsInList(opList) {
11797
11183
  }
11798
11184
  }
11799
11185
 
11800
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11186
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
11801
11187
  function collapseSingletonInterpolations(job) {
11802
11188
  for (const unit of job.units) {
11803
11189
  for (const op of unit.update) {
@@ -11809,7 +11195,7 @@ function collapseSingletonInterpolations(job) {
11809
11195
  }
11810
11196
  }
11811
11197
 
11812
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11198
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
11813
11199
  function generateConditionalExpressions(job) {
11814
11200
  for (const unit of job.units) {
11815
11201
  for (const op of unit.ops()) {
@@ -11846,7 +11232,7 @@ function generateConditionalExpressions(job) {
11846
11232
  }
11847
11233
  }
11848
11234
 
11849
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11235
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
11850
11236
  var BINARY_OPERATORS = /* @__PURE__ */ new Map([
11851
11237
  ["&&", BinaryOperator.And],
11852
11238
  [">", BinaryOperator.Bigger],
@@ -11903,7 +11289,7 @@ function literalOrArrayLiteral(value) {
11903
11289
  return literal(value);
11904
11290
  }
11905
11291
 
11906
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
11907
11293
  function collectElementConsts(job) {
11908
11294
  const allElementAttributes = /* @__PURE__ */ new Map();
11909
11295
  for (const unit of job.units) {
@@ -12072,7 +11458,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
12072
11458
  return literalArr(attrArray);
12073
11459
  }
12074
11460
 
12075
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
11461
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
12076
11462
  function convertI18nBindings(job) {
12077
11463
  const i18nAttributesByElem = /* @__PURE__ */ new Map();
12078
11464
  for (const unit of job.units) {
@@ -12113,7 +11499,7 @@ function convertI18nBindings(job) {
12113
11499
  }
12114
11500
  }
12115
11501
 
12116
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
11502
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
12117
11503
  function resolveDeferDepsFns(job) {
12118
11504
  var _a2;
12119
11505
  for (const unit of job.units) {
@@ -12138,7 +11524,7 @@ function resolveDeferDepsFns(job) {
12138
11524
  }
12139
11525
  }
12140
11526
 
12141
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
11527
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
12142
11528
  function createI18nContexts(job) {
12143
11529
  const attrContextByMessage = /* @__PURE__ */ new Map();
12144
11530
  for (const unit of job.units) {
@@ -12216,7 +11602,7 @@ function createI18nContexts(job) {
12216
11602
  }
12217
11603
  }
12218
11604
 
12219
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
11605
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
12220
11606
  function deduplicateTextBindings(job) {
12221
11607
  const seen = /* @__PURE__ */ new Map();
12222
11608
  for (const unit of job.units) {
@@ -12238,7 +11624,7 @@ function deduplicateTextBindings(job) {
12238
11624
  }
12239
11625
  }
12240
11626
 
12241
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
11627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
12242
11628
  function configureDeferInstructions(job) {
12243
11629
  for (const unit of job.units) {
12244
11630
  for (const op of unit.create) {
@@ -12255,7 +11641,7 @@ function configureDeferInstructions(job) {
12255
11641
  }
12256
11642
  }
12257
11643
 
12258
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
11644
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
12259
11645
  function resolveDeferTargetNames(job) {
12260
11646
  const scopes = /* @__PURE__ */ new Map();
12261
11647
  function getScopeForView2(view) {
@@ -12349,7 +11735,7 @@ var Scope = class {
12349
11735
  }
12350
11736
  };
12351
11737
 
12352
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
11738
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
12353
11739
  var REPLACEMENTS = /* @__PURE__ */ new Map([
12354
11740
  [OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
12355
11741
  [OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
@@ -12376,7 +11762,7 @@ function collapseEmptyInstructions(job) {
12376
11762
  }
12377
11763
  }
12378
11764
 
12379
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
11765
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
12380
11766
  function expandSafeReads(job) {
12381
11767
  for (const unit of job.units) {
12382
11768
  for (const op of unit.ops()) {
@@ -12512,7 +11898,7 @@ function ternaryTransform(e) {
12512
11898
  return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
12513
11899
  }
12514
11900
 
12515
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
11901
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
12516
11902
  var ESCAPE = "\uFFFD";
12517
11903
  var ELEMENT_MARKER = "#";
12518
11904
  var TEMPLATE_MARKER = "*";
@@ -12648,7 +12034,7 @@ function formatValue(value) {
12648
12034
  return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
12649
12035
  }
12650
12036
 
12651
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12037
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
12652
12038
  function generateAdvance(job) {
12653
12039
  for (const unit of job.units) {
12654
12040
  const slotMap = /* @__PURE__ */ new Map();
@@ -12680,7 +12066,7 @@ function generateAdvance(job) {
12680
12066
  }
12681
12067
  }
12682
12068
 
12683
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12069
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
12684
12070
  function generateProjectionDefs(job) {
12685
12071
  const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
12686
12072
  const selectors = [];
@@ -12704,7 +12090,7 @@ function generateProjectionDefs(job) {
12704
12090
  }
12705
12091
  }
12706
12092
 
12707
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12093
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
12708
12094
  function generateVariables(job) {
12709
12095
  recursivelyProcessView(job.root, null);
12710
12096
  }
@@ -12803,7 +12189,7 @@ function generateVariablesInScopeForView(view, scope) {
12803
12189
  return newOps;
12804
12190
  }
12805
12191
 
12806
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12192
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
12807
12193
  function collectConstExpressions(job) {
12808
12194
  for (const unit of job.units) {
12809
12195
  for (const op of unit.ops()) {
@@ -12817,7 +12203,7 @@ function collectConstExpressions(job) {
12817
12203
  }
12818
12204
  }
12819
12205
 
12820
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12206
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
12821
12207
  var STYLE_DOT = "style.";
12822
12208
  var CLASS_DOT = "class.";
12823
12209
  var STYLE_BANG = "style!";
@@ -12875,7 +12261,7 @@ function parseProperty(name) {
12875
12261
  return { property: property2, suffix };
12876
12262
  }
12877
12263
 
12878
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12264
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
12879
12265
  function mapLiteral(obj, quoted = false) {
12880
12266
  return literalMap(Object.keys(obj).map((key) => ({
12881
12267
  key,
@@ -12884,7 +12270,7 @@ function mapLiteral(obj, quoted = false) {
12884
12270
  })));
12885
12271
  }
12886
12272
 
12887
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12273
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
12888
12274
  var IcuSerializerVisitor = class {
12889
12275
  visitText(text2) {
12890
12276
  return text2.value;
@@ -12918,7 +12304,7 @@ function serializeIcuNode(icu) {
12918
12304
  return icu.visit(serializer);
12919
12305
  }
12920
12306
 
12921
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12307
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
12922
12308
  var TokenType;
12923
12309
  (function(TokenType2) {
12924
12310
  TokenType2[TokenType2["Character"] = 0] = "Character";
@@ -13279,7 +12665,7 @@ function parseIntAutoRadix(text2) {
13279
12665
  return result;
13280
12666
  }
13281
12667
 
13282
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
12668
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
13283
12669
  var SplitInterpolation = class {
13284
12670
  constructor(strings, expressions, offsets) {
13285
12671
  this.strings = strings;
@@ -14161,7 +13547,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
14161
13547
  return offsetMap;
14162
13548
  }
14163
13549
 
14164
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
13550
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
14165
13551
  var NodeWithI18n = class {
14166
13552
  constructor(sourceSpan, i18n2) {
14167
13553
  this.sourceSpan = sourceSpan;
@@ -14284,7 +13670,7 @@ function visitAll2(visitor, nodes, context = null) {
14284
13670
  return result;
14285
13671
  }
14286
13672
 
14287
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
13673
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
14288
13674
  var _SECURITY_SCHEMA;
14289
13675
  function SECURITY_SCHEMA() {
14290
13676
  if (!_SECURITY_SCHEMA) {
@@ -14345,11 +13731,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
14345
13731
  return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
14346
13732
  }
14347
13733
 
14348
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
13734
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
14349
13735
  var ElementSchemaRegistry = class {
14350
13736
  };
14351
13737
 
14352
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
13738
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
14353
13739
  var BOOLEAN = "boolean";
14354
13740
  var NUMBER = "number";
14355
13741
  var STRING = "string";
@@ -14732,7 +14118,7 @@ function _isPixelDimensionStyle(prop) {
14732
14118
  }
14733
14119
  }
14734
14120
 
14735
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14121
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
14736
14122
  var HtmlTagDefinition = class {
14737
14123
  constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
14738
14124
  this.closedByChildren = {};
@@ -14868,7 +14254,7 @@ function getHtmlTagDefinition(tagName) {
14868
14254
  return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
14869
14255
  }
14870
14256
 
14871
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14257
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
14872
14258
  var TAG_TO_PLACEHOLDER_NAMES = {
14873
14259
  "A": "LINK",
14874
14260
  "B": "BOLD_TEXT",
@@ -14990,7 +14376,7 @@ var PlaceholderRegistry = class {
14990
14376
  }
14991
14377
  };
14992
14378
 
14993
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14379
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
14994
14380
  var _expParser = new Parser(new Lexer());
14995
14381
  function createI18nMessageFactory(interpolationConfig, containerBlocks) {
14996
14382
  const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
@@ -15172,14 +14558,14 @@ function extractPlaceholderName(input) {
15172
14558
  return input.split(_CUSTOM_PH_EXP)[2];
15173
14559
  }
15174
14560
 
15175
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
14561
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
15176
14562
  var I18nError = class extends ParseError {
15177
14563
  constructor(span, msg) {
15178
14564
  super(span, msg);
15179
14565
  }
15180
14566
  };
15181
14567
 
15182
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
14568
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
15183
14569
  var NAMED_ENTITIES = {
15184
14570
  "AElig": "\xC6",
15185
14571
  "AMP": "&",
@@ -17310,7 +16696,7 @@ var NAMED_ENTITIES = {
17310
16696
  var NGSP_UNICODE = "\uE500";
17311
16697
  NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
17312
16698
 
17313
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
16699
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
17314
16700
  var TokenError = class extends ParseError {
17315
16701
  constructor(errorMsg, tokenType, span) {
17316
16702
  super(span, errorMsg);
@@ -18300,7 +17686,7 @@ var CursorError = class {
18300
17686
  }
18301
17687
  };
18302
17688
 
18303
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
17689
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
18304
17690
  var TreeError = class extends ParseError {
18305
17691
  static create(elementName, span, msg) {
18306
17692
  return new TreeError(elementName, span, msg);
@@ -18728,7 +18114,7 @@ function decodeEntity(match, entity) {
18728
18114
  return match;
18729
18115
  }
18730
18116
 
18731
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18117
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
18732
18118
  var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
18733
18119
  "iframe|srcdoc",
18734
18120
  "*|innerhtml",
@@ -18743,7 +18129,7 @@ function isTrustedTypesSink(tagName, propName) {
18743
18129
  return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
18744
18130
  }
18745
18131
 
18746
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18132
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
18747
18133
  var setI18nRefs = (htmlNode, i18nNode) => {
18748
18134
  if (htmlNode instanceof NodeWithI18n) {
18749
18135
  if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
@@ -18903,7 +18289,7 @@ function i18nMetaToJSDoc(meta) {
18903
18289
  return jsDocComment(tags);
18904
18290
  }
18905
18291
 
18906
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
18907
18293
  var GOOG_GET_MSG = "goog.getMsg";
18908
18294
  function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
18909
18295
  const messageString = serializeI18nMessageForGetMsg(message);
@@ -18954,7 +18340,7 @@ function serializeI18nMessageForGetMsg(message) {
18954
18340
  return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
18955
18341
  }
18956
18342
 
18957
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18343
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
18958
18344
  function createLocalizeStatements(variable2, message, params) {
18959
18345
  const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
18960
18346
  const sourceSpan = getSourceSpan(message);
@@ -19043,7 +18429,7 @@ function createEmptyMessagePart(location) {
19043
18429
  return new LiteralPiece("", new ParseSourceSpan(location, location));
19044
18430
  }
19045
18431
 
19046
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
18432
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
19047
18433
  var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
19048
18434
  var TRANSLATION_VAR_PREFIX = "i18n_";
19049
18435
  var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
@@ -19214,7 +18600,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
19214
18600
  return variable(name);
19215
18601
  }
19216
18602
 
19217
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
18603
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
19218
18604
  function convertI18nText(job) {
19219
18605
  var _a2, _b2, _c2;
19220
18606
  for (const unit of job.units) {
@@ -19284,7 +18670,7 @@ function convertI18nText(job) {
19284
18670
  }
19285
18671
  }
19286
18672
 
19287
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
18673
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
19288
18674
  function liftLocalRefs(job) {
19289
18675
  for (const unit of job.units) {
19290
18676
  for (const op of unit.create) {
@@ -19314,7 +18700,7 @@ function serializeLocalRefs(refs) {
19314
18700
  return literalArr(constRefs);
19315
18701
  }
19316
18702
 
19317
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
18703
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
19318
18704
  function emitNamespaceChanges(job) {
19319
18705
  for (const unit of job.units) {
19320
18706
  let activeNamespace = Namespace.HTML;
@@ -19330,7 +18716,7 @@ function emitNamespaceChanges(job) {
19330
18716
  }
19331
18717
  }
19332
18718
 
19333
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
18719
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
19334
18720
  function parse(value) {
19335
18721
  const styles = [];
19336
18722
  let i = 0;
@@ -19424,7 +18810,7 @@ function parseExtractedStyles(job) {
19424
18810
  }
19425
18811
  }
19426
18812
 
19427
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
18813
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
19428
18814
  function nameFunctionsAndVariables(job) {
19429
18815
  addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
19430
18816
  }
@@ -19568,7 +18954,7 @@ function stripImportant(name) {
19568
18954
  return name;
19569
18955
  }
19570
18956
 
19571
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
18957
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
19572
18958
  function mergeNextContextExpressions(job) {
19573
18959
  for (const unit of job.units) {
19574
18960
  for (const op of unit.create) {
@@ -19614,7 +19000,7 @@ function mergeNextContextsInOps(ops) {
19614
19000
  }
19615
19001
  }
19616
19002
 
19617
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19003
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
19618
19004
  var CONTAINER_TAG = "ng-container";
19619
19005
  function generateNgContainerOps(job) {
19620
19006
  for (const unit of job.units) {
@@ -19631,7 +19017,7 @@ function generateNgContainerOps(job) {
19631
19017
  }
19632
19018
  }
19633
19019
 
19634
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19020
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
19635
19021
  function lookupElement3(elements, xref) {
19636
19022
  const el = elements.get(xref);
19637
19023
  if (el === void 0) {
@@ -19661,7 +19047,7 @@ function disableBindings(job) {
19661
19047
  }
19662
19048
  }
19663
19049
 
19664
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19050
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
19665
19051
  function generateNullishCoalesceExpressions(job) {
19666
19052
  for (const unit of job.units) {
19667
19053
  for (const op of unit.ops()) {
@@ -19677,7 +19063,7 @@ function generateNullishCoalesceExpressions(job) {
19677
19063
  }
19678
19064
  }
19679
19065
 
19680
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19066
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
19681
19067
  function kindTest(kind) {
19682
19068
  return (op) => op.kind === kind;
19683
19069
  }
@@ -19767,7 +19153,7 @@ function keepLast(ops) {
19767
19153
  return ops.slice(ops.length - 1);
19768
19154
  }
19769
19155
 
19770
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19156
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
19771
19157
  function removeContentSelectors(job) {
19772
19158
  for (const unit of job.units) {
19773
19159
  const elements = createOpXrefMap(unit);
@@ -19794,7 +19180,7 @@ function lookupInXrefMap(map, xref) {
19794
19180
  return el;
19795
19181
  }
19796
19182
 
19797
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19183
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
19798
19184
  function createPipes(job) {
19799
19185
  for (const unit of job.units) {
19800
19186
  processPipeBindingsInView(unit);
@@ -19842,7 +19228,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
19842
19228
  throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
19843
19229
  }
19844
19230
 
19845
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19231
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
19846
19232
  function createVariadicPipes(job) {
19847
19233
  for (const unit of job.units) {
19848
19234
  for (const op of unit.update) {
@@ -19859,7 +19245,7 @@ function createVariadicPipes(job) {
19859
19245
  }
19860
19246
  }
19861
19247
 
19862
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19248
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
19863
19249
  function propagateI18nBlocks(job) {
19864
19250
  propagateI18nBlocksToTemplates(job.root, 0);
19865
19251
  }
@@ -19913,7 +19299,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
19913
19299
  }
19914
19300
  }
19915
19301
 
19916
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19302
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
19917
19303
  function extractPureFunctions(job) {
19918
19304
  for (const view of job.units) {
19919
19305
  for (const op of view.ops()) {
@@ -19955,7 +19341,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
19955
19341
  }
19956
19342
  };
19957
19343
 
19958
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19344
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
19959
19345
  function generatePureLiteralStructures(job) {
19960
19346
  for (const unit of job.units) {
19961
19347
  for (const op of unit.update) {
@@ -20002,7 +19388,7 @@ function transformLiteralMap(expr) {
20002
19388
  return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
20003
19389
  }
20004
19390
 
20005
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
19391
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
20006
19392
  function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
20007
19393
  return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
20008
19394
  }
@@ -20525,7 +19911,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
20525
19911
  return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
20526
19912
  }
20527
19913
 
20528
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
19914
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
20529
19915
  var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
20530
19916
  ["window", Identifiers.resolveWindow],
20531
19917
  ["document", Identifiers.resolveDocument],
@@ -20881,7 +20267,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
20881
20267
  return fn(params, handlerStmts, void 0, void 0, name);
20882
20268
  }
20883
20269
 
20884
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20270
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
20885
20271
  function removeEmptyBindings(job) {
20886
20272
  for (const unit of job.units) {
20887
20273
  for (const op of unit.update) {
@@ -20902,7 +20288,7 @@ function removeEmptyBindings(job) {
20902
20288
  }
20903
20289
  }
20904
20290
 
20905
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20291
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
20906
20292
  function removeI18nContexts(job) {
20907
20293
  for (const unit of job.units) {
20908
20294
  for (const op of unit.create) {
@@ -20918,7 +20304,7 @@ function removeI18nContexts(job) {
20918
20304
  }
20919
20305
  }
20920
20306
 
20921
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20307
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
20922
20308
  function removeUnusedI18nAttributesOps(job) {
20923
20309
  for (const unit of job.units) {
20924
20310
  const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
@@ -20940,7 +20326,7 @@ function removeUnusedI18nAttributesOps(job) {
20940
20326
  }
20941
20327
  }
20942
20328
 
20943
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20329
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
20944
20330
  function resolveContexts(job) {
20945
20331
  for (const unit of job.units) {
20946
20332
  processLexicalScope(unit, unit.create);
@@ -20982,7 +20368,7 @@ function processLexicalScope(view, ops) {
20982
20368
  }
20983
20369
  }
20984
20370
 
20985
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20371
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
20986
20372
  function resolveDollarEvent(job) {
20987
20373
  for (const unit of job.units) {
20988
20374
  transformDollarEvent(unit.create);
@@ -21005,7 +20391,7 @@ function transformDollarEvent(ops) {
21005
20391
  }
21006
20392
  }
21007
20393
 
21008
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
20394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
21009
20395
  function resolveI18nElementPlaceholders(job) {
21010
20396
  const i18nContexts = /* @__PURE__ */ new Map();
21011
20397
  const elements = /* @__PURE__ */ new Map();
@@ -21184,7 +20570,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
21184
20570
  params.set(placeholder, values);
21185
20571
  }
21186
20572
 
21187
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
20573
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
21188
20574
  function resolveI18nExpressionPlaceholders(job) {
21189
20575
  var _a2;
21190
20576
  const subTemplateIndices = /* @__PURE__ */ new Map();
@@ -21237,7 +20623,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
21237
20623
  }
21238
20624
  }
21239
20625
 
21240
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
20626
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
21241
20627
  function resolveNames(job) {
21242
20628
  for (const unit of job.units) {
21243
20629
  processLexicalScope2(unit, unit.create, null);
@@ -21302,7 +20688,7 @@ function processLexicalScope2(unit, ops, savedView) {
21302
20688
  }
21303
20689
  }
21304
20690
 
21305
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
20691
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
21306
20692
  var sanitizerFns = /* @__PURE__ */ new Map([
21307
20693
  [SecurityContext.HTML, Identifiers.sanitizeHtml],
21308
20694
  [SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
@@ -21372,7 +20758,7 @@ function getOnlySecurityContext(securityContext) {
21372
20758
  return securityContext;
21373
20759
  }
21374
20760
 
21375
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
20761
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
21376
20762
  function transformTwoWayBindingSet(job) {
21377
20763
  for (const unit of job.units) {
21378
20764
  for (const op of unit.create) {
@@ -21395,7 +20781,7 @@ function transformTwoWayBindingSet(job) {
21395
20781
  }
21396
20782
  }
21397
20783
 
21398
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
20784
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
21399
20785
  function saveAndRestoreView(job) {
21400
20786
  for (const unit of job.units) {
21401
20787
  unit.create.prepend([
@@ -21440,7 +20826,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
21440
20826
  }
21441
20827
  }
21442
20828
 
21443
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
20829
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
21444
20830
  function allocateSlots(job) {
21445
20831
  const slotMap = /* @__PURE__ */ new Map();
21446
20832
  for (const unit of job.units) {
@@ -21465,7 +20851,7 @@ function allocateSlots(job) {
21465
20851
  }
21466
20852
  }
21467
20853
 
21468
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
20854
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
21469
20855
  function specializeStyleBindings(job) {
21470
20856
  for (const unit of job.units) {
21471
20857
  for (const op of unit.update) {
@@ -21495,7 +20881,7 @@ function specializeStyleBindings(job) {
21495
20881
  }
21496
20882
  }
21497
20883
 
21498
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
20884
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
21499
20885
  function generateTemporaryVariables(job) {
21500
20886
  for (const unit of job.units) {
21501
20887
  unit.create.prepend(generateTemporaries(unit.create));
@@ -21553,7 +20939,7 @@ function assignName(names, expr) {
21553
20939
  expr.name = name;
21554
20940
  }
21555
20941
 
21556
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
20942
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
21557
20943
  function generateTrackFns(job) {
21558
20944
  for (const unit of job.units) {
21559
20945
  for (const op of unit.create) {
@@ -21586,7 +20972,7 @@ function generateTrackFns(job) {
21586
20972
  }
21587
20973
  }
21588
20974
 
21589
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
20975
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
21590
20976
  function optimizeTrackFns(job) {
21591
20977
  for (const unit of job.units) {
21592
20978
  for (const op of unit.create) {
@@ -21636,7 +21022,7 @@ function isTrackByFunctionCall(rootView, expr) {
21636
21022
  return true;
21637
21023
  }
21638
21024
 
21639
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21025
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
21640
21026
  function generateTrackVariables(job) {
21641
21027
  for (const unit of job.units) {
21642
21028
  for (const op of unit.create) {
@@ -21657,7 +21043,7 @@ function generateTrackVariables(job) {
21657
21043
  }
21658
21044
  }
21659
21045
 
21660
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
21661
21047
  function countVariables(job) {
21662
21048
  for (const unit of job.units) {
21663
21049
  let varCount = 0;
@@ -21767,7 +21153,7 @@ function isSingletonInterpolation(expr) {
21767
21153
  return true;
21768
21154
  }
21769
21155
 
21770
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21156
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
21771
21157
  function optimizeVariables(job) {
21772
21158
  for (const unit of job.units) {
21773
21159
  inlineAlwaysInlineVariables(unit.create);
@@ -22016,7 +21402,7 @@ function allowConservativeInlining(decl, target) {
22016
21402
  }
22017
21403
  }
22018
21404
 
22019
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
21405
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
22020
21406
  function wrapI18nIcus(job) {
22021
21407
  for (const unit of job.units) {
22022
21408
  let currentI18nOp = null;
@@ -22046,7 +21432,7 @@ function wrapI18nIcus(job) {
22046
21432
  }
22047
21433
  }
22048
21434
 
22049
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
21435
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
22050
21436
  var phases = [
22051
21437
  { kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
22052
21438
  { kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
@@ -22200,7 +21586,7 @@ function emitHostBindingFunction(job) {
22200
21586
  );
22201
21587
  }
22202
21588
 
22203
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
21589
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
22204
21590
  var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
22205
21591
  var domSchema = new DomElementSchemaRegistry();
22206
21592
  var NG_TEMPLATE_TAG_NAME = "ng-template";
@@ -22952,7 +22338,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
22952
22338
  return null;
22953
22339
  }
22954
22340
 
22955
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22341
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
22956
22342
  function renderFlagCheckIfStmt(flags, statements) {
22957
22343
  return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
22958
22344
  }
@@ -23072,7 +22458,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
23072
22458
  ], INFERRED_TYPE, null, contentQueriesFnName);
23073
22459
  }
23074
22460
 
23075
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
22461
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
23076
22462
  var HtmlParser = class extends Parser2 {
23077
22463
  constructor() {
23078
22464
  super(getHtmlTagDefinition);
@@ -23082,7 +22468,7 @@ var HtmlParser = class extends Parser2 {
23082
22468
  }
23083
22469
  };
23084
22470
 
23085
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
22471
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
23086
22472
  var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
23087
22473
  var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
23088
22474
  var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
@@ -23151,7 +22537,7 @@ function visitAllWithSiblings(visitor, nodes) {
23151
22537
  return result;
23152
22538
  }
23153
22539
 
23154
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
22540
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
23155
22541
  var PROPERTY_PARTS_SEPARATOR = ".";
23156
22542
  var ATTRIBUTE_PREFIX = "attr";
23157
22543
  var CLASS_PREFIX = "class";
@@ -23505,7 +22891,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
23505
22891
  return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
23506
22892
  }
23507
22893
 
23508
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
22894
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
23509
22895
  function isStyleUrlResolvable(url) {
23510
22896
  if (url == null || url.length === 0 || url[0] == "/")
23511
22897
  return false;
@@ -23514,7 +22900,7 @@ function isStyleUrlResolvable(url) {
23514
22900
  }
23515
22901
  var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
23516
22902
 
23517
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
22903
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
23518
22904
  var NG_CONTENT_SELECT_ATTR = "select";
23519
22905
  var LINK_ELEMENT = "link";
23520
22906
  var LINK_STYLE_REL_ATTR = "rel";
@@ -23584,7 +22970,7 @@ function normalizeNgContentSelect(selectAttr) {
23584
22970
  return selectAttr;
23585
22971
  }
23586
22972
 
23587
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
22973
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
23588
22974
  var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
23589
22975
  var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
23590
22976
  var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
@@ -23907,7 +23293,7 @@ function stripOptionalParentheses(param, errors) {
23907
23293
  return expression.slice(start, end);
23908
23294
  }
23909
23295
 
23910
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23296
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
23911
23297
  var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
23912
23298
  var SEPARATOR_PATTERN = /^\s$/;
23913
23299
  var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
@@ -24171,7 +23557,7 @@ function parseDeferredTime(value) {
24171
23557
  return parseFloat(time) * (units === "s" ? 1e3 : 1);
24172
23558
  }
24173
23559
 
24174
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
23560
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
24175
23561
  var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
24176
23562
  var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
24177
23563
  var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
@@ -24306,7 +23692,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
24306
23692
  return { triggers, prefetchTriggers };
24307
23693
  }
24308
23694
 
24309
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
23695
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
24310
23696
  var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
24311
23697
  var KW_BIND_IDX = 1;
24312
23698
  var KW_LET_IDX = 2;
@@ -24773,7 +24159,7 @@ function textContents(node) {
24773
24159
  }
24774
24160
  }
24775
24161
 
24776
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24162
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
24777
24163
  var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
24778
24164
  function parseTemplate(template2, templateUrl, options = {}) {
24779
24165
  var _a2, _b2;
@@ -24852,7 +24238,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
24852
24238
  return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
24853
24239
  }
24854
24240
 
24855
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24241
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
24856
24242
  var COMPONENT_VARIABLE = "%COMP%";
24857
24243
  var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
24858
24244
  var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
@@ -25243,7 +24629,7 @@ function compileDeferResolverFunction(meta) {
25243
24629
  return arrowFn([], literalArr(depExpressions));
25244
24630
  }
25245
24631
 
25246
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
24632
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
25247
24633
  var R3TargetBinder = class {
25248
24634
  constructor(directiveMatcher) {
25249
24635
  this.directiveMatcher = directiveMatcher;
@@ -25890,11 +25276,11 @@ function extractScopedNodeEntities(rootScope) {
25890
25276
  return templateEntities;
25891
25277
  }
25892
25278
 
25893
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25279
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
25894
25280
  var ResourceLoader = class {
25895
25281
  };
25896
25282
 
25897
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25283
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
25898
25284
  var CompilerFacadeImpl = class {
25899
25285
  constructor(jitEvaluator = new JitEvaluator()) {
25900
25286
  this.jitEvaluator = jitEvaluator;
@@ -26460,10 +25846,10 @@ function publishFacade(global) {
26460
25846
  ng.\u0275compilerFacade = new CompilerFacadeImpl();
26461
25847
  }
26462
25848
 
26463
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
26464
- var VERSION2 = new Version("18.1.0-next.1");
25849
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
25850
+ var VERSION2 = new Version("18.1.0-next.2");
26465
25851
 
26466
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
25852
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26467
25853
  var _I18N_ATTR = "i18n";
26468
25854
  var _I18N_ATTR_PREFIX = "i18n-";
26469
25855
  var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
@@ -26774,7 +26160,7 @@ function _parseMessageMeta(i18n2) {
26774
26160
  return { meaning, description, id: id.trim() };
26775
26161
  }
26776
26162
 
26777
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26163
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
26778
26164
  var XmlTagDefinition = class {
26779
26165
  constructor() {
26780
26166
  this.closedByParent = false;
@@ -26799,7 +26185,7 @@ function getXmlTagDefinition(tagName) {
26799
26185
  return _TAG_DEFINITION;
26800
26186
  }
26801
26187
 
26802
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26188
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
26803
26189
  var XmlParser = class extends Parser2 {
26804
26190
  constructor() {
26805
26191
  super(getXmlTagDefinition);
@@ -26809,7 +26195,7 @@ var XmlParser = class extends Parser2 {
26809
26195
  }
26810
26196
  };
26811
26197
 
26812
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26198
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
26813
26199
  var _VERSION = "1.2";
26814
26200
  var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
26815
26201
  var _DEFAULT_SOURCE_LANG = "en";
@@ -27091,7 +26477,7 @@ function getCtypeForTag(tag) {
27091
26477
  }
27092
26478
  }
27093
26479
 
27094
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
26480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
27095
26481
  var _VERSION2 = "2.0";
27096
26482
  var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
27097
26483
  var _DEFAULT_SOURCE_LANG2 = "en";
@@ -27422,7 +26808,7 @@ function getTypeForTag(tag) {
27422
26808
  }
27423
26809
  }
27424
26810
 
27425
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
26811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
27426
26812
  var MessageBundle = class {
27427
26813
  constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
27428
26814
  this._htmlParser = _htmlParser;
@@ -27498,7 +26884,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
27498
26884
  }
27499
26885
  };
27500
26886
 
27501
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
26887
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
27502
26888
  var FactoryTarget2;
27503
26889
  (function(FactoryTarget3) {
27504
26890
  FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
@@ -27508,7 +26894,7 @@ var FactoryTarget2;
27508
26894
  FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
27509
26895
  })(FactoryTarget2 || (FactoryTarget2 = {}));
27510
26896
 
27511
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
26897
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
27512
26898
  function compileClassMetadata(metadata) {
27513
26899
  const fnCall = internalCompileClassMetadata(metadata);
27514
26900
  return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
@@ -27542,7 +26928,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
27542
26928
  return arrowFn([], literalArr(dynamicImports));
27543
26929
  }
27544
26930
 
27545
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
26931
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
27546
26932
  function compileClassDebugInfo(debugInfo) {
27547
26933
  const debugInfoObject = {
27548
26934
  className: debugInfo.className
@@ -27559,13 +26945,13 @@ function compileClassDebugInfo(debugInfo) {
27559
26945
  return iife.callFn([]);
27560
26946
  }
27561
26947
 
27562
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
26948
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
27563
26949
  var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
27564
26950
  var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
27565
26951
  function compileDeclareClassMetadata(metadata) {
27566
26952
  const definitionMap = new DefinitionMap();
27567
26953
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
27568
- definitionMap.set("version", literal("18.1.0-next.1"));
26954
+ definitionMap.set("version", literal("18.1.0-next.2"));
27569
26955
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27570
26956
  definitionMap.set("type", metadata.type);
27571
26957
  definitionMap.set("decorators", metadata.decorators);
@@ -27584,7 +26970,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27584
26970
  callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
27585
26971
  callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
27586
26972
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
27587
- definitionMap.set("version", literal("18.1.0-next.1"));
26973
+ definitionMap.set("version", literal("18.1.0-next.2"));
27588
26974
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27589
26975
  definitionMap.set("type", metadata.type);
27590
26976
  definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
@@ -27592,7 +26978,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
27592
26978
  return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
27593
26979
  }
27594
26980
 
27595
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
26981
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
27596
26982
  function toOptionalLiteralArray(values, mapper) {
27597
26983
  if (values === null || values.length === 0) {
27598
26984
  return null;
@@ -27640,7 +27026,7 @@ function compileDependency(dep) {
27640
27026
  return depMeta.toLiteralMap();
27641
27027
  }
27642
27028
 
27643
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27029
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
27644
27030
  function compileDeclareDirectiveFromMetadata(meta) {
27645
27031
  const definitionMap = createDirectiveDefinitionMap(meta);
27646
27032
  const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
@@ -27652,7 +27038,7 @@ function createDirectiveDefinitionMap(meta) {
27652
27038
  const definitionMap = new DefinitionMap();
27653
27039
  const minVersion = getMinimumVersionForPartialOutput(meta);
27654
27040
  definitionMap.set("minVersion", literal(minVersion));
27655
- definitionMap.set("version", literal("18.1.0-next.1"));
27041
+ definitionMap.set("version", literal("18.1.0-next.2"));
27656
27042
  definitionMap.set("type", meta.type.value);
27657
27043
  if (meta.isStandalone) {
27658
27044
  definitionMap.set("isStandalone", literal(meta.isStandalone));
@@ -27814,7 +27200,7 @@ function legacyInputsPartialMetadata(inputs) {
27814
27200
  }));
27815
27201
  }
27816
27202
 
27817
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27203
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
27818
27204
  function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
27819
27205
  const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
27820
27206
  const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
@@ -27965,12 +27351,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
27965
27351
  }
27966
27352
  };
27967
27353
 
27968
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27354
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
27969
27355
  var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
27970
27356
  function compileDeclareFactoryFunction(meta) {
27971
27357
  const definitionMap = new DefinitionMap();
27972
27358
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
27973
- definitionMap.set("version", literal("18.1.0-next.1"));
27359
+ definitionMap.set("version", literal("18.1.0-next.2"));
27974
27360
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27975
27361
  definitionMap.set("type", meta.type.value);
27976
27362
  definitionMap.set("deps", compileDependencies(meta.deps));
@@ -27982,7 +27368,7 @@ function compileDeclareFactoryFunction(meta) {
27982
27368
  };
27983
27369
  }
27984
27370
 
27985
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27371
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
27986
27372
  var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
27987
27373
  function compileDeclareInjectableFromMetadata(meta) {
27988
27374
  const definitionMap = createInjectableDefinitionMap(meta);
@@ -27993,7 +27379,7 @@ function compileDeclareInjectableFromMetadata(meta) {
27993
27379
  function createInjectableDefinitionMap(meta) {
27994
27380
  const definitionMap = new DefinitionMap();
27995
27381
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
27996
- definitionMap.set("version", literal("18.1.0-next.1"));
27382
+ definitionMap.set("version", literal("18.1.0-next.2"));
27997
27383
  definitionMap.set("ngImport", importExpr(Identifiers.core));
27998
27384
  definitionMap.set("type", meta.type.value);
27999
27385
  if (meta.providedIn !== void 0) {
@@ -28020,7 +27406,7 @@ function createInjectableDefinitionMap(meta) {
28020
27406
  return definitionMap;
28021
27407
  }
28022
27408
 
28023
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
27409
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
28024
27410
  var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
28025
27411
  function compileDeclareInjectorFromMetadata(meta) {
28026
27412
  const definitionMap = createInjectorDefinitionMap(meta);
@@ -28031,7 +27417,7 @@ function compileDeclareInjectorFromMetadata(meta) {
28031
27417
  function createInjectorDefinitionMap(meta) {
28032
27418
  const definitionMap = new DefinitionMap();
28033
27419
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
28034
- definitionMap.set("version", literal("18.1.0-next.1"));
27420
+ definitionMap.set("version", literal("18.1.0-next.2"));
28035
27421
  definitionMap.set("ngImport", importExpr(Identifiers.core));
28036
27422
  definitionMap.set("type", meta.type.value);
28037
27423
  definitionMap.set("providers", meta.providers);
@@ -28041,7 +27427,7 @@ function createInjectorDefinitionMap(meta) {
28041
27427
  return definitionMap;
28042
27428
  }
28043
27429
 
28044
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
27430
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
28045
27431
  var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
28046
27432
  function compileDeclareNgModuleFromMetadata(meta) {
28047
27433
  const definitionMap = createNgModuleDefinitionMap(meta);
@@ -28055,7 +27441,7 @@ function createNgModuleDefinitionMap(meta) {
28055
27441
  throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
28056
27442
  }
28057
27443
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
28058
- definitionMap.set("version", literal("18.1.0-next.1"));
27444
+ definitionMap.set("version", literal("18.1.0-next.2"));
28059
27445
  definitionMap.set("ngImport", importExpr(Identifiers.core));
28060
27446
  definitionMap.set("type", meta.type.value);
28061
27447
  if (meta.bootstrap.length > 0) {
@@ -28079,7 +27465,7 @@ function createNgModuleDefinitionMap(meta) {
28079
27465
  return definitionMap;
28080
27466
  }
28081
27467
 
28082
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
27468
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
28083
27469
  var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
28084
27470
  function compileDeclarePipeFromMetadata(meta) {
28085
27471
  const definitionMap = createPipeDefinitionMap(meta);
@@ -28090,7 +27476,7 @@ function compileDeclarePipeFromMetadata(meta) {
28090
27476
  function createPipeDefinitionMap(meta) {
28091
27477
  const definitionMap = new DefinitionMap();
28092
27478
  definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
28093
- definitionMap.set("version", literal("18.1.0-next.1"));
27479
+ definitionMap.set("version", literal("18.1.0-next.2"));
28094
27480
  definitionMap.set("ngImport", importExpr(Identifiers.core));
28095
27481
  definitionMap.set("type", meta.type.value);
28096
27482
  if (meta.isStandalone) {
@@ -28103,16 +27489,16 @@ function createPipeDefinitionMap(meta) {
28103
27489
  return definitionMap;
28104
27490
  }
28105
27491
 
28106
- // bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
27492
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
28107
27493
  publishFacade(_global);
28108
27494
 
28109
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
28110
- var VERSION3 = new Version("18.1.0-next.1");
27495
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27496
+ var VERSION3 = new Version("18.1.0-next.2");
28111
27497
 
28112
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27498
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28113
27499
  var import_typescript5 = __toESM(require("typescript"), 1);
28114
27500
 
28115
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
27501
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
28116
27502
  var ErrorCode;
28117
27503
  (function(ErrorCode2) {
28118
27504
  ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
@@ -28205,7 +27591,7 @@ var ErrorCode;
28205
27591
  ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
28206
27592
  })(ErrorCode || (ErrorCode = {}));
28207
27593
 
28208
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
27594
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
28209
27595
  var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
28210
27596
  ErrorCode.DECORATOR_ARG_NOT_LITERAL,
28211
27597
  ErrorCode.IMPORT_CYCLE_DETECTED,
@@ -28217,15 +27603,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
28217
27603
  ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
28218
27604
  ]);
28219
27605
 
28220
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27606
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28221
27607
  var import_typescript2 = __toESM(require("typescript"), 1);
28222
27608
 
28223
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
27609
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
28224
27610
  function ngErrorCode(code) {
28225
27611
  return parseInt("-99" + code);
28226
27612
  }
28227
27613
 
28228
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
27614
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
28229
27615
  var FatalDiagnosticError = class extends Error {
28230
27616
  constructor(code, node, diagnosticMessage, relatedInformation) {
28231
27617
  super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
@@ -28286,10 +27672,10 @@ function isFatalDiagnosticError(err) {
28286
27672
  return err._isFatalDiagnosticError === true;
28287
27673
  }
28288
27674
 
28289
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
27675
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
28290
27676
  var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
28291
27677
 
28292
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
27678
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
28293
27679
  var ExtendedTemplateDiagnosticName;
28294
27680
  (function(ExtendedTemplateDiagnosticName2) {
28295
27681
  ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
@@ -28304,7 +27690,7 @@ var ExtendedTemplateDiagnosticName;
28304
27690
  ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
28305
27691
  })(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
28306
27692
 
28307
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
27693
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
28308
27694
  var import_typescript3 = __toESM(require("typescript"), 1);
28309
27695
  var TS = /\.tsx?$/i;
28310
27696
  var D_TS = /\.d\.ts$/i;
@@ -28405,7 +27791,7 @@ function toUnredirectedSourceFile(sf) {
28405
27791
  return redirectInfo.unredirected;
28406
27792
  }
28407
27793
 
28408
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
27794
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
28409
27795
  function findExportedNameOfNode(target, file, reflector) {
28410
27796
  const exports = reflector.getExportsOfModule(file);
28411
27797
  if (exports === null) {
@@ -28425,7 +27811,7 @@ function findExportedNameOfNode(target, file, reflector) {
28425
27811
  return foundExportName;
28426
27812
  }
28427
27813
 
28428
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
27814
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
28429
27815
  var ImportFlags;
28430
27816
  (function(ImportFlags2) {
28431
27817
  ImportFlags2[ImportFlags2["None"] = 0] = "None";
@@ -28656,7 +28042,7 @@ var UnifiedModulesStrategy = class {
28656
28042
  }
28657
28043
  };
28658
28044
 
28659
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28045
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
28660
28046
  var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
28661
28047
  var UnifiedModulesAliasingHost = class {
28662
28048
  constructor(unifiedModulesHost) {
@@ -28723,7 +28109,7 @@ var AliasStrategy = class {
28723
28109
  }
28724
28110
  };
28725
28111
 
28726
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28112
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
28727
28113
  function relativePathBetween(from, to) {
28728
28114
  const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
28729
28115
  return relativePath !== "" ? toRelativeImport(relativePath) : null;
@@ -28732,7 +28118,7 @@ function normalizeSeparators2(path4) {
28732
28118
  return path4.replace(/\\/g, "/");
28733
28119
  }
28734
28120
 
28735
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28121
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
28736
28122
  var NoopImportRewriter = class {
28737
28123
  rewriteSymbol(symbol, specifier) {
28738
28124
  return symbol;
@@ -28785,7 +28171,7 @@ function validateAndRewriteCoreSymbol(name) {
28785
28171
  return CORE_SUPPORTED_SYMBOLS.get(name);
28786
28172
  }
28787
28173
 
28788
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28174
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
28789
28175
  var import_typescript7 = __toESM(require("typescript"), 1);
28790
28176
  var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
28791
28177
  function loadIsReferencedAliasDeclarationPatch(context) {
@@ -28820,7 +28206,7 @@ function throwIncompatibleTransformationContextError() {
28820
28206
  throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
28821
28207
  }
28822
28208
 
28823
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28209
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
28824
28210
  var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
28825
28211
  function attachDefaultImportDeclaration(expr, importDecl) {
28826
28212
  expr[DefaultImportDeclaration] = importDecl;
@@ -28861,13 +28247,13 @@ var DefaultImportTracker = class {
28861
28247
  }
28862
28248
  };
28863
28249
 
28864
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28250
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28865
28251
  var import_typescript13 = __toESM(require("typescript"), 1);
28866
28252
 
28867
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28253
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28868
28254
  var import_typescript12 = __toESM(require("typescript"), 1);
28869
28255
 
28870
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28256
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
28871
28257
  var import_typescript9 = __toESM(require("typescript"), 1);
28872
28258
  function isDecoratorIdentifier(exp) {
28873
28259
  return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
@@ -28890,7 +28276,7 @@ var ClassMemberAccessLevel;
28890
28276
  })(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
28891
28277
  var AmbientImport = {};
28892
28278
 
28893
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28279
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
28894
28280
  var import_typescript10 = __toESM(require("typescript"), 1);
28895
28281
  function typeToValue(typeNode, checker, isLocalCompilation) {
28896
28282
  var _a2, _b2;
@@ -29074,7 +28460,7 @@ function extractModuleName(node) {
29074
28460
  return node.moduleSpecifier.text;
29075
28461
  }
29076
28462
 
29077
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28463
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
29078
28464
  var import_typescript11 = __toESM(require("typescript"), 1);
29079
28465
  function isNamedClassDeclaration(node) {
29080
28466
  return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -29098,7 +28484,7 @@ function classMemberAccessLevelToString(level) {
29098
28484
  }
29099
28485
  }
29100
28486
 
29101
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28487
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
29102
28488
  var TypeScriptReflectionHost = class {
29103
28489
  constructor(checker, isLocalCompilation = false) {
29104
28490
  this.checker = checker;
@@ -29585,7 +28971,7 @@ function getExportedName(decl, originalId) {
29585
28971
  }
29586
28972
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
29587
28973
 
29588
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28974
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29589
28975
  var AssumeEager = "AssumeEager";
29590
28976
  var DeferredSymbolTracker = class {
29591
28977
  constructor(typeChecker, onlyExplicitDeferDependencyImports) {
@@ -29705,7 +29091,7 @@ var DeferredSymbolTracker = class {
29705
29091
  }
29706
29092
  };
29707
29093
 
29708
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29094
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29709
29095
  var import_typescript15 = __toESM(require("typescript"), 1);
29710
29096
  var ImportedSymbolsTracker = class {
29711
29097
  constructor() {
@@ -29775,7 +29161,7 @@ var ImportedSymbolsTracker = class {
29775
29161
  }
29776
29162
  };
29777
29163
 
29778
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29164
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29779
29165
  var import_typescript16 = __toESM(require("typescript"), 1);
29780
29166
  var LocalCompilationExtraImportsTracker = class {
29781
29167
  constructor(typeChecker) {
@@ -29826,7 +29212,7 @@ function removeQuotations(s) {
29826
29212
  return s.substring(1, s.length - 1).trim();
29827
29213
  }
29828
29214
 
29829
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29215
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29830
29216
  var Reference2 = class {
29831
29217
  constructor(node, bestGuessOwningModule = null) {
29832
29218
  this.node = node;
@@ -29895,7 +29281,7 @@ var Reference2 = class {
29895
29281
  }
29896
29282
  };
29897
29283
 
29898
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29284
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29899
29285
  var ModuleResolver = class {
29900
29286
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29901
29287
  this.program = program;
@@ -29912,16 +29298,16 @@ var ModuleResolver = class {
29912
29298
  }
29913
29299
  };
29914
29300
 
29915
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29916
29302
  var import_typescript21 = __toESM(require("typescript"), 1);
29917
29303
 
29918
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29304
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29919
29305
  var import_typescript95 = __toESM(require("typescript"), 1);
29920
29306
 
29921
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29307
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29922
29308
  var import_typescript23 = __toESM(require("typescript"), 1);
29923
29309
 
29924
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29310
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29925
29311
  var import_typescript22 = __toESM(require("typescript"), 1);
29926
29312
  var CORE_MODULE2 = "@angular/core";
29927
29313
  function valueReferenceToExpression(valueRef) {
@@ -30179,7 +29565,7 @@ function isAbstractClassDeclaration(clazz) {
30179
29565
  return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
30180
29566
  }
30181
29567
 
30182
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29568
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
30183
29569
  function getConstructorDependencies(clazz, reflector, isCore) {
30184
29570
  const deps = [];
30185
29571
  const errors = [];
@@ -30323,10 +29709,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
30323
29709
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
30324
29710
  }
30325
29711
 
30326
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29712
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
30327
29713
  var import_typescript46 = __toESM(require("typescript"), 1);
30328
29714
 
30329
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29715
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
30330
29716
  var MetaKind;
30331
29717
  (function(MetaKind2) {
30332
29718
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -30339,10 +29725,10 @@ var MatchSource;
30339
29725
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
30340
29726
  })(MatchSource || (MatchSource = {}));
30341
29727
 
30342
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29728
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30343
29729
  var import_typescript26 = __toESM(require("typescript"), 1);
30344
29730
 
30345
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29731
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
30346
29732
  var ClassPropertyMapping = class {
30347
29733
  constructor(forwardMap) {
30348
29734
  this.forwardMap = forwardMap;
@@ -30422,7 +29808,7 @@ function reverseMapFromForwardMap(forwardMap) {
30422
29808
  return reverseMap;
30423
29809
  }
30424
29810
 
30425
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
29811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30426
29812
  var import_typescript24 = __toESM(require("typescript"), 1);
30427
29813
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
30428
29814
  if (!import_typescript24.default.isTupleTypeNode(def)) {
@@ -30618,7 +30004,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
30618
30004
  return hostDirectiveMeta.directive instanceof Reference2;
30619
30005
  }
30620
30006
 
30621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30007
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30622
30008
  var DtsMetadataReader = class {
30623
30009
  constructor(checker, reflector) {
30624
30010
  this.checker = checker;
@@ -30801,7 +30187,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
30801
30187
  return result.length > 0 ? result : null;
30802
30188
  }
30803
30189
 
30804
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30190
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30805
30191
  function flattenInheritedDirectiveMetadata(reader, dir) {
30806
30192
  const topMeta = reader.getDirectiveMetadata(dir);
30807
30193
  if (topMeta === null) {
@@ -30864,7 +30250,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
30864
30250
  });
30865
30251
  }
30866
30252
 
30867
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30253
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30868
30254
  var LocalMetadataRegistry = class {
30869
30255
  constructor() {
30870
30256
  this.directives = /* @__PURE__ */ new Map();
@@ -30921,7 +30307,7 @@ var CompoundMetadataRegistry = class {
30921
30307
  }
30922
30308
  };
30923
30309
 
30924
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30310
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30925
30311
  var ResourceRegistry = class {
30926
30312
  constructor() {
30927
30313
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -30986,7 +30372,7 @@ var ResourceRegistry = class {
30986
30372
  }
30987
30373
  };
30988
30374
 
30989
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30375
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30990
30376
  var ExportedProviderStatusResolver = class {
30991
30377
  constructor(metaReader) {
30992
30378
  this.metaReader = metaReader;
@@ -31030,7 +30416,7 @@ var ExportedProviderStatusResolver = class {
31030
30416
  }
31031
30417
  };
31032
30418
 
31033
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30419
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
31034
30420
  var EMPTY_ARRAY = [];
31035
30421
  var HostDirectivesResolver = class {
31036
30422
  constructor(metaReader) {
@@ -31095,10 +30481,10 @@ function resolveOutput(bindingName) {
31095
30481
  return bindingName;
31096
30482
  }
31097
30483
 
31098
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30484
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31099
30485
  var import_typescript28 = __toESM(require("typescript"), 1);
31100
30486
 
31101
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30487
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
31102
30488
  var DynamicValue = class {
31103
30489
  constructor(node, reason, code) {
31104
30490
  this.node = node;
@@ -31188,7 +30574,7 @@ var DynamicValue = class {
31188
30574
  }
31189
30575
  };
31190
30576
 
31191
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30577
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
31192
30578
  var ResolvedModule = class {
31193
30579
  constructor(exports, evaluate) {
31194
30580
  this.exports = exports;
@@ -31218,7 +30604,7 @@ var EnumValue = class {
31218
30604
  var KnownFn = class {
31219
30605
  };
31220
30606
 
31221
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30607
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31222
30608
  function describeResolvedType(value, maxDepth = 1) {
31223
30609
  var _a2, _b2;
31224
30610
  if (value === null) {
@@ -31351,10 +30737,10 @@ function getContainerNode(node) {
31351
30737
  return node.getSourceFile();
31352
30738
  }
31353
30739
 
31354
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30740
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31355
30741
  var import_typescript29 = __toESM(require("typescript"), 1);
31356
30742
 
31357
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
30743
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31358
30744
  var ArraySliceBuiltinFn = class extends KnownFn {
31359
30745
  constructor(lhs) {
31360
30746
  super();
@@ -31406,14 +30792,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
31406
30792
  }
31407
30793
  };
31408
30794
 
31409
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
30795
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31410
30796
  var SyntheticValue = class {
31411
30797
  constructor(value) {
31412
30798
  this.value = value;
31413
30799
  }
31414
30800
  };
31415
30801
 
31416
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30802
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31417
30803
  function literalBinaryOp(op) {
31418
30804
  return { op, literal: true };
31419
30805
  }
@@ -31988,7 +31374,7 @@ function owningModule(context, override = null) {
31988
31374
  }
31989
31375
  }
31990
31376
 
31991
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31377
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31992
31378
  var PartialEvaluator = class {
31993
31379
  constructor(host, checker, dependencyTracker) {
31994
31380
  this.host = host;
@@ -32008,7 +31394,7 @@ var PartialEvaluator = class {
32008
31394
  }
32009
31395
  };
32010
31396
 
32011
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31397
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
32012
31398
  var CompilationMode;
32013
31399
  (function(CompilationMode2) {
32014
31400
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -32022,7 +31408,7 @@ var HandlerPrecedence;
32022
31408
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
32023
31409
  })(HandlerPrecedence || (HandlerPrecedence = {}));
32024
31410
 
32025
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31411
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
32026
31412
  var import_typescript31 = __toESM(require("typescript"), 1);
32027
31413
  function aliasTransformFactory(exportStatements) {
32028
31414
  return () => {
@@ -32047,10 +31433,10 @@ function aliasTransformFactory(exportStatements) {
32047
31433
  };
32048
31434
  }
32049
31435
 
32050
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31436
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32051
31437
  var import_typescript32 = __toESM(require("typescript"), 1);
32052
31438
 
32053
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31439
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
32054
31440
  var PerfPhase;
32055
31441
  (function(PerfPhase2) {
32056
31442
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -32118,7 +31504,7 @@ var PerfCheckpoint;
32118
31504
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
32119
31505
  })(PerfCheckpoint || (PerfCheckpoint = {}));
32120
31506
 
32121
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31507
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
32122
31508
  var NoopPerfRecorder = class {
32123
31509
  eventCount() {
32124
31510
  }
@@ -32135,7 +31521,7 @@ var NoopPerfRecorder = class {
32135
31521
  };
32136
31522
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
32137
31523
 
32138
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31524
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
32139
31525
  function mark() {
32140
31526
  return process.hrtime();
32141
31527
  }
@@ -32144,7 +31530,7 @@ function timeSinceInMicros(mark2) {
32144
31530
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
32145
31531
  }
32146
31532
 
32147
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31533
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
32148
31534
  var ActivePerfRecorder = class {
32149
31535
  static zeroedToNow() {
32150
31536
  return new ActivePerfRecorder(mark());
@@ -32238,7 +31624,7 @@ var DelegatingPerfRecorder = class {
32238
31624
  }
32239
31625
  };
32240
31626
 
32241
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31627
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
32242
31628
  var TraitState;
32243
31629
  (function(TraitState2) {
32244
31630
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -32295,7 +31681,7 @@ var TraitImpl = class {
32295
31681
  }
32296
31682
  };
32297
31683
 
32298
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31684
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32299
31685
  var TraitCompiler = class {
32300
31686
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
32301
31687
  this.handlers = handlers;
@@ -32754,10 +32140,10 @@ function containsErrors(diagnostics) {
32754
32140
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
32755
32141
  }
32756
32142
 
32757
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32143
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32758
32144
  var import_typescript43 = __toESM(require("typescript"), 1);
32759
32145
 
32760
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32146
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32761
32147
  var Context = class {
32762
32148
  constructor(isStatement) {
32763
32149
  this.isStatement = isStatement;
@@ -32770,10 +32156,10 @@ var Context = class {
32770
32156
  }
32771
32157
  };
32772
32158
 
32773
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32159
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32774
32160
  var import_typescript38 = __toESM(require("typescript"), 1);
32775
32161
 
32776
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32162
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32777
32163
  var import_typescript34 = __toESM(require("typescript"), 1);
32778
32164
  function createGenerateUniqueIdentifierHelper() {
32779
32165
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -32797,7 +32183,7 @@ function createGenerateUniqueIdentifierHelper() {
32797
32183
  };
32798
32184
  }
32799
32185
 
32800
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32186
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32801
32187
  var import_typescript35 = __toESM(require("typescript"), 1);
32802
32188
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
32803
32189
  return (ctx) => {
@@ -32858,7 +32244,7 @@ function isImportStatement(stmt) {
32858
32244
  return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
32859
32245
  }
32860
32246
 
32861
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32247
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32862
32248
  var import_typescript36 = __toESM(require("typescript"), 1);
32863
32249
  function attemptToReuseGeneratedImports(tracker, request) {
32864
32250
  const requestHash = hashImportRequest(request);
@@ -32885,7 +32271,7 @@ function hashImportRequest(req) {
32885
32271
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
32886
32272
  }
32887
32273
 
32888
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32274
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32889
32275
  var import_typescript37 = __toESM(require("typescript"), 1);
32890
32276
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32891
32277
  let candidateImportToBeUpdated = null;
@@ -32938,7 +32324,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32938
32324
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
32939
32325
  }
32940
32326
 
32941
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32327
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32942
32328
  var presetImportManagerForceNamespaceImports = {
32943
32329
  disableOriginalSourceFileReuse: true,
32944
32330
  forceGenerateNamespacesForNewImports: true
@@ -33087,7 +32473,7 @@ function createImportReference(asTypeReference, ref) {
33087
32473
  }
33088
32474
  }
33089
32475
 
33090
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32476
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
33091
32477
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
33092
32478
  [UnaryOperator.Minus, "-"],
33093
32479
  [UnaryOperator.Plus, "+"]
@@ -33332,7 +32718,7 @@ function createRange(span) {
33332
32718
  };
33333
32719
  }
33334
32720
 
33335
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32721
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
33336
32722
  var import_typescript39 = __toESM(require("typescript"), 1);
33337
32723
  var INELIGIBLE = {};
33338
32724
  function canEmitType(type, canEmit) {
@@ -33407,10 +32793,10 @@ var TypeEmitter = class {
33407
32793
  }
33408
32794
  };
33409
32795
 
33410
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
32796
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33411
32797
  var import_typescript41 = __toESM(require("typescript"), 1);
33412
32798
 
33413
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
32799
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33414
32800
  var import_typescript40 = __toESM(require("typescript"), 1);
33415
32801
  function tsNumericExpression(value) {
33416
32802
  if (value < 0) {
@@ -33420,7 +32806,7 @@ function tsNumericExpression(value) {
33420
32806
  return import_typescript40.default.factory.createNumericLiteral(value);
33421
32807
  }
33422
32808
 
33423
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
32809
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33424
32810
  function translateType(type, contextFile, reflector, refEmitter, imports) {
33425
32811
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
33426
32812
  }
@@ -33637,7 +33023,7 @@ var TypeTranslatorVisitor = class {
33637
33023
  }
33638
33024
  };
33639
33025
 
33640
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33026
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33641
33027
  var import_typescript42 = __toESM(require("typescript"), 1);
33642
33028
  var PureAnnotation;
33643
33029
  (function(PureAnnotation2) {
@@ -33840,7 +33226,7 @@ function attachComments(statement, leadingComments) {
33840
33226
  }
33841
33227
  }
33842
33228
 
33843
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33229
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33844
33230
  function translateExpression(contextFile, expression, imports, options = {}) {
33845
33231
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
33846
33232
  }
@@ -33848,7 +33234,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
33848
33234
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
33849
33235
  }
33850
33236
 
33851
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33237
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33852
33238
  var DtsTransformRegistry = class {
33853
33239
  constructor() {
33854
33240
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -33996,10 +33382,10 @@ function markForEmitAsSingleLine(node) {
33996
33382
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
33997
33383
  }
33998
33384
 
33999
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33385
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
34000
33386
  var import_typescript45 = __toESM(require("typescript"), 1);
34001
33387
 
34002
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33388
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
34003
33389
  var import_typescript44 = __toESM(require("typescript"), 1);
34004
33390
  function visit(node, visitor, context) {
34005
33391
  return visitor._visit(node, context);
@@ -34060,7 +33446,7 @@ var Visitor = class {
34060
33446
  }
34061
33447
  };
34062
33448
 
34063
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33449
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
34064
33450
  var NO_DECORATORS = /* @__PURE__ */ new Set();
34065
33451
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
34066
33452
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -34295,7 +33681,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
34295
33681
  return array;
34296
33682
  }
34297
33683
 
34298
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33684
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
34299
33685
  function makeDuplicateDeclarationError(node, data, kind) {
34300
33686
  const context = [];
34301
33687
  for (const decl of data) {
@@ -34504,7 +33890,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
34504
33890
  }
34505
33891
  }
34506
33892
 
34507
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
33893
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34508
33894
  var import_typescript48 = __toESM(require("typescript"), 1);
34509
33895
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
34510
33896
  let resolved = null;
@@ -34554,7 +33940,7 @@ function resolveLiteral(decorator, literalCache) {
34554
33940
  return meta;
34555
33941
  }
34556
33942
 
34557
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
33943
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34558
33944
  function compileNgFactoryDefField(metadata) {
34559
33945
  const res = compileFactoryFunction(metadata);
34560
33946
  return {
@@ -34576,7 +33962,7 @@ function compileDeclareFactory(metadata) {
34576
33962
  };
34577
33963
  }
34578
33964
 
34579
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
33965
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34580
33966
  var InjectableClassRegistry = class {
34581
33967
  constructor(host, isCore) {
34582
33968
  this.host = host;
@@ -34602,7 +33988,7 @@ var InjectableClassRegistry = class {
34602
33988
  }
34603
33989
  };
34604
33990
 
34605
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
33991
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34606
33992
  var import_typescript49 = __toESM(require("typescript"), 1);
34607
33993
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
34608
33994
  if (!reflection.isClass(clazz)) {
@@ -34688,7 +34074,7 @@ function removeIdentifierReferences(node, names) {
34688
34074
  return result.transformed[0];
34689
34075
  }
34690
34076
 
34691
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34077
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34692
34078
  var path = __toESM(require("path"), 1);
34693
34079
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
34694
34080
  if (!reflection.isClass(clazz)) {
@@ -34714,13 +34100,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
34714
34100
  return null;
34715
34101
  }
34716
34102
 
34717
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34103
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34718
34104
  var NoopReferencesRegistry = class {
34719
34105
  add(source, ...references) {
34720
34106
  }
34721
34107
  };
34722
34108
 
34723
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34109
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34724
34110
  function extractSchemas(rawExpr, evaluator, context) {
34725
34111
  const schemas = [];
34726
34112
  const result = evaluator.evaluate(rawExpr);
@@ -34749,7 +34135,7 @@ function extractSchemas(rawExpr, evaluator, context) {
34749
34135
  return schemas;
34750
34136
  }
34751
34137
 
34752
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34138
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34753
34139
  function compileInputTransformFields(inputs) {
34754
34140
  const extraFields = [];
34755
34141
  for (const input of inputs) {
@@ -34766,10 +34152,10 @@ function compileInputTransformFields(inputs) {
34766
34152
  return extraFields;
34767
34153
  }
34768
34154
 
34769
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34155
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34770
34156
  var import_typescript88 = __toESM(require("typescript"), 1);
34771
34157
 
34772
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34158
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34773
34159
  var import_typescript50 = __toESM(require("typescript"), 1);
34774
34160
  var SemanticSymbol = class {
34775
34161
  constructor(decl) {
@@ -34785,7 +34171,7 @@ function getSymbolIdentifier(decl) {
34785
34171
  return decl.name.text;
34786
34172
  }
34787
34173
 
34788
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34174
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34789
34175
  var OpaqueSymbol = class extends SemanticSymbol {
34790
34176
  isPublicApiAffected() {
34791
34177
  return false;
@@ -34927,10 +34313,10 @@ function getImportPath(expr) {
34927
34313
  }
34928
34314
  }
34929
34315
 
34930
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34316
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34931
34317
  var import_typescript51 = __toESM(require("typescript"), 1);
34932
34318
 
34933
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34319
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34934
34320
  function isSymbolEqual(a, b) {
34935
34321
  if (a.decl === b.decl) {
34936
34322
  return true;
@@ -34980,7 +34366,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
34980
34366
  return true;
34981
34367
  }
34982
34368
 
34983
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34369
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34984
34370
  function extractSemanticTypeParameters(node) {
34985
34371
  if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
34986
34372
  return null;
@@ -35002,14 +34388,14 @@ function isTypeParameterEqual(a, b) {
35002
34388
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
35003
34389
  }
35004
34390
 
35005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34391
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
35006
34392
  var ComponentScopeKind;
35007
34393
  (function(ComponentScopeKind2) {
35008
34394
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
35009
34395
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
35010
34396
  })(ComponentScopeKind || (ComponentScopeKind = {}));
35011
34397
 
35012
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34398
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
35013
34399
  var CompoundComponentScopeReader = class {
35014
34400
  constructor(readers) {
35015
34401
  this.readers = readers;
@@ -35034,7 +34420,7 @@ var CompoundComponentScopeReader = class {
35034
34420
  }
35035
34421
  };
35036
34422
 
35037
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34423
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
35038
34424
  var MetadataDtsModuleScopeResolver = class {
35039
34425
  constructor(dtsMetaReader, aliasingHost) {
35040
34426
  this.dtsMetaReader = dtsMetaReader;
@@ -35109,10 +34495,10 @@ var MetadataDtsModuleScopeResolver = class {
35109
34495
  }
35110
34496
  };
35111
34497
 
35112
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34498
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
35113
34499
  var import_typescript52 = __toESM(require("typescript"), 1);
35114
34500
 
35115
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34501
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
35116
34502
  function getDiagnosticNode(ref, rawExpr) {
35117
34503
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
35118
34504
  }
@@ -35138,7 +34524,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
35138
34524
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
35139
34525
  }
35140
34526
 
35141
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34527
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
35142
34528
  var LocalModuleScopeRegistry = class {
35143
34529
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
35144
34530
  this.localReader = localReader;
@@ -35479,7 +34865,7 @@ function reexportCollision(module2, refA, refB) {
35479
34865
  ]);
35480
34866
  }
35481
34867
 
35482
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
34868
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35483
34869
  var import_typescript54 = __toESM(require("typescript"), 1);
35484
34870
  var TypeCheckScopeRegistry = class {
35485
34871
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -35559,10 +34945,10 @@ var TypeCheckScopeRegistry = class {
35559
34945
  }
35560
34946
  };
35561
34947
 
35562
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
34948
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35563
34949
  var import_typescript58 = __toESM(require("typescript"), 1);
35564
34950
 
35565
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
34951
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35566
34952
  function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35567
34953
  if (!api.allowedAccessLevels.includes(member.accessLevel)) {
35568
34954
  throw new FatalDiagnosticError(ErrorCode.INITIALIZER_API_DISALLOWED_MEMBER_VISIBILITY, call2, makeDiagnosticChain(`Cannot use "${api.functionName}" on a class member that is declared as ${classMemberAccessLevelToString(member.accessLevel)}.`, [
@@ -35571,7 +34957,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35571
34957
  }
35572
34958
  }
35573
34959
 
35574
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
34960
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35575
34961
  var import_typescript55 = __toESM(require("typescript"), 1);
35576
34962
  function tryParseInitializerApi(functions, expression, reflector, importTracker) {
35577
34963
  if (!import_typescript55.default.isCallExpression(expression)) {
@@ -35640,7 +35026,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
35640
35026
  return { api: matchingApi, apiReference, isRequired };
35641
35027
  }
35642
35028
 
35643
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35029
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35644
35030
  var import_typescript56 = __toESM(require("typescript"), 1);
35645
35031
  function parseAndValidateInputAndOutputOptions(optionsNode) {
35646
35032
  if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
@@ -35658,7 +35044,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
35658
35044
  return { alias };
35659
35045
  }
35660
35046
 
35661
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35047
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35662
35048
  var INPUT_INITIALIZER_FN = {
35663
35049
  functionName: "input",
35664
35050
  owningModule: "@angular/core",
@@ -35690,7 +35076,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
35690
35076
  };
35691
35077
  }
35692
35078
 
35693
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35079
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35694
35080
  var MODEL_INITIALIZER_FN = {
35695
35081
  functionName: "model",
35696
35082
  owningModule: "@angular/core",
@@ -35731,7 +35117,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
35731
35117
  };
35732
35118
  }
35733
35119
 
35734
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35120
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35735
35121
  var allowedAccessLevels = [
35736
35122
  ClassMemberAccessLevel.PublicWritable,
35737
35123
  ClassMemberAccessLevel.PublicReadonly,
@@ -35775,7 +35161,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
35775
35161
  };
35776
35162
  }
35777
35163
 
35778
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35164
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35779
35165
  var import_typescript57 = __toESM(require("typescript"), 1);
35780
35166
  var queryFunctionNames = [
35781
35167
  "viewChild",
@@ -35859,7 +35245,7 @@ function parseDescendantsOption(value) {
35859
35245
  throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
35860
35246
  }
35861
35247
 
35862
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35248
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35863
35249
  var EMPTY_OBJECT = {};
35864
35250
  var queryDecoratorNames = [
35865
35251
  "ViewChild",
@@ -36657,7 +36043,7 @@ function toR3InputMetadata(mapping) {
36657
36043
  };
36658
36044
  }
36659
36045
 
36660
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36046
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36661
36047
  var DirectiveSymbol = class extends SemanticSymbol {
36662
36048
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
36663
36049
  super(decl);
@@ -36737,7 +36123,7 @@ function isBaseClassEqual(current, previous) {
36737
36123
  return isSymbolEqual(current, previous);
36738
36124
  }
36739
36125
 
36740
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36126
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36741
36127
  var FIELD_DECORATORS = [
36742
36128
  "Input",
36743
36129
  "Output",
@@ -36930,10 +36316,10 @@ var DirectiveDecoratorHandler = class {
36930
36316
  }
36931
36317
  };
36932
36318
 
36933
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36319
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36934
36320
  var import_typescript60 = __toESM(require("typescript"), 1);
36935
36321
 
36936
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36322
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36937
36323
  var import_typescript59 = __toESM(require("typescript"), 1);
36938
36324
  function createModuleWithProvidersResolver(reflector, isCore) {
36939
36325
  function _reflectModuleFromTypeParam(type, node) {
@@ -37005,7 +36391,7 @@ function isResolvedModuleWithProviders(sv) {
37005
36391
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
37006
36392
  }
37007
36393
 
37008
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
37009
36395
  var NgModuleSymbol = class extends SemanticSymbol {
37010
36396
  constructor(decl, hasProviders) {
37011
36397
  super(decl);
@@ -37618,7 +37004,7 @@ function isSyntheticReference(ref) {
37618
37004
  return ref.synthetic;
37619
37005
  }
37620
37006
 
37621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37007
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37622
37008
  function makeCyclicImportInfo(ref, type, cycle) {
37623
37009
  const name = ref.debugName || "(unknown)";
37624
37010
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -37641,7 +37027,7 @@ function checkCustomElementSelectorForErrors(selector) {
37641
37027
  return null;
37642
37028
  }
37643
37029
 
37644
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37030
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37645
37031
  var import_typescript62 = __toESM(require("typescript"), 1);
37646
37032
  function getTemplateDeclarationNodeForError(declaration) {
37647
37033
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -37993,7 +37379,7 @@ function _extractTemplateStyleUrls(template2) {
37993
37379
  }));
37994
37380
  }
37995
37381
 
37996
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37382
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37997
37383
  var ComponentSymbol = class extends DirectiveSymbol {
37998
37384
  constructor() {
37999
37385
  super(...arguments);
@@ -38028,7 +37414,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
38028
37414
  }
38029
37415
  };
38030
37416
 
38031
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37417
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
38032
37418
  function collectAnimationNames(value, animationTriggerNames) {
38033
37419
  if (value instanceof Map) {
38034
37420
  const name = value.get("name");
@@ -38105,7 +37491,7 @@ function isLikelyModuleWithProviders(value) {
38105
37491
  return false;
38106
37492
  }
38107
37493
 
38108
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
37494
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
38109
37495
  var NgOriginalFile = Symbol("NgOriginalFile");
38110
37496
  var UpdateMode;
38111
37497
  (function(UpdateMode2) {
@@ -38113,13 +37499,13 @@ var UpdateMode;
38113
37499
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
38114
37500
  })(UpdateMode || (UpdateMode = {}));
38115
37501
 
38116
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37502
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38117
37503
  var import_typescript66 = __toESM(require("typescript"), 1);
38118
37504
 
38119
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37505
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38120
37506
  var import_typescript63 = __toESM(require("typescript"), 1);
38121
37507
 
38122
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
37508
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
38123
37509
  var NgExtension = Symbol("NgExtension");
38124
37510
  function isExtended(sf) {
38125
37511
  return sf[NgExtension] !== void 0;
@@ -38179,13 +37565,13 @@ function retagTsFile(sf) {
38179
37565
  }
38180
37566
  }
38181
37567
 
38182
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
37568
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
38183
37569
  var TS_EXTENSIONS = /\.tsx?$/i;
38184
37570
  function makeShimFileName(fileName, suffix) {
38185
37571
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
38186
37572
  }
38187
37573
 
38188
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
37574
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
38189
37575
  var ShimAdapter = class {
38190
37576
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
38191
37577
  this.delegate = delegate;
@@ -38280,7 +37666,7 @@ var ShimAdapter = class {
38280
37666
  }
38281
37667
  };
38282
37668
 
38283
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
37669
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
38284
37670
  var ShimReferenceTagger = class {
38285
37671
  constructor(shimExtensions) {
38286
37672
  this.tagged = /* @__PURE__ */ new Set();
@@ -38314,7 +37700,7 @@ var ShimReferenceTagger = class {
38314
37700
  }
38315
37701
  };
38316
37702
 
38317
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
37703
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
38318
37704
  var DelegatingCompilerHost = class {
38319
37705
  get jsDocParsingMode() {
38320
37706
  return this.delegate.jsDocParsingMode;
@@ -38436,14 +37822,14 @@ var TsCreateProgramDriver = class {
38436
37822
  }
38437
37823
  };
38438
37824
 
38439
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
37825
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
38440
37826
  var OptimizeFor;
38441
37827
  (function(OptimizeFor2) {
38442
37828
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
38443
37829
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
38444
37830
  })(OptimizeFor || (OptimizeFor = {}));
38445
37831
 
38446
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
37832
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
38447
37833
  var CompletionKind;
38448
37834
  (function(CompletionKind2) {
38449
37835
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
@@ -38451,7 +37837,7 @@ var CompletionKind;
38451
37837
  CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
38452
37838
  })(CompletionKind || (CompletionKind = {}));
38453
37839
 
38454
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
37840
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
38455
37841
  var PotentialImportKind;
38456
37842
  (function(PotentialImportKind2) {
38457
37843
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -38463,7 +37849,7 @@ var PotentialImportMode;
38463
37849
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
38464
37850
  })(PotentialImportMode || (PotentialImportMode = {}));
38465
37851
 
38466
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
37852
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
38467
37853
  var SymbolKind;
38468
37854
  (function(SymbolKind2) {
38469
37855
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -38480,7 +37866,7 @@ var SymbolKind;
38480
37866
  SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
38481
37867
  })(SymbolKind || (SymbolKind = {}));
38482
37868
 
38483
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
37869
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
38484
37870
  var import_typescript68 = __toESM(require("typescript"), 1);
38485
37871
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
38486
37872
  var _a2;
@@ -38591,7 +37977,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
38591
37977
  );
38592
37978
  }
38593
37979
 
38594
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
37980
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
38595
37981
  var TEMPLATE_ID = Symbol("ngTemplateId");
38596
37982
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
38597
37983
  function getTemplateId(clazz) {
@@ -38608,10 +37994,10 @@ function allocateTemplateId(sf) {
38608
37994
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
38609
37995
  }
38610
37996
 
38611
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
37997
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38612
37998
  var import_typescript70 = __toESM(require("typescript"), 1);
38613
37999
 
38614
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38000
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
38615
38001
  var import_typescript69 = __toESM(require("typescript"), 1);
38616
38002
  var parseSpanComment = /^(\d+),(\d+)$/;
38617
38003
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -38741,7 +38127,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
38741
38127
  }) || false;
38742
38128
  }
38743
38129
 
38744
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38130
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
38745
38131
  var CompletionEngine = class {
38746
38132
  constructor(tcb, data, tcbPath, tcbIsShim) {
38747
38133
  this.tcb = tcb;
@@ -40004,10 +39390,10 @@ var MagicString = class {
40004
39390
  }
40005
39391
  };
40006
39392
 
40007
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
39393
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
40008
39394
  var import_typescript84 = __toESM(require("typescript"), 1);
40009
39395
 
40010
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
39396
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
40011
39397
  var import_typescript71 = __toESM(require("typescript"), 1);
40012
39398
  var REGISTRY = new DomElementSchemaRegistry();
40013
39399
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -40059,10 +39445,10 @@ var RegistryDomSchemaChecker = class {
40059
39445
  }
40060
39446
  };
40061
39447
 
40062
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39448
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40063
39449
  var import_typescript77 = __toESM(require("typescript"), 1);
40064
39450
 
40065
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
39451
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
40066
39452
  var ReferenceEmitEnvironment = class {
40067
39453
  constructor(importManager, refEmitter, reflector, contextFile) {
40068
39454
  this.importManager = importManager;
@@ -40092,7 +39478,7 @@ var ReferenceEmitEnvironment = class {
40092
39478
  }
40093
39479
  };
40094
39480
 
40095
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
39481
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
40096
39482
  var import_typescript72 = __toESM(require("typescript"), 1);
40097
39483
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
40098
39484
  import_typescript72.default.SyntaxKind.ParenthesizedExpression,
@@ -40175,13 +39561,13 @@ function tsNumericExpression2(value) {
40175
39561
  return import_typescript72.default.factory.createNumericLiteral(value);
40176
39562
  }
40177
39563
 
40178
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39564
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40179
39565
  var import_typescript76 = __toESM(require("typescript"), 1);
40180
39566
 
40181
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39567
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
40182
39568
  var import_typescript74 = __toESM(require("typescript"), 1);
40183
39569
 
40184
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
39570
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
40185
39571
  var import_typescript73 = __toESM(require("typescript"), 1);
40186
39572
  var TypeParameterEmitter = class {
40187
39573
  constructor(typeParameters, reflector) {
@@ -40259,7 +39645,7 @@ var TypeParameterEmitter = class {
40259
39645
  }
40260
39646
  };
40261
39647
 
40262
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
39648
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
40263
39649
  var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
40264
39650
  Identifiers.InputSignalBrandWriteType
40265
39651
  ];
@@ -40351,7 +39737,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
40351
39737
  return emitter.canEmit((ref) => env.canReferenceType(ref));
40352
39738
  }
40353
39739
 
40354
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
39740
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
40355
39741
  function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
40356
39742
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
40357
39743
  const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -40474,7 +39860,7 @@ function typeParametersWithDefaultTypes(params) {
40474
39860
  });
40475
39861
  }
40476
39862
 
40477
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
39863
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
40478
39864
  var Environment = class extends ReferenceEmitEnvironment {
40479
39865
  constructor(config, importManager, refEmitter, reflector, contextFile) {
40480
39866
  super(importManager, refEmitter, reflector, contextFile);
@@ -40546,7 +39932,7 @@ var Environment = class extends ReferenceEmitEnvironment {
40546
39932
  }
40547
39933
  };
40548
39934
 
40549
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
39935
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
40550
39936
  var import_typescript78 = __toESM(require("typescript"), 1);
40551
39937
  var OutOfBandDiagnosticRecorderImpl = class {
40552
39938
  constructor(resolver) {
@@ -40746,7 +40132,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
40746
40132
  });
40747
40133
  }
40748
40134
 
40749
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40135
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
40750
40136
  var import_typescript79 = __toESM(require("typescript"), 1);
40751
40137
  var TypeCheckShimGenerator = class {
40752
40138
  constructor() {
@@ -40764,10 +40150,10 @@ var TypeCheckShimGenerator = class {
40764
40150
  }
40765
40151
  };
40766
40152
 
40767
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40153
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40768
40154
  var import_typescript82 = __toESM(require("typescript"), 1);
40769
40155
 
40770
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40156
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
40771
40157
  var import_typescript80 = __toESM(require("typescript"), 1);
40772
40158
  function wrapForDiagnostics(expr) {
40773
40159
  return import_typescript80.default.factory.createParenthesizedExpression(expr);
@@ -40822,7 +40208,7 @@ function translateDiagnostic(diagnostic, resolver) {
40822
40208
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
40823
40209
  }
40824
40210
 
40825
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40211
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
40826
40212
  var import_typescript81 = __toESM(require("typescript"), 1);
40827
40213
  var NULL_AS_ANY = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNull(), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
40828
40214
  var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
@@ -41154,7 +40540,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
41154
40540
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
41155
40541
  })();
41156
40542
 
41157
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
40543
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
41158
40544
  var TcbGenericContextBehavior;
41159
40545
  (function(TcbGenericContextBehavior2) {
41160
40546
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -42731,7 +42117,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
42731
42117
  }
42732
42118
  };
42733
42119
 
42734
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42120
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
42735
42121
  var import_typescript83 = __toESM(require("typescript"), 1);
42736
42122
  var TypeCheckFile = class extends Environment {
42737
42123
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -42779,7 +42165,7 @@ var TypeCheckFile = class extends Environment {
42779
42165
  }
42780
42166
  };
42781
42167
 
42782
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
42783
42169
  var InliningMode;
42784
42170
  (function(InliningMode2) {
42785
42171
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -43031,7 +42417,7 @@ var TypeCtorOp = class {
43031
42417
  }
43032
42418
  };
43033
42419
 
43034
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
42420
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
43035
42421
  var LF_CHAR = 10;
43036
42422
  var CR_CHAR = 13;
43037
42423
  var LINE_SEP_CHAR = 8232;
@@ -43072,7 +42458,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
43072
42458
  return low - 1;
43073
42459
  }
43074
42460
 
43075
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
42461
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
43076
42462
  var TemplateSource = class {
43077
42463
  constructor(mapping, file) {
43078
42464
  this.mapping = mapping;
@@ -43123,7 +42509,7 @@ var TemplateSourceManager = class {
43123
42509
  }
43124
42510
  };
43125
42511
 
43126
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
42512
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
43127
42513
  var import_typescript85 = __toESM(require("typescript"), 1);
43128
42514
  var SymbolBuilder = class {
43129
42515
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -43690,7 +43076,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
43690
43076
  };
43691
43077
  }
43692
43078
 
43693
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43079
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
43694
43080
  var REGISTRY2 = new DomElementSchemaRegistry();
43695
43081
  var TemplateTypeCheckerImpl = class {
43696
43082
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -44122,18 +43508,16 @@ var TemplateTypeCheckerImpl = class {
44122
43508
  for (const tag of REGISTRY2.allKnownElementNames()) {
44123
43509
  tagMap.set(tag, null);
44124
43510
  }
44125
- const scope = this.getScopeData(component);
44126
- if (scope !== null) {
44127
- for (const directive of scope.directives) {
44128
- if (directive.selector === null) {
43511
+ const potentialDirectives = this.getPotentialTemplateDirectives(component);
43512
+ for (const directive of potentialDirectives) {
43513
+ if (directive.selector === null) {
43514
+ continue;
43515
+ }
43516
+ for (const selector of CssSelector.parse(directive.selector)) {
43517
+ if (selector.element === null || tagMap.has(selector.element)) {
44129
43518
  continue;
44130
43519
  }
44131
- for (const selector of CssSelector.parse(directive.selector)) {
44132
- if (selector.element === null || tagMap.has(selector.element)) {
44133
- continue;
44134
- }
44135
- tagMap.set(selector.element, directive);
44136
- }
43520
+ tagMap.set(selector.element, directive);
44137
43521
  }
44138
43522
  }
44139
43523
  this.elementTagCache.set(component, tagMap);
@@ -44390,7 +43774,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
44390
43774
  }
44391
43775
  };
44392
43776
 
44393
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
43777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
44394
43778
  var EMPTY_ARRAY2 = [];
44395
43779
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
44396
43780
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
@@ -45409,7 +44793,7 @@ function isDefaultImport(node) {
45409
44793
  return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
45410
44794
  }
45411
44795
 
45412
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
44796
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
45413
44797
  var import_typescript90 = __toESM(require("typescript"), 1);
45414
44798
  var InjectableDecoratorHandler = class {
45415
44799
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -45640,7 +45024,7 @@ function getDep(dep, reflector) {
45640
45024
  return meta;
45641
45025
  }
45642
45026
 
45643
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45027
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
45644
45028
  var import_typescript91 = __toESM(require("typescript"), 1);
45645
45029
  var PipeSymbol = class extends SemanticSymbol {
45646
45030
  constructor(decl, name) {
@@ -45796,13 +45180,13 @@ var PipeDecoratorHandler = class {
45796
45180
  }
45797
45181
  };
45798
45182
 
45799
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45183
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
45800
45184
  var import_typescript92 = __toESM(require("typescript"), 1);
45801
45185
 
45802
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45186
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
45803
45187
  var import_typescript93 = __toESM(require("typescript"), 1);
45804
45188
 
45805
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45189
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
45806
45190
  var EmitFlags;
45807
45191
  (function(EmitFlags2) {
45808
45192
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -45814,13 +45198,13 @@ var EmitFlags;
45814
45198
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
45815
45199
  })(EmitFlags || (EmitFlags = {}));
45816
45200
 
45817
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45201
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
45818
45202
  var import_typescript96 = __toESM(require("typescript"), 1);
45819
45203
 
45820
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45204
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
45821
45205
  var import_typescript123 = __toESM(require("typescript"), 1);
45822
45206
 
45823
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45207
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
45824
45208
  var path2 = __toESM(require("path"), 1);
45825
45209
  function i18nGetExtension(formatName) {
45826
45210
  const format = formatName.toLowerCase();
@@ -45870,10 +45254,10 @@ function getPathNormalizer(basePath) {
45870
45254
  };
45871
45255
  }
45872
45256
 
45873
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45257
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45874
45258
  var import_typescript97 = __toESM(require("typescript"), 1);
45875
45259
 
45876
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45260
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
45877
45261
  function toNumbers(value) {
45878
45262
  const suffixIndex = value.lastIndexOf("-");
45879
45263
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -45908,7 +45292,7 @@ function compareVersions(v1, v2) {
45908
45292
  return compareNumbers(toNumbers(v1), toNumbers(v2));
45909
45293
  }
45910
45294
 
45911
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45295
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
45912
45296
  var MIN_TS_VERSION = "5.4.0";
45913
45297
  var MAX_TS_VERSION = "5.6.0";
45914
45298
  var tsVersion = import_typescript97.default.version;
@@ -45921,10 +45305,10 @@ function verifySupportedTypeScriptVersion() {
45921
45305
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
45922
45306
  }
45923
45307
 
45924
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45308
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
45925
45309
  var import_typescript119 = __toESM(require("typescript"), 1);
45926
45310
 
45927
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45311
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
45928
45312
  var CycleAnalyzer = class {
45929
45313
  constructor(importGraph) {
45930
45314
  this.importGraph = importGraph;
@@ -45995,7 +45379,7 @@ var Cycle = class {
45995
45379
  }
45996
45380
  };
45997
45381
 
45998
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45382
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
45999
45383
  var import_typescript98 = __toESM(require("typescript"), 1);
46000
45384
  var ImportGraph = class {
46001
45385
  constructor(checker, perf) {
@@ -46087,13 +45471,13 @@ var Found = class {
46087
45471
  }
46088
45472
  };
46089
45473
 
46090
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
45474
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46091
45475
  var import_typescript107 = __toESM(require("typescript"), 1);
46092
45476
 
46093
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45477
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
46094
45478
  var import_typescript102 = __toESM(require("typescript"), 1);
46095
45479
 
46096
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
45480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
46097
45481
  var EntryType;
46098
45482
  (function(EntryType2) {
46099
45483
  EntryType2["Block"] = "block";
@@ -46137,17 +45521,17 @@ var MemberTags;
46137
45521
  MemberTags2["Inherited"] = "override";
46138
45522
  })(MemberTags || (MemberTags = {}));
46139
45523
 
46140
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
45524
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
46141
45525
  function isAngularPrivateName(name) {
46142
45526
  var _a2;
46143
45527
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
46144
45528
  return firstChar === "\u0275" || firstChar === "_";
46145
45529
  }
46146
45530
 
46147
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45531
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
46148
45532
  var import_typescript100 = __toESM(require("typescript"), 1);
46149
45533
 
46150
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
45534
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
46151
45535
  function extractGenerics(declaration) {
46152
45536
  var _a2, _b2;
46153
45537
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -46160,7 +45544,7 @@ function extractGenerics(declaration) {
46160
45544
  })) != null ? _b2 : [];
46161
45545
  }
46162
45546
 
46163
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
45547
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
46164
45548
  var import_typescript99 = __toESM(require("typescript"), 1);
46165
45549
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
46166
45550
  function extractJsDocTags(node) {
@@ -46204,12 +45588,12 @@ function unescapeAngularDecorators(comment) {
46204
45588
  return comment.replace(/_NG_AT_/g, "@");
46205
45589
  }
46206
45590
 
46207
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
45591
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
46208
45592
  function extractResolvedTypeString(node, checker) {
46209
45593
  return checker.typeToString(checker.getTypeAtLocation(node));
46210
45594
  }
46211
45595
 
46212
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
45596
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
46213
45597
  var FunctionExtractor = class {
46214
45598
  constructor(name, declaration, typeChecker) {
46215
45599
  this.name = name;
@@ -46217,17 +45601,20 @@ var FunctionExtractor = class {
46217
45601
  this.typeChecker = typeChecker;
46218
45602
  }
46219
45603
  extract() {
45604
+ var _a2;
46220
45605
  const signature = this.typeChecker.getSignatureFromDeclaration(this.declaration);
46221
45606
  const returnType = signature ? this.typeChecker.typeToString(this.typeChecker.getReturnTypeOfSignature(signature)) : "unknown";
45607
+ const jsdocsTags = extractJsDocTags(this.declaration);
46222
45608
  return {
46223
45609
  params: extractAllParams(this.declaration.parameters, this.typeChecker),
46224
45610
  name: this.name,
46225
45611
  isNewType: import_typescript100.default.isConstructSignatureDeclaration(this.declaration),
46226
45612
  returnType,
45613
+ returnDescription: (_a2 = jsdocsTags.find((tag) => tag.name === "returns")) == null ? void 0 : _a2.comment,
46227
45614
  entryType: EntryType.Function,
46228
45615
  generics: extractGenerics(this.declaration),
46229
45616
  description: extractJsDocDescription(this.declaration),
46230
- jsdocTags: extractJsDocTags(this.declaration),
45617
+ jsdocTags: jsdocsTags,
46231
45618
  rawComment: extractRawJsDoc(this.declaration)
46232
45619
  };
46233
45620
  }
@@ -46265,7 +45652,7 @@ function extractAllParams(params, typeChecker) {
46265
45652
  }));
46266
45653
  }
46267
45654
 
46268
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
45655
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
46269
45656
  var import_typescript101 = __toESM(require("typescript"), 1);
46270
45657
  function isInternal(member) {
46271
45658
  return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
@@ -46284,7 +45671,7 @@ function hasLeadingInternalComment(member) {
46284
45671
  )) != null ? _a2 : false;
46285
45672
  }
46286
45673
 
46287
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
45674
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
46288
45675
  var ClassExtractor = class {
46289
45676
  constructor(declaration, typeChecker) {
46290
45677
  this.declaration = declaration;
@@ -46536,7 +45923,7 @@ function extractInterface(declaration, typeChecker) {
46536
45923
  return extractor.extract();
46537
45924
  }
46538
45925
 
46539
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
45926
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
46540
45927
  var import_typescript103 = __toESM(require("typescript"), 1);
46541
45928
  var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
46542
45929
  function extractConstant(declaration, typeChecker) {
@@ -46594,7 +45981,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
46594
45981
  });
46595
45982
  }
46596
45983
 
46597
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
45984
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
46598
45985
  var import_typescript104 = __toESM(require("typescript"), 1);
46599
45986
  function extractorDecorator(declaration, typeChecker) {
46600
45987
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -46667,7 +46054,7 @@ function getDecoratorJsDocNode(declaration) {
46667
46054
  return callSignature;
46668
46055
  }
46669
46056
 
46670
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46057
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
46671
46058
  var import_typescript105 = __toESM(require("typescript"), 1);
46672
46059
  function extractEnum(declaration, typeChecker) {
46673
46060
  return {
@@ -46698,7 +46085,7 @@ function getEnumMemberValue(memberNode) {
46698
46085
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
46699
46086
  }
46700
46087
 
46701
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46088
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
46702
46089
  var import_typescript106 = __toESM(require("typescript"), 1);
46703
46090
  var initializerApiTag = "initializerApiFunction";
46704
46091
  function isInitializerApiFunction(node, typeChecker) {
@@ -46835,7 +46222,7 @@ function findImplementationOfFunction(node, typeChecker) {
46835
46222
  return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript106.default.isFunctionDeclaration(s) && s.body !== void 0);
46836
46223
  }
46837
46224
 
46838
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46225
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
46839
46226
  function extractTypeAlias(declaration) {
46840
46227
  return {
46841
46228
  name: declaration.name.getText(),
@@ -46847,7 +46234,7 @@ function extractTypeAlias(declaration) {
46847
46234
  };
46848
46235
  }
46849
46236
 
46850
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46237
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
46851
46238
  var DocsExtractor = class {
46852
46239
  constructor(typeChecker, metadataReader) {
46853
46240
  this.typeChecker = typeChecker;
@@ -46931,7 +46318,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
46931
46318
  return relativePath;
46932
46319
  }
46933
46320
 
46934
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46321
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
46935
46322
  var import_typescript108 = __toESM(require("typescript"), 1);
46936
46323
  var FlatIndexGenerator = class {
46937
46324
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -46956,7 +46343,7 @@ export * from '${relativeEntryPoint}';
46956
46343
  }
46957
46344
  };
46958
46345
 
46959
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46346
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
46960
46347
  function findFlatIndexEntryPoint(rootFiles) {
46961
46348
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
46962
46349
  let resolvedEntryPoint = null;
@@ -46972,7 +46359,7 @@ function findFlatIndexEntryPoint(rootFiles) {
46972
46359
  return resolvedEntryPoint;
46973
46360
  }
46974
46361
 
46975
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46362
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
46976
46363
  var import_typescript110 = __toESM(require("typescript"), 1);
46977
46364
  function checkForPrivateExports(entryPoint, checker, refGraph) {
46978
46365
  const diagnostics = [];
@@ -47052,7 +46439,7 @@ function getDescriptorOfDeclaration(decl) {
47052
46439
  }
47053
46440
  }
47054
46441
 
47055
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
46442
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
47056
46443
  var ReferenceGraph = class {
47057
46444
  constructor() {
47058
46445
  this.references = /* @__PURE__ */ new Map();
@@ -47106,7 +46493,7 @@ var ReferenceGraph = class {
47106
46493
  }
47107
46494
  };
47108
46495
 
47109
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
46496
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
47110
46497
  var FileDependencyGraph = class {
47111
46498
  constructor() {
47112
46499
  this.nodes = /* @__PURE__ */ new Map();
@@ -47173,7 +46560,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
47173
46560
  return false;
47174
46561
  }
47175
46562
 
47176
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
46563
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
47177
46564
  var IncrementalStateKind;
47178
46565
  (function(IncrementalStateKind2) {
47179
46566
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -47181,7 +46568,7 @@ var IncrementalStateKind;
47181
46568
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
47182
46569
  })(IncrementalStateKind || (IncrementalStateKind = {}));
47183
46570
 
47184
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
46571
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
47185
46572
  var PhaseKind;
47186
46573
  (function(PhaseKind2) {
47187
46574
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -47382,7 +46769,7 @@ function toOriginalSourceFile(sf) {
47382
46769
  }
47383
46770
  }
47384
46771
 
47385
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
46772
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
47386
46773
  var TrackedIncrementalBuildStrategy = class {
47387
46774
  constructor() {
47388
46775
  this.state = null;
@@ -47403,7 +46790,7 @@ var TrackedIncrementalBuildStrategy = class {
47403
46790
  };
47404
46791
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
47405
46792
 
47406
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
46793
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
47407
46794
  var IdentifierKind;
47408
46795
  (function(IdentifierKind2) {
47409
46796
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -47422,7 +46809,7 @@ var AbsoluteSourceSpan2 = class {
47422
46809
  }
47423
46810
  };
47424
46811
 
47425
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
46812
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
47426
46813
  var IndexingContext = class {
47427
46814
  constructor() {
47428
46815
  this.components = /* @__PURE__ */ new Set();
@@ -47432,7 +46819,7 @@ var IndexingContext = class {
47432
46819
  }
47433
46820
  };
47434
46821
 
47435
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
46822
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
47436
46823
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
47437
46824
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
47438
46825
  super();
@@ -47726,7 +47113,7 @@ function getTemplateIdentifiers(boundTemplate) {
47726
47113
  return { identifiers: visitor.identifiers, errors: visitor.errors };
47727
47114
  }
47728
47115
 
47729
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47116
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
47730
47117
  function generateAnalysis(context) {
47731
47118
  const analysis = /* @__PURE__ */ new Map();
47732
47119
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -47762,7 +47149,7 @@ function generateAnalysis(context) {
47762
47149
  return analysis;
47763
47150
  }
47764
47151
 
47765
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47152
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
47766
47153
  var NgModuleIndexImpl = class {
47767
47154
  constructor(metaReader, localReader) {
47768
47155
  this.metaReader = metaReader;
@@ -47851,7 +47238,7 @@ var NgModuleIndexImpl = class {
47851
47238
  }
47852
47239
  };
47853
47240
 
47854
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47241
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
47855
47242
  var import_typescript112 = __toESM(require("typescript"), 1);
47856
47243
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
47857
47244
  var RESOURCE_MARKER = ".$ngresource$";
@@ -48003,7 +47390,7 @@ function createLookupResolutionHost(adapter) {
48003
47390
  };
48004
47391
  }
48005
47392
 
48006
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
47393
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
48007
47394
  var StandaloneComponentScopeReader = class {
48008
47395
  constructor(metaReader, localModuleReader, dtsModuleReader) {
48009
47396
  this.metaReader = metaReader;
@@ -48099,7 +47486,7 @@ var StandaloneComponentScopeReader = class {
48099
47486
  }
48100
47487
  };
48101
47488
 
48102
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47489
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
48103
47490
  var import_typescript113 = __toESM(require("typescript"), 1);
48104
47491
  var SIGNAL_FNS = /* @__PURE__ */ new Set([
48105
47492
  "WritableSignal",
@@ -48119,7 +47506,7 @@ function isSignalSymbol(symbol) {
48119
47506
  });
48120
47507
  }
48121
47508
 
48122
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47509
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
48123
47510
  var TemplateCheckWithVisitor = class {
48124
47511
  run(ctx, component, template2) {
48125
47512
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -48246,7 +47633,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
48246
47633
  }
48247
47634
  };
48248
47635
 
48249
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47636
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
48250
47637
  var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
48251
47638
  var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
48252
47639
  var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
@@ -48298,7 +47685,7 @@ var factory = {
48298
47685
  create: () => new InterpolatedSignalCheck()
48299
47686
  };
48300
47687
 
48301
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47688
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
48302
47689
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
48303
47690
  constructor() {
48304
47691
  super(...arguments);
@@ -48323,7 +47710,7 @@ var factory2 = {
48323
47710
  create: () => new InvalidBananaInBoxCheck()
48324
47711
  };
48325
47712
 
48326
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47713
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
48327
47714
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
48328
47715
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
48329
47716
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -48367,7 +47754,7 @@ var factory3 = {
48367
47754
  }
48368
47755
  };
48369
47756
 
48370
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
47757
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
48371
47758
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
48372
47759
  constructor() {
48373
47760
  super(...arguments);
@@ -48399,7 +47786,7 @@ var factory4 = {
48399
47786
  create: () => new MissingNgForOfLetCheck()
48400
47787
  };
48401
47788
 
48402
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
47789
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48403
47790
  var import_typescript114 = __toESM(require("typescript"), 1);
48404
47791
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
48405
47792
  constructor() {
@@ -48443,7 +47830,7 @@ var factory5 = {
48443
47830
  }
48444
47831
  };
48445
47832
 
48446
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
47833
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48447
47834
  var import_typescript115 = __toESM(require("typescript"), 1);
48448
47835
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
48449
47836
  constructor() {
@@ -48488,7 +47875,7 @@ var factory6 = {
48488
47875
  }
48489
47876
  };
48490
47877
 
48491
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
47878
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48492
47879
  var STYLE_SUFFIXES = ["px", "%", "em"];
48493
47880
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
48494
47881
  constructor() {
@@ -48511,7 +47898,7 @@ var factory7 = {
48511
47898
  create: () => new SuffixNotSupportedCheck()
48512
47899
  };
48513
47900
 
48514
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
47901
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48515
47902
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
48516
47903
  constructor() {
48517
47904
  super(...arguments);
@@ -48549,10 +47936,10 @@ var factory8 = {
48549
47936
  create: () => new TextAttributeNotBindingSpec()
48550
47937
  };
48551
47938
 
48552
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
47939
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48553
47940
  var import_typescript116 = __toESM(require("typescript"), 1);
48554
47941
 
48555
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
47942
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48556
47943
  var DiagnosticCategoryLabel;
48557
47944
  (function(DiagnosticCategoryLabel2) {
48558
47945
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -48560,7 +47947,7 @@ var DiagnosticCategoryLabel;
48560
47947
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
48561
47948
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
48562
47949
 
48563
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
47950
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48564
47951
  var ExtendedTemplateCheckerImpl = class {
48565
47952
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
48566
47953
  var _a2, _b2, _c2, _d2, _e2;
@@ -48612,7 +47999,7 @@ function assertNever(value) {
48612
47999
  ${value}`);
48613
48000
  }
48614
48001
 
48615
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48002
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48616
48003
  var ALL_DIAGNOSTIC_FACTORIES = [
48617
48004
  factory2,
48618
48005
  factory5,
@@ -48628,7 +48015,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
48628
48015
  ...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
48629
48016
  ]);
48630
48017
 
48631
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48018
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48632
48019
  var import_typescript117 = __toESM(require("typescript"), 1);
48633
48020
  var TemplateSemanticsCheckerImpl = class {
48634
48021
  constructor(templateTypeChecker) {
@@ -48718,7 +48105,7 @@ function unwrapAstWithSource(ast) {
48718
48105
  return ast instanceof ASTWithSource ? ast.ast : ast;
48719
48106
  }
48720
48107
 
48721
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48108
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48722
48109
  var import_typescript118 = __toESM(require("typescript"), 1);
48723
48110
  var APIS_TO_CHECK = [
48724
48111
  INPUT_INITIALIZER_FN,
@@ -48769,7 +48156,7 @@ var InitializerApiUsageRule = class {
48769
48156
  }
48770
48157
  };
48771
48158
 
48772
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48159
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48773
48160
  var SourceFileValidator = class {
48774
48161
  constructor(reflector, importedSymbolsTracker) {
48775
48162
  this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
@@ -48807,7 +48194,7 @@ var SourceFileValidator = class {
48807
48194
  }
48808
48195
  };
48809
48196
 
48810
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48197
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48811
48198
  function coreHasSymbol(program, symbol) {
48812
48199
  const checker = program.getTypeChecker();
48813
48200
  for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
@@ -48826,7 +48213,7 @@ function isMaybeCore(sf) {
48826
48213
  return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
48827
48214
  }
48828
48215
 
48829
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48216
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48830
48217
  var import_semver = __toESM(require_semver2(), 1);
48831
48218
  function coreVersionSupportsFeature(coreVersion, minVersion) {
48832
48219
  if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
@@ -48835,7 +48222,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
48835
48222
  return import_semver.default.satisfies(coreVersion, minVersion);
48836
48223
  }
48837
48224
 
48838
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48225
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48839
48226
  var CompilationTicketKind;
48840
48227
  (function(CompilationTicketKind2) {
48841
48228
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -49618,7 +49005,7 @@ function versionMapFromProgram(program, driver) {
49618
49005
  return versions;
49619
49006
  }
49620
49007
 
49621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49008
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49622
49009
  var import_typescript121 = __toESM(require("typescript"), 1);
49623
49010
  var DelegatingCompilerHost2 = class {
49624
49011
  get jsDocParsingMode() {
@@ -49757,7 +49144,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
49757
49144
  }
49758
49145
  };
49759
49146
 
49760
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49147
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49761
49148
  var NgtscProgram = class {
49762
49149
  constructor(rootNames, options, delegateHost, oldProgram) {
49763
49150
  this.options = options;
@@ -49984,18 +49371,18 @@ function mergeEmitResults(emitResults) {
49984
49371
  return { diagnostics, emitSkipped, emittedFiles };
49985
49372
  }
49986
49373
 
49987
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49374
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49988
49375
  function createProgram({ rootNames, options, host, oldProgram }) {
49989
49376
  return new NgtscProgram(rootNames, options, host, oldProgram);
49990
49377
  }
49991
49378
 
49992
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49379
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49993
49380
  var import_typescript125 = __toESM(require("typescript"), 1);
49994
49381
 
49995
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49382
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49996
49383
  var import_typescript124 = __toESM(require("typescript"), 1);
49997
49384
 
49998
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49385
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49999
49386
  var GLOBAL_DEFS_FOR_TERSER = {
50000
49387
  ngDevMode: false,
50001
49388
  ngI18nClosureMode: false
@@ -50004,7 +49391,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
50004
49391
  ngJitMode: false
50005
49392
  });
50006
49393
 
50007
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
50008
49395
  var LogLevel;
50009
49396
  (function(LogLevel2) {
50010
49397
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -50013,7 +49400,7 @@ var LogLevel;
50013
49400
  LogLevel2[LogLevel2["error"] = 3] = "error";
50014
49401
  })(LogLevel || (LogLevel = {}));
50015
49402
 
50016
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49403
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
50017
49404
  var RESET = "\x1B[0m";
50018
49405
  var RED = "\x1B[31m";
50019
49406
  var YELLOW = "\x1B[33m";
@@ -50022,18 +49409,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
50022
49409
  var WARN = `${YELLOW}Warning:${RESET}`;
50023
49410
  var ERROR = `${RED}Error:${RESET}`;
50024
49411
 
50025
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
49412
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
50026
49413
  setFileSystem(new NodeJSFileSystem());
50027
49414
 
50028
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49415
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
50029
49416
  var import_fs2 = require("fs");
50030
49417
  var import_path8 = require("path");
50031
49418
  var import_typescript138 = __toESM(require("typescript"), 1);
50032
49419
 
50033
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49420
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
50034
49421
  var import_typescript127 = __toESM(require("typescript"), 1);
50035
49422
 
50036
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49423
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
50037
49424
  var import_path4 = require("path");
50038
49425
  var import_typescript126 = __toESM(require("typescript"), 1);
50039
49426
  var ImportManager2 = class {
@@ -50217,7 +49604,7 @@ ${text2}`;
50217
49604
  }
50218
49605
  };
50219
49606
 
50220
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49607
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
50221
49608
  var ChangeTracker = class {
50222
49609
  constructor(_printer, _importRemapper) {
50223
49610
  __publicField(this, "_printer");
@@ -50280,7 +49667,7 @@ function normalizePath(path4) {
50280
49667
  return path4.replace(/\\/g, "/");
50281
49668
  }
50282
49669
 
50283
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49670
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
50284
49671
  var import_core19 = require("@angular-devkit/core");
50285
49672
  function getProjectTsConfigPaths(tree) {
50286
49673
  return __async(this, null, function* () {
@@ -50360,11 +49747,11 @@ function getWorkspace(tree) {
50360
49747
  });
50361
49748
  }
50362
49749
 
50363
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49750
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50364
49751
  var import_path5 = require("path");
50365
49752
  var import_typescript129 = __toESM(require("typescript"), 1);
50366
49753
 
50367
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
49754
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
50368
49755
  var path3 = __toESM(require("path"), 1);
50369
49756
  var import_typescript128 = __toESM(require("typescript"), 1);
50370
49757
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -50381,7 +49768,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
50381
49768
  return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
50382
49769
  }
50383
49770
 
50384
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49771
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50385
49772
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
50386
49773
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
50387
49774
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -50410,13 +49797,13 @@ function canMigrateFile(basePath, sourceFile, program) {
50410
49797
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
50411
49798
  }
50412
49799
 
50413
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
49800
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50414
49801
  var import_typescript134 = __toESM(require("typescript"), 1);
50415
49802
 
50416
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
49803
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50417
49804
  var import_typescript131 = __toESM(require("typescript"), 1);
50418
49805
 
50419
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
49806
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50420
49807
  var import_typescript130 = __toESM(require("typescript"), 1);
50421
49808
  function getImportOfIdentifier(typeChecker, node) {
50422
49809
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -50467,7 +49854,7 @@ function findImportSpecifier(nodes, specifierName) {
50467
49854
  });
50468
49855
  }
50469
49856
 
50470
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
49857
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50471
49858
  function getCallDecoratorImport(typeChecker, decorator) {
50472
49859
  if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
50473
49860
  return null;
@@ -50476,7 +49863,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
50476
49863
  return getImportOfIdentifier(typeChecker, identifier);
50477
49864
  }
50478
49865
 
50479
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
49866
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50480
49867
  function getAngularDecorators2(typeChecker, decorators) {
50481
49868
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
50482
49869
  node,
@@ -50486,7 +49873,7 @@ function getAngularDecorators2(typeChecker, decorators) {
50486
49873
  }));
50487
49874
  }
50488
49875
 
50489
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
49876
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50490
49877
  var import_typescript132 = __toESM(require("typescript"), 1);
50491
49878
  function closestNode(node, predicate) {
50492
49879
  let current = node.parent;
@@ -50499,7 +49886,7 @@ function closestNode(node, predicate) {
50499
49886
  return null;
50500
49887
  }
50501
49888
 
50502
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
49889
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50503
49890
  var import_path6 = require("path");
50504
49891
  var import_typescript133 = __toESM(require("typescript"), 1);
50505
49892
  var UniqueItemTracker = class {
@@ -50677,7 +50064,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
50677
50064
  }));
50678
50065
  }
50679
50066
 
50680
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50067
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50681
50068
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
50682
50069
  const filesToRemove = /* @__PURE__ */ new Set();
50683
50070
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -50876,14 +50263,14 @@ function findNgModuleDecorator(node, typeChecker) {
50876
50263
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
50877
50264
  }
50878
50265
 
50879
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50266
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50880
50267
  var import_path7 = require("path");
50881
50268
  var import_typescript137 = __toESM(require("typescript"), 1);
50882
50269
 
50883
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50270
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50884
50271
  var import_typescript136 = __toESM(require("typescript"), 1);
50885
50272
 
50886
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50273
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50887
50274
  var import_typescript135 = __toESM(require("typescript"), 1);
50888
50275
  function isReferenceToImport(typeChecker, node, importSpecifier) {
50889
50276
  var _a2, _b2;
@@ -50892,7 +50279,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
50892
50279
  return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b2 = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b2[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
50893
50280
  }
50894
50281
 
50895
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50282
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50896
50283
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
50897
50284
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
50898
50285
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51214,7 +50601,7 @@ function analyzeTestingModules(testObjects, typeChecker) {
51214
50601
  continue;
51215
50602
  }
51216
50603
  const importsProp = findLiteralProperty(obj, "imports");
51217
- const importElements = importsProp && hasNgModuleMetadataElements(importsProp) ? importsProp.initializer.elements.filter((el) => {
50604
+ const importElements = importsProp && hasNgModuleMetadataElements(importsProp) && import_typescript136.default.isArrayLiteralExpression(importsProp.initializer) ? importsProp.initializer.elements.filter((el) => {
51218
50605
  return !import_typescript136.default.isCallExpression(el) && !isClassReferenceInAngularModule(el, /^BrowserAnimationsModule|NoopAnimationsModule$/, "platform-browser/animations", typeChecker);
51219
50606
  }) : null;
51220
50607
  for (const decl of declarations) {
@@ -51241,7 +50628,7 @@ function analyzeTestingModules(testObjects, typeChecker) {
51241
50628
  function extractDeclarationsFromTestObject(obj, typeChecker) {
51242
50629
  const results = [];
51243
50630
  const declarations = findLiteralProperty(obj, "declarations");
51244
- if (declarations && hasNgModuleMetadataElements(declarations)) {
50631
+ if (declarations && hasNgModuleMetadataElements(declarations) && import_typescript136.default.isArrayLiteralExpression(declarations.initializer)) {
51245
50632
  for (const element2 of declarations.initializer.elements) {
51246
50633
  const declaration = findClassDeclaration(element2, typeChecker);
51247
50634
  if (declaration && declaration.getSourceFile().fileName === obj.getSourceFile().fileName) {
@@ -51262,7 +50649,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
51262
50649
  return metadata != null && metadata.isStandalone;
51263
50650
  }
51264
50651
 
51265
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50652
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
51266
50653
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
51267
50654
  const tracker = new ChangeTracker(printer, importRemapper);
51268
50655
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51639,7 +51026,7 @@ function hasImport(program, rootFileNames, moduleName) {
51639
51026
  return false;
51640
51027
  }
51641
51028
 
51642
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51029
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51643
51030
  var MigrationMode;
51644
51031
  (function(MigrationMode2) {
51645
51032
  MigrationMode2["toStandalone"] = "convert-to-standalone";