@angular/core 18.0.2 → 18.0.3

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.
@@ -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.0.2");
25849
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
25850
+ var VERSION2 = new Version("18.0.3");
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.0.2"));
26954
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
26973
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27041
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27359
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27382
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27420
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27444
+ definitionMap.set("version", literal("18.0.3"));
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.0.2"));
27479
+ definitionMap.set("version", literal("18.0.3"));
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.0.2");
27495
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
27496
+ var VERSION3 = new Version("18.0.3");
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;
@@ -29063,7 +28449,7 @@ function extractModuleName(node) {
29063
28449
  return node.moduleSpecifier.text;
29064
28450
  }
29065
28451
 
29066
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
28452
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
29067
28453
  var import_typescript11 = __toESM(require("typescript"), 1);
29068
28454
  function isNamedClassDeclaration(node) {
29069
28455
  return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
@@ -29087,7 +28473,7 @@ function classMemberAccessLevelToString(level) {
29087
28473
  }
29088
28474
  }
29089
28475
 
29090
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
28476
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
29091
28477
  var TypeScriptReflectionHost = class {
29092
28478
  constructor(checker, isLocalCompilation = false) {
29093
28479
  this.checker = checker;
@@ -29574,7 +28960,7 @@ function getExportedName(decl, originalId) {
29574
28960
  }
29575
28961
  var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
29576
28962
 
29577
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
28963
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
29578
28964
  var AssumeEager = "AssumeEager";
29579
28965
  var DeferredSymbolTracker = class {
29580
28966
  constructor(typeChecker, onlyExplicitDeferDependencyImports) {
@@ -29694,7 +29080,7 @@ var DeferredSymbolTracker = class {
29694
29080
  }
29695
29081
  };
29696
29082
 
29697
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29083
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
29698
29084
  var import_typescript15 = __toESM(require("typescript"), 1);
29699
29085
  var ImportedSymbolsTracker = class {
29700
29086
  constructor() {
@@ -29764,7 +29150,7 @@ var ImportedSymbolsTracker = class {
29764
29150
  }
29765
29151
  };
29766
29152
 
29767
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29153
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
29768
29154
  var import_typescript16 = __toESM(require("typescript"), 1);
29769
29155
  var LocalCompilationExtraImportsTracker = class {
29770
29156
  constructor(typeChecker) {
@@ -29808,7 +29194,7 @@ function removeQuotations(s) {
29808
29194
  return s.substring(1, s.length - 1).trim();
29809
29195
  }
29810
29196
 
29811
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29197
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
29812
29198
  var Reference2 = class {
29813
29199
  constructor(node, bestGuessOwningModule = null) {
29814
29200
  this.node = node;
@@ -29877,7 +29263,7 @@ var Reference2 = class {
29877
29263
  }
29878
29264
  };
29879
29265
 
29880
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29266
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
29881
29267
  var ModuleResolver = class {
29882
29268
  constructor(program, compilerOptions, host, moduleResolutionCache) {
29883
29269
  this.program = program;
@@ -29894,16 +29280,16 @@ var ModuleResolver = class {
29894
29280
  }
29895
29281
  };
29896
29282
 
29897
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29283
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
29898
29284
  var import_typescript21 = __toESM(require("typescript"), 1);
29899
29285
 
29900
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29286
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
29901
29287
  var import_typescript70 = __toESM(require("typescript"), 1);
29902
29288
 
29903
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29289
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29904
29290
  var import_typescript23 = __toESM(require("typescript"), 1);
29905
29291
 
29906
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
29907
29293
  var import_typescript22 = __toESM(require("typescript"), 1);
29908
29294
  var CORE_MODULE2 = "@angular/core";
29909
29295
  function valueReferenceToExpression(valueRef) {
@@ -30161,7 +29547,7 @@ function isAbstractClassDeclaration(clazz) {
30161
29547
  return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
30162
29548
  }
30163
29549
 
30164
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
29550
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
30165
29551
  function getConstructorDependencies(clazz, reflector, isCore) {
30166
29552
  const deps = [];
30167
29553
  const errors = [];
@@ -30305,10 +29691,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
30305
29691
  return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
30306
29692
  }
30307
29693
 
30308
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
29694
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
30309
29695
  var import_typescript46 = __toESM(require("typescript"), 1);
30310
29696
 
30311
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
29697
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
30312
29698
  var MetaKind;
30313
29699
  (function(MetaKind2) {
30314
29700
  MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
@@ -30321,10 +29707,10 @@ var MatchSource;
30321
29707
  MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
30322
29708
  })(MatchSource || (MatchSource = {}));
30323
29709
 
30324
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29710
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30325
29711
  var import_typescript26 = __toESM(require("typescript"), 1);
30326
29712
 
30327
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
29713
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
30328
29714
  var ClassPropertyMapping = class {
30329
29715
  constructor(forwardMap) {
30330
29716
  this.forwardMap = forwardMap;
@@ -30404,7 +29790,7 @@ function reverseMapFromForwardMap(forwardMap) {
30404
29790
  return reverseMap;
30405
29791
  }
30406
29792
 
30407
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
29793
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
30408
29794
  var import_typescript24 = __toESM(require("typescript"), 1);
30409
29795
  function extractReferencesFromType(checker, def, bestGuessOwningModule) {
30410
29796
  if (!import_typescript24.default.isTupleTypeNode(def)) {
@@ -30600,7 +29986,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
30600
29986
  return hostDirectiveMeta.directive instanceof Reference2;
30601
29987
  }
30602
29988
 
30603
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
29989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
30604
29990
  var DtsMetadataReader = class {
30605
29991
  constructor(checker, reflector) {
30606
29992
  this.checker = checker;
@@ -30783,7 +30169,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
30783
30169
  return result.length > 0 ? result : null;
30784
30170
  }
30785
30171
 
30786
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30172
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
30787
30173
  function flattenInheritedDirectiveMetadata(reader, dir) {
30788
30174
  const topMeta = reader.getDirectiveMetadata(dir);
30789
30175
  if (topMeta === null) {
@@ -30846,7 +30232,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
30846
30232
  });
30847
30233
  }
30848
30234
 
30849
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30235
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
30850
30236
  var LocalMetadataRegistry = class {
30851
30237
  constructor() {
30852
30238
  this.directives = /* @__PURE__ */ new Map();
@@ -30903,7 +30289,7 @@ var CompoundMetadataRegistry = class {
30903
30289
  }
30904
30290
  };
30905
30291
 
30906
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
30907
30293
  var ResourceRegistry = class {
30908
30294
  constructor() {
30909
30295
  this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
@@ -30968,7 +30354,7 @@ var ResourceRegistry = class {
30968
30354
  }
30969
30355
  };
30970
30356
 
30971
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30357
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
30972
30358
  var ExportedProviderStatusResolver = class {
30973
30359
  constructor(metaReader) {
30974
30360
  this.metaReader = metaReader;
@@ -31012,7 +30398,7 @@ var ExportedProviderStatusResolver = class {
31012
30398
  }
31013
30399
  };
31014
30400
 
31015
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
30401
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
31016
30402
  var EMPTY_ARRAY = [];
31017
30403
  var HostDirectivesResolver = class {
31018
30404
  constructor(metaReader) {
@@ -31077,10 +30463,10 @@ function resolveOutput(bindingName) {
31077
30463
  return bindingName;
31078
30464
  }
31079
30465
 
31080
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30466
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31081
30467
  var import_typescript28 = __toESM(require("typescript"), 1);
31082
30468
 
31083
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
30469
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
31084
30470
  var DynamicValue = class {
31085
30471
  constructor(node, reason, code) {
31086
30472
  this.node = node;
@@ -31170,7 +30556,7 @@ var DynamicValue = class {
31170
30556
  }
31171
30557
  };
31172
30558
 
31173
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
30559
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
31174
30560
  var ResolvedModule = class {
31175
30561
  constructor(exports, evaluate) {
31176
30562
  this.exports = exports;
@@ -31200,7 +30586,7 @@ var EnumValue = class {
31200
30586
  var KnownFn = class {
31201
30587
  };
31202
30588
 
31203
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
30589
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
31204
30590
  function describeResolvedType(value, maxDepth = 1) {
31205
30591
  var _a2, _b2;
31206
30592
  if (value === null) {
@@ -31333,10 +30719,10 @@ function getContainerNode(node) {
31333
30719
  return node.getSourceFile();
31334
30720
  }
31335
30721
 
31336
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30722
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31337
30723
  var import_typescript29 = __toESM(require("typescript"), 1);
31338
30724
 
31339
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
30725
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
31340
30726
  var ArraySliceBuiltinFn = class extends KnownFn {
31341
30727
  constructor(lhs) {
31342
30728
  super();
@@ -31388,14 +30774,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
31388
30774
  }
31389
30775
  };
31390
30776
 
31391
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
30777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
31392
30778
  var SyntheticValue = class {
31393
30779
  constructor(value) {
31394
30780
  this.value = value;
31395
30781
  }
31396
30782
  };
31397
30783
 
31398
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
30784
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
31399
30785
  function literalBinaryOp(op) {
31400
30786
  return { op, literal: true };
31401
30787
  }
@@ -31970,7 +31356,7 @@ function owningModule(context, override = null) {
31970
31356
  }
31971
31357
  }
31972
31358
 
31973
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31359
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
31974
31360
  var PartialEvaluator = class {
31975
31361
  constructor(host, checker, dependencyTracker) {
31976
31362
  this.host = host;
@@ -31990,7 +31376,7 @@ var PartialEvaluator = class {
31990
31376
  }
31991
31377
  };
31992
31378
 
31993
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31379
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
31994
31380
  var CompilationMode;
31995
31381
  (function(CompilationMode2) {
31996
31382
  CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
@@ -32004,7 +31390,7 @@ var HandlerPrecedence;
32004
31390
  HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
32005
31391
  })(HandlerPrecedence || (HandlerPrecedence = {}));
32006
31392
 
32007
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
31393
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
32008
31394
  var import_typescript31 = __toESM(require("typescript"), 1);
32009
31395
  function aliasTransformFactory(exportStatements) {
32010
31396
  return () => {
@@ -32029,10 +31415,10 @@ function aliasTransformFactory(exportStatements) {
32029
31415
  };
32030
31416
  }
32031
31417
 
32032
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31418
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32033
31419
  var import_typescript32 = __toESM(require("typescript"), 1);
32034
31420
 
32035
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
31421
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
32036
31422
  var PerfPhase;
32037
31423
  (function(PerfPhase2) {
32038
31424
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -32100,7 +31486,7 @@ var PerfCheckpoint;
32100
31486
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
32101
31487
  })(PerfCheckpoint || (PerfCheckpoint = {}));
32102
31488
 
32103
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
31489
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
32104
31490
  var NoopPerfRecorder = class {
32105
31491
  eventCount() {
32106
31492
  }
@@ -32117,7 +31503,7 @@ var NoopPerfRecorder = class {
32117
31503
  };
32118
31504
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
32119
31505
 
32120
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
31506
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
32121
31507
  function mark() {
32122
31508
  return process.hrtime();
32123
31509
  }
@@ -32126,7 +31512,7 @@ function timeSinceInMicros(mark2) {
32126
31512
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
32127
31513
  }
32128
31514
 
32129
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
31515
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
32130
31516
  var ActivePerfRecorder = class {
32131
31517
  static zeroedToNow() {
32132
31518
  return new ActivePerfRecorder(mark());
@@ -32220,7 +31606,7 @@ var DelegatingPerfRecorder = class {
32220
31606
  }
32221
31607
  };
32222
31608
 
32223
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
31609
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
32224
31610
  var TraitState;
32225
31611
  (function(TraitState2) {
32226
31612
  TraitState2[TraitState2["Pending"] = 0] = "Pending";
@@ -32277,7 +31663,7 @@ var TraitImpl = class {
32277
31663
  }
32278
31664
  };
32279
31665
 
32280
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
31666
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
32281
31667
  var TraitCompiler = class {
32282
31668
  constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
32283
31669
  this.handlers = handlers;
@@ -32736,10 +32122,10 @@ function containsErrors(diagnostics) {
32736
32122
  return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
32737
32123
  }
32738
32124
 
32739
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32125
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
32740
32126
  var import_typescript43 = __toESM(require("typescript"), 1);
32741
32127
 
32742
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32128
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
32743
32129
  var Context = class {
32744
32130
  constructor(isStatement) {
32745
32131
  this.isStatement = isStatement;
@@ -32752,10 +32138,10 @@ var Context = class {
32752
32138
  }
32753
32139
  };
32754
32140
 
32755
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32141
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32756
32142
  var import_typescript38 = __toESM(require("typescript"), 1);
32757
32143
 
32758
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32144
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
32759
32145
  var import_typescript34 = __toESM(require("typescript"), 1);
32760
32146
  function createGenerateUniqueIdentifierHelper() {
32761
32147
  const generatedIdentifiers = /* @__PURE__ */ new Set();
@@ -32779,7 +32165,7 @@ function createGenerateUniqueIdentifierHelper() {
32779
32165
  };
32780
32166
  }
32781
32167
 
32782
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
32783
32169
  var import_typescript35 = __toESM(require("typescript"), 1);
32784
32170
  function createTsTransformForImportManager(manager, extraStatementsForFiles) {
32785
32171
  return (ctx) => {
@@ -32840,7 +32226,7 @@ function isImportStatement(stmt) {
32840
32226
  return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
32841
32227
  }
32842
32228
 
32843
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32229
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
32844
32230
  var import_typescript36 = __toESM(require("typescript"), 1);
32845
32231
  function attemptToReuseGeneratedImports(tracker, request) {
32846
32232
  const requestHash = hashImportRequest(request);
@@ -32867,7 +32253,7 @@ function hashImportRequest(req) {
32867
32253
  return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
32868
32254
  }
32869
32255
 
32870
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32256
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
32871
32257
  var import_typescript37 = __toESM(require("typescript"), 1);
32872
32258
  function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32873
32259
  let candidateImportToBeUpdated = null;
@@ -32920,7 +32306,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
32920
32306
  return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
32921
32307
  }
32922
32308
 
32923
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32309
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
32924
32310
  var presetImportManagerForceNamespaceImports = {
32925
32311
  disableOriginalSourceFileReuse: true,
32926
32312
  forceGenerateNamespacesForNewImports: true
@@ -33069,7 +32455,7 @@ function createImportReference(asTypeReference, ref) {
33069
32455
  }
33070
32456
  }
33071
32457
 
33072
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
32458
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
33073
32459
  var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
33074
32460
  [UnaryOperator.Minus, "-"],
33075
32461
  [UnaryOperator.Plus, "+"]
@@ -33314,7 +32700,7 @@ function createRange(span) {
33314
32700
  };
33315
32701
  }
33316
32702
 
33317
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
32703
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
33318
32704
  var import_typescript39 = __toESM(require("typescript"), 1);
33319
32705
  var INELIGIBLE = {};
33320
32706
  function canEmitType(type, canEmit) {
@@ -33389,10 +32775,10 @@ var TypeEmitter = class {
33389
32775
  }
33390
32776
  };
33391
32777
 
33392
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
32778
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33393
32779
  var import_typescript41 = __toESM(require("typescript"), 1);
33394
32780
 
33395
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
32781
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
33396
32782
  var import_typescript40 = __toESM(require("typescript"), 1);
33397
32783
  function tsNumericExpression(value) {
33398
32784
  if (value < 0) {
@@ -33402,7 +32788,7 @@ function tsNumericExpression(value) {
33402
32788
  return import_typescript40.default.factory.createNumericLiteral(value);
33403
32789
  }
33404
32790
 
33405
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
32791
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
33406
32792
  function translateType(type, contextFile, reflector, refEmitter, imports) {
33407
32793
  return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
33408
32794
  }
@@ -33619,7 +33005,7 @@ var TypeTranslatorVisitor = class {
33619
33005
  }
33620
33006
  };
33621
33007
 
33622
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33008
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
33623
33009
  var import_typescript42 = __toESM(require("typescript"), 1);
33624
33010
  var PureAnnotation;
33625
33011
  (function(PureAnnotation2) {
@@ -33822,7 +33208,7 @@ function attachComments(statement, leadingComments) {
33822
33208
  }
33823
33209
  }
33824
33210
 
33825
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33211
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
33826
33212
  function translateExpression(contextFile, expression, imports, options = {}) {
33827
33213
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
33828
33214
  }
@@ -33830,7 +33216,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
33830
33216
  return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
33831
33217
  }
33832
33218
 
33833
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33219
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
33834
33220
  var DtsTransformRegistry = class {
33835
33221
  constructor() {
33836
33222
  this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
@@ -33978,10 +33364,10 @@ function markForEmitAsSingleLine(node) {
33978
33364
  import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
33979
33365
  }
33980
33366
 
33981
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33367
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33982
33368
  var import_typescript45 = __toESM(require("typescript"), 1);
33983
33369
 
33984
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33370
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
33985
33371
  var import_typescript44 = __toESM(require("typescript"), 1);
33986
33372
  function visit(node, visitor, context) {
33987
33373
  return visitor._visit(node, context);
@@ -34042,7 +33428,7 @@ var Visitor = class {
34042
33428
  }
34043
33429
  };
34044
33430
 
34045
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
33431
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
34046
33432
  var NO_DECORATORS = /* @__PURE__ */ new Set();
34047
33433
  var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
34048
33434
  function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
@@ -34277,7 +33663,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
34277
33663
  return array;
34278
33664
  }
34279
33665
 
34280
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
33666
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
34281
33667
  function makeDuplicateDeclarationError(node, data, kind) {
34282
33668
  const context = [];
34283
33669
  for (const decl of data) {
@@ -34486,7 +33872,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
34486
33872
  }
34487
33873
  }
34488
33874
 
34489
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
33875
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
34490
33876
  var import_typescript48 = __toESM(require("typescript"), 1);
34491
33877
  function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
34492
33878
  let resolved = null;
@@ -34536,7 +33922,7 @@ function resolveLiteral(decorator, literalCache) {
34536
33922
  return meta;
34537
33923
  }
34538
33924
 
34539
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
33925
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
34540
33926
  function compileNgFactoryDefField(metadata) {
34541
33927
  const res = compileFactoryFunction(metadata);
34542
33928
  return {
@@ -34558,7 +33944,7 @@ function compileDeclareFactory(metadata) {
34558
33944
  };
34559
33945
  }
34560
33946
 
34561
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
33947
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
34562
33948
  var InjectableClassRegistry = class {
34563
33949
  constructor(host, isCore) {
34564
33950
  this.host = host;
@@ -34584,7 +33970,7 @@ var InjectableClassRegistry = class {
34584
33970
  }
34585
33971
  };
34586
33972
 
34587
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
33973
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
34588
33974
  var import_typescript49 = __toESM(require("typescript"), 1);
34589
33975
  function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
34590
33976
  if (!reflection.isClass(clazz)) {
@@ -34670,7 +34056,7 @@ function removeIdentifierReferences(node, names) {
34670
34056
  return result.transformed[0];
34671
34057
  }
34672
34058
 
34673
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34059
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
34674
34060
  var path = __toESM(require("path"), 1);
34675
34061
  function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
34676
34062
  if (!reflection.isClass(clazz)) {
@@ -34696,13 +34082,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
34696
34082
  return null;
34697
34083
  }
34698
34084
 
34699
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34085
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
34700
34086
  var NoopReferencesRegistry = class {
34701
34087
  add(source, ...references) {
34702
34088
  }
34703
34089
  };
34704
34090
 
34705
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34091
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
34706
34092
  function extractSchemas(rawExpr, evaluator, context) {
34707
34093
  const schemas = [];
34708
34094
  const result = evaluator.evaluate(rawExpr);
@@ -34731,7 +34117,7 @@ function extractSchemas(rawExpr, evaluator, context) {
34731
34117
  return schemas;
34732
34118
  }
34733
34119
 
34734
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34120
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
34735
34121
  function compileInputTransformFields(inputs) {
34736
34122
  const extraFields = [];
34737
34123
  for (const input of inputs) {
@@ -34748,10 +34134,10 @@ function compileInputTransformFields(inputs) {
34748
34134
  return extraFields;
34749
34135
  }
34750
34136
 
34751
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34137
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
34752
34138
  var import_typescript63 = __toESM(require("typescript"), 1);
34753
34139
 
34754
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34140
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
34755
34141
  var import_typescript50 = __toESM(require("typescript"), 1);
34756
34142
  var SemanticSymbol = class {
34757
34143
  constructor(decl) {
@@ -34767,7 +34153,7 @@ function getSymbolIdentifier(decl) {
34767
34153
  return decl.name.text;
34768
34154
  }
34769
34155
 
34770
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34156
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
34771
34157
  var OpaqueSymbol = class extends SemanticSymbol {
34772
34158
  isPublicApiAffected() {
34773
34159
  return false;
@@ -34909,10 +34295,10 @@ function getImportPath(expr) {
34909
34295
  }
34910
34296
  }
34911
34297
 
34912
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34298
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34913
34299
  var import_typescript51 = __toESM(require("typescript"), 1);
34914
34300
 
34915
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
34916
34302
  function isSymbolEqual(a, b) {
34917
34303
  if (a.decl === b.decl) {
34918
34304
  return true;
@@ -34962,7 +34348,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
34962
34348
  return true;
34963
34349
  }
34964
34350
 
34965
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34351
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
34966
34352
  function extractSemanticTypeParameters(node) {
34967
34353
  if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
34968
34354
  return null;
@@ -34984,14 +34370,14 @@ function isTypeParameterEqual(a, b) {
34984
34370
  return a.hasGenericTypeBound === b.hasGenericTypeBound;
34985
34371
  }
34986
34372
 
34987
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34373
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
34988
34374
  var ComponentScopeKind;
34989
34375
  (function(ComponentScopeKind2) {
34990
34376
  ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
34991
34377
  ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
34992
34378
  })(ComponentScopeKind || (ComponentScopeKind = {}));
34993
34379
 
34994
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34380
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
34995
34381
  var CompoundComponentScopeReader = class {
34996
34382
  constructor(readers) {
34997
34383
  this.readers = readers;
@@ -35016,7 +34402,7 @@ var CompoundComponentScopeReader = class {
35016
34402
  }
35017
34403
  };
35018
34404
 
35019
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
34405
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
35020
34406
  var MetadataDtsModuleScopeResolver = class {
35021
34407
  constructor(dtsMetaReader, aliasingHost) {
35022
34408
  this.dtsMetaReader = dtsMetaReader;
@@ -35091,10 +34477,10 @@ var MetadataDtsModuleScopeResolver = class {
35091
34477
  }
35092
34478
  };
35093
34479
 
35094
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
35095
34481
  var import_typescript52 = __toESM(require("typescript"), 1);
35096
34482
 
35097
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
34483
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
35098
34484
  function getDiagnosticNode(ref, rawExpr) {
35099
34485
  return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
35100
34486
  }
@@ -35120,7 +34506,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
35120
34506
  return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
35121
34507
  }
35122
34508
 
35123
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
34509
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
35124
34510
  var LocalModuleScopeRegistry = class {
35125
34511
  constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
35126
34512
  this.localReader = localReader;
@@ -35461,7 +34847,7 @@ function reexportCollision(module2, refA, refB) {
35461
34847
  ]);
35462
34848
  }
35463
34849
 
35464
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
34850
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
35465
34851
  var import_typescript54 = __toESM(require("typescript"), 1);
35466
34852
  var TypeCheckScopeRegistry = class {
35467
34853
  constructor(scopeReader, metaReader, hostDirectivesResolver) {
@@ -35541,10 +34927,10 @@ var TypeCheckScopeRegistry = class {
35541
34927
  }
35542
34928
  };
35543
34929
 
35544
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
34930
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35545
34931
  var import_typescript58 = __toESM(require("typescript"), 1);
35546
34932
 
35547
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
34933
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
35548
34934
  function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35549
34935
  if (!api.allowedAccessLevels.includes(member.accessLevel)) {
35550
34936
  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)}.`, [
@@ -35553,7 +34939,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
35553
34939
  }
35554
34940
  }
35555
34941
 
35556
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
34942
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
35557
34943
  var import_typescript55 = __toESM(require("typescript"), 1);
35558
34944
  function tryParseInitializerApi(functions, expression, reflector, importTracker) {
35559
34945
  if (!import_typescript55.default.isCallExpression(expression)) {
@@ -35622,7 +35008,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
35622
35008
  return { api: matchingApi, apiReference, isRequired };
35623
35009
  }
35624
35010
 
35625
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35011
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
35626
35012
  var import_typescript56 = __toESM(require("typescript"), 1);
35627
35013
  function parseAndValidateInputAndOutputOptions(optionsNode) {
35628
35014
  if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
@@ -35640,7 +35026,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
35640
35026
  return { alias };
35641
35027
  }
35642
35028
 
35643
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35029
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
35644
35030
  var INPUT_INITIALIZER_FN = {
35645
35031
  functionName: "input",
35646
35032
  owningModule: "@angular/core",
@@ -35672,7 +35058,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
35672
35058
  };
35673
35059
  }
35674
35060
 
35675
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35061
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
35676
35062
  var MODEL_INITIALIZER_FN = {
35677
35063
  functionName: "model",
35678
35064
  owningModule: "@angular/core",
@@ -35713,7 +35099,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
35713
35099
  };
35714
35100
  }
35715
35101
 
35716
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35102
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
35717
35103
  var allowedAccessLevels = [
35718
35104
  ClassMemberAccessLevel.PublicWritable,
35719
35105
  ClassMemberAccessLevel.PublicReadonly,
@@ -35757,7 +35143,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
35757
35143
  };
35758
35144
  }
35759
35145
 
35760
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35146
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
35761
35147
  var import_typescript57 = __toESM(require("typescript"), 1);
35762
35148
  var queryFunctionNames = [
35763
35149
  "viewChild",
@@ -35841,7 +35227,7 @@ function parseDescendantsOption(value) {
35841
35227
  throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
35842
35228
  }
35843
35229
 
35844
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35230
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
35845
35231
  var EMPTY_OBJECT = {};
35846
35232
  var queryDecoratorNames = [
35847
35233
  "ViewChild",
@@ -36639,7 +36025,7 @@ function toR3InputMetadata(mapping) {
36639
36025
  };
36640
36026
  }
36641
36027
 
36642
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36028
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
36643
36029
  var DirectiveSymbol = class extends SemanticSymbol {
36644
36030
  constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
36645
36031
  super(decl);
@@ -36719,7 +36105,7 @@ function isBaseClassEqual(current, previous) {
36719
36105
  return isSymbolEqual(current, previous);
36720
36106
  }
36721
36107
 
36722
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36108
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
36723
36109
  var FIELD_DECORATORS = [
36724
36110
  "Input",
36725
36111
  "Output",
@@ -36912,10 +36298,10 @@ var DirectiveDecoratorHandler = class {
36912
36298
  }
36913
36299
  };
36914
36300
 
36915
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36301
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36916
36302
  var import_typescript60 = __toESM(require("typescript"), 1);
36917
36303
 
36918
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36304
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
36919
36305
  var import_typescript59 = __toESM(require("typescript"), 1);
36920
36306
  function createModuleWithProvidersResolver(reflector, isCore) {
36921
36307
  function _reflectModuleFromTypeParam(type, node) {
@@ -36987,7 +36373,7 @@ function isResolvedModuleWithProviders(sv) {
36987
36373
  return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
36988
36374
  }
36989
36375
 
36990
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36376
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
36991
36377
  var NgModuleSymbol = class extends SemanticSymbol {
36992
36378
  constructor(decl, hasProviders) {
36993
36379
  super(decl);
@@ -37600,7 +36986,7 @@ function isSyntheticReference(ref) {
37600
36986
  return ref.synthetic;
37601
36987
  }
37602
36988
 
37603
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
36989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
37604
36990
  function makeCyclicImportInfo(ref, type, cycle) {
37605
36991
  const name = ref.debugName || "(unknown)";
37606
36992
  const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
@@ -37623,7 +37009,7 @@ function checkCustomElementSelectorForErrors(selector) {
37623
37009
  return null;
37624
37010
  }
37625
37011
 
37626
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37012
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
37627
37013
  var import_typescript62 = __toESM(require("typescript"), 1);
37628
37014
  function getTemplateDeclarationNodeForError(declaration) {
37629
37015
  return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
@@ -37975,7 +37361,7 @@ function _extractTemplateStyleUrls(template2) {
37975
37361
  }));
37976
37362
  }
37977
37363
 
37978
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37364
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
37979
37365
  var ComponentSymbol = class extends DirectiveSymbol {
37980
37366
  constructor() {
37981
37367
  super(...arguments);
@@ -38010,7 +37396,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
38010
37396
  }
38011
37397
  };
38012
37398
 
38013
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
37399
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
38014
37400
  function collectAnimationNames(value, animationTriggerNames) {
38015
37401
  if (value instanceof Map) {
38016
37402
  const name = value.get("name");
@@ -38087,7 +37473,7 @@ function isLikelyModuleWithProviders(value) {
38087
37473
  return false;
38088
37474
  }
38089
37475
 
38090
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
37476
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
38091
37477
  var EMPTY_ARRAY2 = [];
38092
37478
  var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
38093
37479
  var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
@@ -39096,7 +38482,7 @@ function isDefaultImport(node) {
39096
38482
  return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
39097
38483
  }
39098
38484
 
39099
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
38485
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
39100
38486
  var import_typescript65 = __toESM(require("typescript"), 1);
39101
38487
  var InjectableDecoratorHandler = class {
39102
38488
  constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
@@ -39327,7 +38713,7 @@ function getDep(dep, reflector) {
39327
38713
  return meta;
39328
38714
  }
39329
38715
 
39330
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
38716
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
39331
38717
  var import_typescript66 = __toESM(require("typescript"), 1);
39332
38718
  var PipeSymbol = class extends SemanticSymbol {
39333
38719
  constructor(decl, name) {
@@ -39483,13 +38869,13 @@ var PipeDecoratorHandler = class {
39483
38869
  }
39484
38870
  };
39485
38871
 
39486
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
38872
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
39487
38873
  var import_typescript67 = __toESM(require("typescript"), 1);
39488
38874
 
39489
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
38875
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
39490
38876
  var import_typescript68 = __toESM(require("typescript"), 1);
39491
38877
 
39492
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
38878
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
39493
38879
  var EmitFlags;
39494
38880
  (function(EmitFlags2) {
39495
38881
  EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
@@ -39501,13 +38887,13 @@ var EmitFlags;
39501
38887
  EmitFlags2[EmitFlags2["All"] = 31] = "All";
39502
38888
  })(EmitFlags || (EmitFlags = {}));
39503
38889
 
39504
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
38890
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
39505
38891
  var import_typescript71 = __toESM(require("typescript"), 1);
39506
38892
 
39507
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
38893
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
39508
38894
  var import_typescript123 = __toESM(require("typescript"), 1);
39509
38895
 
39510
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
38896
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
39511
38897
  var path2 = __toESM(require("path"), 1);
39512
38898
  function i18nGetExtension(formatName) {
39513
38899
  const format = formatName.toLowerCase();
@@ -39557,10 +38943,10 @@ function getPathNormalizer(basePath) {
39557
38943
  };
39558
38944
  }
39559
38945
 
39560
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
38946
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39561
38947
  var import_typescript72 = __toESM(require("typescript"), 1);
39562
38948
 
39563
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
38949
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
39564
38950
  function toNumbers(value) {
39565
38951
  const suffixIndex = value.lastIndexOf("-");
39566
38952
  return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
@@ -39595,7 +38981,7 @@ function compareVersions(v1, v2) {
39595
38981
  return compareNumbers(toNumbers(v1), toNumbers(v2));
39596
38982
  }
39597
38983
 
39598
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
38984
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
39599
38985
  var MIN_TS_VERSION = "5.4.0";
39600
38986
  var MAX_TS_VERSION = "5.5.0";
39601
38987
  var tsVersion = import_typescript72.default.version;
@@ -39608,10 +38994,10 @@ function verifySupportedTypeScriptVersion() {
39608
38994
  checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
39609
38995
  }
39610
38996
 
39611
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
38997
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
39612
38998
  var import_typescript119 = __toESM(require("typescript"), 1);
39613
38999
 
39614
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
39000
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
39615
39001
  var CycleAnalyzer = class {
39616
39002
  constructor(importGraph) {
39617
39003
  this.importGraph = importGraph;
@@ -39682,7 +39068,7 @@ var Cycle = class {
39682
39068
  }
39683
39069
  };
39684
39070
 
39685
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
39071
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
39686
39072
  var import_typescript73 = __toESM(require("typescript"), 1);
39687
39073
  var ImportGraph = class {
39688
39074
  constructor(checker, perf) {
@@ -39774,13 +39160,13 @@ var Found = class {
39774
39160
  }
39775
39161
  };
39776
39162
 
39777
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
39163
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
39778
39164
  var import_typescript82 = __toESM(require("typescript"), 1);
39779
39165
 
39780
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39166
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39781
39167
  var import_typescript77 = __toESM(require("typescript"), 1);
39782
39168
 
39783
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
39169
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
39784
39170
  var EntryType;
39785
39171
  (function(EntryType2) {
39786
39172
  EntryType2["Block"] = "block";
@@ -39824,17 +39210,17 @@ var MemberTags;
39824
39210
  MemberTags2["Inherited"] = "override";
39825
39211
  })(MemberTags || (MemberTags = {}));
39826
39212
 
39827
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
39213
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
39828
39214
  function isAngularPrivateName(name) {
39829
39215
  var _a2;
39830
39216
  const firstChar = (_a2 = name[0]) != null ? _a2 : "";
39831
39217
  return firstChar === "\u0275" || firstChar === "_";
39832
39218
  }
39833
39219
 
39834
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39220
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39835
39221
  var import_typescript75 = __toESM(require("typescript"), 1);
39836
39222
 
39837
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
39223
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
39838
39224
  function extractGenerics(declaration) {
39839
39225
  var _a2, _b2;
39840
39226
  return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
@@ -39847,7 +39233,7 @@ function extractGenerics(declaration) {
39847
39233
  })) != null ? _b2 : [];
39848
39234
  }
39849
39235
 
39850
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
39236
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
39851
39237
  var import_typescript74 = __toESM(require("typescript"), 1);
39852
39238
  var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
39853
39239
  function extractJsDocTags(node) {
@@ -39891,12 +39277,12 @@ function unescapeAngularDecorators(comment) {
39891
39277
  return comment.replace(/_NG_AT_/g, "@");
39892
39278
  }
39893
39279
 
39894
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
39280
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
39895
39281
  function extractResolvedTypeString(node, checker) {
39896
39282
  return checker.typeToString(checker.getTypeAtLocation(node));
39897
39283
  }
39898
39284
 
39899
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39285
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
39900
39286
  var FunctionExtractor = class {
39901
39287
  constructor(name, declaration, typeChecker) {
39902
39288
  this.name = name;
@@ -39904,17 +39290,20 @@ var FunctionExtractor = class {
39904
39290
  this.typeChecker = typeChecker;
39905
39291
  }
39906
39292
  extract() {
39293
+ var _a2;
39907
39294
  const signature = this.typeChecker.getSignatureFromDeclaration(this.declaration);
39908
39295
  const returnType = signature ? this.typeChecker.typeToString(this.typeChecker.getReturnTypeOfSignature(signature)) : "unknown";
39296
+ const jsdocsTags = extractJsDocTags(this.declaration);
39909
39297
  return {
39910
39298
  params: extractAllParams(this.declaration.parameters, this.typeChecker),
39911
39299
  name: this.name,
39912
39300
  isNewType: import_typescript75.default.isConstructSignatureDeclaration(this.declaration),
39913
39301
  returnType,
39302
+ returnDescription: (_a2 = jsdocsTags.find((tag) => tag.name === "returns")) == null ? void 0 : _a2.comment,
39914
39303
  entryType: EntryType.Function,
39915
39304
  generics: extractGenerics(this.declaration),
39916
39305
  description: extractJsDocDescription(this.declaration),
39917
- jsdocTags: extractJsDocTags(this.declaration),
39306
+ jsdocTags: jsdocsTags,
39918
39307
  rawComment: extractRawJsDoc(this.declaration)
39919
39308
  };
39920
39309
  }
@@ -39952,7 +39341,7 @@ function extractAllParams(params, typeChecker) {
39952
39341
  }));
39953
39342
  }
39954
39343
 
39955
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
39344
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
39956
39345
  var import_typescript76 = __toESM(require("typescript"), 1);
39957
39346
  function isInternal(member) {
39958
39347
  return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
@@ -39971,7 +39360,7 @@ function hasLeadingInternalComment(member) {
39971
39360
  )) != null ? _a2 : false;
39972
39361
  }
39973
39362
 
39974
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39363
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
39975
39364
  var ClassExtractor = class {
39976
39365
  constructor(declaration, typeChecker) {
39977
39366
  this.declaration = declaration;
@@ -40223,7 +39612,7 @@ function extractInterface(declaration, typeChecker) {
40223
39612
  return extractor.extract();
40224
39613
  }
40225
39614
 
40226
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
39615
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
40227
39616
  var import_typescript78 = __toESM(require("typescript"), 1);
40228
39617
  var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
40229
39618
  function extractConstant(declaration, typeChecker) {
@@ -40281,7 +39670,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
40281
39670
  });
40282
39671
  }
40283
39672
 
40284
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
39673
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
40285
39674
  var import_typescript79 = __toESM(require("typescript"), 1);
40286
39675
  function extractorDecorator(declaration, typeChecker) {
40287
39676
  const documentedNode = getDecoratorJsDocNode(declaration);
@@ -40354,7 +39743,7 @@ function getDecoratorJsDocNode(declaration) {
40354
39743
  return callSignature;
40355
39744
  }
40356
39745
 
40357
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
39746
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
40358
39747
  var import_typescript80 = __toESM(require("typescript"), 1);
40359
39748
  function extractEnum(declaration, typeChecker) {
40360
39749
  return {
@@ -40385,7 +39774,7 @@ function getEnumMemberValue(memberNode) {
40385
39774
  return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
40386
39775
  }
40387
39776
 
40388
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
39777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
40389
39778
  var import_typescript81 = __toESM(require("typescript"), 1);
40390
39779
  var initializerApiTag = "initializerApiFunction";
40391
39780
  function isInitializerApiFunction(node, typeChecker) {
@@ -40522,7 +39911,7 @@ function findImplementationOfFunction(node, typeChecker) {
40522
39911
  return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript81.default.isFunctionDeclaration(s) && s.body !== void 0);
40523
39912
  }
40524
39913
 
40525
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
39914
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
40526
39915
  function extractTypeAlias(declaration) {
40527
39916
  return {
40528
39917
  name: declaration.name.getText(),
@@ -40534,7 +39923,7 @@ function extractTypeAlias(declaration) {
40534
39923
  };
40535
39924
  }
40536
39925
 
40537
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
39926
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
40538
39927
  var DocsExtractor = class {
40539
39928
  constructor(typeChecker, metadataReader) {
40540
39929
  this.typeChecker = typeChecker;
@@ -40618,7 +40007,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
40618
40007
  return relativePath;
40619
40008
  }
40620
40009
 
40621
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
40010
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
40622
40011
  var import_typescript83 = __toESM(require("typescript"), 1);
40623
40012
  var FlatIndexGenerator = class {
40624
40013
  constructor(entryPoint, relativeFlatIndexPath, moduleName) {
@@ -40643,7 +40032,7 @@ export * from '${relativeEntryPoint}';
40643
40032
  }
40644
40033
  };
40645
40034
 
40646
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
40035
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
40647
40036
  function findFlatIndexEntryPoint(rootFiles) {
40648
40037
  const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
40649
40038
  let resolvedEntryPoint = null;
@@ -40659,7 +40048,7 @@ function findFlatIndexEntryPoint(rootFiles) {
40659
40048
  return resolvedEntryPoint;
40660
40049
  }
40661
40050
 
40662
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
40051
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
40663
40052
  var import_typescript85 = __toESM(require("typescript"), 1);
40664
40053
  function checkForPrivateExports(entryPoint, checker, refGraph) {
40665
40054
  const diagnostics = [];
@@ -40739,7 +40128,7 @@ function getDescriptorOfDeclaration(decl) {
40739
40128
  }
40740
40129
  }
40741
40130
 
40742
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
40131
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
40743
40132
  var ReferenceGraph = class {
40744
40133
  constructor() {
40745
40134
  this.references = /* @__PURE__ */ new Map();
@@ -40793,7 +40182,7 @@ var ReferenceGraph = class {
40793
40182
  }
40794
40183
  };
40795
40184
 
40796
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
40185
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
40797
40186
  var NgOriginalFile = Symbol("NgOriginalFile");
40798
40187
  var UpdateMode;
40799
40188
  (function(UpdateMode2) {
@@ -40801,13 +40190,13 @@ var UpdateMode;
40801
40190
  UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
40802
40191
  })(UpdateMode || (UpdateMode = {}));
40803
40192
 
40804
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40193
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40805
40194
  var import_typescript89 = __toESM(require("typescript"), 1);
40806
40195
 
40807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40196
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40808
40197
  var import_typescript86 = __toESM(require("typescript"), 1);
40809
40198
 
40810
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
40199
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
40811
40200
  var NgExtension = Symbol("NgExtension");
40812
40201
  function isExtended(sf) {
40813
40202
  return sf[NgExtension] !== void 0;
@@ -40867,13 +40256,13 @@ function retagTsFile(sf) {
40867
40256
  }
40868
40257
  }
40869
40258
 
40870
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
40259
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
40871
40260
  var TS_EXTENSIONS = /\.tsx?$/i;
40872
40261
  function makeShimFileName(fileName, suffix) {
40873
40262
  return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
40874
40263
  }
40875
40264
 
40876
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40265
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
40877
40266
  var ShimAdapter = class {
40878
40267
  constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
40879
40268
  this.delegate = delegate;
@@ -40968,7 +40357,7 @@ var ShimAdapter = class {
40968
40357
  }
40969
40358
  };
40970
40359
 
40971
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
40360
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
40972
40361
  var ShimReferenceTagger = class {
40973
40362
  constructor(shimExtensions) {
40974
40363
  this.tagged = /* @__PURE__ */ new Set();
@@ -41002,7 +40391,7 @@ var ShimReferenceTagger = class {
41002
40391
  }
41003
40392
  };
41004
40393
 
41005
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
40394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
41006
40395
  var DelegatingCompilerHost = class {
41007
40396
  get jsDocParsingMode() {
41008
40397
  return this.delegate.jsDocParsingMode;
@@ -41121,7 +40510,7 @@ var TsCreateProgramDriver = class {
41121
40510
  }
41122
40511
  };
41123
40512
 
41124
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
40513
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
41125
40514
  var FileDependencyGraph = class {
41126
40515
  constructor() {
41127
40516
  this.nodes = /* @__PURE__ */ new Map();
@@ -41188,7 +40577,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
41188
40577
  return false;
41189
40578
  }
41190
40579
 
41191
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
40580
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
41192
40581
  var IncrementalStateKind;
41193
40582
  (function(IncrementalStateKind2) {
41194
40583
  IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
@@ -41196,7 +40585,7 @@ var IncrementalStateKind;
41196
40585
  IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
41197
40586
  })(IncrementalStateKind || (IncrementalStateKind = {}));
41198
40587
 
41199
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
40588
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
41200
40589
  var PhaseKind;
41201
40590
  (function(PhaseKind2) {
41202
40591
  PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
@@ -41397,7 +40786,7 @@ function toOriginalSourceFile(sf) {
41397
40786
  }
41398
40787
  }
41399
40788
 
41400
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
40789
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
41401
40790
  var TrackedIncrementalBuildStrategy = class {
41402
40791
  constructor() {
41403
40792
  this.state = null;
@@ -41418,7 +40807,7 @@ var TrackedIncrementalBuildStrategy = class {
41418
40807
  };
41419
40808
  var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
41420
40809
 
41421
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
40810
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
41422
40811
  var IdentifierKind;
41423
40812
  (function(IdentifierKind2) {
41424
40813
  IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
@@ -41437,7 +40826,7 @@ var AbsoluteSourceSpan2 = class {
41437
40826
  }
41438
40827
  };
41439
40828
 
41440
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
40829
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
41441
40830
  var IndexingContext = class {
41442
40831
  constructor() {
41443
40832
  this.components = /* @__PURE__ */ new Set();
@@ -41447,7 +40836,7 @@ var IndexingContext = class {
41447
40836
  }
41448
40837
  };
41449
40838
 
41450
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
40839
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
41451
40840
  var ExpressionVisitor = class extends RecursiveAstVisitor2 {
41452
40841
  constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
41453
40842
  super();
@@ -41741,7 +41130,7 @@ function getTemplateIdentifiers(boundTemplate) {
41741
41130
  return { identifiers: visitor.identifiers, errors: visitor.errors };
41742
41131
  }
41743
41132
 
41744
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
41133
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
41745
41134
  function generateAnalysis(context) {
41746
41135
  const analysis = /* @__PURE__ */ new Map();
41747
41136
  context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
@@ -41777,7 +41166,7 @@ function generateAnalysis(context) {
41777
41166
  return analysis;
41778
41167
  }
41779
41168
 
41780
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
41169
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
41781
41170
  var NgModuleIndexImpl = class {
41782
41171
  constructor(metaReader, localReader) {
41783
41172
  this.metaReader = metaReader;
@@ -41866,7 +41255,7 @@ var NgModuleIndexImpl = class {
41866
41255
  }
41867
41256
  };
41868
41257
 
41869
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
41258
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
41870
41259
  var import_typescript92 = __toESM(require("typescript"), 1);
41871
41260
  var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
41872
41261
  var RESOURCE_MARKER = ".$ngresource$";
@@ -42018,7 +41407,7 @@ function createLookupResolutionHost(adapter) {
42018
41407
  };
42019
41408
  }
42020
41409
 
42021
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
41410
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
42022
41411
  var StandaloneComponentScopeReader = class {
42023
41412
  constructor(metaReader, localModuleReader, dtsModuleReader) {
42024
41413
  this.metaReader = metaReader;
@@ -42114,14 +41503,14 @@ var StandaloneComponentScopeReader = class {
42114
41503
  }
42115
41504
  };
42116
41505
 
42117
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
41506
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
42118
41507
  var OptimizeFor;
42119
41508
  (function(OptimizeFor2) {
42120
41509
  OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
42121
41510
  OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
42122
41511
  })(OptimizeFor || (OptimizeFor = {}));
42123
41512
 
42124
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
41513
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
42125
41514
  var CompletionKind;
42126
41515
  (function(CompletionKind2) {
42127
41516
  CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
@@ -42129,7 +41518,7 @@ var CompletionKind;
42129
41518
  CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
42130
41519
  })(CompletionKind || (CompletionKind = {}));
42131
41520
 
42132
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
41521
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
42133
41522
  var PotentialImportKind;
42134
41523
  (function(PotentialImportKind2) {
42135
41524
  PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
@@ -42141,7 +41530,7 @@ var PotentialImportMode;
42141
41530
  PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
42142
41531
  })(PotentialImportMode || (PotentialImportMode = {}));
42143
41532
 
42144
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
41533
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
42145
41534
  var SymbolKind;
42146
41535
  (function(SymbolKind2) {
42147
41536
  SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
@@ -42158,7 +41547,7 @@ var SymbolKind;
42158
41547
  SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
42159
41548
  })(SymbolKind || (SymbolKind = {}));
42160
41549
 
42161
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
41550
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
42162
41551
  var import_typescript93 = __toESM(require("typescript"), 1);
42163
41552
  function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
42164
41553
  var _a2;
@@ -42269,7 +41658,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
42269
41658
  );
42270
41659
  }
42271
41660
 
42272
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
41661
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
42273
41662
  var TEMPLATE_ID = Symbol("ngTemplateId");
42274
41663
  var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
42275
41664
  function getTemplateId(clazz) {
@@ -42286,10 +41675,10 @@ function allocateTemplateId(sf) {
42286
41675
  return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
42287
41676
  }
42288
41677
 
42289
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
41678
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42290
41679
  var import_typescript95 = __toESM(require("typescript"), 1);
42291
41680
 
42292
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
41681
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
42293
41682
  var import_typescript94 = __toESM(require("typescript"), 1);
42294
41683
  var parseSpanComment = /^(\d+),(\d+)$/;
42295
41684
  function readSpanComment(node, sourceFile = node.getSourceFile()) {
@@ -42419,7 +41808,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
42419
41808
  }) || false;
42420
41809
  }
42421
41810
 
42422
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
41811
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
42423
41812
  var CompletionEngine = class {
42424
41813
  constructor(tcb, data, tcbPath, tcbIsShim) {
42425
41814
  this.tcb = tcb;
@@ -43682,10 +43071,10 @@ var MagicString = class {
43682
43071
  }
43683
43072
  };
43684
43073
 
43685
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
43074
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
43686
43075
  var import_typescript109 = __toESM(require("typescript"), 1);
43687
43076
 
43688
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
43077
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
43689
43078
  var import_typescript96 = __toESM(require("typescript"), 1);
43690
43079
  var REGISTRY = new DomElementSchemaRegistry();
43691
43080
  var REMOVE_XHTML_REGEX = /^:xhtml:/;
@@ -43737,10 +43126,10 @@ var RegistryDomSchemaChecker = class {
43737
43126
  }
43738
43127
  };
43739
43128
 
43740
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43129
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43741
43130
  var import_typescript102 = __toESM(require("typescript"), 1);
43742
43131
 
43743
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
43132
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
43744
43133
  var ReferenceEmitEnvironment = class {
43745
43134
  constructor(importManager, refEmitter, reflector, contextFile) {
43746
43135
  this.importManager = importManager;
@@ -43770,7 +43159,7 @@ var ReferenceEmitEnvironment = class {
43770
43159
  }
43771
43160
  };
43772
43161
 
43773
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
43162
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
43774
43163
  var import_typescript97 = __toESM(require("typescript"), 1);
43775
43164
  var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
43776
43165
  import_typescript97.default.SyntaxKind.ParenthesizedExpression,
@@ -43853,13 +43242,13 @@ function tsNumericExpression2(value) {
43853
43242
  return import_typescript97.default.factory.createNumericLiteral(value);
43854
43243
  }
43855
43244
 
43856
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43245
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43857
43246
  var import_typescript101 = __toESM(require("typescript"), 1);
43858
43247
 
43859
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43248
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43860
43249
  var import_typescript99 = __toESM(require("typescript"), 1);
43861
43250
 
43862
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
43251
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
43863
43252
  var import_typescript98 = __toESM(require("typescript"), 1);
43864
43253
  var TypeParameterEmitter = class {
43865
43254
  constructor(typeParameters, reflector) {
@@ -43937,7 +43326,7 @@ var TypeParameterEmitter = class {
43937
43326
  }
43938
43327
  };
43939
43328
 
43940
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43329
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
43941
43330
  var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
43942
43331
  Identifiers.InputSignalBrandWriteType
43943
43332
  ];
@@ -44029,7 +43418,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
44029
43418
  return emitter.canEmit((ref) => env.canReferenceType(ref));
44030
43419
  }
44031
43420
 
44032
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
43421
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
44033
43422
  function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
44034
43423
  const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
44035
43424
  const rawType = import_typescript101.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
@@ -44152,7 +43541,7 @@ function typeParametersWithDefaultTypes(params) {
44152
43541
  });
44153
43542
  }
44154
43543
 
44155
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
43544
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
44156
43545
  var Environment = class extends ReferenceEmitEnvironment {
44157
43546
  constructor(config, importManager, refEmitter, reflector, contextFile) {
44158
43547
  super(importManager, refEmitter, reflector, contextFile);
@@ -44224,7 +43613,7 @@ var Environment = class extends ReferenceEmitEnvironment {
44224
43613
  }
44225
43614
  };
44226
43615
 
44227
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
43616
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
44228
43617
  var import_typescript103 = __toESM(require("typescript"), 1);
44229
43618
  var OutOfBandDiagnosticRecorderImpl = class {
44230
43619
  constructor(resolver) {
@@ -44424,7 +43813,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
44424
43813
  });
44425
43814
  }
44426
43815
 
44427
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
43816
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
44428
43817
  var import_typescript104 = __toESM(require("typescript"), 1);
44429
43818
  var TypeCheckShimGenerator = class {
44430
43819
  constructor() {
@@ -44442,10 +43831,10 @@ var TypeCheckShimGenerator = class {
44442
43831
  }
44443
43832
  };
44444
43833
 
44445
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
43834
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44446
43835
  var import_typescript107 = __toESM(require("typescript"), 1);
44447
43836
 
44448
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
43837
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
44449
43838
  var import_typescript105 = __toESM(require("typescript"), 1);
44450
43839
  function wrapForDiagnostics(expr) {
44451
43840
  return import_typescript105.default.factory.createParenthesizedExpression(expr);
@@ -44500,7 +43889,7 @@ function translateDiagnostic(diagnostic, resolver) {
44500
43889
  return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
44501
43890
  }
44502
43891
 
44503
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
43892
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
44504
43893
  var import_typescript106 = __toESM(require("typescript"), 1);
44505
43894
  var NULL_AS_ANY = import_typescript106.default.factory.createAsExpression(import_typescript106.default.factory.createNull(), import_typescript106.default.factory.createKeywordTypeNode(import_typescript106.default.SyntaxKind.AnyKeyword));
44506
43895
  var UNDEFINED = import_typescript106.default.factory.createIdentifier("undefined");
@@ -44832,7 +44221,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
44832
44221
  _VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
44833
44222
  })();
44834
44223
 
44835
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44224
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
44836
44225
  var TcbGenericContextBehavior;
44837
44226
  (function(TcbGenericContextBehavior2) {
44838
44227
  TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
@@ -46409,7 +45798,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
46409
45798
  }
46410
45799
  };
46411
45800
 
46412
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
45801
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
46413
45802
  var import_typescript108 = __toESM(require("typescript"), 1);
46414
45803
  var TypeCheckFile = class extends Environment {
46415
45804
  constructor(fileName, config, refEmitter, reflector, compilerHost) {
@@ -46457,7 +45846,7 @@ var TypeCheckFile = class extends Environment {
46457
45846
  }
46458
45847
  };
46459
45848
 
46460
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
45849
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
46461
45850
  var InliningMode;
46462
45851
  (function(InliningMode2) {
46463
45852
  InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
@@ -46709,7 +46098,7 @@ var TypeCtorOp = class {
46709
46098
  }
46710
46099
  };
46711
46100
 
46712
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
46101
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
46713
46102
  var LF_CHAR = 10;
46714
46103
  var CR_CHAR = 13;
46715
46104
  var LINE_SEP_CHAR = 8232;
@@ -46750,7 +46139,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
46750
46139
  return low - 1;
46751
46140
  }
46752
46141
 
46753
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
46142
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
46754
46143
  var TemplateSource = class {
46755
46144
  constructor(mapping, file) {
46756
46145
  this.mapping = mapping;
@@ -46801,7 +46190,7 @@ var TemplateSourceManager = class {
46801
46190
  }
46802
46191
  };
46803
46192
 
46804
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
46193
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
46805
46194
  var import_typescript110 = __toESM(require("typescript"), 1);
46806
46195
  var SymbolBuilder = class {
46807
46196
  constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
@@ -47368,7 +46757,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
47368
46757
  };
47369
46758
  }
47370
46759
 
47371
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
46760
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
47372
46761
  var REGISTRY2 = new DomElementSchemaRegistry();
47373
46762
  var TemplateTypeCheckerImpl = class {
47374
46763
  constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
@@ -48068,7 +47457,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
48068
47457
  }
48069
47458
  };
48070
47459
 
48071
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
47460
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
48072
47461
  var import_typescript113 = __toESM(require("typescript"), 1);
48073
47462
  var SIGNAL_FNS = /* @__PURE__ */ new Set([
48074
47463
  "WritableSignal",
@@ -48088,7 +47477,7 @@ function isSignalSymbol(symbol) {
48088
47477
  });
48089
47478
  }
48090
47479
 
48091
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
47480
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
48092
47481
  var TemplateCheckWithVisitor = class {
48093
47482
  run(ctx, component, template2) {
48094
47483
  const visitor = new TemplateVisitor2(ctx, component, this);
@@ -48215,7 +47604,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
48215
47604
  }
48216
47605
  };
48217
47606
 
48218
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
47607
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
48219
47608
  var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
48220
47609
  var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
48221
47610
  var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
@@ -48267,7 +47656,7 @@ var factory = {
48267
47656
  create: () => new InterpolatedSignalCheck()
48268
47657
  };
48269
47658
 
48270
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
47659
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
48271
47660
  var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
48272
47661
  constructor() {
48273
47662
  super(...arguments);
@@ -48292,7 +47681,7 @@ var factory2 = {
48292
47681
  create: () => new InvalidBananaInBoxCheck()
48293
47682
  };
48294
47683
 
48295
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
47684
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
48296
47685
  var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
48297
47686
  ["ngIf", { directive: "NgIf", builtIn: "@if" }],
48298
47687
  ["ngFor", { directive: "NgFor", builtIn: "@for" }],
@@ -48336,7 +47725,7 @@ var factory3 = {
48336
47725
  }
48337
47726
  };
48338
47727
 
48339
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
47728
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
48340
47729
  var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
48341
47730
  constructor() {
48342
47731
  super(...arguments);
@@ -48368,7 +47757,7 @@ var factory4 = {
48368
47757
  create: () => new MissingNgForOfLetCheck()
48369
47758
  };
48370
47759
 
48371
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
47760
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
48372
47761
  var import_typescript114 = __toESM(require("typescript"), 1);
48373
47762
  var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
48374
47763
  constructor() {
@@ -48412,7 +47801,7 @@ var factory5 = {
48412
47801
  }
48413
47802
  };
48414
47803
 
48415
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
47804
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
48416
47805
  var import_typescript115 = __toESM(require("typescript"), 1);
48417
47806
  var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
48418
47807
  constructor() {
@@ -48457,7 +47846,7 @@ var factory6 = {
48457
47846
  }
48458
47847
  };
48459
47848
 
48460
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
47849
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
48461
47850
  var STYLE_SUFFIXES = ["px", "%", "em"];
48462
47851
  var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
48463
47852
  constructor() {
@@ -48480,7 +47869,7 @@ var factory7 = {
48480
47869
  create: () => new SuffixNotSupportedCheck()
48481
47870
  };
48482
47871
 
48483
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
47872
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
48484
47873
  var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
48485
47874
  constructor() {
48486
47875
  super(...arguments);
@@ -48518,10 +47907,10 @@ var factory8 = {
48518
47907
  create: () => new TextAttributeNotBindingSpec()
48519
47908
  };
48520
47909
 
48521
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
47910
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48522
47911
  var import_typescript116 = __toESM(require("typescript"), 1);
48523
47912
 
48524
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
47913
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
48525
47914
  var DiagnosticCategoryLabel;
48526
47915
  (function(DiagnosticCategoryLabel2) {
48527
47916
  DiagnosticCategoryLabel2["Warning"] = "warning";
@@ -48529,7 +47918,7 @@ var DiagnosticCategoryLabel;
48529
47918
  DiagnosticCategoryLabel2["Suppress"] = "suppress";
48530
47919
  })(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
48531
47920
 
48532
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
47921
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
48533
47922
  var ExtendedTemplateCheckerImpl = class {
48534
47923
  constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
48535
47924
  var _a2, _b2, _c2, _d2, _e2;
@@ -48581,7 +47970,7 @@ function assertNever(value) {
48581
47970
  ${value}`);
48582
47971
  }
48583
47972
 
48584
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
47973
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
48585
47974
  var ALL_DIAGNOSTIC_FACTORIES = [
48586
47975
  factory2,
48587
47976
  factory5,
@@ -48597,7 +47986,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
48597
47986
  ...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
48598
47987
  ]);
48599
47988
 
48600
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
47989
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
48601
47990
  var import_typescript117 = __toESM(require("typescript"), 1);
48602
47991
  var TemplateSemanticsCheckerImpl = class {
48603
47992
  constructor(templateTypeChecker) {
@@ -48687,7 +48076,7 @@ function unwrapAstWithSource(ast) {
48687
48076
  return ast instanceof ASTWithSource ? ast.ast : ast;
48688
48077
  }
48689
48078
 
48690
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48079
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
48691
48080
  var import_typescript118 = __toESM(require("typescript"), 1);
48692
48081
  var APIS_TO_CHECK = [
48693
48082
  INPUT_INITIALIZER_FN,
@@ -48738,7 +48127,7 @@ var InitializerApiUsageRule = class {
48738
48127
  }
48739
48128
  };
48740
48129
 
48741
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48130
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
48742
48131
  var SourceFileValidator = class {
48743
48132
  constructor(reflector, importedSymbolsTracker) {
48744
48133
  this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
@@ -48776,7 +48165,7 @@ var SourceFileValidator = class {
48776
48165
  }
48777
48166
  };
48778
48167
 
48779
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
48780
48169
  function coreHasSymbol(program, symbol) {
48781
48170
  const checker = program.getTypeChecker();
48782
48171
  for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
@@ -48795,7 +48184,7 @@ function isMaybeCore(sf) {
48795
48184
  return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
48796
48185
  }
48797
48186
 
48798
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48187
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
48799
48188
  var import_semver = __toESM(require_semver2(), 1);
48800
48189
  function coreVersionSupportsFeature(coreVersion, minVersion) {
48801
48190
  if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
@@ -48804,7 +48193,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
48804
48193
  return import_semver.default.satisfies(coreVersion, minVersion);
48805
48194
  }
48806
48195
 
48807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48196
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
48808
48197
  var CompilationTicketKind;
48809
48198
  (function(CompilationTicketKind2) {
48810
48199
  CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
@@ -49587,7 +48976,7 @@ function versionMapFromProgram(program, driver) {
49587
48976
  return versions;
49588
48977
  }
49589
48978
 
49590
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
48979
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
49591
48980
  var import_typescript121 = __toESM(require("typescript"), 1);
49592
48981
  var DelegatingCompilerHost2 = class {
49593
48982
  get jsDocParsingMode() {
@@ -49726,7 +49115,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
49726
49115
  }
49727
49116
  };
49728
49117
 
49729
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49118
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
49730
49119
  var NgtscProgram = class {
49731
49120
  constructor(rootNames, options, delegateHost, oldProgram) {
49732
49121
  this.options = options;
@@ -49953,18 +49342,18 @@ function mergeEmitResults(emitResults) {
49953
49342
  return { diagnostics, emitSkipped, emittedFiles };
49954
49343
  }
49955
49344
 
49956
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49345
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
49957
49346
  function createProgram({ rootNames, options, host, oldProgram }) {
49958
49347
  return new NgtscProgram(rootNames, options, host, oldProgram);
49959
49348
  }
49960
49349
 
49961
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49350
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
49962
49351
  var import_typescript125 = __toESM(require("typescript"), 1);
49963
49352
 
49964
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49353
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
49965
49354
  var import_typescript124 = __toESM(require("typescript"), 1);
49966
49355
 
49967
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49356
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
49968
49357
  var GLOBAL_DEFS_FOR_TERSER = {
49969
49358
  ngDevMode: false,
49970
49359
  ngI18nClosureMode: false
@@ -49973,7 +49362,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
49973
49362
  ngJitMode: false
49974
49363
  });
49975
49364
 
49976
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49365
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
49977
49366
  var LogLevel;
49978
49367
  (function(LogLevel2) {
49979
49368
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -49982,7 +49371,7 @@ var LogLevel;
49982
49371
  LogLevel2[LogLevel2["error"] = 3] = "error";
49983
49372
  })(LogLevel || (LogLevel = {}));
49984
49373
 
49985
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49374
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
49986
49375
  var RESET = "\x1B[0m";
49987
49376
  var RED = "\x1B[31m";
49988
49377
  var YELLOW = "\x1B[33m";
@@ -49991,18 +49380,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
49991
49380
  var WARN = `${YELLOW}Warning:${RESET}`;
49992
49381
  var ERROR = `${RED}Error:${RESET}`;
49993
49382
 
49994
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
49383
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
49995
49384
  setFileSystem(new NodeJSFileSystem());
49996
49385
 
49997
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49386
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
49998
49387
  var import_fs2 = require("fs");
49999
49388
  var import_path8 = require("path");
50000
49389
  var import_typescript138 = __toESM(require("typescript"), 1);
50001
49390
 
50002
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49391
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
50003
49392
  var import_typescript127 = __toESM(require("typescript"), 1);
50004
49393
 
50005
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
49394
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
50006
49395
  var import_path4 = require("path");
50007
49396
  var import_typescript126 = __toESM(require("typescript"), 1);
50008
49397
  var ImportManager2 = class {
@@ -50186,7 +49575,7 @@ ${text2}`;
50186
49575
  }
50187
49576
  };
50188
49577
 
50189
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
49578
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
50190
49579
  var ChangeTracker = class {
50191
49580
  constructor(_printer, _importRemapper) {
50192
49581
  __publicField(this, "_printer");
@@ -50249,7 +49638,7 @@ function normalizePath(path4) {
50249
49638
  return path4.replace(/\\/g, "/");
50250
49639
  }
50251
49640
 
50252
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
49641
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
50253
49642
  var import_core19 = require("@angular-devkit/core");
50254
49643
  function getProjectTsConfigPaths(tree) {
50255
49644
  return __async(this, null, function* () {
@@ -50329,11 +49718,11 @@ function getWorkspace(tree) {
50329
49718
  });
50330
49719
  }
50331
49720
 
50332
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49721
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50333
49722
  var import_path5 = require("path");
50334
49723
  var import_typescript129 = __toESM(require("typescript"), 1);
50335
49724
 
50336
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
49725
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
50337
49726
  var path3 = __toESM(require("path"), 1);
50338
49727
  var import_typescript128 = __toESM(require("typescript"), 1);
50339
49728
  function parseTsconfigFile(tsconfigPath, basePath) {
@@ -50350,7 +49739,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
50350
49739
  return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
50351
49740
  }
50352
49741
 
50353
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
49742
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
50354
49743
  function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
50355
49744
  tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
50356
49745
  const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
@@ -50379,13 +49768,13 @@ function canMigrateFile(basePath, sourceFile, program) {
50379
49768
  return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
50380
49769
  }
50381
49770
 
50382
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
49771
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50383
49772
  var import_typescript134 = __toESM(require("typescript"), 1);
50384
49773
 
50385
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
49774
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50386
49775
  var import_typescript131 = __toESM(require("typescript"), 1);
50387
49776
 
50388
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
49777
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
50389
49778
  var import_typescript130 = __toESM(require("typescript"), 1);
50390
49779
  function getImportOfIdentifier(typeChecker, node) {
50391
49780
  const symbol = typeChecker.getSymbolAtLocation(node);
@@ -50436,7 +49825,7 @@ function findImportSpecifier(nodes, specifierName) {
50436
49825
  });
50437
49826
  }
50438
49827
 
50439
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
49828
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
50440
49829
  function getCallDecoratorImport(typeChecker, decorator) {
50441
49830
  if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
50442
49831
  return null;
@@ -50445,7 +49834,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
50445
49834
  return getImportOfIdentifier(typeChecker, identifier);
50446
49835
  }
50447
49836
 
50448
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
49837
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
50449
49838
  function getAngularDecorators2(typeChecker, decorators) {
50450
49839
  return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
50451
49840
  node,
@@ -50455,7 +49844,7 @@ function getAngularDecorators2(typeChecker, decorators) {
50455
49844
  }));
50456
49845
  }
50457
49846
 
50458
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
49847
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
50459
49848
  var import_typescript132 = __toESM(require("typescript"), 1);
50460
49849
  function closestNode(node, predicate) {
50461
49850
  let current = node.parent;
@@ -50468,7 +49857,7 @@ function closestNode(node, predicate) {
50468
49857
  return null;
50469
49858
  }
50470
49859
 
50471
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
49860
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
50472
49861
  var import_path6 = require("path");
50473
49862
  var import_typescript133 = __toESM(require("typescript"), 1);
50474
49863
  var UniqueItemTracker = class {
@@ -50646,7 +50035,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
50646
50035
  }));
50647
50036
  }
50648
50037
 
50649
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50038
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
50650
50039
  function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
50651
50040
  const filesToRemove = /* @__PURE__ */ new Set();
50652
50041
  const tracker = new ChangeTracker(printer, importRemapper);
@@ -50845,14 +50234,14 @@ function findNgModuleDecorator(node, typeChecker) {
50845
50234
  return decorators.find((decorator) => decorator.name === "NgModule") || null;
50846
50235
  }
50847
50236
 
50848
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50237
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50849
50238
  var import_path7 = require("path");
50850
50239
  var import_typescript137 = __toESM(require("typescript"), 1);
50851
50240
 
50852
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50241
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50853
50242
  var import_typescript136 = __toESM(require("typescript"), 1);
50854
50243
 
50855
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50244
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
50856
50245
  var import_typescript135 = __toESM(require("typescript"), 1);
50857
50246
  function isReferenceToImport(typeChecker, node, importSpecifier) {
50858
50247
  var _a2, _b2;
@@ -50861,7 +50250,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
50861
50250
  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];
50862
50251
  }
50863
50252
 
50864
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50253
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
50865
50254
  function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
50866
50255
  const templateTypeChecker = program.compiler.getTemplateTypeChecker();
50867
50256
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51183,7 +50572,7 @@ function analyzeTestingModules(testObjects, typeChecker) {
51183
50572
  continue;
51184
50573
  }
51185
50574
  const importsProp = findLiteralProperty(obj, "imports");
51186
- const importElements = importsProp && hasNgModuleMetadataElements(importsProp) ? importsProp.initializer.elements.filter((el) => {
50575
+ const importElements = importsProp && hasNgModuleMetadataElements(importsProp) && import_typescript136.default.isArrayLiteralExpression(importsProp.initializer) ? importsProp.initializer.elements.filter((el) => {
51187
50576
  return !import_typescript136.default.isCallExpression(el) && !isClassReferenceInAngularModule(el, /^BrowserAnimationsModule|NoopAnimationsModule$/, "platform-browser/animations", typeChecker);
51188
50577
  }) : null;
51189
50578
  for (const decl of declarations) {
@@ -51210,7 +50599,7 @@ function analyzeTestingModules(testObjects, typeChecker) {
51210
50599
  function extractDeclarationsFromTestObject(obj, typeChecker) {
51211
50600
  const results = [];
51212
50601
  const declarations = findLiteralProperty(obj, "declarations");
51213
- if (declarations && hasNgModuleMetadataElements(declarations)) {
50602
+ if (declarations && hasNgModuleMetadataElements(declarations) && import_typescript136.default.isArrayLiteralExpression(declarations.initializer)) {
51214
50603
  for (const element2 of declarations.initializer.elements) {
51215
50604
  const declaration = findClassDeclaration(element2, typeChecker);
51216
50605
  if (declaration && declaration.getSourceFile().fileName === obj.getSourceFile().fileName) {
@@ -51231,7 +50620,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
51231
50620
  return metadata != null && metadata.isStandalone;
51232
50621
  }
51233
50622
 
51234
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
50623
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
51235
50624
  function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
51236
50625
  const tracker = new ChangeTracker(printer, importRemapper);
51237
50626
  const typeChecker = program.getTsProgram().getTypeChecker();
@@ -51608,7 +50997,7 @@ function hasImport(program, rootFileNames, moduleName) {
51608
50997
  return false;
51609
50998
  }
51610
50999
 
51611
- // bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51000
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
51612
51001
  var MigrationMode;
51613
51002
  (function(MigrationMode2) {
51614
51003
  MigrationMode2["toStandalone"] = "convert-to-standalone";