@angular/compiler-cli 18.0.2 → 18.0.3
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-BOT54HZ5.js → chunk-7E6Q23KF.js} +118 -115
- package/bundles/chunk-7E6Q23KF.js.map +6 -0
- package/bundles/{chunk-JZQHA4E7.js → chunk-AQFTVE7F.js} +5 -5
- package/bundles/{chunk-EDA6DBVV.js → chunk-DYQ2FDEK.js} +5 -5
- package/bundles/{chunk-HGUKV37D.js → chunk-E2VPC2QT.js} +78 -78
- package/bundles/{chunk-46XI27YO.js → chunk-KBGMAHKE.js} +31 -31
- package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
- package/bundles/{chunk-6X2NNIEJ.js → chunk-SFKDQKE5.js} +5 -5
- package/bundles/{chunk-RZ7P6VD7.js → chunk-VE7PCF6B.js} +43 -43
- package/bundles/{chunk-QYV344EV.js → chunk-WR7TUJ7M.js} +7 -7
- package/bundles/{chunk-3W345P4E.js → chunk-XNL3EK5H.js} +7 -7
- package/bundles/{chunk-LRVXZT7X.js → chunk-Y4KWPMGX.js} +13 -13
- package/bundles/index.js +12 -12
- 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 +3 -3
- package/bundles/private/migrations.js +5 -5
- package/bundles/private/tooling.js +5 -5
- 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 +3 -3
- package/src/ngtsc/docs/src/entities.d.ts +1 -0
- package/bundles/chunk-BOT54HZ5.js.map +0 -6
- /package/bundles/{chunk-JZQHA4E7.js.map → chunk-AQFTVE7F.js.map} +0 -0
- /package/bundles/{chunk-EDA6DBVV.js.map → chunk-DYQ2FDEK.js.map} +0 -0
- /package/bundles/{chunk-HGUKV37D.js.map → chunk-E2VPC2QT.js.map} +0 -0
- /package/bundles/{chunk-46XI27YO.js.map → chunk-KBGMAHKE.js.map} +0 -0
- /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
- /package/bundles/{chunk-6X2NNIEJ.js.map → chunk-SFKDQKE5.js.map} +0 -0
- /package/bundles/{chunk-RZ7P6VD7.js.map → chunk-VE7PCF6B.js.map} +0 -0
- /package/bundles/{chunk-QYV344EV.js.map → chunk-WR7TUJ7M.js.map} +0 -0
- /package/bundles/{chunk-3W345P4E.js.map → chunk-XNL3EK5H.js.map} +0 -0
- /package/bundles/{chunk-LRVXZT7X.js.map → chunk-Y4KWPMGX.js.map} +0 -0
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
import {
|
|
6
6
|
Context,
|
|
7
7
|
ExpressionTranslatorVisitor
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-VE7PCF6B.js";
|
|
9
9
|
import {
|
|
10
10
|
SourceFileLoader
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-WR7TUJ7M.js";
|
|
12
12
|
|
|
13
|
-
// bazel-out/
|
|
13
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
|
|
14
14
|
var FatalLinkerError = class extends Error {
|
|
15
15
|
constructor(node, message) {
|
|
16
16
|
super(message);
|
|
@@ -22,14 +22,14 @@ function isFatalLinkerError(e) {
|
|
|
22
22
|
return e && e.type === "FatalLinkerError";
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
// bazel-out/
|
|
25
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
|
|
26
26
|
function assert(node, predicate, expected) {
|
|
27
27
|
if (!predicate(node)) {
|
|
28
28
|
throw new FatalLinkerError(node, `Unsupported syntax, expected ${expected}.`);
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
// bazel-out/
|
|
32
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
|
|
33
33
|
import * as o from "@angular/compiler";
|
|
34
34
|
var AstObject = class {
|
|
35
35
|
static parse(expression, host) {
|
|
@@ -162,10 +162,10 @@ var AstValue = class {
|
|
|
162
162
|
}
|
|
163
163
|
};
|
|
164
164
|
|
|
165
|
-
// bazel-out/
|
|
165
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
|
|
166
166
|
import { ConstantPool } from "@angular/compiler";
|
|
167
167
|
|
|
168
|
-
// bazel-out/
|
|
168
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
|
|
169
169
|
var LinkerImportGenerator = class {
|
|
170
170
|
constructor(factory, ngImport) {
|
|
171
171
|
this.factory = factory;
|
|
@@ -185,7 +185,7 @@ var LinkerImportGenerator = class {
|
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
187
|
|
|
188
|
-
// bazel-out/
|
|
188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
|
|
189
189
|
var EmitScope = class {
|
|
190
190
|
constructor(ngImport, translator, factory) {
|
|
191
191
|
this.ngImport = ngImport;
|
|
@@ -214,7 +214,7 @@ var EmitScope = class {
|
|
|
214
214
|
}
|
|
215
215
|
};
|
|
216
216
|
|
|
217
|
-
// bazel-out/
|
|
217
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
|
|
218
218
|
var LocalEmitScope = class extends EmitScope {
|
|
219
219
|
translateDefinition(definition) {
|
|
220
220
|
return super.translateDefinition({
|
|
@@ -227,10 +227,10 @@ var LocalEmitScope = class extends EmitScope {
|
|
|
227
227
|
}
|
|
228
228
|
};
|
|
229
229
|
|
|
230
|
-
// bazel-out/
|
|
230
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
|
|
231
231
|
import semver2 from "semver";
|
|
232
232
|
|
|
233
|
-
// bazel-out/
|
|
233
|
+
// bazel-out/darwin_arm64-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_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_async_linker_1.mjs
|
|
249
249
|
import { compileOpaqueAsyncClassMetadata } from "@angular/compiler";
|
|
250
250
|
var PartialClassMetadataAsyncLinkerVersion1 = class {
|
|
251
251
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -270,7 +270,7 @@ var PartialClassMetadataAsyncLinkerVersion1 = class {
|
|
|
270
270
|
}
|
|
271
271
|
};
|
|
272
272
|
|
|
273
|
-
// bazel-out/
|
|
273
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
|
|
274
274
|
import { compileClassMetadata } from "@angular/compiler";
|
|
275
275
|
var PartialClassMetadataLinkerVersion1 = class {
|
|
276
276
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -290,16 +290,16 @@ function toR3ClassMetadata(metaObj) {
|
|
|
290
290
|
};
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
// bazel-out/
|
|
293
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
|
|
294
294
|
import { ChangeDetectionStrategy, compileComponentFromMetadata, DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, makeBindingParser as makeBindingParser2, parseTemplate, R3TargetBinder, R3TemplateDependencyKind, SelectorMatcher, ViewEncapsulation } from "@angular/compiler";
|
|
295
295
|
import semver from "semver";
|
|
296
296
|
|
|
297
|
-
// bazel-out/
|
|
297
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
|
|
298
298
|
import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSourceFile, ParseSourceSpan } from "@angular/compiler";
|
|
299
299
|
|
|
300
|
-
// bazel-out/
|
|
300
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
|
|
301
301
|
import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
|
|
302
|
-
var PLACEHOLDER_VERSION = "18.0.
|
|
302
|
+
var PLACEHOLDER_VERSION = "18.0.3";
|
|
303
303
|
function wrapReference(wrapped) {
|
|
304
304
|
return { value: wrapped, type: wrapped };
|
|
305
305
|
}
|
|
@@ -346,7 +346,7 @@ function extractForwardRef(expr) {
|
|
|
346
346
|
return createMayBeForwardRefExpression(wrapperFn.getFunctionReturnValue().getOpaque(), 2);
|
|
347
347
|
}
|
|
348
348
|
|
|
349
|
-
// bazel-out/
|
|
349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
|
|
350
350
|
var PartialDirectiveLinkerVersion1 = class {
|
|
351
351
|
constructor(sourceUrl, code) {
|
|
352
352
|
this.sourceUrl = sourceUrl;
|
|
@@ -493,7 +493,7 @@ function createSourceSpan(range, code, sourceUrl) {
|
|
|
493
493
|
return new ParseSourceSpan(startLocation, startLocation.moveBy(range.endPos - range.startPos));
|
|
494
494
|
}
|
|
495
495
|
|
|
496
|
-
// bazel-out/
|
|
496
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
|
|
497
497
|
function makeDirectiveMetadata(directiveExpr, typeExpr, isComponentByDefault = null) {
|
|
498
498
|
return {
|
|
499
499
|
kind: R3TemplateDependencyKind.Directive,
|
|
@@ -705,7 +705,7 @@ function parseChangeDetectionStrategy(changeDetectionStrategy) {
|
|
|
705
705
|
return enumValue;
|
|
706
706
|
}
|
|
707
707
|
|
|
708
|
-
// bazel-out/
|
|
708
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
|
|
709
709
|
import { compileFactoryFunction, FactoryTarget } from "@angular/compiler";
|
|
710
710
|
var PartialFactoryLinkerVersion1 = class {
|
|
711
711
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -741,7 +741,7 @@ function getDependencies(metaObj, propName) {
|
|
|
741
741
|
return null;
|
|
742
742
|
}
|
|
743
743
|
|
|
744
|
-
// bazel-out/
|
|
744
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
|
|
745
745
|
import { compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression2, outputAst as o3 } from "@angular/compiler";
|
|
746
746
|
var PartialInjectableLinkerVersion1 = class {
|
|
747
747
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -779,7 +779,7 @@ function toR3InjectableMeta(metaObj) {
|
|
|
779
779
|
return meta;
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
-
// bazel-out/
|
|
782
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
|
|
783
783
|
import { compileInjector } from "@angular/compiler";
|
|
784
784
|
var PartialInjectorLinkerVersion1 = class {
|
|
785
785
|
linkPartialDeclaration(constantPool, metaObj) {
|
|
@@ -801,7 +801,7 @@ function toR3InjectorMeta(metaObj) {
|
|
|
801
801
|
};
|
|
802
802
|
}
|
|
803
803
|
|
|
804
|
-
// bazel-out/
|
|
804
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
|
|
805
805
|
import { compileNgModule, R3NgModuleMetadataKind, R3SelectorScopeMode } from "@angular/compiler";
|
|
806
806
|
var PartialNgModuleLinkerVersion1 = class {
|
|
807
807
|
constructor(emitInline) {
|
|
@@ -873,7 +873,7 @@ function wrapReferences(values) {
|
|
|
873
873
|
return values.getArray().map((i) => wrapReference(i.getOpaque()));
|
|
874
874
|
}
|
|
875
875
|
|
|
876
|
-
// bazel-out/
|
|
876
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
|
|
877
877
|
import { compilePipeFromMetadata } from "@angular/compiler";
|
|
878
878
|
var PartialPipeLinkerVersion1 = class {
|
|
879
879
|
constructor() {
|
|
@@ -902,7 +902,7 @@ function toR3PipeMeta(metaObj) {
|
|
|
902
902
|
};
|
|
903
903
|
}
|
|
904
904
|
|
|
905
|
-
// bazel-out/
|
|
905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
|
|
906
906
|
var \u0275\u0275ngDeclareDirective = "\u0275\u0275ngDeclareDirective";
|
|
907
907
|
var \u0275\u0275ngDeclareClassMetadata = "\u0275\u0275ngDeclareClassMetadata";
|
|
908
908
|
var \u0275\u0275ngDeclareComponent = "\u0275\u0275ngDeclareComponent";
|
|
@@ -1004,7 +1004,7 @@ function getRange(comparator, versionStr) {
|
|
|
1004
1004
|
return new semver2.Range(`${comparator}${version.format()}`);
|
|
1005
1005
|
}
|
|
1006
1006
|
|
|
1007
|
-
// bazel-out/
|
|
1007
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
|
|
1008
1008
|
var FileLinker = class {
|
|
1009
1009
|
constructor(linkerEnvironment, sourceUrl, code) {
|
|
1010
1010
|
this.linkerEnvironment = linkerEnvironment;
|
|
@@ -1047,14 +1047,14 @@ var FileLinker = class {
|
|
|
1047
1047
|
}
|
|
1048
1048
|
};
|
|
1049
1049
|
|
|
1050
|
-
// bazel-out/
|
|
1050
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
|
|
1051
1051
|
var DEFAULT_LINKER_OPTIONS = {
|
|
1052
1052
|
sourceMapping: true,
|
|
1053
1053
|
linkerJitMode: false,
|
|
1054
1054
|
unknownDeclarationVersionHandling: "error"
|
|
1055
1055
|
};
|
|
1056
1056
|
|
|
1057
|
-
// bazel-out/
|
|
1057
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
|
|
1058
1058
|
var Translator = class {
|
|
1059
1059
|
constructor(factory) {
|
|
1060
1060
|
this.factory = factory;
|
|
@@ -1067,7 +1067,7 @@ var Translator = class {
|
|
|
1067
1067
|
}
|
|
1068
1068
|
};
|
|
1069
1069
|
|
|
1070
|
-
// bazel-out/
|
|
1070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
|
|
1071
1071
|
var LinkerEnvironment = class {
|
|
1072
1072
|
constructor(fileSystem, logger, host, factory, options) {
|
|
1073
1073
|
this.fileSystem = fileSystem;
|
|
@@ -1088,7 +1088,7 @@ var LinkerEnvironment = class {
|
|
|
1088
1088
|
}
|
|
1089
1089
|
};
|
|
1090
1090
|
|
|
1091
|
-
// bazel-out/
|
|
1091
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
|
|
1092
1092
|
function needsLinking(path, source) {
|
|
1093
1093
|
return declarationFunctions.some((fn) => source.includes(fn));
|
|
1094
1094
|
}
|
|
@@ -1109,4 +1109,4 @@ export {
|
|
|
1109
1109
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1110
1110
|
* found in the LICENSE file at https://angular.io/license
|
|
1111
1111
|
*/
|
|
1112
|
-
//# sourceMappingURL=chunk-
|
|
1112
|
+
//# sourceMappingURL=chunk-KBGMAHKE.js.map
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const require = __cjsCompatRequire(import.meta.url);
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
// bazel-out/
|
|
6
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
7
7
|
var LogLevel;
|
|
8
8
|
(function(LogLevel2) {
|
|
9
9
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -12,7 +12,7 @@ var LogLevel;
|
|
|
12
12
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
13
13
|
})(LogLevel || (LogLevel = {}));
|
|
14
14
|
|
|
15
|
-
// bazel-out/
|
|
15
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
16
16
|
var RESET = "\x1B[0m";
|
|
17
17
|
var RED = "\x1B[31m";
|
|
18
18
|
var YELLOW = "\x1B[33m";
|
|
@@ -53,4 +53,4 @@ export {
|
|
|
53
53
|
* Use of this source code is governed by an MIT-style license that can be
|
|
54
54
|
* found in the LICENSE file at https://angular.io/license
|
|
55
55
|
*/
|
|
56
|
-
//# sourceMappingURL=chunk-
|
|
56
|
+
//# sourceMappingURL=chunk-SBDNBITT.js.map
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
const require = __cjsCompatRequire(import.meta.url);
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
// bazel-out/
|
|
6
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
7
7
|
var OptimizeFor;
|
|
8
8
|
(function(OptimizeFor2) {
|
|
9
9
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
10
10
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
11
11
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
12
12
|
|
|
13
|
-
// bazel-out/
|
|
13
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
14
14
|
var PotentialImportKind;
|
|
15
15
|
(function(PotentialImportKind2) {
|
|
16
16
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -22,7 +22,7 @@ var PotentialImportMode;
|
|
|
22
22
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
23
23
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
24
24
|
|
|
25
|
-
// bazel-out/
|
|
25
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
26
26
|
var CompletionKind;
|
|
27
27
|
(function(CompletionKind2) {
|
|
28
28
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -30,7 +30,7 @@ var CompletionKind;
|
|
|
30
30
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
31
31
|
})(CompletionKind || (CompletionKind = {}));
|
|
32
32
|
|
|
33
|
-
// bazel-out/
|
|
33
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
34
34
|
var SymbolKind;
|
|
35
35
|
(function(SymbolKind2) {
|
|
36
36
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -61,4 +61,4 @@ export {
|
|
|
61
61
|
* Use of this source code is governed by an MIT-style license that can be
|
|
62
62
|
* found in the LICENSE file at https://angular.io/license
|
|
63
63
|
*/
|
|
64
|
-
//# sourceMappingURL=chunk-
|
|
64
|
+
//# sourceMappingURL=chunk-SFKDQKE5.js.map
|
|
@@ -12,12 +12,12 @@ import {
|
|
|
12
12
|
resolve,
|
|
13
13
|
stripExtension,
|
|
14
14
|
toRelativeImport
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-XNL3EK5H.js";
|
|
16
16
|
|
|
17
|
-
// bazel-out/
|
|
17
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18
18
|
import ts from "typescript";
|
|
19
19
|
|
|
20
|
-
// bazel-out/
|
|
20
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
21
21
|
var ErrorCode;
|
|
22
22
|
(function(ErrorCode2) {
|
|
23
23
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -110,7 +110,7 @@ var ErrorCode;
|
|
|
110
110
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
111
111
|
})(ErrorCode || (ErrorCode = {}));
|
|
112
112
|
|
|
113
|
-
// bazel-out/
|
|
113
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
114
114
|
var ERROR_CODE_MATCHER = /(\u001b\[\d+m ?)TS-99(\d+: ?\u001b\[\d+m)/g;
|
|
115
115
|
function replaceTsWithNgInErrors(errors) {
|
|
116
116
|
return errors.replace(ERROR_CODE_MATCHER, "$1NG$2");
|
|
@@ -119,7 +119,7 @@ function ngErrorCode(code) {
|
|
|
119
119
|
return parseInt("-99" + code);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
// bazel-out/
|
|
122
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
123
123
|
var FatalDiagnosticError = class extends Error {
|
|
124
124
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
125
125
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${ts.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -183,7 +183,7 @@ function isLocalCompilationDiagnostics(diagnostic) {
|
|
|
183
183
|
return diagnostic.code === ngErrorCode(ErrorCode.LOCAL_COMPILATION_UNRESOLVED_CONST) || diagnostic.code === ngErrorCode(ErrorCode.LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION);
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
// bazel-out/
|
|
186
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
187
187
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
188
188
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
189
189
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -195,10 +195,10 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
195
195
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
196
196
|
]);
|
|
197
197
|
|
|
198
|
-
// bazel-out/
|
|
198
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
199
199
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
200
200
|
|
|
201
|
-
// bazel-out/
|
|
201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
202
202
|
var ExtendedTemplateDiagnosticName;
|
|
203
203
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
204
204
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -213,10 +213,10 @@ var ExtendedTemplateDiagnosticName;
|
|
|
213
213
|
ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
|
|
214
214
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
215
215
|
|
|
216
|
-
// bazel-out/
|
|
216
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
217
217
|
import ts5 from "typescript";
|
|
218
218
|
|
|
219
|
-
// bazel-out/
|
|
219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
220
220
|
import ts2 from "typescript";
|
|
221
221
|
function isDecoratorIdentifier(exp) {
|
|
222
222
|
return ts2.isIdentifier(exp) || ts2.isPropertyAccessExpression(exp) && ts2.isIdentifier(exp.expression) && ts2.isIdentifier(exp.name);
|
|
@@ -239,7 +239,7 @@ var ClassMemberAccessLevel;
|
|
|
239
239
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
240
240
|
var AmbientImport = {};
|
|
241
241
|
|
|
242
|
-
// bazel-out/
|
|
242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
243
243
|
import ts3 from "typescript";
|
|
244
244
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
245
245
|
var _a, _b;
|
|
@@ -412,7 +412,7 @@ function extractModuleName(node) {
|
|
|
412
412
|
return node.moduleSpecifier.text;
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
-
// bazel-out/
|
|
415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
416
416
|
import ts4 from "typescript";
|
|
417
417
|
function isNamedClassDeclaration(node) {
|
|
418
418
|
return ts4.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -436,7 +436,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
436
436
|
}
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
// bazel-out/
|
|
439
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
440
440
|
var TypeScriptReflectionHost = class {
|
|
441
441
|
constructor(checker, isLocalCompilation = false) {
|
|
442
442
|
this.checker = checker;
|
|
@@ -924,7 +924,7 @@ function getExportedName(decl, originalId) {
|
|
|
924
924
|
}
|
|
925
925
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
926
926
|
|
|
927
|
-
// bazel-out/
|
|
927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
928
928
|
import ts6 from "typescript";
|
|
929
929
|
var TS = /\.tsx?$/i;
|
|
930
930
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -1025,7 +1025,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
1025
1025
|
return redirectInfo.unredirected;
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
1028
|
-
// bazel-out/
|
|
1028
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
1029
1029
|
var Reference = class {
|
|
1030
1030
|
constructor(node, bestGuessOwningModule = null) {
|
|
1031
1031
|
this.node = node;
|
|
@@ -1094,14 +1094,14 @@ var Reference = class {
|
|
|
1094
1094
|
}
|
|
1095
1095
|
};
|
|
1096
1096
|
|
|
1097
|
-
// bazel-out/
|
|
1097
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
1098
1098
|
import { ExternalExpr as ExternalExpr2 } from "@angular/compiler";
|
|
1099
1099
|
|
|
1100
|
-
// bazel-out/
|
|
1100
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
1101
1101
|
import { ExternalExpr, ExternalReference, WrappedNodeExpr } from "@angular/compiler";
|
|
1102
1102
|
import ts7 from "typescript";
|
|
1103
1103
|
|
|
1104
|
-
// bazel-out/
|
|
1104
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
1105
1105
|
function findExportedNameOfNode(target, file, reflector) {
|
|
1106
1106
|
const exports = reflector.getExportsOfModule(file);
|
|
1107
1107
|
if (exports === null) {
|
|
@@ -1121,7 +1121,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
1121
1121
|
return foundExportName;
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
|
-
// bazel-out/
|
|
1124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
1125
1125
|
var ImportFlags;
|
|
1126
1126
|
(function(ImportFlags2) {
|
|
1127
1127
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -1352,7 +1352,7 @@ var UnifiedModulesStrategy = class {
|
|
|
1352
1352
|
}
|
|
1353
1353
|
};
|
|
1354
1354
|
|
|
1355
|
-
// bazel-out/
|
|
1355
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
1356
1356
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
1357
1357
|
var UnifiedModulesAliasingHost = class {
|
|
1358
1358
|
constructor(unifiedModulesHost) {
|
|
@@ -1419,7 +1419,7 @@ var AliasStrategy = class {
|
|
|
1419
1419
|
}
|
|
1420
1420
|
};
|
|
1421
1421
|
|
|
1422
|
-
// bazel-out/
|
|
1422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
1423
1423
|
function relativePathBetween(from, to) {
|
|
1424
1424
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
1425
1425
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -1428,7 +1428,7 @@ function normalizeSeparators(path) {
|
|
|
1428
1428
|
return path.replace(/\\/g, "/");
|
|
1429
1429
|
}
|
|
1430
1430
|
|
|
1431
|
-
// bazel-out/
|
|
1431
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
1432
1432
|
var NoopImportRewriter = class {
|
|
1433
1433
|
rewriteSymbol(symbol, specifier) {
|
|
1434
1434
|
return symbol;
|
|
@@ -1481,7 +1481,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
1481
1481
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
1482
1482
|
}
|
|
1483
1483
|
|
|
1484
|
-
// bazel-out/
|
|
1484
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
1485
1485
|
import ts8 from "typescript";
|
|
1486
1486
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
1487
1487
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -1516,7 +1516,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
1516
1516
|
throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
|
|
1517
1517
|
}
|
|
1518
1518
|
|
|
1519
|
-
// bazel-out/
|
|
1519
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
1520
1520
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
1521
1521
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
1522
1522
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -1557,7 +1557,7 @@ var DefaultImportTracker = class {
|
|
|
1557
1557
|
}
|
|
1558
1558
|
};
|
|
1559
1559
|
|
|
1560
|
-
// bazel-out/
|
|
1560
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
1561
1561
|
import ts9 from "typescript";
|
|
1562
1562
|
var AssumeEager = "AssumeEager";
|
|
1563
1563
|
var DeferredSymbolTracker = class {
|
|
@@ -1678,7 +1678,7 @@ var DeferredSymbolTracker = class {
|
|
|
1678
1678
|
}
|
|
1679
1679
|
};
|
|
1680
1680
|
|
|
1681
|
-
// bazel-out/
|
|
1681
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
1682
1682
|
import ts10 from "typescript";
|
|
1683
1683
|
var ImportedSymbolsTracker = class {
|
|
1684
1684
|
constructor() {
|
|
@@ -1748,7 +1748,7 @@ var ImportedSymbolsTracker = class {
|
|
|
1748
1748
|
}
|
|
1749
1749
|
};
|
|
1750
1750
|
|
|
1751
|
-
// bazel-out/
|
|
1751
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
1752
1752
|
import ts11 from "typescript";
|
|
1753
1753
|
var LocalCompilationExtraImportsTracker = class {
|
|
1754
1754
|
constructor(typeChecker) {
|
|
@@ -1792,7 +1792,7 @@ function removeQuotations(s) {
|
|
|
1792
1792
|
return s.substring(1, s.length - 1).trim();
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
|
-
// bazel-out/
|
|
1795
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
1796
1796
|
var ModuleResolver = class {
|
|
1797
1797
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
1798
1798
|
this.program = program;
|
|
@@ -1809,10 +1809,10 @@ var ModuleResolver = class {
|
|
|
1809
1809
|
}
|
|
1810
1810
|
};
|
|
1811
1811
|
|
|
1812
|
-
// bazel-out/
|
|
1812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
1813
1813
|
import ts16 from "typescript";
|
|
1814
1814
|
|
|
1815
|
-
// bazel-out/
|
|
1815
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
1816
1816
|
import ts12 from "typescript";
|
|
1817
1817
|
function createGenerateUniqueIdentifierHelper() {
|
|
1818
1818
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -1836,7 +1836,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
1836
1836
|
};
|
|
1837
1837
|
}
|
|
1838
1838
|
|
|
1839
|
-
// bazel-out/
|
|
1839
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
1840
1840
|
import ts13 from "typescript";
|
|
1841
1841
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
1842
1842
|
return (ctx) => {
|
|
@@ -1897,7 +1897,7 @@ function isImportStatement(stmt) {
|
|
|
1897
1897
|
return ts13.isImportDeclaration(stmt) || ts13.isImportEqualsDeclaration(stmt) || ts13.isNamespaceImport(stmt);
|
|
1898
1898
|
}
|
|
1899
1899
|
|
|
1900
|
-
// bazel-out/
|
|
1900
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
1901
1901
|
import ts14 from "typescript";
|
|
1902
1902
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
1903
1903
|
const requestHash = hashImportRequest(request);
|
|
@@ -1924,7 +1924,7 @@ function hashImportRequest(req) {
|
|
|
1924
1924
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
|
|
1925
1925
|
}
|
|
1926
1926
|
|
|
1927
|
-
// bazel-out/
|
|
1927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
1928
1928
|
import ts15 from "typescript";
|
|
1929
1929
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
1930
1930
|
let candidateImportToBeUpdated = null;
|
|
@@ -1977,7 +1977,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
1977
1977
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
|
-
// bazel-out/
|
|
1980
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
1981
1981
|
var presetImportManagerForceNamespaceImports = {
|
|
1982
1982
|
disableOriginalSourceFileReuse: true,
|
|
1983
1983
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -2127,7 +2127,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
2127
2127
|
}
|
|
2128
2128
|
}
|
|
2129
2129
|
|
|
2130
|
-
// bazel-out/
|
|
2130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
2131
2131
|
var Context = class {
|
|
2132
2132
|
constructor(isStatement) {
|
|
2133
2133
|
this.isStatement = isStatement;
|
|
@@ -2140,7 +2140,7 @@ var Context = class {
|
|
|
2140
2140
|
}
|
|
2141
2141
|
};
|
|
2142
2142
|
|
|
2143
|
-
// bazel-out/
|
|
2143
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
2144
2144
|
import * as o from "@angular/compiler";
|
|
2145
2145
|
var UNARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
2146
2146
|
[o.UnaryOperator.Minus, "-"],
|
|
@@ -2386,7 +2386,7 @@ function createRange(span) {
|
|
|
2386
2386
|
};
|
|
2387
2387
|
}
|
|
2388
2388
|
|
|
2389
|
-
// bazel-out/
|
|
2389
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
2390
2390
|
import ts17 from "typescript";
|
|
2391
2391
|
var INELIGIBLE = {};
|
|
2392
2392
|
function canEmitType(type, canEmit) {
|
|
@@ -2461,11 +2461,11 @@ var TypeEmitter = class {
|
|
|
2461
2461
|
}
|
|
2462
2462
|
};
|
|
2463
2463
|
|
|
2464
|
-
// bazel-out/
|
|
2464
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
2465
2465
|
import * as o2 from "@angular/compiler";
|
|
2466
2466
|
import ts19 from "typescript";
|
|
2467
2467
|
|
|
2468
|
-
// bazel-out/
|
|
2468
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
2469
2469
|
import ts18 from "typescript";
|
|
2470
2470
|
function tsNumericExpression(value) {
|
|
2471
2471
|
if (value < 0) {
|
|
@@ -2475,7 +2475,7 @@ function tsNumericExpression(value) {
|
|
|
2475
2475
|
return ts18.factory.createNumericLiteral(value);
|
|
2476
2476
|
}
|
|
2477
2477
|
|
|
2478
|
-
// bazel-out/
|
|
2478
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
2479
2479
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
2480
2480
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
2481
2481
|
}
|
|
@@ -2692,7 +2692,7 @@ var TypeTranslatorVisitor = class {
|
|
|
2692
2692
|
}
|
|
2693
2693
|
};
|
|
2694
2694
|
|
|
2695
|
-
// bazel-out/
|
|
2695
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
2696
2696
|
import ts20 from "typescript";
|
|
2697
2697
|
var PureAnnotation;
|
|
2698
2698
|
(function(PureAnnotation2) {
|
|
@@ -2895,7 +2895,7 @@ function attachComments(statement, leadingComments) {
|
|
|
2895
2895
|
}
|
|
2896
2896
|
}
|
|
2897
2897
|
|
|
2898
|
-
// bazel-out/
|
|
2898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
2899
2899
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
2900
2900
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
2901
2901
|
}
|
|
@@ -2992,4 +2992,4 @@ export {
|
|
|
2992
2992
|
* Use of this source code is governed by an MIT-style license that can be
|
|
2993
2993
|
* found in the LICENSE file at https://angular.io/license
|
|
2994
2994
|
*/
|
|
2995
|
-
//# sourceMappingURL=chunk-
|
|
2995
|
+
//# sourceMappingURL=chunk-VE7PCF6B.js.map
|