@angular/compiler-cli 16.0.0-next.5 → 16.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-VFEPUUWJ.js → chunk-2AZVA7MW.js} +93 -93
- package/bundles/{chunk-C4B5W2XC.js → chunk-2G3UVWBI.js} +8 -8
- package/bundles/{chunk-76ZWV2KR.js → chunk-2IU4GAMV.js} +31 -31
- package/bundles/{chunk-O6RGCXNH.js → chunk-2YPKXLLJ.js} +5 -5
- package/bundles/{chunk-B6WD2R2T.js → chunk-7RPZKH3B.js} +21 -21
- package/bundles/{chunk-LYJKWJUC.js → chunk-CF2CT7RQ.js} +3 -3
- package/bundles/{chunk-QQGJEWBQ.js → chunk-HROZN3TD.js} +6 -6
- package/bundles/{chunk-MNUHP7AS.js → chunk-IWRMD5BL.js} +5 -5
- package/bundles/{chunk-TBUSSXUA.js → chunk-K2U2VZ7S.js} +7 -7
- package/bundles/{chunk-SY7FDL66.js → chunk-KOHNFJR2.js} +77 -77
- package/bundles/{chunk-EKTJ7622.js → chunk-OULZQUKT.js} +7 -7
- package/bundles/{chunk-7PCPPTTO.js → chunk-URH5LEAG.js} +5 -5
- package/bundles/index.js +13 -13
- package/bundles/linker/babel/index.js +13 -13
- package/bundles/linker/index.js +5 -5
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +3 -3
- package/bundles/private/migrations.js +6 -6
- package/bundles/private/tooling.js +4 -4
- package/bundles/src/bin/ng_xi18n.js +11 -11
- package/bundles/src/bin/ngc.js +9 -9
- package/bundles_metadata.json +1 -1
- package/package.json +2 -2
- /package/bundles/{chunk-VFEPUUWJ.js.map → chunk-2AZVA7MW.js.map} +0 -0
- /package/bundles/{chunk-C4B5W2XC.js.map → chunk-2G3UVWBI.js.map} +0 -0
- /package/bundles/{chunk-76ZWV2KR.js.map → chunk-2IU4GAMV.js.map} +0 -0
- /package/bundles/{chunk-O6RGCXNH.js.map → chunk-2YPKXLLJ.js.map} +0 -0
- /package/bundles/{chunk-B6WD2R2T.js.map → chunk-7RPZKH3B.js.map} +0 -0
- /package/bundles/{chunk-LYJKWJUC.js.map → chunk-CF2CT7RQ.js.map} +0 -0
- /package/bundles/{chunk-QQGJEWBQ.js.map → chunk-HROZN3TD.js.map} +0 -0
- /package/bundles/{chunk-MNUHP7AS.js.map → chunk-IWRMD5BL.js.map} +0 -0
- /package/bundles/{chunk-TBUSSXUA.js.map → chunk-K2U2VZ7S.js.map} +0 -0
- /package/bundles/{chunk-SY7FDL66.js.map → chunk-KOHNFJR2.js.map} +0 -0
- /package/bundles/{chunk-EKTJ7622.js.map → chunk-OULZQUKT.js.map} +0 -0
- /package/bundles/{chunk-7PCPPTTO.js.map → chunk-URH5LEAG.js.map} +0 -0
|
@@ -12,13 +12,13 @@ import {
|
|
|
12
12
|
reflectObjectLiteral,
|
|
13
13
|
reflectTypeEntityToDeclaration,
|
|
14
14
|
typeNodeToValueExpr
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-HROZN3TD.js";
|
|
16
16
|
import {
|
|
17
17
|
ImportManager,
|
|
18
18
|
translateExpression,
|
|
19
19
|
translateStatement,
|
|
20
20
|
translateType
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-2G3UVWBI.js";
|
|
22
22
|
import {
|
|
23
23
|
ErrorCode,
|
|
24
24
|
FatalDiagnosticError,
|
|
@@ -35,18 +35,18 @@ import {
|
|
|
35
35
|
makeRelatedInformation,
|
|
36
36
|
nodeDebugInfo,
|
|
37
37
|
nodeNameForError
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-7RPZKH3B.js";
|
|
39
39
|
import {
|
|
40
40
|
PerfEvent,
|
|
41
41
|
PerfPhase
|
|
42
|
-
} from "./chunk-
|
|
42
|
+
} from "./chunk-URH5LEAG.js";
|
|
43
43
|
import {
|
|
44
44
|
absoluteFrom,
|
|
45
45
|
absoluteFromSourceFile,
|
|
46
46
|
relative
|
|
47
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-K2U2VZ7S.js";
|
|
48
48
|
|
|
49
|
-
// bazel-out/
|
|
49
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
50
50
|
import { ExternalExpr, ParseLocation, ParseSourceFile, ParseSourceSpan, ReadPropExpr, WrappedNodeExpr } from "@angular/compiler";
|
|
51
51
|
import ts from "typescript";
|
|
52
52
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -285,7 +285,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
285
285
|
return ts.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === ts.SyntaxKind.AbstractKeyword) : false;
|
|
286
286
|
}
|
|
287
287
|
|
|
288
|
-
// bazel-out/
|
|
288
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
289
289
|
var DynamicValue = class {
|
|
290
290
|
constructor(node, reason, code) {
|
|
291
291
|
this.node = node;
|
|
@@ -375,10 +375,10 @@ var DynamicValue = class {
|
|
|
375
375
|
}
|
|
376
376
|
};
|
|
377
377
|
|
|
378
|
-
// bazel-out/
|
|
378
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
379
379
|
import ts2 from "typescript";
|
|
380
380
|
|
|
381
|
-
// bazel-out/
|
|
381
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
382
382
|
var ResolvedModule = class {
|
|
383
383
|
constructor(exports, evaluate) {
|
|
384
384
|
this.exports = exports;
|
|
@@ -408,7 +408,7 @@ var EnumValue = class {
|
|
|
408
408
|
var KnownFn = class {
|
|
409
409
|
};
|
|
410
410
|
|
|
411
|
-
// bazel-out/
|
|
411
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
412
412
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
413
413
|
constructor(lhs) {
|
|
414
414
|
super();
|
|
@@ -479,7 +479,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
|
|
|
479
479
|
}
|
|
480
480
|
};
|
|
481
481
|
|
|
482
|
-
// bazel-out/
|
|
482
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
|
|
483
483
|
var AssignHelperFn = class extends ObjectAssignBuiltinFn {
|
|
484
484
|
};
|
|
485
485
|
var SpreadHelperFn = class extends KnownFn {
|
|
@@ -532,7 +532,7 @@ var ReadHelperFn = class extends KnownFn {
|
|
|
532
532
|
}
|
|
533
533
|
};
|
|
534
534
|
|
|
535
|
-
// bazel-out/
|
|
535
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
|
|
536
536
|
var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
|
|
537
537
|
var assignTsHelperFn = new AssignHelperFn();
|
|
538
538
|
var spreadTsHelperFn = new SpreadHelperFn();
|
|
@@ -556,14 +556,14 @@ function resolveKnownDeclaration(decl) {
|
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
|
|
559
|
-
// bazel-out/
|
|
559
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
560
560
|
var SyntheticValue = class {
|
|
561
561
|
constructor(value) {
|
|
562
562
|
this.value = value;
|
|
563
563
|
}
|
|
564
564
|
};
|
|
565
565
|
|
|
566
|
-
// bazel-out/
|
|
566
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
567
567
|
function literalBinaryOp(op) {
|
|
568
568
|
return { op, literal: true };
|
|
569
569
|
}
|
|
@@ -1164,7 +1164,7 @@ function owningModule(context, override = null) {
|
|
|
1164
1164
|
}
|
|
1165
1165
|
}
|
|
1166
1166
|
|
|
1167
|
-
// bazel-out/
|
|
1167
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
1168
1168
|
var PartialEvaluator = class {
|
|
1169
1169
|
constructor(host, checker, dependencyTracker) {
|
|
1170
1170
|
this.host = host;
|
|
@@ -1184,7 +1184,7 @@ var PartialEvaluator = class {
|
|
|
1184
1184
|
}
|
|
1185
1185
|
};
|
|
1186
1186
|
|
|
1187
|
-
// bazel-out/
|
|
1187
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
1188
1188
|
import ts3 from "typescript";
|
|
1189
1189
|
function describeResolvedType(value, maxDepth = 1) {
|
|
1190
1190
|
var _a, _b;
|
|
@@ -1314,7 +1314,7 @@ function getContainerNode(node) {
|
|
|
1314
1314
|
return node.getSourceFile();
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
-
// bazel-out/
|
|
1317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
1318
1318
|
import { LiteralExpr, WrappedNodeExpr as WrappedNodeExpr2 } from "@angular/compiler";
|
|
1319
1319
|
import ts4 from "typescript";
|
|
1320
1320
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
@@ -1458,10 +1458,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
1458
1458
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
1459
1459
|
}
|
|
1460
1460
|
|
|
1461
|
-
// bazel-out/
|
|
1461
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
1462
1462
|
import ts7 from "typescript";
|
|
1463
1463
|
|
|
1464
|
-
// bazel-out/
|
|
1464
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
1465
1465
|
var MetaKind;
|
|
1466
1466
|
(function(MetaKind2) {
|
|
1467
1467
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -1474,10 +1474,10 @@ var MatchSource;
|
|
|
1474
1474
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
1475
1475
|
})(MatchSource || (MatchSource = {}));
|
|
1476
1476
|
|
|
1477
|
-
// bazel-out/
|
|
1477
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
1478
1478
|
import ts6 from "typescript";
|
|
1479
1479
|
|
|
1480
|
-
// bazel-out/
|
|
1480
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
1481
1481
|
var ClassPropertyMapping = class {
|
|
1482
1482
|
constructor(forwardMap) {
|
|
1483
1483
|
this.forwardMap = forwardMap;
|
|
@@ -1555,7 +1555,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
1555
1555
|
return reverseMap;
|
|
1556
1556
|
}
|
|
1557
1557
|
|
|
1558
|
-
// bazel-out/
|
|
1558
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
1559
1559
|
import ts5 from "typescript";
|
|
1560
1560
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
1561
1561
|
if (!ts5.isTupleTypeNode(def)) {
|
|
@@ -1737,7 +1737,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
1737
1737
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
|
-
// bazel-out/
|
|
1740
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
1741
1741
|
var DtsMetadataReader = class {
|
|
1742
1742
|
constructor(checker, reflector) {
|
|
1743
1743
|
this.checker = checker;
|
|
@@ -1905,7 +1905,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
1905
1905
|
return result.length > 0 ? result : null;
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
|
-
// bazel-out/
|
|
1908
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
1909
1909
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
1910
1910
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
1911
1911
|
if (topMeta === null) {
|
|
@@ -1963,7 +1963,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
1963
1963
|
};
|
|
1964
1964
|
}
|
|
1965
1965
|
|
|
1966
|
-
// bazel-out/
|
|
1966
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
1967
1967
|
var LocalMetadataRegistry = class {
|
|
1968
1968
|
constructor() {
|
|
1969
1969
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -2020,7 +2020,7 @@ var CompoundMetadataRegistry = class {
|
|
|
2020
2020
|
}
|
|
2021
2021
|
};
|
|
2022
2022
|
|
|
2023
|
-
// bazel-out/
|
|
2023
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
2024
2024
|
var ResourceRegistry = class {
|
|
2025
2025
|
constructor() {
|
|
2026
2026
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -2085,7 +2085,7 @@ var ResourceRegistry = class {
|
|
|
2085
2085
|
}
|
|
2086
2086
|
};
|
|
2087
2087
|
|
|
2088
|
-
// bazel-out/
|
|
2088
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
2089
2089
|
var EMPTY_ARRAY = [];
|
|
2090
2090
|
var HostDirectivesResolver = class {
|
|
2091
2091
|
constructor(metaReader) {
|
|
@@ -2146,7 +2146,7 @@ function resolveOutput(bindingName) {
|
|
|
2146
2146
|
return bindingName;
|
|
2147
2147
|
}
|
|
2148
2148
|
|
|
2149
|
-
// bazel-out/
|
|
2149
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
2150
2150
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
2151
2151
|
const context = [];
|
|
2152
2152
|
for (const decl of data) {
|
|
@@ -2342,7 +2342,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
2342
2342
|
return makeDiagnostic(ErrorCode.DIRECTIVE_INHERITS_UNDECORATED_CTOR, node.name, `The ${kind.toLowerCase()} ${node.name.text} inherits its constructor from ${baseClassName}, but the latter does not have an Angular decorator of its own. Dependency injection will not be able to resolve the parameters of ${baseClassName}'s constructor. Either add a @${baseNeedsDecorator} decorator to ${baseClassName}, or add an explicit constructor to ${node.name.text}.`);
|
|
2343
2343
|
}
|
|
2344
2344
|
|
|
2345
|
-
// bazel-out/
|
|
2345
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
2346
2346
|
import ts8 from "typescript";
|
|
2347
2347
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
2348
2348
|
let resolved = null;
|
|
@@ -2375,7 +2375,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
2375
2375
|
return meta;
|
|
2376
2376
|
}
|
|
2377
2377
|
|
|
2378
|
-
// bazel-out/
|
|
2378
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
2379
2379
|
import { compileDeclareFactoryFunction, compileFactoryFunction } from "@angular/compiler";
|
|
2380
2380
|
function compileNgFactoryDefField(metadata) {
|
|
2381
2381
|
const res = compileFactoryFunction(metadata);
|
|
@@ -2386,7 +2386,7 @@ function compileDeclareFactory(metadata) {
|
|
|
2386
2386
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
2387
2387
|
}
|
|
2388
2388
|
|
|
2389
|
-
// bazel-out/
|
|
2389
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
2390
2390
|
var InjectableClassRegistry = class {
|
|
2391
2391
|
constructor(host, isCore) {
|
|
2392
2392
|
this.host = host;
|
|
@@ -2412,7 +2412,7 @@ var InjectableClassRegistry = class {
|
|
|
2412
2412
|
}
|
|
2413
2413
|
};
|
|
2414
2414
|
|
|
2415
|
-
// bazel-out/
|
|
2415
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
2416
2416
|
import { FunctionExpr, LiteralArrayExpr, LiteralExpr as LiteralExpr2, literalMap, ReturnStatement, WrappedNodeExpr as WrappedNodeExpr3 } from "@angular/compiler";
|
|
2417
2417
|
import ts9 from "typescript";
|
|
2418
2418
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
@@ -2499,13 +2499,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
2499
2499
|
return result.transformed[0];
|
|
2500
2500
|
}
|
|
2501
2501
|
|
|
2502
|
-
// bazel-out/
|
|
2502
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
2503
2503
|
var NoopReferencesRegistry = class {
|
|
2504
2504
|
add(source, ...references) {
|
|
2505
2505
|
}
|
|
2506
2506
|
};
|
|
2507
2507
|
|
|
2508
|
-
// bazel-out/
|
|
2508
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
2509
2509
|
import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from "@angular/compiler";
|
|
2510
2510
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
2511
2511
|
const schemas = [];
|
|
@@ -2535,11 +2535,11 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
2535
2535
|
return schemas;
|
|
2536
2536
|
}
|
|
2537
2537
|
|
|
2538
|
-
// bazel-out/
|
|
2538
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
2539
2539
|
import { compileClassMetadata as compileClassMetadata3, compileComponentFromMetadata, compileDeclareClassMetadata as compileDeclareClassMetadata3, compileDeclareComponentFromMetadata, CssSelector as CssSelector2, DEFAULT_INTERPOLATION_CONFIG as DEFAULT_INTERPOLATION_CONFIG2, DomElementSchemaRegistry, FactoryTarget as FactoryTarget3, makeBindingParser as makeBindingParser2, R3TargetBinder, R3TemplateDependencyKind, SelectorMatcher as SelectorMatcher2, ViewEncapsulation, WrappedNodeExpr as WrappedNodeExpr7 } from "@angular/compiler";
|
|
2540
2540
|
import ts24 from "typescript";
|
|
2541
2541
|
|
|
2542
|
-
// bazel-out/
|
|
2542
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
2543
2543
|
import ts10 from "typescript";
|
|
2544
2544
|
var SemanticSymbol = class {
|
|
2545
2545
|
constructor(decl) {
|
|
@@ -2555,7 +2555,7 @@ function getSymbolIdentifier(decl) {
|
|
|
2555
2555
|
return decl.name.text;
|
|
2556
2556
|
}
|
|
2557
2557
|
|
|
2558
|
-
// bazel-out/
|
|
2558
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
2559
2559
|
import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
|
|
2560
2560
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
2561
2561
|
isPublicApiAffected() {
|
|
@@ -2698,10 +2698,10 @@ function getImportPath(expr) {
|
|
|
2698
2698
|
}
|
|
2699
2699
|
}
|
|
2700
2700
|
|
|
2701
|
-
// bazel-out/
|
|
2701
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
2702
2702
|
import ts11 from "typescript";
|
|
2703
2703
|
|
|
2704
|
-
// bazel-out/
|
|
2704
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
2705
2705
|
function isSymbolEqual(a, b) {
|
|
2706
2706
|
if (a.decl === b.decl) {
|
|
2707
2707
|
return true;
|
|
@@ -2751,7 +2751,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
2751
2751
|
return true;
|
|
2752
2752
|
}
|
|
2753
2753
|
|
|
2754
|
-
// bazel-out/
|
|
2754
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
2755
2755
|
function extractSemanticTypeParameters(node) {
|
|
2756
2756
|
if (!ts11.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
2757
2757
|
return null;
|
|
@@ -2771,14 +2771,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
2771
2771
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
2772
2772
|
}
|
|
2773
2773
|
|
|
2774
|
-
// bazel-out/
|
|
2774
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
2775
2775
|
var ComponentScopeKind;
|
|
2776
2776
|
(function(ComponentScopeKind2) {
|
|
2777
2777
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
2778
2778
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
2779
2779
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
2780
2780
|
|
|
2781
|
-
// bazel-out/
|
|
2781
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
2782
2782
|
var CompoundComponentScopeReader = class {
|
|
2783
2783
|
constructor(readers) {
|
|
2784
2784
|
this.readers = readers;
|
|
@@ -2803,7 +2803,7 @@ var CompoundComponentScopeReader = class {
|
|
|
2803
2803
|
}
|
|
2804
2804
|
};
|
|
2805
2805
|
|
|
2806
|
-
// bazel-out/
|
|
2806
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
2807
2807
|
var MetadataDtsModuleScopeResolver = class {
|
|
2808
2808
|
constructor(dtsMetaReader, aliasingHost) {
|
|
2809
2809
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -2879,11 +2879,11 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
2879
2879
|
}
|
|
2880
2880
|
};
|
|
2881
2881
|
|
|
2882
|
-
// bazel-out/
|
|
2882
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
2883
2883
|
import { ExternalExpr as ExternalExpr3 } from "@angular/compiler";
|
|
2884
2884
|
import ts12 from "typescript";
|
|
2885
2885
|
|
|
2886
|
-
// bazel-out/
|
|
2886
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
2887
2887
|
function getDiagnosticNode(ref, rawExpr) {
|
|
2888
2888
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
2889
2889
|
}
|
|
@@ -2906,7 +2906,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
2906
2906
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
2907
2907
|
}
|
|
2908
2908
|
|
|
2909
|
-
// bazel-out/
|
|
2909
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
2910
2910
|
var LocalModuleScopeRegistry = class {
|
|
2911
2911
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
2912
2912
|
this.localReader = localReader;
|
|
@@ -3245,7 +3245,7 @@ function reexportCollision(module, refA, refB) {
|
|
|
3245
3245
|
]);
|
|
3246
3246
|
}
|
|
3247
3247
|
|
|
3248
|
-
// bazel-out/
|
|
3248
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
3249
3249
|
import { CssSelector, SelectorMatcher } from "@angular/compiler";
|
|
3250
3250
|
import ts13 from "typescript";
|
|
3251
3251
|
var TypeCheckScopeRegistry = class {
|
|
@@ -3314,7 +3314,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
3314
3314
|
}
|
|
3315
3315
|
};
|
|
3316
3316
|
|
|
3317
|
-
// bazel-out/
|
|
3317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
3318
3318
|
var CompilationMode;
|
|
3319
3319
|
(function(CompilationMode2) {
|
|
3320
3320
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -3332,7 +3332,7 @@ var HandlerFlags;
|
|
|
3332
3332
|
HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
|
|
3333
3333
|
})(HandlerFlags || (HandlerFlags = {}));
|
|
3334
3334
|
|
|
3335
|
-
// bazel-out/
|
|
3335
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
3336
3336
|
import ts14 from "typescript";
|
|
3337
3337
|
function aliasTransformFactory(exportStatements) {
|
|
3338
3338
|
return () => {
|
|
@@ -3355,10 +3355,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
3355
3355
|
};
|
|
3356
3356
|
}
|
|
3357
3357
|
|
|
3358
|
-
// bazel-out/
|
|
3358
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
3359
3359
|
import ts15 from "typescript";
|
|
3360
3360
|
|
|
3361
|
-
// bazel-out/
|
|
3361
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
3362
3362
|
var TraitState;
|
|
3363
3363
|
(function(TraitState2) {
|
|
3364
3364
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -3413,7 +3413,7 @@ var TraitImpl = class {
|
|
|
3413
3413
|
}
|
|
3414
3414
|
};
|
|
3415
3415
|
|
|
3416
|
-
// bazel-out/
|
|
3416
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
3417
3417
|
var TraitCompiler = class {
|
|
3418
3418
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
3419
3419
|
this.handlers = handlers;
|
|
@@ -3857,10 +3857,10 @@ function containsErrors(diagnostics) {
|
|
|
3857
3857
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === ts15.DiagnosticCategory.Error);
|
|
3858
3858
|
}
|
|
3859
3859
|
|
|
3860
|
-
// bazel-out/
|
|
3860
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
3861
3861
|
import ts17 from "typescript";
|
|
3862
3862
|
|
|
3863
|
-
// bazel-out/
|
|
3863
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
3864
3864
|
import ts16 from "typescript";
|
|
3865
3865
|
function addImports(importManager, sf, extraStatements = []) {
|
|
3866
3866
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -3896,7 +3896,7 @@ function isImportStatement(stmt) {
|
|
|
3896
3896
|
return ts16.isImportDeclaration(stmt) || ts16.isImportEqualsDeclaration(stmt) || ts16.isNamespaceImport(stmt);
|
|
3897
3897
|
}
|
|
3898
3898
|
|
|
3899
|
-
// bazel-out/
|
|
3899
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
3900
3900
|
var DtsTransformRegistry = class {
|
|
3901
3901
|
constructor() {
|
|
3902
3902
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -4041,11 +4041,11 @@ function markForEmitAsSingleLine(node) {
|
|
|
4041
4041
|
ts17.forEachChild(node, markForEmitAsSingleLine);
|
|
4042
4042
|
}
|
|
4043
4043
|
|
|
4044
|
-
// bazel-out/
|
|
4044
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
4045
4045
|
import { ConstantPool } from "@angular/compiler";
|
|
4046
4046
|
import ts19 from "typescript";
|
|
4047
4047
|
|
|
4048
|
-
// bazel-out/
|
|
4048
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
4049
4049
|
import ts18 from "typescript";
|
|
4050
4050
|
function visit(node, visitor, context) {
|
|
4051
4051
|
return visitor._visit(node, context);
|
|
@@ -4106,7 +4106,7 @@ var Visitor = class {
|
|
|
4106
4106
|
}
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
|
-
// bazel-out/
|
|
4109
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
4110
4110
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
4111
4111
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
4112
4112
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -4314,10 +4314,10 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
4314
4314
|
return array;
|
|
4315
4315
|
}
|
|
4316
4316
|
|
|
4317
|
-
// bazel-out/
|
|
4317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
4318
4318
|
import { compileClassMetadata, compileDeclareClassMetadata, compileDeclareDirectiveFromMetadata, compileDirectiveFromMetadata, FactoryTarget, makeBindingParser, WrappedNodeExpr as WrappedNodeExpr5 } from "@angular/compiler";
|
|
4319
4319
|
|
|
4320
|
-
// bazel-out/
|
|
4320
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
4321
4321
|
import { createMayBeForwardRefExpression, emitDistinctChangesOnlyDefaultValue, ExternalExpr as ExternalExpr4, getSafePropertyAccessString, parseHostBindings, verifyHostBindings, WrappedNodeExpr as WrappedNodeExpr4 } from "@angular/compiler";
|
|
4322
4322
|
import ts20 from "typescript";
|
|
4323
4323
|
var EMPTY_OBJECT = {};
|
|
@@ -4788,7 +4788,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
|
|
|
4788
4788
|
};
|
|
4789
4789
|
}
|
|
4790
4790
|
|
|
4791
|
-
// bazel-out/
|
|
4791
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
4792
4792
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
4793
4793
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
4794
4794
|
super(decl);
|
|
@@ -4868,7 +4868,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
4868
4868
|
return isSymbolEqual(current, previous);
|
|
4869
4869
|
}
|
|
4870
4870
|
|
|
4871
|
-
// bazel-out/
|
|
4871
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
4872
4872
|
var FIELD_DECORATORS = [
|
|
4873
4873
|
"Input",
|
|
4874
4874
|
"Output",
|
|
@@ -5027,11 +5027,11 @@ var DirectiveDecoratorHandler = class {
|
|
|
5027
5027
|
}
|
|
5028
5028
|
};
|
|
5029
5029
|
|
|
5030
|
-
// bazel-out/
|
|
5030
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
5031
5031
|
import { compileClassMetadata as compileClassMetadata2, compileDeclareClassMetadata as compileDeclareClassMetadata2, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileInjector, compileNgModule, ExternalExpr as ExternalExpr5, FactoryTarget as FactoryTarget2, FunctionExpr as FunctionExpr2, InvokeFunctionExpr, LiteralArrayExpr as LiteralArrayExpr2, R3Identifiers, R3SelectorScopeMode, ReturnStatement as ReturnStatement2, WrappedNodeExpr as WrappedNodeExpr6 } from "@angular/compiler";
|
|
5032
5032
|
import ts22 from "typescript";
|
|
5033
5033
|
|
|
5034
|
-
// bazel-out/
|
|
5034
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
5035
5035
|
import ts21 from "typescript";
|
|
5036
5036
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
5037
5037
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -5098,7 +5098,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
5098
5098
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
5099
5099
|
}
|
|
5100
5100
|
|
|
5101
|
-
// bazel-out/
|
|
5101
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
5102
5102
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
5103
5103
|
constructor() {
|
|
5104
5104
|
super(...arguments);
|
|
@@ -5596,7 +5596,7 @@ function isSyntheticReference(ref) {
|
|
|
5596
5596
|
return ref.synthetic;
|
|
5597
5597
|
}
|
|
5598
5598
|
|
|
5599
|
-
// bazel-out/
|
|
5599
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
5600
5600
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
5601
5601
|
const name = ref.debugName || "(unknown)";
|
|
5602
5602
|
const path = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -5619,7 +5619,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
5619
5619
|
return null;
|
|
5620
5620
|
}
|
|
5621
5621
|
|
|
5622
|
-
// bazel-out/
|
|
5622
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
5623
5623
|
import { DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, ParseSourceFile as ParseSourceFile2, parseTemplate } from "@angular/compiler";
|
|
5624
5624
|
import ts23 from "typescript";
|
|
5625
5625
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
@@ -5938,7 +5938,7 @@ function _extractTemplateStyleUrls(template) {
|
|
|
5938
5938
|
return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
5939
5939
|
}
|
|
5940
5940
|
|
|
5941
|
-
// bazel-out/
|
|
5941
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
5942
5942
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
5943
5943
|
constructor() {
|
|
5944
5944
|
super(...arguments);
|
|
@@ -5973,7 +5973,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
5973
5973
|
}
|
|
5974
5974
|
};
|
|
5975
5975
|
|
|
5976
|
-
// bazel-out/
|
|
5976
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
5977
5977
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
5978
5978
|
if (value instanceof Map) {
|
|
5979
5979
|
const name = value.get("name");
|
|
@@ -6049,7 +6049,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
6049
6049
|
return false;
|
|
6050
6050
|
}
|
|
6051
6051
|
|
|
6052
|
-
// bazel-out/
|
|
6052
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
6053
6053
|
var EMPTY_ARRAY2 = [];
|
|
6054
6054
|
var ComponentDecoratorHandler = class {
|
|
6055
6055
|
constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver) {
|
|
@@ -6696,7 +6696,7 @@ function validateStandaloneImports(importRefs, importExpr, metaReader, scopeRead
|
|
|
6696
6696
|
return diagnostics;
|
|
6697
6697
|
}
|
|
6698
6698
|
|
|
6699
|
-
// bazel-out/
|
|
6699
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
6700
6700
|
import { compileClassMetadata as compileClassMetadata4, compileDeclareClassMetadata as compileDeclareClassMetadata4, compileDeclareInjectableFromMetadata, compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression2, FactoryTarget as FactoryTarget4, LiteralExpr as LiteralExpr3, WrappedNodeExpr as WrappedNodeExpr8 } from "@angular/compiler";
|
|
6701
6701
|
import ts25 from "typescript";
|
|
6702
6702
|
var InjectableDecoratorHandler = class {
|
|
@@ -6913,7 +6913,7 @@ function getDep(dep, reflector) {
|
|
|
6913
6913
|
return meta;
|
|
6914
6914
|
}
|
|
6915
6915
|
|
|
6916
|
-
// bazel-out/
|
|
6916
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
6917
6917
|
import { compileClassMetadata as compileClassMetadata5, compileDeclareClassMetadata as compileDeclareClassMetadata5, compileDeclarePipeFromMetadata, compilePipeFromMetadata, FactoryTarget as FactoryTarget5, WrappedNodeExpr as WrappedNodeExpr9 } from "@angular/compiler";
|
|
6918
6918
|
import ts26 from "typescript";
|
|
6919
6919
|
var PipeSymbol = class extends SemanticSymbol {
|
|
@@ -7059,14 +7059,14 @@ var PipeDecoratorHandler = class {
|
|
|
7059
7059
|
}
|
|
7060
7060
|
};
|
|
7061
7061
|
|
|
7062
|
-
// bazel-out/
|
|
7062
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
7063
7063
|
var OptimizeFor;
|
|
7064
7064
|
(function(OptimizeFor2) {
|
|
7065
7065
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
7066
7066
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
7067
7067
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
7068
7068
|
|
|
7069
|
-
// bazel-out/
|
|
7069
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
7070
7070
|
var PotentialImportKind;
|
|
7071
7071
|
(function(PotentialImportKind2) {
|
|
7072
7072
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -7078,14 +7078,14 @@ var PotentialImportMode;
|
|
|
7078
7078
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
7079
7079
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
7080
7080
|
|
|
7081
|
-
// bazel-out/
|
|
7081
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
7082
7082
|
var CompletionKind;
|
|
7083
7083
|
(function(CompletionKind2) {
|
|
7084
7084
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
7085
7085
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
7086
7086
|
})(CompletionKind || (CompletionKind = {}));
|
|
7087
7087
|
|
|
7088
|
-
// bazel-out/
|
|
7088
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
7089
7089
|
var SymbolKind;
|
|
7090
7090
|
(function(SymbolKind2) {
|
|
7091
7091
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -7152,4 +7152,4 @@ export {
|
|
|
7152
7152
|
* Use of this source code is governed by an MIT-style license that can be
|
|
7153
7153
|
* found in the LICENSE file at https://angular.io/license
|
|
7154
7154
|
*/
|
|
7155
|
-
//# sourceMappingURL=chunk-
|
|
7155
|
+
//# sourceMappingURL=chunk-KOHNFJR2.js.map
|