@angular/compiler-cli 20.0.0 → 20.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/{chunk-U5SKOFKE.js → chunk-3NKMA2JO.js} +2 -2
- package/bundles/{chunk-TSBVO2TY.js → chunk-4RDNOL2U.js} +399 -173
- package/bundles/chunk-4RDNOL2U.js.map +6 -0
- package/bundles/{chunk-YZVRRB6E.js → chunk-5K43KTXL.js} +86 -88
- package/bundles/chunk-5K43KTXL.js.map +6 -0
- package/bundles/{chunk-5PLBB4J5.js → chunk-LKPFTZAW.js} +3 -3
- package/bundles/{chunk-5PLBB4J5.js.map → chunk-LKPFTZAW.js.map} +1 -1
- package/bundles/{chunk-M3WWDK6S.js → chunk-LMRFLQ2K.js} +3 -3
- package/bundles/{chunk-4OIPE63R.js → chunk-LYJARAHL.js} +31 -31
- package/bundles/{chunk-4OIPE63R.js.map → chunk-LYJARAHL.js.map} +1 -1
- package/bundles/{chunk-NVYT6OPE.js → chunk-PML5JK7B.js} +7 -7
- package/bundles/{chunk-H5Y7P5GQ.js → chunk-SEKYV57I.js} +3 -3
- package/bundles/{chunk-3AHGFMNS.js → chunk-TPEB2IXF.js} +7 -7
- package/bundles/{chunk-A7TLTAA4.js → chunk-XQCMDSKE.js} +5 -5
- package/bundles/{chunk-A7TLTAA4.js.map → chunk-XQCMDSKE.js.map} +1 -1
- package/bundles/{chunk-T36IFLGD.js → chunk-ZY4GZNHC.js} +11 -11
- package/bundles/index.js +21 -23
- package/bundles/index.js.map +2 -2
- package/bundles/linker/babel/index.js +12 -12
- package/bundles/linker/babel/index.js.map +1 -1
- package/bundles/linker/index.js +3 -3
- package/bundles/private/localize.js +4 -4
- package/bundles/private/migrations.js +4 -5
- package/bundles/private/tooling.js +6 -7
- package/bundles/src/bin/ng_xi18n.js +10 -11
- package/bundles/src/bin/ng_xi18n.js.map +2 -2
- package/bundles/src/bin/ngc.js +8 -9
- package/bundles/src/bin/ngc.js.map +2 -2
- package/index.d.ts +1 -1
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +4 -11
- package/src/ngtsc/diagnostics/src/error_code.d.ts +24 -0
- package/src/ngtsc/typecheck/src/oob.d.ts +11 -0
- package/src/ngtsc/typecheck/src/type_check_block.d.ts +1 -1
- package/bundles/chunk-TSBVO2TY.js.map +0 -6
- package/bundles/chunk-WUCT7QTW.js +0 -216
- package/bundles/chunk-WUCT7QTW.js.map +0 -6
- package/bundles/chunk-YZVRRB6E.js.map +0 -6
- package/bundles/private/bazel.js +0 -19
- package/bundles/private/bazel.js.map +0 -6
- package/private/babel.d.ts +0 -28
- package/private/bazel.d.ts +0 -12
- /package/bundles/{chunk-U5SKOFKE.js.map → chunk-3NKMA2JO.js.map} +0 -0
- /package/bundles/{chunk-M3WWDK6S.js.map → chunk-LMRFLQ2K.js.map} +0 -0
- /package/bundles/{chunk-NVYT6OPE.js.map → chunk-PML5JK7B.js.map} +0 -0
- /package/bundles/{chunk-H5Y7P5GQ.js.map → chunk-SEKYV57I.js.map} +0 -0
- /package/bundles/{chunk-3AHGFMNS.js.map → chunk-TPEB2IXF.js.map} +0 -0
- /package/bundles/{chunk-T36IFLGD.js.map → chunk-ZY4GZNHC.js.map} +0 -0
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
import {
|
|
6
6
|
angularJitApplicationTransform
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-ZY4GZNHC.js";
|
|
8
8
|
import {
|
|
9
9
|
AbsoluteModuleStrategy,
|
|
10
|
+
ActivePerfRecorder,
|
|
10
11
|
AliasStrategy,
|
|
11
12
|
COMPILER_ERRORS_WITH_GUIDES,
|
|
12
13
|
CompilationMode,
|
|
@@ -17,6 +18,7 @@ import {
|
|
|
17
18
|
CompoundMetadataRegistry,
|
|
18
19
|
DefaultImportTracker,
|
|
19
20
|
DeferredSymbolTracker,
|
|
21
|
+
DelegatingPerfRecorder,
|
|
20
22
|
DirectiveDecoratorHandler,
|
|
21
23
|
DtsMetadataReader,
|
|
22
24
|
DtsTransformRegistry,
|
|
@@ -46,6 +48,9 @@ import {
|
|
|
46
48
|
OUTPUT_INITIALIZER_FNS,
|
|
47
49
|
OptimizeFor,
|
|
48
50
|
PartialEvaluator,
|
|
51
|
+
PerfCheckpoint,
|
|
52
|
+
PerfEvent,
|
|
53
|
+
PerfPhase,
|
|
49
54
|
PipeDecoratorHandler,
|
|
50
55
|
PrivateExportAliasingHost,
|
|
51
56
|
QUERY_INITIALIZER_FNS,
|
|
@@ -85,14 +90,7 @@ import {
|
|
|
85
90
|
toUnredirectedSourceFile,
|
|
86
91
|
tryParseInitializerApi,
|
|
87
92
|
untagAllTsFiles
|
|
88
|
-
} from "./chunk-
|
|
89
|
-
import {
|
|
90
|
-
ActivePerfRecorder,
|
|
91
|
-
DelegatingPerfRecorder,
|
|
92
|
-
PerfCheckpoint,
|
|
93
|
-
PerfEvent,
|
|
94
|
-
PerfPhase
|
|
95
|
-
} from "./chunk-WUCT7QTW.js";
|
|
93
|
+
} from "./chunk-4RDNOL2U.js";
|
|
96
94
|
import {
|
|
97
95
|
LogicalFileSystem,
|
|
98
96
|
absoluteFrom,
|
|
@@ -102,9 +100,9 @@ import {
|
|
|
102
100
|
getFileSystem,
|
|
103
101
|
join,
|
|
104
102
|
resolve
|
|
105
|
-
} from "./chunk-
|
|
103
|
+
} from "./chunk-TPEB2IXF.js";
|
|
106
104
|
|
|
107
|
-
// bazel-out/
|
|
105
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.js
|
|
108
106
|
var DEFAULT_ERROR_CODE = 100;
|
|
109
107
|
var UNKNOWN_ERROR_CODE = 500;
|
|
110
108
|
var SOURCE = "angular";
|
|
@@ -122,7 +120,7 @@ var EmitFlags;
|
|
|
122
120
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
123
121
|
})(EmitFlags || (EmitFlags = {}));
|
|
124
122
|
|
|
125
|
-
// bazel-out/
|
|
123
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.js
|
|
126
124
|
import ts from "typescript";
|
|
127
125
|
var wrapHostForTest = null;
|
|
128
126
|
function createCompilerHost({ options, tsHost = ts.createCompilerHost(options, true) }) {
|
|
@@ -132,7 +130,7 @@ function createCompilerHost({ options, tsHost = ts.createCompilerHost(options, t
|
|
|
132
130
|
return tsHost;
|
|
133
131
|
}
|
|
134
132
|
|
|
135
|
-
// bazel-out/
|
|
133
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.js
|
|
136
134
|
var EntryType;
|
|
137
135
|
(function(EntryType2) {
|
|
138
136
|
EntryType2["Block"] = "block";
|
|
@@ -179,22 +177,22 @@ function isDocEntryWithSourceInfo(entry) {
|
|
|
179
177
|
return "source" in entry;
|
|
180
178
|
}
|
|
181
179
|
|
|
182
|
-
// bazel-out/
|
|
180
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.js
|
|
183
181
|
import ts12 from "typescript";
|
|
184
182
|
|
|
185
|
-
// bazel-out/
|
|
183
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.js
|
|
186
184
|
import ts6 from "typescript";
|
|
187
185
|
|
|
188
|
-
// bazel-out/
|
|
186
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.js
|
|
189
187
|
function isAngularPrivateName(name) {
|
|
190
188
|
const firstChar = name[0] ?? "";
|
|
191
189
|
return firstChar === "\u0275" || firstChar === "_";
|
|
192
190
|
}
|
|
193
191
|
|
|
194
|
-
// bazel-out/
|
|
192
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.js
|
|
195
193
|
import ts4 from "typescript";
|
|
196
194
|
|
|
197
|
-
// bazel-out/
|
|
195
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.js
|
|
198
196
|
function extractGenerics(declaration) {
|
|
199
197
|
return declaration.typeParameters?.map((typeParam) => ({
|
|
200
198
|
name: typeParam.name.getText(),
|
|
@@ -203,7 +201,7 @@ function extractGenerics(declaration) {
|
|
|
203
201
|
})) ?? [];
|
|
204
202
|
}
|
|
205
203
|
|
|
206
|
-
// bazel-out/
|
|
204
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.js
|
|
207
205
|
import ts2 from "typescript";
|
|
208
206
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
209
207
|
function extractJsDocTags(node) {
|
|
@@ -244,13 +242,13 @@ function unescapeAngularDecorators(comment) {
|
|
|
244
242
|
return comment.replace(/_NG_AT_/g, "@");
|
|
245
243
|
}
|
|
246
244
|
|
|
247
|
-
// bazel-out/
|
|
245
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.js
|
|
248
246
|
import ts3 from "typescript";
|
|
249
247
|
function extractResolvedTypeString(node, checker) {
|
|
250
248
|
return checker.typeToString(checker.getTypeAtLocation(node), void 0, ts3.TypeFormatFlags.NoTruncation);
|
|
251
249
|
}
|
|
252
250
|
|
|
253
|
-
// bazel-out/
|
|
251
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.js
|
|
254
252
|
var FunctionExtractor = class {
|
|
255
253
|
name;
|
|
256
254
|
exportDeclaration;
|
|
@@ -360,7 +358,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
360
358
|
return implementation;
|
|
361
359
|
}
|
|
362
360
|
|
|
363
|
-
// bazel-out/
|
|
361
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.js
|
|
364
362
|
import ts5 from "typescript";
|
|
365
363
|
function isInternal(member) {
|
|
366
364
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -378,7 +376,7 @@ function hasLeadingInternalComment(member) {
|
|
|
378
376
|
) ?? false;
|
|
379
377
|
}
|
|
380
378
|
|
|
381
|
-
// bazel-out/
|
|
379
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.js
|
|
382
380
|
var ClassExtractor = class {
|
|
383
381
|
declaration;
|
|
384
382
|
typeChecker;
|
|
@@ -696,7 +694,7 @@ function extractPipeSyntax(metadata, classDeclaration) {
|
|
|
696
694
|
return `{{ value_expression | ${metadata.name}${paramNames.length ? ":" + paramNames.join(":") : ""} }}`;
|
|
697
695
|
}
|
|
698
696
|
|
|
699
|
-
// bazel-out/
|
|
697
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.js
|
|
700
698
|
import ts7 from "typescript";
|
|
701
699
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
702
700
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -754,7 +752,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
754
752
|
});
|
|
755
753
|
}
|
|
756
754
|
|
|
757
|
-
// bazel-out/
|
|
755
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.js
|
|
758
756
|
import ts8 from "typescript";
|
|
759
757
|
function extractorDecorator(declaration, typeChecker) {
|
|
760
758
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -825,7 +823,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
825
823
|
return callSignature;
|
|
826
824
|
}
|
|
827
825
|
|
|
828
|
-
// bazel-out/
|
|
826
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.js
|
|
829
827
|
import ts9 from "typescript";
|
|
830
828
|
function extractEnum(declaration, typeChecker) {
|
|
831
829
|
return {
|
|
@@ -855,7 +853,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
855
853
|
return literal?.getText() ?? "";
|
|
856
854
|
}
|
|
857
855
|
|
|
858
|
-
// bazel-out/
|
|
856
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.js
|
|
859
857
|
import ts10 from "typescript";
|
|
860
858
|
var initializerApiTag = "initializerApiFunction";
|
|
861
859
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -963,7 +961,7 @@ function extractFunctionWithOverloads(name, type, typeChecker) {
|
|
|
963
961
|
};
|
|
964
962
|
}
|
|
965
963
|
|
|
966
|
-
// bazel-out/
|
|
964
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.js
|
|
967
965
|
function extractTypeAlias(declaration) {
|
|
968
966
|
return {
|
|
969
967
|
name: declaration.name.getText(),
|
|
@@ -976,7 +974,7 @@ function extractTypeAlias(declaration) {
|
|
|
976
974
|
};
|
|
977
975
|
}
|
|
978
976
|
|
|
979
|
-
// bazel-out/
|
|
977
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/import_extractor.js
|
|
980
978
|
import ts11 from "typescript";
|
|
981
979
|
function getImportedSymbols(sourceFile) {
|
|
982
980
|
const importSpecifiers = /* @__PURE__ */ new Map();
|
|
@@ -1000,7 +998,7 @@ function getImportedSymbols(sourceFile) {
|
|
|
1000
998
|
return importSpecifiers;
|
|
1001
999
|
}
|
|
1002
1000
|
|
|
1003
|
-
// bazel-out/
|
|
1001
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.js
|
|
1004
1002
|
var DocsExtractor = class {
|
|
1005
1003
|
typeChecker;
|
|
1006
1004
|
metadataReader;
|
|
@@ -1087,11 +1085,11 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
1087
1085
|
return relativePath;
|
|
1088
1086
|
}
|
|
1089
1087
|
|
|
1090
|
-
// bazel-out/
|
|
1088
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.js
|
|
1091
1089
|
import { HtmlParser, MessageBundle } from "@angular/compiler";
|
|
1092
1090
|
import ts27 from "typescript";
|
|
1093
1091
|
|
|
1094
|
-
// bazel-out/
|
|
1092
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.js
|
|
1095
1093
|
import { Xliff, Xliff2, Xmb } from "@angular/compiler";
|
|
1096
1094
|
import * as path from "path";
|
|
1097
1095
|
function i18nGetExtension(formatName) {
|
|
@@ -1142,10 +1140,10 @@ function getPathNormalizer(basePath) {
|
|
|
1142
1140
|
};
|
|
1143
1141
|
}
|
|
1144
1142
|
|
|
1145
|
-
// bazel-out/
|
|
1143
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.js
|
|
1146
1144
|
import ts13 from "typescript";
|
|
1147
1145
|
|
|
1148
|
-
// bazel-out/
|
|
1146
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.js
|
|
1149
1147
|
function toNumbers(value) {
|
|
1150
1148
|
const suffixIndex = value.lastIndexOf("-");
|
|
1151
1149
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -1180,7 +1178,7 @@ function compareVersions(v1, v2) {
|
|
|
1180
1178
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
1181
1179
|
}
|
|
1182
1180
|
|
|
1183
|
-
// bazel-out/
|
|
1181
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.js
|
|
1184
1182
|
var MIN_TS_VERSION = "5.8.0";
|
|
1185
1183
|
var MAX_TS_VERSION = "5.9.0";
|
|
1186
1184
|
var tsVersion = ts13.version;
|
|
@@ -1193,10 +1191,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
1193
1191
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
1194
1192
|
}
|
|
1195
1193
|
|
|
1196
|
-
// bazel-out/
|
|
1194
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.js
|
|
1197
1195
|
import ts25 from "typescript";
|
|
1198
1196
|
|
|
1199
|
-
// bazel-out/
|
|
1197
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.js
|
|
1200
1198
|
var CycleAnalyzer = class {
|
|
1201
1199
|
importGraph;
|
|
1202
1200
|
cachedResults = null;
|
|
@@ -1273,7 +1271,7 @@ var Cycle = class {
|
|
|
1273
1271
|
}
|
|
1274
1272
|
};
|
|
1275
1273
|
|
|
1276
|
-
// bazel-out/
|
|
1274
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.js
|
|
1277
1275
|
import ts14 from "typescript";
|
|
1278
1276
|
var ImportGraph = class {
|
|
1279
1277
|
checker;
|
|
@@ -1369,7 +1367,7 @@ var Found = class {
|
|
|
1369
1367
|
}
|
|
1370
1368
|
};
|
|
1371
1369
|
|
|
1372
|
-
// bazel-out/
|
|
1370
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.js
|
|
1373
1371
|
import ts15 from "typescript";
|
|
1374
1372
|
var FlatIndexGenerator = class {
|
|
1375
1373
|
entryPoint;
|
|
@@ -1397,7 +1395,7 @@ export * from '${relativeEntryPoint}';
|
|
|
1397
1395
|
}
|
|
1398
1396
|
};
|
|
1399
1397
|
|
|
1400
|
-
// bazel-out/
|
|
1398
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.js
|
|
1401
1399
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
1402
1400
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
1403
1401
|
let resolvedEntryPoint = null;
|
|
@@ -1413,7 +1411,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
1413
1411
|
return resolvedEntryPoint;
|
|
1414
1412
|
}
|
|
1415
1413
|
|
|
1416
|
-
// bazel-out/
|
|
1414
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.js
|
|
1417
1415
|
import ts16 from "typescript";
|
|
1418
1416
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
1419
1417
|
const diagnostics = [];
|
|
@@ -1493,7 +1491,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
1493
1491
|
}
|
|
1494
1492
|
}
|
|
1495
1493
|
|
|
1496
|
-
// bazel-out/
|
|
1494
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.js
|
|
1497
1495
|
var ReferenceGraph = class {
|
|
1498
1496
|
references = /* @__PURE__ */ new Map();
|
|
1499
1497
|
add(from, to) {
|
|
@@ -1545,7 +1543,7 @@ var ReferenceGraph = class {
|
|
|
1545
1543
|
}
|
|
1546
1544
|
};
|
|
1547
1545
|
|
|
1548
|
-
// bazel-out/
|
|
1546
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.js
|
|
1549
1547
|
var FileDependencyGraph = class {
|
|
1550
1548
|
nodes = /* @__PURE__ */ new Map();
|
|
1551
1549
|
addDependency(from, on) {
|
|
@@ -1610,7 +1608,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
1610
1608
|
return false;
|
|
1611
1609
|
}
|
|
1612
1610
|
|
|
1613
|
-
// bazel-out/
|
|
1611
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.js
|
|
1614
1612
|
var IncrementalStateKind;
|
|
1615
1613
|
(function(IncrementalStateKind2) {
|
|
1616
1614
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -1618,7 +1616,7 @@ var IncrementalStateKind;
|
|
|
1618
1616
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
1619
1617
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
1620
1618
|
|
|
1621
|
-
// bazel-out/
|
|
1619
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.js
|
|
1622
1620
|
var PhaseKind;
|
|
1623
1621
|
(function(PhaseKind2) {
|
|
1624
1622
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -1824,7 +1822,7 @@ function toOriginalSourceFile(sf) {
|
|
|
1824
1822
|
}
|
|
1825
1823
|
}
|
|
1826
1824
|
|
|
1827
|
-
// bazel-out/
|
|
1825
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.js
|
|
1828
1826
|
var TrackedIncrementalBuildStrategy = class {
|
|
1829
1827
|
state = null;
|
|
1830
1828
|
isSet = false;
|
|
@@ -1858,7 +1856,7 @@ var PatchedProgramIncrementalBuildStrategy = class {
|
|
|
1858
1856
|
};
|
|
1859
1857
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
1860
1858
|
|
|
1861
|
-
// bazel-out/
|
|
1859
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.js
|
|
1862
1860
|
var IdentifierKind;
|
|
1863
1861
|
(function(IdentifierKind2) {
|
|
1864
1862
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -1879,7 +1877,7 @@ var AbsoluteSourceSpan = class {
|
|
|
1879
1877
|
}
|
|
1880
1878
|
};
|
|
1881
1879
|
|
|
1882
|
-
// bazel-out/
|
|
1880
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.js
|
|
1883
1881
|
var IndexingContext = class {
|
|
1884
1882
|
components = /* @__PURE__ */ new Set();
|
|
1885
1883
|
addComponent(info) {
|
|
@@ -1887,10 +1885,10 @@ var IndexingContext = class {
|
|
|
1887
1885
|
}
|
|
1888
1886
|
};
|
|
1889
1887
|
|
|
1890
|
-
// bazel-out/
|
|
1888
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.js
|
|
1891
1889
|
import { ParseSourceFile } from "@angular/compiler";
|
|
1892
1890
|
|
|
1893
|
-
// bazel-out/
|
|
1891
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.js
|
|
1894
1892
|
import { ASTWithSource, ImplicitReceiver, PropertyRead, PropertyWrite, RecursiveAstVisitor, TmplAstBoundDeferredTrigger, TmplAstComponent, TmplAstDirective, TmplAstElement, TmplAstRecursiveVisitor, TmplAstReference, TmplAstTemplate, TmplAstVariable } from "@angular/compiler";
|
|
1895
1893
|
var ExpressionVisitor = class extends RecursiveAstVisitor {
|
|
1896
1894
|
expressionStr;
|
|
@@ -2198,7 +2196,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
2198
2196
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
2199
2197
|
}
|
|
2200
2198
|
|
|
2201
|
-
// bazel-out/
|
|
2199
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.js
|
|
2202
2200
|
function generateAnalysis(context) {
|
|
2203
2201
|
const analysis = /* @__PURE__ */ new Map();
|
|
2204
2202
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -2234,7 +2232,7 @@ function generateAnalysis(context) {
|
|
|
2234
2232
|
return analysis;
|
|
2235
2233
|
}
|
|
2236
2234
|
|
|
2237
|
-
// bazel-out/
|
|
2235
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.js
|
|
2238
2236
|
var NgModuleIndexImpl = class {
|
|
2239
2237
|
metaReader;
|
|
2240
2238
|
localReader;
|
|
@@ -2324,7 +2322,7 @@ var NgModuleIndexImpl = class {
|
|
|
2324
2322
|
}
|
|
2325
2323
|
};
|
|
2326
2324
|
|
|
2327
|
-
// bazel-out/
|
|
2325
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.js
|
|
2328
2326
|
import ts17 from "typescript";
|
|
2329
2327
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
2330
2328
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -2481,7 +2479,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
2481
2479
|
};
|
|
2482
2480
|
}
|
|
2483
2481
|
|
|
2484
|
-
// bazel-out/
|
|
2482
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.js
|
|
2485
2483
|
var StandaloneComponentScopeReader = class {
|
|
2486
2484
|
metaReader;
|
|
2487
2485
|
localModuleReader;
|
|
@@ -2579,10 +2577,10 @@ var StandaloneComponentScopeReader = class {
|
|
|
2579
2577
|
}
|
|
2580
2578
|
};
|
|
2581
2579
|
|
|
2582
|
-
// bazel-out/
|
|
2580
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.js
|
|
2583
2581
|
import { ASTWithSource as ASTWithSource3, BindingType, Interpolation, PropertyRead as PropertyRead2, TmplAstBoundAttribute } from "@angular/compiler";
|
|
2584
2582
|
|
|
2585
|
-
// bazel-out/
|
|
2583
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.js
|
|
2586
2584
|
import ts18 from "typescript";
|
|
2587
2585
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
2588
2586
|
"WritableSignal",
|
|
@@ -2602,7 +2600,7 @@ function isSignalSymbol(symbol) {
|
|
|
2602
2600
|
});
|
|
2603
2601
|
}
|
|
2604
2602
|
|
|
2605
|
-
// bazel-out/
|
|
2603
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.js
|
|
2606
2604
|
import { ASTWithSource as ASTWithSource2, RecursiveAstVisitor as RecursiveAstVisitor2, TmplAstBoundDeferredTrigger as TmplAstBoundDeferredTrigger2 } from "@angular/compiler";
|
|
2607
2605
|
var TemplateCheckWithVisitor = class {
|
|
2608
2606
|
canVisitStructuralAttributes = true;
|
|
@@ -2753,7 +2751,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
2753
2751
|
}
|
|
2754
2752
|
};
|
|
2755
2753
|
|
|
2756
|
-
// bazel-out/
|
|
2754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.js
|
|
2757
2755
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
2758
2756
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
2759
2757
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -2802,7 +2800,7 @@ var factory = {
|
|
|
2802
2800
|
create: () => new InterpolatedSignalCheck()
|
|
2803
2801
|
};
|
|
2804
2802
|
|
|
2805
|
-
// bazel-out/
|
|
2803
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.js
|
|
2806
2804
|
import { TmplAstBoundEvent } from "@angular/compiler";
|
|
2807
2805
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
2808
2806
|
code = ErrorCode.INVALID_BANANA_IN_BOX;
|
|
@@ -2825,7 +2823,7 @@ var factory2 = {
|
|
|
2825
2823
|
create: () => new InvalidBananaInBoxCheck()
|
|
2826
2824
|
};
|
|
2827
2825
|
|
|
2828
|
-
// bazel-out/
|
|
2826
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.js
|
|
2829
2827
|
import { TmplAstTemplate as TmplAstTemplate2 } from "@angular/compiler";
|
|
2830
2828
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
2831
2829
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
@@ -2867,7 +2865,7 @@ var factory3 = {
|
|
|
2867
2865
|
}
|
|
2868
2866
|
};
|
|
2869
2867
|
|
|
2870
|
-
// bazel-out/
|
|
2868
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.js
|
|
2871
2869
|
import { TmplAstTemplate as TmplAstTemplate3 } from "@angular/compiler";
|
|
2872
2870
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
2873
2871
|
code = ErrorCode.MISSING_NGFOROF_LET;
|
|
@@ -2897,7 +2895,7 @@ var factory4 = {
|
|
|
2897
2895
|
create: () => new MissingNgForOfLetCheck()
|
|
2898
2896
|
};
|
|
2899
2897
|
|
|
2900
|
-
// bazel-out/
|
|
2898
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_structural_directive/index.js
|
|
2901
2899
|
import { TmplAstTemplate as TmplAstTemplate4 } from "@angular/compiler";
|
|
2902
2900
|
var KNOWN_CONTROL_FLOW_DIRECTIVES2 = /* @__PURE__ */ new Set([
|
|
2903
2901
|
"ngIf",
|
|
@@ -2937,7 +2935,7 @@ var factory5 = {
|
|
|
2937
2935
|
create: () => new MissingStructuralDirectiveCheck()
|
|
2938
2936
|
};
|
|
2939
2937
|
|
|
2940
|
-
// bazel-out/
|
|
2938
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.js
|
|
2941
2939
|
import { Binary } from "@angular/compiler";
|
|
2942
2940
|
import ts19 from "typescript";
|
|
2943
2941
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -2980,7 +2978,7 @@ var factory6 = {
|
|
|
2980
2978
|
}
|
|
2981
2979
|
};
|
|
2982
2980
|
|
|
2983
|
-
// bazel-out/
|
|
2981
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.js
|
|
2984
2982
|
import { SafeCall, SafeKeyedRead, SafePropertyRead } from "@angular/compiler";
|
|
2985
2983
|
import ts20 from "typescript";
|
|
2986
2984
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -3024,7 +3022,7 @@ var factory7 = {
|
|
|
3024
3022
|
}
|
|
3025
3023
|
};
|
|
3026
3024
|
|
|
3027
|
-
// bazel-out/
|
|
3025
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/skip_hydration_not_static/index.js
|
|
3028
3026
|
import { TmplAstBoundAttribute as TmplAstBoundAttribute2, TmplAstTextAttribute } from "@angular/compiler";
|
|
3029
3027
|
var NG_SKIP_HYDRATION_ATTR_NAME = "ngSkipHydration";
|
|
3030
3028
|
var NgSkipHydrationSpec = class extends TemplateCheckWithVisitor {
|
|
@@ -3050,7 +3048,7 @@ var factory8 = {
|
|
|
3050
3048
|
create: () => new NgSkipHydrationSpec()
|
|
3051
3049
|
};
|
|
3052
3050
|
|
|
3053
|
-
// bazel-out/
|
|
3051
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.js
|
|
3054
3052
|
import { TmplAstBoundAttribute as TmplAstBoundAttribute3 } from "@angular/compiler";
|
|
3055
3053
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
3056
3054
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -3071,7 +3069,7 @@ var factory9 = {
|
|
|
3071
3069
|
create: () => new SuffixNotSupportedCheck()
|
|
3072
3070
|
};
|
|
3073
3071
|
|
|
3074
|
-
// bazel-out/
|
|
3072
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.js
|
|
3075
3073
|
import { TmplAstTextAttribute as TmplAstTextAttribute2 } from "@angular/compiler";
|
|
3076
3074
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
3077
3075
|
code = ErrorCode.TEXT_ATTRIBUTE_NOT_BINDING;
|
|
@@ -3107,7 +3105,7 @@ var factory10 = {
|
|
|
3107
3105
|
create: () => new TextAttributeNotBindingSpec()
|
|
3108
3106
|
};
|
|
3109
3107
|
|
|
3110
|
-
// bazel-out/
|
|
3108
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.js
|
|
3111
3109
|
import { ASTWithSource as ASTWithSource4, Call, Chain, Conditional, ParsedEventType, PropertyRead as PropertyRead3, SafeCall as SafeCall2, SafePropertyRead as SafePropertyRead2, TmplAstBoundEvent as TmplAstBoundEvent2 } from "@angular/compiler";
|
|
3112
3110
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
3113
3111
|
code = ErrorCode.UNINVOKED_FUNCTION_IN_EVENT_BINDING;
|
|
@@ -3155,7 +3153,7 @@ var factory11 = {
|
|
|
3155
3153
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
3156
3154
|
};
|
|
3157
3155
|
|
|
3158
|
-
// bazel-out/
|
|
3156
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unparenthesized_nullish_coalescing/index.js
|
|
3159
3157
|
import { Binary as Binary2 } from "@angular/compiler";
|
|
3160
3158
|
var UnparenthesizedNullishCoalescing = class extends TemplateCheckWithVisitor {
|
|
3161
3159
|
code = ErrorCode.UNPARENTHESIZED_NULLISH_COALESCING;
|
|
@@ -3185,7 +3183,7 @@ var factory12 = {
|
|
|
3185
3183
|
create: () => new UnparenthesizedNullishCoalescing()
|
|
3186
3184
|
};
|
|
3187
3185
|
|
|
3188
|
-
// bazel-out/
|
|
3186
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unused_let_declaration/index.js
|
|
3189
3187
|
import { AST, ASTWithSource as ASTWithSource5, TmplAstLetDeclaration } from "@angular/compiler";
|
|
3190
3188
|
var UnusedLetDeclarationCheck = class extends TemplateCheckWithVisitor {
|
|
3191
3189
|
code = ErrorCode.UNUSED_LET_DECLARATION;
|
|
@@ -3227,7 +3225,7 @@ var factory13 = {
|
|
|
3227
3225
|
create: () => new UnusedLetDeclarationCheck()
|
|
3228
3226
|
};
|
|
3229
3227
|
|
|
3230
|
-
// bazel-out/
|
|
3228
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_track_function/index.js
|
|
3231
3229
|
import { Call as Call2, PropertyRead as PropertyRead4, SafeCall as SafeCall3, SafePropertyRead as SafePropertyRead3, TmplAstForLoopBlock } from "@angular/compiler";
|
|
3232
3230
|
var UninvokedTrackFunctionCheck = class extends TemplateCheckWithVisitor {
|
|
3233
3231
|
code = ErrorCode.UNINVOKED_TRACK_FUNCTION;
|
|
@@ -3259,10 +3257,10 @@ var factory14 = {
|
|
|
3259
3257
|
create: () => new UninvokedTrackFunctionCheck()
|
|
3260
3258
|
};
|
|
3261
3259
|
|
|
3262
|
-
// bazel-out/
|
|
3260
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.js
|
|
3263
3261
|
import ts21 from "typescript";
|
|
3264
3262
|
|
|
3265
|
-
// bazel-out/
|
|
3263
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.js
|
|
3266
3264
|
var DiagnosticCategoryLabel;
|
|
3267
3265
|
(function(DiagnosticCategoryLabel2) {
|
|
3268
3266
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -3270,7 +3268,7 @@ var DiagnosticCategoryLabel;
|
|
|
3270
3268
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
3271
3269
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
3272
3270
|
|
|
3273
|
-
// bazel-out/
|
|
3271
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.js
|
|
3274
3272
|
var ExtendedTemplateCheckerImpl = class {
|
|
3275
3273
|
partialCtx;
|
|
3276
3274
|
templateChecks;
|
|
@@ -3324,7 +3322,7 @@ function assertNever(value) {
|
|
|
3324
3322
|
${value}`);
|
|
3325
3323
|
}
|
|
3326
3324
|
|
|
3327
|
-
// bazel-out/
|
|
3325
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.js
|
|
3328
3326
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
3329
3327
|
factory2,
|
|
3330
3328
|
factory6,
|
|
@@ -3347,7 +3345,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
3347
3345
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory15) => factory15.name)
|
|
3348
3346
|
]);
|
|
3349
3347
|
|
|
3350
|
-
// bazel-out/
|
|
3348
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.js
|
|
3351
3349
|
import { ASTWithSource as ASTWithSource6, ImplicitReceiver as ImplicitReceiver2, ParsedEventType as ParsedEventType2, RecursiveAstVisitor as RecursiveAstVisitor3, TmplAstBoundEvent as TmplAstBoundEvent3, TmplAstLetDeclaration as TmplAstLetDeclaration2, TmplAstRecursiveVisitor as TmplAstRecursiveVisitor2, TmplAstVariable as TmplAstVariable2 } from "@angular/compiler";
|
|
3352
3350
|
import ts22 from "typescript";
|
|
3353
3351
|
var TemplateSemanticsCheckerImpl = class {
|
|
@@ -3443,7 +3441,7 @@ function unwrapAstWithSource(ast) {
|
|
|
3443
3441
|
return ast instanceof ASTWithSource6 ? ast.ast : ast;
|
|
3444
3442
|
}
|
|
3445
3443
|
|
|
3446
|
-
// bazel-out/
|
|
3444
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.js
|
|
3447
3445
|
import ts23 from "typescript";
|
|
3448
3446
|
var APIS_TO_CHECK = [
|
|
3449
3447
|
INPUT_INITIALIZER_FN,
|
|
@@ -3495,7 +3493,7 @@ var InitializerApiUsageRule = class {
|
|
|
3495
3493
|
}
|
|
3496
3494
|
};
|
|
3497
3495
|
|
|
3498
|
-
// bazel-out/
|
|
3496
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/unused_standalone_imports_rule.js
|
|
3499
3497
|
import ts24 from "typescript";
|
|
3500
3498
|
var UnusedStandaloneImportsRule = class {
|
|
3501
3499
|
templateTypeChecker;
|
|
@@ -3586,7 +3584,7 @@ function closestNode(start, predicate) {
|
|
|
3586
3584
|
return null;
|
|
3587
3585
|
}
|
|
3588
3586
|
|
|
3589
|
-
// bazel-out/
|
|
3587
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.js
|
|
3590
3588
|
var SourceFileValidator = class {
|
|
3591
3589
|
rules;
|
|
3592
3590
|
constructor(reflector, importedSymbolsTracker, templateTypeChecker, typeCheckingConfig) {
|
|
@@ -3626,7 +3624,7 @@ var SourceFileValidator = class {
|
|
|
3626
3624
|
}
|
|
3627
3625
|
};
|
|
3628
3626
|
|
|
3629
|
-
// bazel-out/
|
|
3627
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.js
|
|
3630
3628
|
import semver from "semver";
|
|
3631
3629
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
3632
3630
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -3635,7 +3633,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
3635
3633
|
return semver.satisfies(coreVersion, minVersion, { includePrerelease: true });
|
|
3636
3634
|
}
|
|
3637
3635
|
|
|
3638
|
-
// bazel-out/
|
|
3636
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.js
|
|
3639
3637
|
var CompilationTicketKind;
|
|
3640
3638
|
(function(CompilationTicketKind2) {
|
|
3641
3639
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -4512,7 +4510,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
4512
4510
|
return versions;
|
|
4513
4511
|
}
|
|
4514
4512
|
|
|
4515
|
-
// bazel-out/
|
|
4513
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.js
|
|
4516
4514
|
import ts26 from "typescript";
|
|
4517
4515
|
var DelegatingCompilerHost = class {
|
|
4518
4516
|
delegate;
|
|
@@ -4686,7 +4684,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost {
|
|
|
4686
4684
|
}
|
|
4687
4685
|
};
|
|
4688
4686
|
|
|
4689
|
-
// bazel-out/
|
|
4687
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.js
|
|
4690
4688
|
var NgtscProgram = class {
|
|
4691
4689
|
options;
|
|
4692
4690
|
compiler;
|
|
@@ -4914,15 +4912,15 @@ function mergeEmitResults(emitResults) {
|
|
|
4914
4912
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
4915
4913
|
}
|
|
4916
4914
|
|
|
4917
|
-
// bazel-out/
|
|
4915
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.js
|
|
4918
4916
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
4919
4917
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
4920
4918
|
}
|
|
4921
4919
|
|
|
4922
|
-
// bazel-out/
|
|
4920
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.js
|
|
4923
4921
|
import ts29 from "typescript";
|
|
4924
4922
|
|
|
4925
|
-
// bazel-out/
|
|
4923
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.js
|
|
4926
4924
|
import ts28 from "typescript";
|
|
4927
4925
|
function createMessageDiagnostic(messageText) {
|
|
4928
4926
|
return {
|
|
@@ -4936,7 +4934,7 @@ function createMessageDiagnostic(messageText) {
|
|
|
4936
4934
|
};
|
|
4937
4935
|
}
|
|
4938
4936
|
|
|
4939
|
-
// bazel-out/
|
|
4937
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.js
|
|
4940
4938
|
var defaultFormatHost = {
|
|
4941
4939
|
getCurrentDirectory: () => ts29.sys.getCurrentDirectory(),
|
|
4942
4940
|
getCanonicalFileName: (fileName) => fileName,
|
|
@@ -5166,4 +5164,4 @@ export {
|
|
|
5166
5164
|
* Use of this source code is governed by an MIT-style license that can be
|
|
5167
5165
|
* found in the LICENSE file at https://angular.dev/license
|
|
5168
5166
|
*/
|
|
5169
|
-
//# sourceMappingURL=chunk-
|
|
5167
|
+
//# sourceMappingURL=chunk-5K43KTXL.js.map
|