@angular/compiler-cli 19.0.0-next.7 → 19.0.0-next.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/bundles/{chunk-AOL33GUJ.js → chunk-2TSCCC7T.js} +31 -31
  2. package/bundles/{chunk-FMA7PJT3.js → chunk-3Z25BX6N.js} +7 -7
  3. package/bundles/{chunk-6YYOILZF.js → chunk-6JG6NFJ7.js} +141 -129
  4. package/bundles/chunk-6JG6NFJ7.js.map +6 -0
  5. package/bundles/{chunk-4SDD6AUK.js → chunk-IXNIFZCK.js} +103 -88
  6. package/bundles/{chunk-4SDD6AUK.js.map → chunk-IXNIFZCK.js.map} +1 -1
  7. package/bundles/{chunk-IF37SPTA.js → chunk-IXRL26J5.js} +44 -43
  8. package/bundles/chunk-IXRL26J5.js.map +6 -0
  9. package/bundles/{chunk-XMNIXGGD.js → chunk-KICABBHP.js} +3 -3
  10. package/bundles/{chunk-24RAQD7D.js → chunk-LG56S2LO.js} +5 -5
  11. package/bundles/{chunk-EWRID7KM.js → chunk-OY6IBSDB.js} +12 -12
  12. package/bundles/{chunk-EH5E5HQO.js → chunk-RT2QTF73.js} +3 -3
  13. package/bundles/{chunk-MTBZ3GX2.js → chunk-UJ2J6WV4.js} +8 -8
  14. package/bundles/{chunk-UQPYSPIX.js → chunk-XSNUHRLJ.js} +5 -5
  15. package/bundles/index.js +12 -12
  16. package/bundles/linker/babel/index.js +12 -12
  17. package/bundles/linker/index.js +4 -4
  18. package/bundles/ngcc/index.js +1 -1
  19. package/bundles/private/bazel.js +1 -1
  20. package/bundles/private/localize.js +3 -3
  21. package/bundles/private/migrations.js +4 -4
  22. package/bundles/private/tooling.js +6 -6
  23. package/bundles/src/bin/ng_xi18n.js +10 -10
  24. package/bundles/src/bin/ngc.js +8 -8
  25. package/bundles_metadata.json +1 -1
  26. package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
  27. package/package.json +2 -2
  28. package/src/ngtsc/annotations/component/src/handler.d.ts +2 -1
  29. package/src/ngtsc/annotations/directive/src/handler.d.ts +2 -1
  30. package/src/ngtsc/annotations/directive/src/shared.d.ts +1 -1
  31. package/src/ngtsc/annotations/src/pipe.d.ts +2 -1
  32. package/src/ngtsc/core/api/src/public_options.d.ts +4 -0
  33. package/src/ngtsc/diagnostics/src/error_code.d.ts +4 -0
  34. package/src/ngtsc/validation/src/rules/unused_standalone_imports_rule.d.ts +6 -0
  35. package/bundles/chunk-6YYOILZF.js.map +0 -6
  36. package/bundles/chunk-IF37SPTA.js.map +0 -6
  37. /package/bundles/{chunk-AOL33GUJ.js.map → chunk-2TSCCC7T.js.map} +0 -0
  38. /package/bundles/{chunk-FMA7PJT3.js.map → chunk-3Z25BX6N.js.map} +0 -0
  39. /package/bundles/{chunk-XMNIXGGD.js.map → chunk-KICABBHP.js.map} +0 -0
  40. /package/bundles/{chunk-24RAQD7D.js.map → chunk-LG56S2LO.js.map} +0 -0
  41. /package/bundles/{chunk-EWRID7KM.js.map → chunk-OY6IBSDB.js.map} +0 -0
  42. /package/bundles/{chunk-EH5E5HQO.js.map → chunk-RT2QTF73.js.map} +0 -0
  43. /package/bundles/{chunk-MTBZ3GX2.js.map → chunk-UJ2J6WV4.js.map} +0 -0
  44. /package/bundles/{chunk-UQPYSPIX.js.map → chunk-XSNUHRLJ.js.map} +0 -0
@@ -10,7 +10,7 @@ import {
10
10
  tryParseSignalInputMapping,
11
11
  tryParseSignalModelMapping,
12
12
  tryParseSignalQueryFromInitializer
13
- } from "./chunk-6YYOILZF.js";
13
+ } from "./chunk-6JG6NFJ7.js";
14
14
  import {
15
15
  ImportManager,
16
16
  ImportedSymbolsTracker,
@@ -18,9 +18,9 @@ import {
18
18
  isAliasImportDeclaration,
19
19
  loadIsReferencedAliasDeclarationPatch,
20
20
  reflectClassMember
21
- } from "./chunk-IF37SPTA.js";
21
+ } from "./chunk-IXRL26J5.js";
22
22
 
23
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.mjs
23
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.mjs
24
24
  import ts from "typescript";
25
25
  function isAngularDecorator2(decorator, isCore) {
26
26
  return isCore || decorator.import !== null && decorator.import.from === "@angular/core";
@@ -325,10 +325,10 @@ function cloneClassElementWithModifiers(node, modifiers) {
325
325
  return ts.setOriginalNode(clone, node);
326
326
  }
327
327
 
328
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
328
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
329
329
  import ts4 from "typescript";
330
330
 
331
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform_api.mjs
331
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform_api.mjs
332
332
  import ts2 from "typescript";
333
333
  function createSyntheticAngularCoreDecoratorAccess(factory, importManager, ngClassDecorator, sourceFile, decoratorName) {
334
334
  const classDecoratorIdentifier = ts2.isIdentifier(ngClassDecorator.identifier) ? ngClassDecorator.identifier : ngClassDecorator.identifier.expression;
@@ -345,7 +345,7 @@ function castAsAny(factory, expr) {
345
345
  return factory.createAsExpression(expr, factory.createKeywordTypeNode(ts2.SyntaxKind.AnyKeyword));
346
346
  }
347
347
 
348
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/input_function.mjs
348
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/input_function.mjs
349
349
  var signalInputsTransform = (member, sourceFile, host, factory, importTracker, importManager, classDecorator, isCore) => {
350
350
  var _a, _b;
351
351
  if ((_a = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a.some((d) => isAngularDecorator(d, "Input", isCore))) {
@@ -367,7 +367,7 @@ var signalInputsTransform = (member, sourceFile, host, factory, importTracker, i
367
367
  return factory.updatePropertyDeclaration(member.node, [newDecorator, ...(_b = member.node.modifiers) != null ? _b : []], member.name, member.node.questionToken, member.node.type, member.node.initializer);
368
368
  };
369
369
 
370
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/model_function.mjs
370
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/model_function.mjs
371
371
  import ts3 from "typescript";
372
372
  var signalModelTransform = (member, sourceFile, host, factory, importTracker, importManager, classDecorator, isCore) => {
373
373
  var _a, _b;
@@ -401,7 +401,7 @@ function createDecorator(name, config, classDecorator, factory, sourceFile, impo
401
401
  return factory.createDecorator(factory.createCallExpression(callTarget, void 0, [config]));
402
402
  }
403
403
 
404
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/output_function.mjs
404
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/output_function.mjs
405
405
  var initializerApiOutputTransform = (member, sourceFile, host, factory, importTracker, importManager, classDecorator, isCore) => {
406
406
  var _a, _b;
407
407
  if ((_a = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a.some((d) => isAngularDecorator(d, "Output", isCore))) {
@@ -415,7 +415,7 @@ var initializerApiOutputTransform = (member, sourceFile, host, factory, importTr
415
415
  return factory.updatePropertyDeclaration(member.node, [newDecorator, ...(_b = member.node.modifiers) != null ? _b : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
416
416
  };
417
417
 
418
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/query_functions.mjs
418
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/query_functions.mjs
419
419
  var queryFunctionToDecorator = {
420
420
  viewChild: "ViewChild",
421
421
  viewChildren: "ViewChildren",
@@ -448,7 +448,7 @@ var queryFunctionsTransforms = (member, sourceFile, host, factory, importTracker
448
448
  return factory.updatePropertyDeclaration(member.node, [newDecorator, ...(_a = member.node.modifiers) != null ? _a : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
449
449
  };
450
450
 
451
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
451
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
452
452
  var decoratorsWithInputs = ["Directive", "Component"];
453
453
  var propertyTransforms = [
454
454
  signalInputsTransform,
@@ -501,7 +501,7 @@ function createTransformVisitor(ctx, host, importManager, importTracker, isCore,
501
501
  return visitor;
502
502
  }
503
503
 
504
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/index.mjs
504
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/index.mjs
505
505
  function angularJitApplicationTransform(program, isCore = false, shouldTransformClass) {
506
506
  const typeChecker = program.getTypeChecker();
507
507
  const reflectionHost = new TypeScriptReflectionHost(typeChecker);
@@ -536,4 +536,4 @@ export {
536
536
  * Use of this source code is governed by an MIT-style license that can be
537
537
  * found in the LICENSE file at https://angular.dev/license
538
538
  */
539
- //# sourceMappingURL=chunk-EWRID7KM.js.map
539
+ //# sourceMappingURL=chunk-OY6IBSDB.js.map
@@ -3,7 +3,7 @@
3
3
  const require = __cjsCompatRequire(import.meta.url);
4
4
 
5
5
 
6
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
6
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
7
7
  var LogLevel;
8
8
  (function(LogLevel2) {
9
9
  LogLevel2[LogLevel2["debug"] = 0] = "debug";
@@ -12,7 +12,7 @@ var LogLevel;
12
12
  LogLevel2[LogLevel2["error"] = 3] = "error";
13
13
  })(LogLevel || (LogLevel = {}));
14
14
 
15
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
15
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
16
16
  var RESET = "\x1B[0m";
17
17
  var RED = "\x1B[31m";
18
18
  var YELLOW = "\x1B[33m";
@@ -53,4 +53,4 @@ export {
53
53
  * Use of this source code is governed by an MIT-style license that can be
54
54
  * found in the LICENSE file at https://angular.dev/license
55
55
  */
56
- //# sourceMappingURL=chunk-EH5E5HQO.js.map
56
+ //# sourceMappingURL=chunk-RT2QTF73.js.map
@@ -6,7 +6,7 @@ import {
6
6
  __require
7
7
  } from "./chunk-XI2RTGAL.js";
8
8
 
9
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
9
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
10
10
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
11
11
  function normalizeSeparators(path) {
12
12
  return path.replace(/\\/g, "/");
@@ -22,7 +22,7 @@ function getSourceFileOrError(program, fileName) {
22
22
  return sf;
23
23
  }
24
24
 
25
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
25
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
26
26
  var InvalidFileSystem = class {
27
27
  exists(path) {
28
28
  throw makeError();
@@ -110,7 +110,7 @@ function makeError() {
110
110
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
111
111
  }
112
112
 
113
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
113
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
114
114
  var fs = new InvalidFileSystem();
115
115
  function getFileSystem() {
116
116
  return fs;
@@ -167,7 +167,7 @@ function toRelativeImport(relativePath) {
167
167
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
168
168
  }
169
169
 
170
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
170
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
171
171
  import * as os from "os";
172
172
  import ts from "typescript";
173
173
  var NgtscCompilerHost = class {
@@ -225,7 +225,7 @@ var NgtscCompilerHost = class {
225
225
  }
226
226
  };
227
227
 
228
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
228
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
229
229
  var LogicalProjectPath = {
230
230
  relativePathBetween: function(from, to) {
231
231
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -271,7 +271,7 @@ function isWithinBasePath(base, path) {
271
271
  return isLocalRelativePath(relative(base, path));
272
272
  }
273
273
 
274
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
274
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
275
275
  import fs2 from "fs";
276
276
  import { createRequire } from "module";
277
277
  import * as p from "path";
@@ -378,7 +378,7 @@ function toggleCase(str) {
378
378
  return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
379
379
  }
380
380
 
381
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/ts_read_directory.mjs
381
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/ts_read_directory.mjs
382
382
  import ts2 from "typescript";
383
383
  function createFileSystemTsReadDirectoryFn(fs3) {
384
384
  if (ts2.matchFiles === void 0) {
@@ -441,4 +441,4 @@ export {
441
441
  * Use of this source code is governed by an MIT-style license that can be
442
442
  * found in the LICENSE file at https://angular.dev/license
443
443
  */
444
- //# sourceMappingURL=chunk-MTBZ3GX2.js.map
444
+ //# sourceMappingURL=chunk-UJ2J6WV4.js.map
@@ -3,7 +3,7 @@
3
3
  const require = __cjsCompatRequire(import.meta.url);
4
4
 
5
5
 
6
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
6
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
7
7
  var PerfPhase;
8
8
  (function(PerfPhase2) {
9
9
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -73,7 +73,7 @@ var PerfCheckpoint;
73
73
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
74
74
  })(PerfCheckpoint || (PerfCheckpoint = {}));
75
75
 
76
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
76
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
77
77
  var NoopPerfRecorder = class {
78
78
  eventCount() {
79
79
  }
@@ -90,7 +90,7 @@ var NoopPerfRecorder = class {
90
90
  };
91
91
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
92
92
 
93
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
93
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
94
94
  function mark() {
95
95
  return process.hrtime();
96
96
  }
@@ -99,7 +99,7 @@ function timeSinceInMicros(mark2) {
99
99
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
100
100
  }
101
101
 
102
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
102
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
103
103
  var ActivePerfRecorder = class {
104
104
  static zeroedToNow() {
105
105
  return new ActivePerfRecorder(mark());
@@ -207,4 +207,4 @@ export {
207
207
  * Use of this source code is governed by an MIT-style license that can be
208
208
  * found in the LICENSE file at https://angular.dev/license
209
209
  */
210
- //# sourceMappingURL=chunk-UQPYSPIX.js.map
210
+ //# sourceMappingURL=chunk-XSNUHRLJ.js.map
package/bundles/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  GLOBAL_DEFS_FOR_TERSER,
7
7
  GLOBAL_DEFS_FOR_TERSER_WITH_AOT,
8
8
  constructorParametersDownlevelTransform
9
- } from "./chunk-XMNIXGGD.js";
9
+ } from "./chunk-KICABBHP.js";
10
10
  import {
11
11
  DEFAULT_ERROR_CODE,
12
12
  DecoratorType,
@@ -33,27 +33,27 @@ import {
33
33
  isTsDiagnostic,
34
34
  performCompilation,
35
35
  readConfiguration
36
- } from "./chunk-4SDD6AUK.js";
36
+ } from "./chunk-IXNIFZCK.js";
37
37
  import {
38
38
  angularJitApplicationTransform,
39
39
  getDownlevelDecoratorsTransform,
40
40
  getInitializerApiJitTransform
41
- } from "./chunk-EWRID7KM.js";
41
+ } from "./chunk-OY6IBSDB.js";
42
42
  import {
43
43
  OptimizeFor,
44
44
  TsCreateProgramDriver
45
- } from "./chunk-6YYOILZF.js";
45
+ } from "./chunk-6JG6NFJ7.js";
46
46
  import {
47
47
  isLocalCompilationDiagnostics
48
- } from "./chunk-IF37SPTA.js";
48
+ } from "./chunk-IXRL26J5.js";
49
49
  import {
50
50
  ActivePerfRecorder,
51
51
  PerfPhase
52
- } from "./chunk-UQPYSPIX.js";
52
+ } from "./chunk-XSNUHRLJ.js";
53
53
  import {
54
54
  ConsoleLogger,
55
55
  LogLevel
56
- } from "./chunk-EH5E5HQO.js";
56
+ } from "./chunk-RT2QTF73.js";
57
57
  import {
58
58
  LogicalFileSystem,
59
59
  LogicalProjectPath,
@@ -75,14 +75,14 @@ import {
75
75
  resolve,
76
76
  setFileSystem,
77
77
  toRelativeImport
78
- } from "./chunk-MTBZ3GX2.js";
78
+ } from "./chunk-UJ2J6WV4.js";
79
79
  import "./chunk-XI2RTGAL.js";
80
80
 
81
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
81
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
82
82
  import { Version } from "@angular/compiler";
83
- var VERSION = new Version("19.0.0-next.7");
83
+ var VERSION = new Version("19.0.0-next.8");
84
84
 
85
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
85
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
86
86
  var NgTscPlugin = class {
87
87
  get compiler() {
88
88
  if (this._compiler === null) {
@@ -158,7 +158,7 @@ var NgTscPlugin = class {
158
158
  }
159
159
  };
160
160
 
161
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
161
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
162
162
  setFileSystem(new NodeJSFileSystem());
163
163
  export {
164
164
  ConsoleLogger,
@@ -8,22 +8,22 @@ import {
8
8
  LinkerEnvironment,
9
9
  assert,
10
10
  isFatalLinkerError
11
- } from "../../chunk-AOL33GUJ.js";
12
- import "../../chunk-IF37SPTA.js";
11
+ } from "../../chunk-2TSCCC7T.js";
12
+ import "../../chunk-IXRL26J5.js";
13
13
  import {
14
14
  ConsoleLogger,
15
15
  LogLevel
16
- } from "../../chunk-EH5E5HQO.js";
17
- import "../../chunk-FMA7PJT3.js";
16
+ } from "../../chunk-RT2QTF73.js";
17
+ import "../../chunk-3Z25BX6N.js";
18
18
  import {
19
19
  NodeJSFileSystem
20
- } from "../../chunk-MTBZ3GX2.js";
20
+ } from "../../chunk-UJ2J6WV4.js";
21
21
  import "../../chunk-XI2RTGAL.js";
22
22
 
23
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
23
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
24
24
  import { types as t4 } from "@babel/core";
25
25
 
26
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_factory.mjs
26
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_factory.mjs
27
27
  import { types as t } from "@babel/core";
28
28
  var BabelAstFactory = class {
29
29
  constructor(sourceUrl) {
@@ -148,7 +148,7 @@ function isLExpression(expr) {
148
148
  return t.isLVal(expr);
149
149
  }
150
150
 
151
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
151
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
152
152
  import { types as t2 } from "@babel/core";
153
153
  var BabelAstHost = class {
154
154
  constructor() {
@@ -276,7 +276,7 @@ function isMinifiedBooleanLiteral(node) {
276
276
  return t2.isUnaryExpression(node) && node.prefix && node.operator === "!" && t2.isNumericLiteral(node.argument) && (node.argument.value === 0 || node.argument.value === 1);
277
277
  }
278
278
 
279
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
279
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
280
280
  import { types as t3 } from "@babel/core";
281
281
  var BabelDeclarationScope = class {
282
282
  constructor(declarationScope) {
@@ -302,7 +302,7 @@ var BabelDeclarationScope = class {
302
302
  }
303
303
  };
304
304
 
305
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
305
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
306
306
  function createEs2015LinkerPlugin({ fileSystem, logger, ...options }) {
307
307
  let fileLinker = null;
308
308
  return {
@@ -403,7 +403,7 @@ function buildCodeFrameError(file, message, node) {
403
403
  return `${filename}: ${error.message}`;
404
404
  }
405
405
 
406
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
406
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
407
407
  function defaultLinkerPlugin(api, options) {
408
408
  api.assertVersion(7);
409
409
  return createEs2015LinkerPlugin({
@@ -413,7 +413,7 @@ function defaultLinkerPlugin(api, options) {
413
413
  });
414
414
  }
415
415
 
416
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
416
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
417
417
  var babel_default = defaultLinkerPlugin;
418
418
  export {
419
419
  createEs2015LinkerPlugin,
@@ -10,10 +10,10 @@ import {
10
10
  assert,
11
11
  isFatalLinkerError,
12
12
  needsLinking
13
- } from "../chunk-AOL33GUJ.js";
14
- import "../chunk-IF37SPTA.js";
15
- import "../chunk-FMA7PJT3.js";
16
- import "../chunk-MTBZ3GX2.js";
13
+ } from "../chunk-2TSCCC7T.js";
14
+ import "../chunk-IXRL26J5.js";
15
+ import "../chunk-3Z25BX6N.js";
16
+ import "../chunk-UJ2J6WV4.js";
17
17
  import "../chunk-XI2RTGAL.js";
18
18
  export {
19
19
  DEFAULT_LINKER_OPTIONS,
@@ -4,7 +4,7 @@
4
4
  const require = __cjsCompatRequire(import.meta.url);
5
5
 
6
6
 
7
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
7
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
8
8
  function stringEncaseCRLFWithFirstIndex(value, prefix, postfix, index) {
9
9
  let endIndex = 0;
10
10
  let returnValue = "";
@@ -4,7 +4,7 @@
4
4
 
5
5
  import {
6
6
  PerfPhase
7
- } from "../chunk-UQPYSPIX.js";
7
+ } from "../chunk-XSNUHRLJ.js";
8
8
  import "../chunk-XI2RTGAL.js";
9
9
  export {
10
10
  PerfPhase
@@ -5,11 +5,11 @@
5
5
  import {
6
6
  ConsoleLogger,
7
7
  LogLevel
8
- } from "../chunk-EH5E5HQO.js";
8
+ } from "../chunk-RT2QTF73.js";
9
9
  import {
10
10
  SourceFile,
11
11
  SourceFileLoader
12
- } from "../chunk-FMA7PJT3.js";
12
+ } from "../chunk-3Z25BX6N.js";
13
13
  import {
14
14
  LogicalFileSystem,
15
15
  LogicalProjectPath,
@@ -31,7 +31,7 @@ import {
31
31
  resolve,
32
32
  setFileSystem,
33
33
  toRelativeImport
34
- } from "../chunk-MTBZ3GX2.js";
34
+ } from "../chunk-UJ2J6WV4.js";
35
35
  import "../chunk-XI2RTGAL.js";
36
36
  export {
37
37
  ConsoleLogger,
@@ -9,15 +9,15 @@ import {
9
9
  PotentialImportMode,
10
10
  StaticInterpreter,
11
11
  forwardRefResolver
12
- } from "../chunk-6YYOILZF.js";
12
+ } from "../chunk-6JG6NFJ7.js";
13
13
  import {
14
14
  ImportManager,
15
15
  Reference,
16
16
  TypeScriptReflectionHost,
17
17
  reflectObjectLiteral
18
- } from "../chunk-IF37SPTA.js";
19
- import "../chunk-UQPYSPIX.js";
20
- import "../chunk-MTBZ3GX2.js";
18
+ } from "../chunk-IXRL26J5.js";
19
+ import "../chunk-XSNUHRLJ.js";
20
+ import "../chunk-UJ2J6WV4.js";
21
21
  import "../chunk-XI2RTGAL.js";
22
22
  export {
23
23
  DynamicValue,
@@ -6,12 +6,12 @@ import {
6
6
  GLOBAL_DEFS_FOR_TERSER,
7
7
  GLOBAL_DEFS_FOR_TERSER_WITH_AOT,
8
8
  constructorParametersDownlevelTransform
9
- } from "../chunk-XMNIXGGD.js";
10
- import "../chunk-EWRID7KM.js";
11
- import "../chunk-6YYOILZF.js";
12
- import "../chunk-IF37SPTA.js";
13
- import "../chunk-UQPYSPIX.js";
14
- import "../chunk-MTBZ3GX2.js";
9
+ } from "../chunk-KICABBHP.js";
10
+ import "../chunk-OY6IBSDB.js";
11
+ import "../chunk-6JG6NFJ7.js";
12
+ import "../chunk-IXRL26J5.js";
13
+ import "../chunk-XSNUHRLJ.js";
14
+ import "../chunk-UJ2J6WV4.js";
15
15
  import "../chunk-XI2RTGAL.js";
16
16
  export {
17
17
  GLOBAL_DEFS_FOR_TERSER,
@@ -6,24 +6,24 @@
6
6
  import {
7
7
  main,
8
8
  readCommandLineAndConfiguration
9
- } from "../../chunk-24RAQD7D.js";
9
+ } from "../../chunk-LG56S2LO.js";
10
10
  import {
11
11
  EmitFlags
12
- } from "../../chunk-4SDD6AUK.js";
13
- import "../../chunk-EWRID7KM.js";
14
- import "../../chunk-6YYOILZF.js";
15
- import "../../chunk-IF37SPTA.js";
16
- import "../../chunk-UQPYSPIX.js";
12
+ } from "../../chunk-IXNIFZCK.js";
13
+ import "../../chunk-OY6IBSDB.js";
14
+ import "../../chunk-6JG6NFJ7.js";
15
+ import "../../chunk-IXRL26J5.js";
16
+ import "../../chunk-XSNUHRLJ.js";
17
17
  import {
18
18
  NodeJSFileSystem,
19
19
  setFileSystem
20
- } from "../../chunk-MTBZ3GX2.js";
20
+ } from "../../chunk-UJ2J6WV4.js";
21
21
  import "../../chunk-XI2RTGAL.js";
22
22
 
23
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
23
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
24
24
  import "reflect-metadata";
25
25
 
26
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/extract_i18n.mjs
26
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/extract_i18n.mjs
27
27
  import yargs from "yargs";
28
28
  function mainXi18n(args2, consoleError = console.error) {
29
29
  const config = readXi18nCommandLineAndConfiguration(args2);
@@ -46,7 +46,7 @@ function readXi18nCommandLineAndConfiguration(args2) {
46
46
  return { ...config, emitFlags: EmitFlags.I18nBundle };
47
47
  }
48
48
 
49
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
49
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
50
50
  process.title = "Angular i18n Message Extractor (ng-xi18n)";
51
51
  var args = process.argv.slice(2);
52
52
  setFileSystem(new NodeJSFileSystem());
@@ -5,19 +5,19 @@
5
5
 
6
6
  import {
7
7
  main
8
- } from "../../chunk-24RAQD7D.js";
9
- import "../../chunk-4SDD6AUK.js";
10
- import "../../chunk-EWRID7KM.js";
11
- import "../../chunk-6YYOILZF.js";
12
- import "../../chunk-IF37SPTA.js";
13
- import "../../chunk-UQPYSPIX.js";
8
+ } from "../../chunk-LG56S2LO.js";
9
+ import "../../chunk-IXNIFZCK.js";
10
+ import "../../chunk-OY6IBSDB.js";
11
+ import "../../chunk-6JG6NFJ7.js";
12
+ import "../../chunk-IXRL26J5.js";
13
+ import "../../chunk-XSNUHRLJ.js";
14
14
  import {
15
15
  NodeJSFileSystem,
16
16
  setFileSystem
17
- } from "../../chunk-MTBZ3GX2.js";
17
+ } from "../../chunk-UJ2J6WV4.js";
18
18
  import "../../chunk-XI2RTGAL.js";
19
19
 
20
- // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ngc.mjs
20
+ // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ngc.mjs
21
21
  import "reflect-metadata";
22
22
  async function runNgcComamnd() {
23
23
  process.title = "Angular Compiler (ngc)";