@angular/compiler-cli 13.0.0-rc.0 → 13.0.0
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/index.js +229 -228
- package/bundles/index.js.map +2 -2
- package/bundles/linker/babel/index.js +57 -57
- package/bundles/linker/index.js +49 -49
- package/bundles/ngcc/index.js +315 -320
- package/bundles/ngcc/index.js.map +2 -2
- package/bundles/ngcc/main-ngcc.js +316 -321
- package/bundles/ngcc/main-ngcc.js.map +2 -2
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js +280 -285
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js.map +2 -2
- package/bundles/ngcc/src/locking/lock_file_with_child_process/ngcc_lock_unlocker.js +8 -8
- package/bundles/private/bazel.js +2 -2
- package/bundles/private/localize.js +14 -14
- package/bundles/private/migrations.js +67 -65
- package/bundles/private/migrations.js.map +2 -2
- package/bundles/private/tooling.js +9 -9
- package/bundles/src/bin/ng_xi18n.js +229 -227
- package/bundles/src/bin/ng_xi18n.js.map +2 -2
- package/bundles/src/bin/ngc.js +227 -225
- package/bundles/src/bin/ngc.js.map +2 -2
- package/bundles_metadata.json +1 -1
- package/ngcc/src/packages/build_marker.d.ts +1 -1
- package/package.json +2 -2
- package/src/main.d.ts +4 -1
- package/src/ngtsc/annotations/src/ng_module.d.ts +1 -2
- package/src/ngtsc/diagnostics/index.d.ts +4 -2
- package/src/ngtsc/diagnostics/src/docs.d.ts +14 -0
- package/src/ngtsc/diagnostics/src/error_details_base_url.d.ts +16 -0
- package/src/ngtsc/diagnostics/src/util.d.ts +2 -0
- package/src/perform_compile.d.ts +0 -1
package/bundles/linker/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __spreadValues = (a, b) => {
|
|
|
23
23
|
};
|
|
24
24
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
25
25
|
|
|
26
|
-
// bazel-out/
|
|
26
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
|
|
27
27
|
var FatalLinkerError = class extends Error {
|
|
28
28
|
constructor(node, message) {
|
|
29
29
|
super(message);
|
|
@@ -35,14 +35,14 @@ function isFatalLinkerError(e) {
|
|
|
35
35
|
return e && e.type === "FatalLinkerError";
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
// bazel-out/
|
|
38
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
|
|
39
39
|
function assert(node, predicate, expected) {
|
|
40
40
|
if (!predicate(node)) {
|
|
41
41
|
throw new FatalLinkerError(node, `Unsupported syntax, expected ${expected}.`);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
// bazel-out/
|
|
45
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
|
|
46
46
|
import {
|
|
47
47
|
WrappedNodeExpr
|
|
48
48
|
} from "@angular/compiler";
|
|
@@ -170,10 +170,10 @@ var AstValue = class {
|
|
|
170
170
|
}
|
|
171
171
|
};
|
|
172
172
|
|
|
173
|
-
// bazel-out/
|
|
173
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
|
|
174
174
|
import { ConstantPool } from "@angular/compiler";
|
|
175
175
|
|
|
176
|
-
// bazel-out/
|
|
176
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
|
|
177
177
|
var LinkerImportGenerator = class {
|
|
178
178
|
constructor(ngImport) {
|
|
179
179
|
this.ngImport = ngImport;
|
|
@@ -193,7 +193,7 @@ var LinkerImportGenerator = class {
|
|
|
193
193
|
}
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
-
// bazel-out/
|
|
196
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
|
|
197
197
|
var EmitScope = class {
|
|
198
198
|
constructor(ngImport, translator) {
|
|
199
199
|
this.ngImport = ngImport;
|
|
@@ -209,7 +209,7 @@ var EmitScope = class {
|
|
|
209
209
|
}
|
|
210
210
|
};
|
|
211
211
|
|
|
212
|
-
// bazel-out/
|
|
212
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/iife_emit_scope.mjs
|
|
213
213
|
var IifeEmitScope = class extends EmitScope {
|
|
214
214
|
constructor(ngImport, translator, factory) {
|
|
215
215
|
super(ngImport, translator);
|
|
@@ -227,10 +227,10 @@ var IifeEmitScope = class extends EmitScope {
|
|
|
227
227
|
}
|
|
228
228
|
};
|
|
229
229
|
|
|
230
|
-
// bazel-out/
|
|
230
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
|
|
231
231
|
import semver from "semver";
|
|
232
232
|
|
|
233
|
-
// bazel-out/
|
|
233
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
|
|
234
234
|
function createGetSourceFile(sourceUrl, code, loader) {
|
|
235
235
|
if (loader === null) {
|
|
236
236
|
return () => null;
|
|
@@ -245,7 +245,7 @@ function createGetSourceFile(sourceUrl, code, loader) {
|
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
|
|
248
|
-
// bazel-out/
|
|
248
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
|
|
249
249
|
import { compileClassMetadata } from "@angular/compiler";
|
|
250
250
|
var PartialClassMetadataLinkerVersion1 = class {
|
|
251
251
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -262,13 +262,13 @@ function toR3ClassMetadata(metaObj) {
|
|
|
262
262
|
};
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
-
// bazel-out/
|
|
265
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
|
|
266
266
|
import { ChangeDetectionStrategy, compileComponentFromMetadata, DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, makeBindingParser as makeBindingParser2, parseTemplate, ViewEncapsulation } from "@angular/compiler";
|
|
267
267
|
|
|
268
|
-
// bazel-out/
|
|
268
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
|
|
269
269
|
import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSourceFile, ParseSourceSpan } from "@angular/compiler";
|
|
270
270
|
|
|
271
|
-
// bazel-out/
|
|
271
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
|
|
272
272
|
import { createR3ProviderExpression, outputAst as o2 } from "@angular/compiler";
|
|
273
273
|
function wrapReference(wrapped) {
|
|
274
274
|
return { value: wrapped, type: wrapped };
|
|
@@ -316,7 +316,7 @@ function extractForwardRef(expr) {
|
|
|
316
316
|
return createR3ProviderExpression(wrapperFn.getFunctionReturnValue().getOpaque(), true);
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
// bazel-out/
|
|
319
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
|
|
320
320
|
var PartialDirectiveLinkerVersion1 = class {
|
|
321
321
|
constructor(sourceUrl, code) {
|
|
322
322
|
this.sourceUrl = sourceUrl;
|
|
@@ -414,7 +414,7 @@ function createSourceSpan(range, code, sourceUrl) {
|
|
|
414
414
|
return new ParseSourceSpan(startLocation, startLocation.moveBy(range.endPos - range.startPos));
|
|
415
415
|
}
|
|
416
416
|
|
|
417
|
-
// bazel-out/
|
|
417
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
|
|
418
418
|
var PartialComponentLinkerVersion1 = class {
|
|
419
419
|
constructor(getSourceFile2, sourceUrl, code) {
|
|
420
420
|
this.getSourceFile = getSourceFile2;
|
|
@@ -571,7 +571,7 @@ function parseChangeDetectionStrategy(changeDetectionStrategy) {
|
|
|
571
571
|
return enumValue;
|
|
572
572
|
}
|
|
573
573
|
|
|
574
|
-
// bazel-out/
|
|
574
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
|
|
575
575
|
import { compileFactoryFunction, FactoryTarget } from "@angular/compiler";
|
|
576
576
|
var PartialFactoryLinkerVersion1 = class {
|
|
577
577
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -609,7 +609,7 @@ function getDependencies(metaObj, propName) {
|
|
|
609
609
|
return null;
|
|
610
610
|
}
|
|
611
611
|
|
|
612
|
-
// bazel-out/
|
|
612
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
|
|
613
613
|
import { compileInjectable, createR3ProviderExpression as createR3ProviderExpression2, outputAst as o3 } from "@angular/compiler";
|
|
614
614
|
var PartialInjectableLinkerVersion1 = class {
|
|
615
615
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -649,7 +649,7 @@ function toR3InjectableMeta(metaObj) {
|
|
|
649
649
|
return meta;
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
// bazel-out/
|
|
652
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
|
|
653
653
|
import { compileInjector } from "@angular/compiler";
|
|
654
654
|
var PartialInjectorLinkerVersion1 = class {
|
|
655
655
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -673,7 +673,7 @@ function toR3InjectorMeta(metaObj) {
|
|
|
673
673
|
};
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
-
// bazel-out/
|
|
676
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
|
|
677
677
|
import { compileNgModule } from "@angular/compiler";
|
|
678
678
|
var PartialNgModuleLinkerVersion1 = class {
|
|
679
679
|
constructor(emitInline) {
|
|
@@ -745,7 +745,7 @@ function wrapReferences(values) {
|
|
|
745
745
|
return values.getArray().map((i) => wrapReference(i.getOpaque()));
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
-
// bazel-out/
|
|
748
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
|
|
749
749
|
import { compilePipeFromMetadata } from "@angular/compiler";
|
|
750
750
|
var PartialPipeLinkerVersion1 = class {
|
|
751
751
|
constructor() {
|
|
@@ -774,7 +774,7 @@ function toR3PipeMeta(metaObj) {
|
|
|
774
774
|
};
|
|
775
775
|
}
|
|
776
776
|
|
|
777
|
-
// bazel-out/
|
|
777
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
|
|
778
778
|
var \u0275\u0275ngDeclareDirective = "\u0275\u0275ngDeclareDirective";
|
|
779
779
|
var \u0275\u0275ngDeclareClassMetadata = "\u0275\u0275ngDeclareClassMetadata";
|
|
780
780
|
var \u0275\u0275ngDeclareComponent = "\u0275\u0275ngDeclareComponent";
|
|
@@ -795,7 +795,7 @@ var declarationFunctions = [
|
|
|
795
795
|
];
|
|
796
796
|
function createLinkerMap(environment, sourceUrl, code) {
|
|
797
797
|
const linkers = new Map();
|
|
798
|
-
const LATEST_VERSION_RANGE = getRange("<=", "13.0.0
|
|
798
|
+
const LATEST_VERSION_RANGE = getRange("<=", "13.0.0");
|
|
799
799
|
linkers.set(\u0275\u0275ngDeclareDirective, [
|
|
800
800
|
{ range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
|
|
801
801
|
]);
|
|
@@ -842,7 +842,7 @@ var PartialLinkerSelector = class {
|
|
|
842
842
|
throw new Error(`Unknown partial declaration function ${functionName}.`);
|
|
843
843
|
}
|
|
844
844
|
const linkerRanges = this.linkers.get(functionName);
|
|
845
|
-
if (version === "13.0.0
|
|
845
|
+
if (version === "13.0.0") {
|
|
846
846
|
return linkerRanges[linkerRanges.length - 1].linker;
|
|
847
847
|
}
|
|
848
848
|
const declarationRange = getRange(">=", minVersion);
|
|
@@ -868,7 +868,7 @@ function getRange(comparator, versionStr) {
|
|
|
868
868
|
return new semver.Range(`${comparator}${version.format()}`);
|
|
869
869
|
}
|
|
870
870
|
|
|
871
|
-
// bazel-out/
|
|
871
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
|
|
872
872
|
var FileLinker = class {
|
|
873
873
|
constructor(linkerEnvironment, sourceUrl, code) {
|
|
874
874
|
this.linkerEnvironment = linkerEnvironment;
|
|
@@ -911,7 +911,7 @@ var FileLinker = class {
|
|
|
911
911
|
}
|
|
912
912
|
};
|
|
913
913
|
|
|
914
|
-
// bazel-out/
|
|
914
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
|
|
915
915
|
var ContentOrigin;
|
|
916
916
|
(function(ContentOrigin2) {
|
|
917
917
|
ContentOrigin2[ContentOrigin2["Provided"] = 0] = "Provided";
|
|
@@ -919,11 +919,11 @@ var ContentOrigin;
|
|
|
919
919
|
ContentOrigin2[ContentOrigin2["FileSystem"] = 2] = "FileSystem";
|
|
920
920
|
})(ContentOrigin || (ContentOrigin = {}));
|
|
921
921
|
|
|
922
|
-
// bazel-out/
|
|
922
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
|
|
923
923
|
import mapHelpers from "convert-source-map";
|
|
924
924
|
import { decode, encode } from "sourcemap-codec";
|
|
925
925
|
|
|
926
|
-
// bazel-out/
|
|
926
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
|
|
927
927
|
function compareSegments(a, b) {
|
|
928
928
|
return a.position - b.position;
|
|
929
929
|
}
|
|
@@ -943,7 +943,7 @@ function offsetSegment(startOfLinePositions, marker, offset) {
|
|
|
943
943
|
return { line, column, position, next: void 0 };
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
-
// bazel-out/
|
|
946
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
|
|
947
947
|
function removeSourceMapComments(contents) {
|
|
948
948
|
return mapHelpers.removeMapFileComments(mapHelpers.removeComments(contents)).replace(/\n\n$/, "\n");
|
|
949
949
|
}
|
|
@@ -1194,7 +1194,7 @@ var Cache = class {
|
|
|
1194
1194
|
}
|
|
1195
1195
|
};
|
|
1196
1196
|
|
|
1197
|
-
// bazel-out/
|
|
1197
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
|
|
1198
1198
|
import mapHelpers2 from "convert-source-map";
|
|
1199
1199
|
var SCHEME_MATCHER = /^([a-z][a-z0-9.-]*):\/\//i;
|
|
1200
1200
|
var SourceFileLoader = class {
|
|
@@ -1311,14 +1311,14 @@ var SourceFileLoader = class {
|
|
|
1311
1311
|
}
|
|
1312
1312
|
};
|
|
1313
1313
|
|
|
1314
|
-
// bazel-out/
|
|
1314
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
|
|
1315
1315
|
var DEFAULT_LINKER_OPTIONS = {
|
|
1316
1316
|
sourceMapping: true,
|
|
1317
1317
|
linkerJitMode: false,
|
|
1318
1318
|
unknownDeclarationVersionHandling: "error"
|
|
1319
1319
|
};
|
|
1320
1320
|
|
|
1321
|
-
// bazel-out/
|
|
1321
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
1322
1322
|
var Context = class {
|
|
1323
1323
|
constructor(isStatement) {
|
|
1324
1324
|
this.isStatement = isStatement;
|
|
@@ -1331,23 +1331,23 @@ var Context = class {
|
|
|
1331
1331
|
}
|
|
1332
1332
|
};
|
|
1333
1333
|
|
|
1334
|
-
// bazel-out/
|
|
1334
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
1335
1335
|
import ts6 from "typescript";
|
|
1336
1336
|
|
|
1337
|
-
// bazel-out/
|
|
1337
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
1338
1338
|
import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
|
|
1339
1339
|
|
|
1340
|
-
// bazel-out/
|
|
1340
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
1341
1341
|
import { ExternalExpr, ExternalReference, WrappedNodeExpr as WrappedNodeExpr2 } from "@angular/compiler";
|
|
1342
1342
|
import ts4 from "typescript";
|
|
1343
1343
|
|
|
1344
|
-
// bazel-out/
|
|
1344
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
1345
1345
|
import {
|
|
1346
1346
|
EOL
|
|
1347
1347
|
} from "os";
|
|
1348
1348
|
import ts from "typescript";
|
|
1349
1349
|
|
|
1350
|
-
// bazel-out/
|
|
1350
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
1351
1351
|
var InvalidFileSystem = class {
|
|
1352
1352
|
exists(path) {
|
|
1353
1353
|
throw makeError();
|
|
@@ -1435,11 +1435,11 @@ function makeError() {
|
|
|
1435
1435
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
1436
1436
|
}
|
|
1437
1437
|
|
|
1438
|
-
// bazel-out/
|
|
1438
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
1439
1439
|
var fs = new InvalidFileSystem();
|
|
1440
1440
|
var ABSOLUTE_PATH = Symbol("AbsolutePath");
|
|
1441
1441
|
|
|
1442
|
-
// bazel-out/
|
|
1442
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
1443
1443
|
import {
|
|
1444
1444
|
copyFileSync,
|
|
1445
1445
|
existsSync,
|
|
@@ -1470,13 +1470,13 @@ var isCommonJS = typeof __filename !== "undefined";
|
|
|
1470
1470
|
var currentFileUrl = isCommonJS ? null : __ESM_IMPORT_META_URL__;
|
|
1471
1471
|
var currentFileName = isCommonJS ? __filename : fileURLToPath(currentFileUrl);
|
|
1472
1472
|
|
|
1473
|
-
// bazel-out/
|
|
1473
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
1474
1474
|
import ts2 from "typescript";
|
|
1475
1475
|
|
|
1476
|
-
// bazel-out/
|
|
1476
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
1477
1477
|
import ts3 from "typescript";
|
|
1478
1478
|
|
|
1479
|
-
// bazel-out/
|
|
1479
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
1480
1480
|
var ImportFlags;
|
|
1481
1481
|
(function(ImportFlags2) {
|
|
1482
1482
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -1485,7 +1485,7 @@ var ImportFlags;
|
|
|
1485
1485
|
ImportFlags2[ImportFlags2["AllowTypeImports"] = 4] = "AllowTypeImports";
|
|
1486
1486
|
})(ImportFlags || (ImportFlags = {}));
|
|
1487
1487
|
|
|
1488
|
-
// bazel-out/
|
|
1488
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
1489
1489
|
var CORE_SUPPORTED_SYMBOLS = new Map([
|
|
1490
1490
|
["\u0275\u0275defineInjectable", "\u0275\u0275defineInjectable"],
|
|
1491
1491
|
["\u0275\u0275defineInjector", "\u0275\u0275defineInjector"],
|
|
@@ -1501,11 +1501,11 @@ var CORE_SUPPORTED_SYMBOLS = new Map([
|
|
|
1501
1501
|
["\u0275noSideEffects", "\u0275noSideEffects"]
|
|
1502
1502
|
]);
|
|
1503
1503
|
|
|
1504
|
-
// bazel-out/
|
|
1504
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
1505
1505
|
import ts5 from "typescript";
|
|
1506
1506
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
1507
1507
|
|
|
1508
|
-
// bazel-out/
|
|
1508
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
1509
1509
|
import {
|
|
1510
1510
|
BinaryOperator,
|
|
1511
1511
|
ConditionalExpr,
|
|
@@ -1749,13 +1749,13 @@ function createRange(span) {
|
|
|
1749
1749
|
};
|
|
1750
1750
|
}
|
|
1751
1751
|
|
|
1752
|
-
// bazel-out/
|
|
1752
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
1753
1753
|
import {
|
|
1754
1754
|
BuiltinTypeName
|
|
1755
1755
|
} from "@angular/compiler";
|
|
1756
1756
|
import ts7 from "typescript";
|
|
1757
1757
|
|
|
1758
|
-
// bazel-out/
|
|
1758
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
1759
1759
|
import ts8 from "typescript";
|
|
1760
1760
|
var PureAnnotation;
|
|
1761
1761
|
(function(PureAnnotation2) {
|
|
@@ -1792,7 +1792,7 @@ var VAR_TYPES = {
|
|
|
1792
1792
|
"var": ts8.NodeFlags.None
|
|
1793
1793
|
};
|
|
1794
1794
|
|
|
1795
|
-
// bazel-out/
|
|
1795
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
|
|
1796
1796
|
var Translator = class {
|
|
1797
1797
|
constructor(factory) {
|
|
1798
1798
|
this.factory = factory;
|
|
@@ -1805,7 +1805,7 @@ var Translator = class {
|
|
|
1805
1805
|
}
|
|
1806
1806
|
};
|
|
1807
1807
|
|
|
1808
|
-
// bazel-out/
|
|
1808
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
|
|
1809
1809
|
var LinkerEnvironment = class {
|
|
1810
1810
|
constructor(fileSystem, logger, host, factory, options) {
|
|
1811
1811
|
this.fileSystem = fileSystem;
|
|
@@ -1826,7 +1826,7 @@ var LinkerEnvironment = class {
|
|
|
1826
1826
|
}
|
|
1827
1827
|
};
|
|
1828
1828
|
|
|
1829
|
-
// bazel-out/
|
|
1829
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
|
|
1830
1830
|
function needsLinking(path, source) {
|
|
1831
1831
|
return declarationFunctions.some((fn) => source.includes(fn));
|
|
1832
1832
|
}
|