@angular/compiler-cli 19.0.0-next.4 → 19.0.0-next.6
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-IYQOLQCE.js → chunk-73AYMD6M.js} +124 -121
- package/bundles/{chunk-IYQOLQCE.js.map → chunk-73AYMD6M.js.map} +1 -1
- package/bundles/{chunk-3W345P4E.js → chunk-KV3I5HEN.js} +45 -8
- package/bundles/{chunk-3W345P4E.js.map → chunk-KV3I5HEN.js.map} +3 -3
- package/bundles/{chunk-52VRTNQS.js → chunk-MJ5UV6HO.js} +85 -82
- package/bundles/chunk-MJ5UV6HO.js.map +6 -0
- package/bundles/{chunk-5EC5IVIP.js → chunk-MZGC4NDQ.js} +3 -3
- package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
- package/bundles/{chunk-ERN7RQQ7.js → chunk-THQF5ZZE.js} +5 -5
- package/bundles/{chunk-RRBD35GS.js → chunk-VONOIR7R.js} +12 -12
- package/bundles/{chunk-XHCHVVK2.js → chunk-WBKYBVRX.js} +43 -43
- package/bundles/{chunk-QYV344EV.js → chunk-WR7TUJ7M.js} +7 -7
- package/bundles/{chunk-A6N6CPYP.js → chunk-ZOS6YCC2.js} +31 -31
- package/bundles/{chunk-RBUEHZ6Z.js → chunk-ZXHWDA6M.js} +5 -5
- package/bundles/index.js +14 -12
- package/bundles/index.js.map +1 -1
- package/bundles/linker/babel/index.js +12 -12
- package/bundles/linker/index.js +4 -4
- package/bundles/ngcc/index.js +1 -1
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +5 -3
- package/bundles/private/migrations.js +4 -4
- package/bundles/private/tooling.js +6 -6
- package/bundles/src/bin/ng_xi18n.js +10 -10
- package/bundles/src/bin/ngc.js +8 -8
- package/bundles_metadata.json +1 -1
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +2 -2
- package/src/ngtsc/file_system/index.d.ts +1 -0
- package/src/ngtsc/file_system/src/ts_read_directory.d.ts +21 -0
- package/src/perform_compile.d.ts +1 -1
- package/bundles/chunk-52VRTNQS.js.map +0 -6
- /package/bundles/{chunk-5EC5IVIP.js.map → chunk-MZGC4NDQ.js.map} +0 -0
- /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
- /package/bundles/{chunk-ERN7RQQ7.js.map → chunk-THQF5ZZE.js.map} +0 -0
- /package/bundles/{chunk-RRBD35GS.js.map → chunk-VONOIR7R.js.map} +0 -0
- /package/bundles/{chunk-XHCHVVK2.js.map → chunk-WBKYBVRX.js.map} +0 -0
- /package/bundles/{chunk-QYV344EV.js.map → chunk-WR7TUJ7M.js.map} +0 -0
- /package/bundles/{chunk-A6N6CPYP.js.map → chunk-ZOS6YCC2.js.map} +0 -0
- /package/bundles/{chunk-RBUEHZ6Z.js.map → chunk-ZXHWDA6M.js.map} +0 -0
|
@@ -45,20 +45,20 @@ import {
|
|
|
45
45
|
translateStatement,
|
|
46
46
|
translateType,
|
|
47
47
|
typeNodeToValueExpr
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-WBKYBVRX.js";
|
|
49
49
|
import {
|
|
50
50
|
PerfCheckpoint,
|
|
51
51
|
PerfEvent,
|
|
52
52
|
PerfPhase
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-THQF5ZZE.js";
|
|
54
54
|
import {
|
|
55
55
|
absoluteFrom,
|
|
56
56
|
absoluteFromSourceFile,
|
|
57
57
|
getSourceFileOrError,
|
|
58
58
|
relative
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-KV3I5HEN.js";
|
|
60
60
|
|
|
61
|
-
// bazel-out/
|
|
61
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
62
62
|
import { ExternalExpr, ParseLocation, ParseSourceFile, ParseSourceSpan, ReadPropExpr, WrappedNodeExpr } from "@angular/compiler";
|
|
63
63
|
import ts from "typescript";
|
|
64
64
|
var CORE_MODULE = "@angular/core";
|
|
@@ -317,7 +317,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
317
317
|
return ts.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === ts.SyntaxKind.AbstractKeyword) : false;
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
// bazel-out/
|
|
320
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
321
321
|
var DynamicValue = class {
|
|
322
322
|
constructor(node, reason, code) {
|
|
323
323
|
this.node = node;
|
|
@@ -407,10 +407,10 @@ var DynamicValue = class {
|
|
|
407
407
|
}
|
|
408
408
|
};
|
|
409
409
|
|
|
410
|
-
// bazel-out/
|
|
410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
411
411
|
import ts2 from "typescript";
|
|
412
412
|
|
|
413
|
-
// bazel-out/
|
|
413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
414
414
|
var ResolvedModule = class {
|
|
415
415
|
constructor(exports, evaluate) {
|
|
416
416
|
this.exports = exports;
|
|
@@ -440,7 +440,7 @@ var EnumValue = class {
|
|
|
440
440
|
var KnownFn = class {
|
|
441
441
|
};
|
|
442
442
|
|
|
443
|
-
// bazel-out/
|
|
443
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
444
444
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
445
445
|
constructor(lhs) {
|
|
446
446
|
super();
|
|
@@ -492,14 +492,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
492
492
|
}
|
|
493
493
|
};
|
|
494
494
|
|
|
495
|
-
// bazel-out/
|
|
495
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
496
496
|
var SyntheticValue = class {
|
|
497
497
|
constructor(value) {
|
|
498
498
|
this.value = value;
|
|
499
499
|
}
|
|
500
500
|
};
|
|
501
501
|
|
|
502
|
-
// bazel-out/
|
|
502
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
503
503
|
function literalBinaryOp(op) {
|
|
504
504
|
return { op, literal: true };
|
|
505
505
|
}
|
|
@@ -1077,7 +1077,7 @@ function owningModule(context, override = null) {
|
|
|
1077
1077
|
}
|
|
1078
1078
|
}
|
|
1079
1079
|
|
|
1080
|
-
// bazel-out/
|
|
1080
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
1081
1081
|
var PartialEvaluator = class {
|
|
1082
1082
|
constructor(host, checker, dependencyTracker) {
|
|
1083
1083
|
this.host = host;
|
|
@@ -1097,7 +1097,7 @@ var PartialEvaluator = class {
|
|
|
1097
1097
|
}
|
|
1098
1098
|
};
|
|
1099
1099
|
|
|
1100
|
-
// bazel-out/
|
|
1100
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
1101
1101
|
import ts3 from "typescript";
|
|
1102
1102
|
function describeResolvedType(value, maxDepth = 1) {
|
|
1103
1103
|
var _a, _b;
|
|
@@ -1231,14 +1231,14 @@ function getContainerNode(node) {
|
|
|
1231
1231
|
return node.getSourceFile();
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
|
-
// bazel-out/
|
|
1234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
1235
1235
|
var OptimizeFor;
|
|
1236
1236
|
(function(OptimizeFor2) {
|
|
1237
1237
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
1238
1238
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
1239
1239
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
1240
1240
|
|
|
1241
|
-
// bazel-out/
|
|
1241
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
1242
1242
|
var PotentialImportKind;
|
|
1243
1243
|
(function(PotentialImportKind2) {
|
|
1244
1244
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -1250,7 +1250,7 @@ var PotentialImportMode;
|
|
|
1250
1250
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
1251
1251
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
1252
1252
|
|
|
1253
|
-
// bazel-out/
|
|
1253
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
1254
1254
|
var CompletionKind;
|
|
1255
1255
|
(function(CompletionKind2) {
|
|
1256
1256
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -1258,7 +1258,7 @@ var CompletionKind;
|
|
|
1258
1258
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
1259
1259
|
})(CompletionKind || (CompletionKind = {}));
|
|
1260
1260
|
|
|
1261
|
-
// bazel-out/
|
|
1261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
1262
1262
|
var SymbolKind;
|
|
1263
1263
|
(function(SymbolKind2) {
|
|
1264
1264
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -1275,7 +1275,7 @@ var SymbolKind;
|
|
|
1275
1275
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
1276
1276
|
})(SymbolKind || (SymbolKind = {}));
|
|
1277
1277
|
|
|
1278
|
-
// bazel-out/
|
|
1278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
1279
1279
|
import { LiteralExpr, WrappedNodeExpr as WrappedNodeExpr2 } from "@angular/compiler";
|
|
1280
1280
|
import ts4 from "typescript";
|
|
1281
1281
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
@@ -1421,10 +1421,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
1421
1421
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
// bazel-out/
|
|
1424
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
1425
1425
|
import ts12 from "typescript";
|
|
1426
1426
|
|
|
1427
|
-
// bazel-out/
|
|
1427
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
1428
1428
|
var MetaKind;
|
|
1429
1429
|
(function(MetaKind2) {
|
|
1430
1430
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -1437,10 +1437,10 @@ var MatchSource;
|
|
|
1437
1437
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
1438
1438
|
})(MatchSource || (MatchSource = {}));
|
|
1439
1439
|
|
|
1440
|
-
// bazel-out/
|
|
1440
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
1441
1441
|
import ts6 from "typescript";
|
|
1442
1442
|
|
|
1443
|
-
// bazel-out/
|
|
1443
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
1444
1444
|
var ClassPropertyMapping = class {
|
|
1445
1445
|
constructor(forwardMap) {
|
|
1446
1446
|
this.forwardMap = forwardMap;
|
|
@@ -1520,7 +1520,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
1520
1520
|
return reverseMap;
|
|
1521
1521
|
}
|
|
1522
1522
|
|
|
1523
|
-
// bazel-out/
|
|
1523
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
1524
1524
|
import ts5 from "typescript";
|
|
1525
1525
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
1526
1526
|
if (!ts5.isTupleTypeNode(def)) {
|
|
@@ -1716,7 +1716,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
1716
1716
|
return hostDirectiveMeta.directive instanceof Reference;
|
|
1717
1717
|
}
|
|
1718
1718
|
|
|
1719
|
-
// bazel-out/
|
|
1719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
1720
1720
|
var DtsMetadataReader = class {
|
|
1721
1721
|
constructor(checker, reflector) {
|
|
1722
1722
|
this.checker = checker;
|
|
@@ -1901,7 +1901,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
1901
1901
|
return result.length > 0 ? result : null;
|
|
1902
1902
|
}
|
|
1903
1903
|
|
|
1904
|
-
// bazel-out/
|
|
1904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
1905
1905
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
1906
1906
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
1907
1907
|
if (topMeta === null) {
|
|
@@ -1965,7 +1965,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
1965
1965
|
};
|
|
1966
1966
|
}
|
|
1967
1967
|
|
|
1968
|
-
// bazel-out/
|
|
1968
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
1969
1969
|
var LocalMetadataRegistry = class {
|
|
1970
1970
|
constructor() {
|
|
1971
1971
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -2022,7 +2022,7 @@ var CompoundMetadataRegistry = class {
|
|
|
2022
2022
|
}
|
|
2023
2023
|
};
|
|
2024
2024
|
|
|
2025
|
-
// bazel-out/
|
|
2025
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
2026
2026
|
var ResourceRegistry = class {
|
|
2027
2027
|
constructor() {
|
|
2028
2028
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -2087,7 +2087,7 @@ var ResourceRegistry = class {
|
|
|
2087
2087
|
}
|
|
2088
2088
|
};
|
|
2089
2089
|
|
|
2090
|
-
// bazel-out/
|
|
2090
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
2091
2091
|
var ExportedProviderStatusResolver = class {
|
|
2092
2092
|
constructor(metaReader) {
|
|
2093
2093
|
this.metaReader = metaReader;
|
|
@@ -2131,7 +2131,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
2131
2131
|
}
|
|
2132
2132
|
};
|
|
2133
2133
|
|
|
2134
|
-
// bazel-out/
|
|
2134
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
2135
2135
|
var EMPTY_ARRAY = [];
|
|
2136
2136
|
var HostDirectivesResolver = class {
|
|
2137
2137
|
constructor(metaReader) {
|
|
@@ -2197,7 +2197,7 @@ function resolveOutput(bindingName) {
|
|
|
2197
2197
|
return bindingName;
|
|
2198
2198
|
}
|
|
2199
2199
|
|
|
2200
|
-
// bazel-out/
|
|
2200
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
2201
2201
|
var CompilationMode;
|
|
2202
2202
|
(function(CompilationMode2) {
|
|
2203
2203
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -2211,7 +2211,7 @@ var HandlerPrecedence;
|
|
|
2211
2211
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
2212
2212
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
2213
2213
|
|
|
2214
|
-
// bazel-out/
|
|
2214
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
2215
2215
|
import ts7 from "typescript";
|
|
2216
2216
|
function aliasTransformFactory(exportStatements) {
|
|
2217
2217
|
return () => {
|
|
@@ -2236,10 +2236,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
2236
2236
|
};
|
|
2237
2237
|
}
|
|
2238
2238
|
|
|
2239
|
-
// bazel-out/
|
|
2239
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
2240
2240
|
import ts8 from "typescript";
|
|
2241
2241
|
|
|
2242
|
-
// bazel-out/
|
|
2242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
2243
2243
|
var TraitState;
|
|
2244
2244
|
(function(TraitState2) {
|
|
2245
2245
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -2296,7 +2296,7 @@ var TraitImpl = class {
|
|
|
2296
2296
|
}
|
|
2297
2297
|
};
|
|
2298
2298
|
|
|
2299
|
-
// bazel-out/
|
|
2299
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
2300
2300
|
var TraitCompiler = class {
|
|
2301
2301
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
2302
2302
|
this.handlers = handlers;
|
|
@@ -2755,7 +2755,7 @@ function containsErrors(diagnostics) {
|
|
|
2755
2755
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === ts8.DiagnosticCategory.Error);
|
|
2756
2756
|
}
|
|
2757
2757
|
|
|
2758
|
-
// bazel-out/
|
|
2758
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
2759
2759
|
import ts9 from "typescript";
|
|
2760
2760
|
var DtsTransformRegistry = class {
|
|
2761
2761
|
constructor() {
|
|
@@ -2905,11 +2905,11 @@ function markForEmitAsSingleLine(node) {
|
|
|
2905
2905
|
ts9.forEachChild(node, markForEmitAsSingleLine);
|
|
2906
2906
|
}
|
|
2907
2907
|
|
|
2908
|
-
// bazel-out/
|
|
2908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
2909
2909
|
import { ConstantPool } from "@angular/compiler";
|
|
2910
2910
|
import ts11 from "typescript";
|
|
2911
2911
|
|
|
2912
|
-
// bazel-out/
|
|
2912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
2913
2913
|
import ts10 from "typescript";
|
|
2914
2914
|
function visit(node, visitor, context) {
|
|
2915
2915
|
return visitor._visit(node, context);
|
|
@@ -2970,7 +2970,7 @@ var Visitor = class {
|
|
|
2970
2970
|
}
|
|
2971
2971
|
};
|
|
2972
2972
|
|
|
2973
|
-
// bazel-out/
|
|
2973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
2974
2974
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
2975
2975
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
2976
2976
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -3206,7 +3206,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
3206
3206
|
return array;
|
|
3207
3207
|
}
|
|
3208
3208
|
|
|
3209
|
-
// bazel-out/
|
|
3209
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
3210
3210
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
3211
3211
|
const context = [];
|
|
3212
3212
|
for (const decl of data) {
|
|
@@ -3415,7 +3415,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
3415
3415
|
}
|
|
3416
3416
|
}
|
|
3417
3417
|
|
|
3418
|
-
// bazel-out/
|
|
3418
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
3419
3419
|
import { ViewEncapsulation } from "@angular/compiler";
|
|
3420
3420
|
import ts13 from "typescript";
|
|
3421
3421
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
@@ -3466,7 +3466,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
3466
3466
|
return meta;
|
|
3467
3467
|
}
|
|
3468
3468
|
|
|
3469
|
-
// bazel-out/
|
|
3469
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
3470
3470
|
import { compileDeclareFactoryFunction, compileFactoryFunction } from "@angular/compiler";
|
|
3471
3471
|
function compileNgFactoryDefField(metadata) {
|
|
3472
3472
|
const res = compileFactoryFunction(metadata);
|
|
@@ -3489,7 +3489,7 @@ function compileDeclareFactory(metadata) {
|
|
|
3489
3489
|
};
|
|
3490
3490
|
}
|
|
3491
3491
|
|
|
3492
|
-
// bazel-out/
|
|
3492
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
3493
3493
|
var InjectableClassRegistry = class {
|
|
3494
3494
|
constructor(host, isCore) {
|
|
3495
3495
|
this.host = host;
|
|
@@ -3515,7 +3515,7 @@ var InjectableClassRegistry = class {
|
|
|
3515
3515
|
}
|
|
3516
3516
|
};
|
|
3517
3517
|
|
|
3518
|
-
// bazel-out/
|
|
3518
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
3519
3519
|
import { ArrowFunctionExpr, LiteralArrayExpr, LiteralExpr as LiteralExpr2, literalMap, WrappedNodeExpr as WrappedNodeExpr3 } from "@angular/compiler";
|
|
3520
3520
|
import ts14 from "typescript";
|
|
3521
3521
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
@@ -3602,7 +3602,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
3602
3602
|
return result.transformed[0];
|
|
3603
3603
|
}
|
|
3604
3604
|
|
|
3605
|
-
// bazel-out/
|
|
3605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
3606
3606
|
import { literal as literal2, WrappedNodeExpr as WrappedNodeExpr4 } from "@angular/compiler";
|
|
3607
3607
|
import * as path from "path";
|
|
3608
3608
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
@@ -3629,13 +3629,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
3629
3629
|
return null;
|
|
3630
3630
|
}
|
|
3631
3631
|
|
|
3632
|
-
// bazel-out/
|
|
3632
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
3633
3633
|
var NoopReferencesRegistry = class {
|
|
3634
3634
|
add(source, ...references) {
|
|
3635
3635
|
}
|
|
3636
3636
|
};
|
|
3637
3637
|
|
|
3638
|
-
// bazel-out/
|
|
3638
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
3639
3639
|
import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from "@angular/compiler";
|
|
3640
3640
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
3641
3641
|
const schemas = [];
|
|
@@ -3665,7 +3665,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
3665
3665
|
return schemas;
|
|
3666
3666
|
}
|
|
3667
3667
|
|
|
3668
|
-
// bazel-out/
|
|
3668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
3669
3669
|
import { outputAst } from "@angular/compiler";
|
|
3670
3670
|
function compileInputTransformFields(inputs) {
|
|
3671
3671
|
const extraFields = [];
|
|
@@ -3683,18 +3683,18 @@ function compileInputTransformFields(inputs) {
|
|
|
3683
3683
|
return extraFields;
|
|
3684
3684
|
}
|
|
3685
3685
|
|
|
3686
|
-
// bazel-out/
|
|
3686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/jit_declaration_registry.mjs
|
|
3687
3687
|
var JitDeclarationRegistry = class {
|
|
3688
3688
|
constructor() {
|
|
3689
3689
|
this.jitDeclarations = /* @__PURE__ */ new Set();
|
|
3690
3690
|
}
|
|
3691
3691
|
};
|
|
3692
3692
|
|
|
3693
|
-
// bazel-out/
|
|
3693
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
3694
3694
|
import { compileClassDebugInfo, compileComponentClassMetadata, compileComponentDeclareClassMetadata, compileComponentFromMetadata, compileDeclareComponentFromMetadata, compileDeferResolverFunction, CssSelector as CssSelector4, DEFAULT_INTERPOLATION_CONFIG as DEFAULT_INTERPOLATION_CONFIG2, DomElementSchemaRegistry as DomElementSchemaRegistry3, ExternalExpr as ExternalExpr8, FactoryTarget as FactoryTarget3, makeBindingParser as makeBindingParser2, outputAst as o2, R3TargetBinder, R3TemplateDependencyKind, SelectorMatcher as SelectorMatcher3, ViewEncapsulation as ViewEncapsulation2 } from "@angular/compiler";
|
|
3695
3695
|
import ts45 from "typescript";
|
|
3696
3696
|
|
|
3697
|
-
// bazel-out/
|
|
3697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
3698
3698
|
import ts15 from "typescript";
|
|
3699
3699
|
var SemanticSymbol = class {
|
|
3700
3700
|
constructor(decl) {
|
|
@@ -3710,7 +3710,7 @@ function getSymbolIdentifier(decl) {
|
|
|
3710
3710
|
return decl.name.text;
|
|
3711
3711
|
}
|
|
3712
3712
|
|
|
3713
|
-
// bazel-out/
|
|
3713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
3714
3714
|
import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
|
|
3715
3715
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
3716
3716
|
isPublicApiAffected() {
|
|
@@ -3853,10 +3853,10 @@ function getImportPath(expr) {
|
|
|
3853
3853
|
}
|
|
3854
3854
|
}
|
|
3855
3855
|
|
|
3856
|
-
// bazel-out/
|
|
3856
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
3857
3857
|
import ts16 from "typescript";
|
|
3858
3858
|
|
|
3859
|
-
// bazel-out/
|
|
3859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
3860
3860
|
function isSymbolEqual(a, b) {
|
|
3861
3861
|
if (a.decl === b.decl) {
|
|
3862
3862
|
return true;
|
|
@@ -3906,7 +3906,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
3906
3906
|
return true;
|
|
3907
3907
|
}
|
|
3908
3908
|
|
|
3909
|
-
// bazel-out/
|
|
3909
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
3910
3910
|
function extractSemanticTypeParameters(node) {
|
|
3911
3911
|
if (!ts16.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
3912
3912
|
return null;
|
|
@@ -3928,14 +3928,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
3928
3928
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
3929
3929
|
}
|
|
3930
3930
|
|
|
3931
|
-
// bazel-out/
|
|
3931
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
3932
3932
|
var ComponentScopeKind;
|
|
3933
3933
|
(function(ComponentScopeKind2) {
|
|
3934
3934
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
3935
3935
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
3936
3936
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
3937
3937
|
|
|
3938
|
-
// bazel-out/
|
|
3938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
3939
3939
|
var CompoundComponentScopeReader = class {
|
|
3940
3940
|
constructor(readers) {
|
|
3941
3941
|
this.readers = readers;
|
|
@@ -3960,7 +3960,7 @@ var CompoundComponentScopeReader = class {
|
|
|
3960
3960
|
}
|
|
3961
3961
|
};
|
|
3962
3962
|
|
|
3963
|
-
// bazel-out/
|
|
3963
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
3964
3964
|
var MetadataDtsModuleScopeResolver = class {
|
|
3965
3965
|
constructor(dtsMetaReader, aliasingHost) {
|
|
3966
3966
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -4036,11 +4036,11 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
4036
4036
|
}
|
|
4037
4037
|
};
|
|
4038
4038
|
|
|
4039
|
-
// bazel-out/
|
|
4039
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
4040
4040
|
import { ExternalExpr as ExternalExpr3 } from "@angular/compiler";
|
|
4041
4041
|
import ts17 from "typescript";
|
|
4042
4042
|
|
|
4043
|
-
// bazel-out/
|
|
4043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
4044
4044
|
function getDiagnosticNode(ref, rawExpr) {
|
|
4045
4045
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
4046
4046
|
}
|
|
@@ -4066,7 +4066,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
4066
4066
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
4067
4067
|
}
|
|
4068
4068
|
|
|
4069
|
-
// bazel-out/
|
|
4069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
4070
4070
|
var LocalModuleScopeRegistry = class {
|
|
4071
4071
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
4072
4072
|
this.localReader = localReader;
|
|
@@ -4407,7 +4407,7 @@ function reexportCollision(module, refA, refB) {
|
|
|
4407
4407
|
]);
|
|
4408
4408
|
}
|
|
4409
4409
|
|
|
4410
|
-
// bazel-out/
|
|
4410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
4411
4411
|
import { CssSelector, SelectorMatcher } from "@angular/compiler";
|
|
4412
4412
|
import ts18 from "typescript";
|
|
4413
4413
|
var TypeCheckScopeRegistry = class {
|
|
@@ -4488,14 +4488,14 @@ var TypeCheckScopeRegistry = class {
|
|
|
4488
4488
|
}
|
|
4489
4489
|
};
|
|
4490
4490
|
|
|
4491
|
-
// bazel-out/
|
|
4491
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
4492
4492
|
import { compileClassMetadata, compileDeclareClassMetadata, compileDeclareDirectiveFromMetadata, compileDirectiveFromMetadata, FactoryTarget, makeBindingParser, WrappedNodeExpr as WrappedNodeExpr6 } from "@angular/compiler";
|
|
4493
4493
|
|
|
4494
|
-
// bazel-out/
|
|
4494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
4495
4495
|
import { createMayBeForwardRefExpression as createMayBeForwardRefExpression2, emitDistinctChangesOnlyDefaultValue, ExternalExpr as ExternalExpr4, getSafePropertyAccessString, parseHostBindings, verifyHostBindings, WrappedNodeExpr as WrappedNodeExpr5 } from "@angular/compiler";
|
|
4496
4496
|
import ts22 from "typescript";
|
|
4497
4497
|
|
|
4498
|
-
// bazel-out/
|
|
4498
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
4499
4499
|
function validateAccessOfInitializerApiMember({ api, call }, member) {
|
|
4500
4500
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
4501
4501
|
throw new FatalDiagnosticError(ErrorCode.INITIALIZER_API_DISALLOWED_MEMBER_VISIBILITY, call, makeDiagnosticChain(`Cannot use "${api.functionName}" on a class member that is declared as ${classMemberAccessLevelToString(member.accessLevel)}.`, [
|
|
@@ -4504,7 +4504,7 @@ function validateAccessOfInitializerApiMember({ api, call }, member) {
|
|
|
4504
4504
|
}
|
|
4505
4505
|
}
|
|
4506
4506
|
|
|
4507
|
-
// bazel-out/
|
|
4507
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
4508
4508
|
import ts19 from "typescript";
|
|
4509
4509
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
4510
4510
|
if (!ts19.isCallExpression(expression)) {
|
|
@@ -4573,7 +4573,7 @@ function parseTopLevelCallFromNamespace(call, functions, importTracker) {
|
|
|
4573
4573
|
return { api: matchingApi, apiReference, isRequired };
|
|
4574
4574
|
}
|
|
4575
4575
|
|
|
4576
|
-
// bazel-out/
|
|
4576
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
4577
4577
|
import ts20 from "typescript";
|
|
4578
4578
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
4579
4579
|
if (!ts20.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -4591,7 +4591,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
4591
4591
|
return { alias };
|
|
4592
4592
|
}
|
|
4593
4593
|
|
|
4594
|
-
// bazel-out/
|
|
4594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
4595
4595
|
var INPUT_INITIALIZER_FN = {
|
|
4596
4596
|
functionName: "input",
|
|
4597
4597
|
owningModule: "@angular/core",
|
|
@@ -4623,7 +4623,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
4623
4623
|
};
|
|
4624
4624
|
}
|
|
4625
4625
|
|
|
4626
|
-
// bazel-out/
|
|
4626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
4627
4627
|
var MODEL_INITIALIZER_FN = {
|
|
4628
4628
|
functionName: "model",
|
|
4629
4629
|
owningModule: "@angular/core",
|
|
@@ -4664,7 +4664,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
4664
4664
|
};
|
|
4665
4665
|
}
|
|
4666
4666
|
|
|
4667
|
-
// bazel-out/
|
|
4667
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
4668
4668
|
var allowedAccessLevels = [
|
|
4669
4669
|
ClassMemberAccessLevel.PublicWritable,
|
|
4670
4670
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -4708,7 +4708,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
4708
4708
|
};
|
|
4709
4709
|
}
|
|
4710
4710
|
|
|
4711
|
-
// bazel-out/
|
|
4711
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
4712
4712
|
import { createMayBeForwardRefExpression, outputAst as o } from "@angular/compiler";
|
|
4713
4713
|
import ts21 from "typescript";
|
|
4714
4714
|
var queryFunctionNames = [
|
|
@@ -4793,7 +4793,7 @@ function parseDescendantsOption(value) {
|
|
|
4793
4793
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
4794
4794
|
}
|
|
4795
4795
|
|
|
4796
|
-
// bazel-out/
|
|
4796
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
4797
4797
|
var EMPTY_OBJECT = {};
|
|
4798
4798
|
var queryDecoratorNames = [
|
|
4799
4799
|
"ViewChild",
|
|
@@ -5595,7 +5595,7 @@ function toR3InputMetadata(mapping) {
|
|
|
5595
5595
|
};
|
|
5596
5596
|
}
|
|
5597
5597
|
|
|
5598
|
-
// bazel-out/
|
|
5598
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
5599
5599
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
5600
5600
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
5601
5601
|
super(decl);
|
|
@@ -5675,7 +5675,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
5675
5675
|
return isSymbolEqual(current, previous);
|
|
5676
5676
|
}
|
|
5677
5677
|
|
|
5678
|
-
// bazel-out/
|
|
5678
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
5679
5679
|
var FIELD_DECORATORS = [
|
|
5680
5680
|
"Input",
|
|
5681
5681
|
"Output",
|
|
@@ -5872,11 +5872,11 @@ var DirectiveDecoratorHandler = class {
|
|
|
5872
5872
|
}
|
|
5873
5873
|
};
|
|
5874
5874
|
|
|
5875
|
-
// bazel-out/
|
|
5875
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
5876
5876
|
import { compileClassMetadata as compileClassMetadata2, compileDeclareClassMetadata as compileDeclareClassMetadata2, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileInjector, compileNgModule, ExternalExpr as ExternalExpr5, FactoryTarget as FactoryTarget2, FunctionExpr, InvokeFunctionExpr, LiteralArrayExpr as LiteralArrayExpr2, R3Identifiers, R3NgModuleMetadataKind, R3SelectorScopeMode, ReturnStatement, WrappedNodeExpr as WrappedNodeExpr7 } from "@angular/compiler";
|
|
5877
5877
|
import ts24 from "typescript";
|
|
5878
5878
|
|
|
5879
|
-
// bazel-out/
|
|
5879
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
5880
5880
|
import ts23 from "typescript";
|
|
5881
5881
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
5882
5882
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -5948,7 +5948,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
5948
5948
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
5949
5949
|
}
|
|
5950
5950
|
|
|
5951
|
-
// bazel-out/
|
|
5951
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
5952
5952
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
5953
5953
|
constructor(decl, hasProviders) {
|
|
5954
5954
|
super(decl);
|
|
@@ -6567,7 +6567,7 @@ function isSyntheticReference(ref) {
|
|
|
6567
6567
|
return ref.synthetic;
|
|
6568
6568
|
}
|
|
6569
6569
|
|
|
6570
|
-
// bazel-out/
|
|
6570
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
6571
6571
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
6572
6572
|
const name = ref.debugName || "(unknown)";
|
|
6573
6573
|
const path2 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -6590,7 +6590,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
6590
6590
|
return null;
|
|
6591
6591
|
}
|
|
6592
6592
|
|
|
6593
|
-
// bazel-out/
|
|
6593
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
6594
6594
|
import { DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, ParseSourceFile as ParseSourceFile2, parseTemplate } from "@angular/compiler";
|
|
6595
6595
|
import ts25 from "typescript";
|
|
6596
6596
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
@@ -6927,7 +6927,7 @@ function _extractTemplateStyleUrls(template) {
|
|
|
6927
6927
|
}));
|
|
6928
6928
|
}
|
|
6929
6929
|
|
|
6930
|
-
// bazel-out/
|
|
6930
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
6931
6931
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
6932
6932
|
constructor() {
|
|
6933
6933
|
super(...arguments);
|
|
@@ -6962,7 +6962,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
6962
6962
|
}
|
|
6963
6963
|
};
|
|
6964
6964
|
|
|
6965
|
-
// bazel-out/
|
|
6965
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
6966
6966
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
6967
6967
|
if (value instanceof Map) {
|
|
6968
6968
|
const name = value.get("name");
|
|
@@ -7039,10 +7039,10 @@ function isLikelyModuleWithProviders(value) {
|
|
|
7039
7039
|
return false;
|
|
7040
7040
|
}
|
|
7041
7041
|
|
|
7042
|
-
// bazel-out/
|
|
7042
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
7043
7043
|
import { CssSelector as CssSelector3, DomElementSchemaRegistry as DomElementSchemaRegistry2, ExternalExpr as ExternalExpr7, WrappedNodeExpr as WrappedNodeExpr9 } from "@angular/compiler";
|
|
7044
7044
|
|
|
7045
|
-
// bazel-out/
|
|
7045
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
7046
7046
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
7047
7047
|
var UpdateMode;
|
|
7048
7048
|
(function(UpdateMode2) {
|
|
@@ -7050,13 +7050,13 @@ var UpdateMode;
|
|
|
7050
7050
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
7051
7051
|
})(UpdateMode || (UpdateMode = {}));
|
|
7052
7052
|
|
|
7053
|
-
// bazel-out/
|
|
7053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
7054
7054
|
import ts27 from "typescript";
|
|
7055
7055
|
|
|
7056
|
-
// bazel-out/
|
|
7056
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
7057
7057
|
import ts26 from "typescript";
|
|
7058
7058
|
|
|
7059
|
-
// bazel-out/
|
|
7059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
7060
7060
|
var NgExtension = Symbol("NgExtension");
|
|
7061
7061
|
function isExtended(sf) {
|
|
7062
7062
|
return sf[NgExtension] !== void 0;
|
|
@@ -7116,13 +7116,13 @@ function retagTsFile(sf) {
|
|
|
7116
7116
|
}
|
|
7117
7117
|
}
|
|
7118
7118
|
|
|
7119
|
-
// bazel-out/
|
|
7119
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
7120
7120
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
7121
7121
|
function makeShimFileName(fileName, suffix) {
|
|
7122
7122
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
7123
7123
|
}
|
|
7124
7124
|
|
|
7125
|
-
// bazel-out/
|
|
7125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
7126
7126
|
var ShimAdapter = class {
|
|
7127
7127
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
7128
7128
|
this.delegate = delegate;
|
|
@@ -7217,7 +7217,7 @@ var ShimAdapter = class {
|
|
|
7217
7217
|
}
|
|
7218
7218
|
};
|
|
7219
7219
|
|
|
7220
|
-
// bazel-out/
|
|
7220
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
7221
7221
|
var ShimReferenceTagger = class {
|
|
7222
7222
|
constructor(shimExtensions) {
|
|
7223
7223
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -7251,7 +7251,7 @@ var ShimReferenceTagger = class {
|
|
|
7251
7251
|
}
|
|
7252
7252
|
};
|
|
7253
7253
|
|
|
7254
|
-
// bazel-out/
|
|
7254
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
7255
7255
|
var DelegatingCompilerHost = class {
|
|
7256
7256
|
get jsDocParsingMode() {
|
|
7257
7257
|
return this.delegate.jsDocParsingMode;
|
|
@@ -7369,7 +7369,7 @@ var TsCreateProgramDriver = class {
|
|
|
7369
7369
|
}
|
|
7370
7370
|
};
|
|
7371
7371
|
|
|
7372
|
-
// bazel-out/
|
|
7372
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
7373
7373
|
import ts28 from "typescript";
|
|
7374
7374
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
7375
7375
|
var _a;
|
|
@@ -7480,7 +7480,7 @@ function parseTemplateAsSourceFile(fileName, template) {
|
|
|
7480
7480
|
);
|
|
7481
7481
|
}
|
|
7482
7482
|
|
|
7483
|
-
// bazel-out/
|
|
7483
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
7484
7484
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
7485
7485
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
7486
7486
|
function getTemplateId(clazz) {
|
|
@@ -7497,11 +7497,11 @@ function allocateTemplateId(sf) {
|
|
|
7497
7497
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
7498
7498
|
}
|
|
7499
7499
|
|
|
7500
|
-
// bazel-out/
|
|
7500
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
7501
7501
|
import { EmptyExpr, ImplicitReceiver, PropertyRead, PropertyWrite, SafePropertyRead, TmplAstLetDeclaration, TmplAstReference, TmplAstTextAttribute } from "@angular/compiler";
|
|
7502
7502
|
import ts30 from "typescript";
|
|
7503
7503
|
|
|
7504
|
-
// bazel-out/
|
|
7504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
7505
7505
|
import { AbsoluteSourceSpan } from "@angular/compiler";
|
|
7506
7506
|
import ts29 from "typescript";
|
|
7507
7507
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
@@ -7632,7 +7632,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
7632
7632
|
}) || false;
|
|
7633
7633
|
}
|
|
7634
7634
|
|
|
7635
|
-
// bazel-out/
|
|
7635
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
7636
7636
|
var CompletionEngine = class {
|
|
7637
7637
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
7638
7638
|
this.tcb = tcb;
|
|
@@ -8822,10 +8822,10 @@ var MagicString = class {
|
|
|
8822
8822
|
}
|
|
8823
8823
|
};
|
|
8824
8824
|
|
|
8825
|
-
// bazel-out/
|
|
8825
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
8826
8826
|
import ts43 from "typescript";
|
|
8827
8827
|
|
|
8828
|
-
// bazel-out/
|
|
8828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
8829
8829
|
import { DomElementSchemaRegistry } from "@angular/compiler";
|
|
8830
8830
|
import ts31 from "typescript";
|
|
8831
8831
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
@@ -8878,10 +8878,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
8878
8878
|
}
|
|
8879
8879
|
};
|
|
8880
8880
|
|
|
8881
|
-
// bazel-out/
|
|
8881
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
8882
8882
|
import ts36 from "typescript";
|
|
8883
8883
|
|
|
8884
|
-
// bazel-out/
|
|
8884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
8885
8885
|
import { ExpressionType, ExternalExpr as ExternalExpr6, TypeModifier } from "@angular/compiler";
|
|
8886
8886
|
var ReferenceEmitEnvironment = class {
|
|
8887
8887
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
@@ -8912,7 +8912,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
8912
8912
|
}
|
|
8913
8913
|
};
|
|
8914
8914
|
|
|
8915
|
-
// bazel-out/
|
|
8915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
8916
8916
|
import ts32 from "typescript";
|
|
8917
8917
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
8918
8918
|
ts32.SyntaxKind.ParenthesizedExpression,
|
|
@@ -8995,15 +8995,15 @@ function tsNumericExpression(value) {
|
|
|
8995
8995
|
return ts32.factory.createNumericLiteral(value);
|
|
8996
8996
|
}
|
|
8997
8997
|
|
|
8998
|
-
// bazel-out/
|
|
8998
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
8999
8999
|
import { ExpressionType as ExpressionType2, R3Identifiers as R3Identifiers3, WrappedNodeExpr as WrappedNodeExpr8 } from "@angular/compiler";
|
|
9000
9000
|
import ts35 from "typescript";
|
|
9001
9001
|
|
|
9002
|
-
// bazel-out/
|
|
9002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
9003
9003
|
import { R3Identifiers as R3Identifiers2 } from "@angular/compiler";
|
|
9004
9004
|
import ts34 from "typescript";
|
|
9005
9005
|
|
|
9006
|
-
// bazel-out/
|
|
9006
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
9007
9007
|
import ts33 from "typescript";
|
|
9008
9008
|
var TypeParameterEmitter = class {
|
|
9009
9009
|
constructor(typeParameters, reflector) {
|
|
@@ -9081,7 +9081,7 @@ var TypeParameterEmitter = class {
|
|
|
9081
9081
|
}
|
|
9082
9082
|
};
|
|
9083
9083
|
|
|
9084
|
-
// bazel-out/
|
|
9084
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
9085
9085
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
9086
9086
|
R3Identifiers2.InputSignalBrandWriteType
|
|
9087
9087
|
];
|
|
@@ -9173,7 +9173,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
9173
9173
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
9174
9174
|
}
|
|
9175
9175
|
|
|
9176
|
-
// bazel-out/
|
|
9176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
9177
9177
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
9178
9178
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
9179
9179
|
const rawType = ts35.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -9296,7 +9296,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
9296
9296
|
});
|
|
9297
9297
|
}
|
|
9298
9298
|
|
|
9299
|
-
// bazel-out/
|
|
9299
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
9300
9300
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
9301
9301
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
9302
9302
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -9368,7 +9368,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
9368
9368
|
}
|
|
9369
9369
|
};
|
|
9370
9370
|
|
|
9371
|
-
// bazel-out/
|
|
9371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
9372
9372
|
import { AbsoluteSourceSpan as AbsoluteSourceSpan2, TmplAstElement } from "@angular/compiler";
|
|
9373
9373
|
import ts37 from "typescript";
|
|
9374
9374
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
@@ -9570,7 +9570,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
9570
9570
|
};
|
|
9571
9571
|
}
|
|
9572
9572
|
|
|
9573
|
-
// bazel-out/
|
|
9573
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
9574
9574
|
import ts38 from "typescript";
|
|
9575
9575
|
var TypeCheckShimGenerator = class {
|
|
9576
9576
|
constructor() {
|
|
@@ -9588,11 +9588,11 @@ var TypeCheckShimGenerator = class {
|
|
|
9588
9588
|
}
|
|
9589
9589
|
};
|
|
9590
9590
|
|
|
9591
|
-
// bazel-out/
|
|
9591
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
9592
9592
|
import { BindingPipe, BindingType, Call as Call2, createCssSelectorFromNode, CssSelector as CssSelector2, DYNAMIC_TYPE, ImplicitReceiver as ImplicitReceiver2, ParsedEventType, PropertyRead as PropertyRead3, PropertyWrite as PropertyWrite2, R3Identifiers as R3Identifiers4, SafeCall, SafePropertyRead as SafePropertyRead3, SelectorMatcher as SelectorMatcher2, ThisReceiver, TmplAstBoundAttribute, TmplAstBoundText, TmplAstContent, TmplAstDeferredBlock, TmplAstElement as TmplAstElement2, TmplAstForLoopBlock, TmplAstIcu, TmplAstIfBlock, TmplAstIfBlockBranch, TmplAstLetDeclaration as TmplAstLetDeclaration2, TmplAstReference as TmplAstReference2, TmplAstSwitchBlock, TmplAstTemplate, TmplAstText, TmplAstTextAttribute as TmplAstTextAttribute2, TmplAstVariable, TransplantedType } from "@angular/compiler";
|
|
9593
9593
|
import ts41 from "typescript";
|
|
9594
9594
|
|
|
9595
|
-
// bazel-out/
|
|
9595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
9596
9596
|
import { AbsoluteSourceSpan as AbsoluteSourceSpan3 } from "@angular/compiler";
|
|
9597
9597
|
import ts39 from "typescript";
|
|
9598
9598
|
function wrapForDiagnostics(expr) {
|
|
@@ -9648,7 +9648,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
9648
9648
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
9649
9649
|
}
|
|
9650
9650
|
|
|
9651
|
-
// bazel-out/
|
|
9651
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
9652
9652
|
import { ASTWithSource, Call, EmptyExpr as EmptyExpr2, PropertyRead as PropertyRead2, SafeKeyedRead, SafePropertyRead as SafePropertyRead2 } from "@angular/compiler";
|
|
9653
9653
|
import ts40 from "typescript";
|
|
9654
9654
|
var ANY_EXPRESSION = ts40.factory.createAsExpression(ts40.factory.createNumericLiteral("0"), ts40.factory.createKeywordTypeNode(ts40.SyntaxKind.AnyKeyword));
|
|
@@ -9981,7 +9981,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
9981
9981
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
9982
9982
|
})();
|
|
9983
9983
|
|
|
9984
|
-
// bazel-out/
|
|
9984
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
9985
9985
|
var TcbGenericContextBehavior;
|
|
9986
9986
|
(function(TcbGenericContextBehavior2) {
|
|
9987
9987
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -11247,6 +11247,9 @@ var _Scope = class {
|
|
|
11247
11247
|
appendDeferredBlock(block) {
|
|
11248
11248
|
this.appendDeferredTriggers(block, block.triggers);
|
|
11249
11249
|
this.appendDeferredTriggers(block, block.prefetchTriggers);
|
|
11250
|
+
if (block.hydrateTriggers.when) {
|
|
11251
|
+
this.opQueue.push(new TcbExpressionOp(this.tcb, this, block.hydrateTriggers.when.value));
|
|
11252
|
+
}
|
|
11250
11253
|
this.appendChildren(block);
|
|
11251
11254
|
if (block.placeholder !== null) {
|
|
11252
11255
|
this.appendChildren(block.placeholder);
|
|
@@ -11571,7 +11574,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
11571
11574
|
}
|
|
11572
11575
|
};
|
|
11573
11576
|
|
|
11574
|
-
// bazel-out/
|
|
11577
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
11575
11578
|
import ts42 from "typescript";
|
|
11576
11579
|
var TypeCheckFile = class extends Environment {
|
|
11577
11580
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -11619,7 +11622,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
11619
11622
|
}
|
|
11620
11623
|
};
|
|
11621
11624
|
|
|
11622
|
-
// bazel-out/
|
|
11625
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
11623
11626
|
var InliningMode;
|
|
11624
11627
|
(function(InliningMode2) {
|
|
11625
11628
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -11871,10 +11874,10 @@ var TypeCtorOp = class {
|
|
|
11871
11874
|
}
|
|
11872
11875
|
};
|
|
11873
11876
|
|
|
11874
|
-
// bazel-out/
|
|
11877
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
11875
11878
|
import { ParseLocation as ParseLocation2, ParseSourceSpan as ParseSourceSpan2 } from "@angular/compiler";
|
|
11876
11879
|
|
|
11877
|
-
// bazel-out/
|
|
11880
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
11878
11881
|
var LF_CHAR = 10;
|
|
11879
11882
|
var CR_CHAR = 13;
|
|
11880
11883
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -11915,7 +11918,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
11915
11918
|
return low - 1;
|
|
11916
11919
|
}
|
|
11917
11920
|
|
|
11918
|
-
// bazel-out/
|
|
11921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
11919
11922
|
var TemplateSource = class {
|
|
11920
11923
|
constructor(mapping, file) {
|
|
11921
11924
|
this.mapping = mapping;
|
|
@@ -11966,7 +11969,7 @@ var TemplateSourceManager = class {
|
|
|
11966
11969
|
}
|
|
11967
11970
|
};
|
|
11968
11971
|
|
|
11969
|
-
// bazel-out/
|
|
11972
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
11970
11973
|
import { AST, ASTWithSource as ASTWithSource2, BindingPipe as BindingPipe2, PropertyRead as PropertyRead4, PropertyWrite as PropertyWrite3, R3Identifiers as R3Identifiers5, SafePropertyRead as SafePropertyRead4, TmplAstBoundAttribute as TmplAstBoundAttribute2, TmplAstBoundEvent, TmplAstElement as TmplAstElement3, TmplAstLetDeclaration as TmplAstLetDeclaration3, TmplAstReference as TmplAstReference3, TmplAstTemplate as TmplAstTemplate2, TmplAstTextAttribute as TmplAstTextAttribute3, TmplAstVariable as TmplAstVariable2 } from "@angular/compiler";
|
|
11971
11974
|
import ts44 from "typescript";
|
|
11972
11975
|
var SymbolBuilder = class {
|
|
@@ -12540,7 +12543,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
12540
12543
|
};
|
|
12541
12544
|
}
|
|
12542
12545
|
|
|
12543
|
-
// bazel-out/
|
|
12546
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
12544
12547
|
var REGISTRY2 = new DomElementSchemaRegistry2();
|
|
12545
12548
|
var TemplateTypeCheckerImpl = class {
|
|
12546
12549
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -13239,7 +13242,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
13239
13242
|
}
|
|
13240
13243
|
};
|
|
13241
13244
|
|
|
13242
|
-
// bazel-out/
|
|
13245
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
13243
13246
|
var EMPTY_ARRAY2 = [];
|
|
13244
13247
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
13245
13248
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -14291,7 +14294,7 @@ function isDefaultImport(node) {
|
|
|
14291
14294
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
14292
14295
|
}
|
|
14293
14296
|
|
|
14294
|
-
// bazel-out/
|
|
14297
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
14295
14298
|
import { compileClassMetadata as compileClassMetadata3, compileDeclareClassMetadata as compileDeclareClassMetadata3, compileDeclareInjectableFromMetadata, compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression3, FactoryTarget as FactoryTarget4, LiteralExpr as LiteralExpr3, WrappedNodeExpr as WrappedNodeExpr10 } from "@angular/compiler";
|
|
14296
14299
|
import ts46 from "typescript";
|
|
14297
14300
|
var InjectableDecoratorHandler = class {
|
|
@@ -14523,7 +14526,7 @@ function getDep(dep, reflector) {
|
|
|
14523
14526
|
return meta;
|
|
14524
14527
|
}
|
|
14525
14528
|
|
|
14526
|
-
// bazel-out/
|
|
14529
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
14527
14530
|
import { compileClassMetadata as compileClassMetadata4, compileDeclareClassMetadata as compileDeclareClassMetadata4, compileDeclarePipeFromMetadata, compilePipeFromMetadata, FactoryTarget as FactoryTarget5 } from "@angular/compiler";
|
|
14528
14531
|
import ts47 from "typescript";
|
|
14529
14532
|
var PipeSymbol = class extends SemanticSymbol {
|
|
@@ -14753,4 +14756,4 @@ export {
|
|
|
14753
14756
|
* Use of this source code is governed by an MIT-style license that can be
|
|
14754
14757
|
* found in the LICENSE file at https://angular.io/license
|
|
14755
14758
|
*/
|
|
14756
|
-
//# sourceMappingURL=chunk-
|
|
14759
|
+
//# sourceMappingURL=chunk-73AYMD6M.js.map
|