@angular/core 15.2.5 → 15.2.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/esm2020/src/linker/component_factory.mjs +1 -1
- package/esm2020/src/linker/view_container_ref.mjs +2 -2
- package/esm2020/src/linker/view_ref.mjs +2 -2
- package/esm2020/src/render3/hooks.mjs +13 -14
- package/esm2020/src/render3/instructions/shared.mjs +4 -4
- package/esm2020/src/render3/pipe.mjs +2 -2
- package/esm2020/src/sanitization/url_sanitizer.mjs +7 -6
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/fake_async.mjs +2 -2
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +31 -26
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +31 -26
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +26 -26
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +26 -26
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
- package/schematics/migrations/relative-link-resolution/bundle.js +7 -7
- package/schematics/migrations/router-link-with-href/bundle.js +10 -10
- package/schematics/ng-generate/standalone-migration/bundle.js +323 -323
- package/schematics/ng-generate/standalone-migration/bundle.js.map +1 -1
- package/testing/index.d.ts +2 -2
|
@@ -59,7 +59,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
59
59
|
});
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
// bazel-out/
|
|
62
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
63
63
|
var standalone_migration_exports = {};
|
|
64
64
|
__export(standalone_migration_exports, {
|
|
65
65
|
default: () => standalone_migration_default
|
|
@@ -67,10 +67,10 @@ __export(standalone_migration_exports, {
|
|
|
67
67
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
68
68
|
var import_schematics = require("@angular-devkit/schematics");
|
|
69
69
|
|
|
70
|
-
// bazel-out/
|
|
70
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
71
71
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
72
72
|
|
|
73
|
-
// bazel-out/
|
|
73
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
74
74
|
var InvalidFileSystem = class {
|
|
75
75
|
exists(path3) {
|
|
76
76
|
throw makeError();
|
|
@@ -158,7 +158,7 @@ function makeError() {
|
|
|
158
158
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
159
159
|
}
|
|
160
160
|
|
|
161
|
-
// bazel-out/
|
|
161
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
162
162
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
163
163
|
function stripExtension(path3) {
|
|
164
164
|
return path3.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -171,7 +171,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
171
171
|
return sf;
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
-
// bazel-out/
|
|
174
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
175
175
|
var fs = new InvalidFileSystem();
|
|
176
176
|
function getFileSystem() {
|
|
177
177
|
return fs;
|
|
@@ -218,7 +218,7 @@ function toRelativeImport(relativePath) {
|
|
|
218
218
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
// bazel-out/
|
|
221
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
222
222
|
var LogicalProjectPath = {
|
|
223
223
|
relativePathBetween: function(from, to) {
|
|
224
224
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -264,7 +264,7 @@ function isWithinBasePath(base, path3) {
|
|
|
264
264
|
return isLocalRelativePath(relative(base, path3));
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// bazel-out/
|
|
267
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
268
268
|
var import_fs = __toESM(require("fs"), 1);
|
|
269
269
|
var import_module = __toESM(require("module"), 1);
|
|
270
270
|
var p = __toESM(require("path"), 1);
|
|
@@ -372,7 +372,7 @@ function toggleCase(str) {
|
|
|
372
372
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
-
// bazel-out/
|
|
375
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
376
376
|
var _SELECTOR_REGEXP = new RegExp(
|
|
377
377
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
378
378
|
"g"
|
|
@@ -680,7 +680,7 @@ var SelectorContext = class {
|
|
|
680
680
|
}
|
|
681
681
|
};
|
|
682
682
|
|
|
683
|
-
// bazel-out/
|
|
683
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/core.mjs
|
|
684
684
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
685
685
|
var ViewEncapsulation;
|
|
686
686
|
(function(ViewEncapsulation2) {
|
|
@@ -743,7 +743,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
743
743
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
// bazel-out/
|
|
746
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
|
|
747
747
|
var BigInteger = class {
|
|
748
748
|
static zero() {
|
|
749
749
|
return new BigInteger([0]);
|
|
@@ -835,7 +835,7 @@ var BigIntExponentiation = class {
|
|
|
835
835
|
}
|
|
836
836
|
};
|
|
837
837
|
|
|
838
|
-
// bazel-out/
|
|
838
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
839
839
|
var textEncoder;
|
|
840
840
|
function digest(message) {
|
|
841
841
|
return message.id || computeDigest(message);
|
|
@@ -1098,7 +1098,7 @@ function wordsToDecimalString(hi, lo) {
|
|
|
1098
1098
|
return decimal.toString();
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
|
-
// bazel-out/
|
|
1101
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1102
1102
|
var TypeModifier;
|
|
1103
1103
|
(function(TypeModifier2) {
|
|
1104
1104
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -1925,7 +1925,7 @@ function serializeTags(tags) {
|
|
|
1925
1925
|
return out;
|
|
1926
1926
|
}
|
|
1927
1927
|
|
|
1928
|
-
// bazel-out/
|
|
1928
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1929
1929
|
var CONSTANT_PREFIX = "_c";
|
|
1930
1930
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1931
1931
|
var KEY_CONTEXT = {};
|
|
@@ -2093,7 +2093,7 @@ function isLongStringLiteral(expr) {
|
|
|
2093
2093
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2094
2094
|
}
|
|
2095
2095
|
|
|
2096
|
-
// bazel-out/
|
|
2096
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2097
2097
|
var CORE = "@angular/core";
|
|
2098
2098
|
var Identifiers = class {
|
|
2099
2099
|
};
|
|
@@ -2297,7 +2297,7 @@ Identifiers.trustConstantHtml = { name: "\u0275\u0275trustConstantHtml", moduleN
|
|
|
2297
2297
|
Identifiers.trustConstantResourceUrl = { name: "\u0275\u0275trustConstantResourceUrl", moduleName: CORE };
|
|
2298
2298
|
Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
|
|
2299
2299
|
|
|
2300
|
-
// bazel-out/
|
|
2300
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2301
2301
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2302
2302
|
function dashCaseToCamelCase(input) {
|
|
2303
2303
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2385,7 +2385,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
2385
2385
|
return [truthy, falsy];
|
|
2386
2386
|
}
|
|
2387
2387
|
|
|
2388
|
-
// bazel-out/
|
|
2388
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2389
2389
|
var VERSION = 3;
|
|
2390
2390
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2391
2391
|
var SourceMapGenerator = class {
|
|
@@ -2514,7 +2514,7 @@ function toBase64Digit(value) {
|
|
|
2514
2514
|
return B64_DIGITS[value];
|
|
2515
2515
|
}
|
|
2516
2516
|
|
|
2517
|
-
// bazel-out/
|
|
2517
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2518
2518
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2519
2519
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2520
2520
|
var _INDENT_WITH = " ";
|
|
@@ -2989,7 +2989,7 @@ function _createIndent(count) {
|
|
|
2989
2989
|
return res;
|
|
2990
2990
|
}
|
|
2991
2991
|
|
|
2992
|
-
// bazel-out/
|
|
2992
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
2993
2993
|
function typeWithParameters(type, numParams) {
|
|
2994
2994
|
if (numParams === 0) {
|
|
2995
2995
|
return expressionType(type);
|
|
@@ -3057,7 +3057,7 @@ function generateForwardRef(expr) {
|
|
|
3057
3057
|
return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
|
|
3058
3058
|
}
|
|
3059
3059
|
|
|
3060
|
-
// bazel-out/
|
|
3060
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3061
3061
|
var R3FactoryDelegateType;
|
|
3062
3062
|
(function(R3FactoryDelegateType2) {
|
|
3063
3063
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3202,7 +3202,7 @@ function getInjectFn(target) {
|
|
|
3202
3202
|
}
|
|
3203
3203
|
}
|
|
3204
3204
|
|
|
3205
|
-
// bazel-out/
|
|
3205
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3206
3206
|
var Comment = class {
|
|
3207
3207
|
constructor(value, sourceSpan) {
|
|
3208
3208
|
this.value = value;
|
|
@@ -3424,7 +3424,7 @@ function visitAll(visitor, nodes) {
|
|
|
3424
3424
|
return result;
|
|
3425
3425
|
}
|
|
3426
3426
|
|
|
3427
|
-
// bazel-out/
|
|
3427
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
3428
3428
|
var Message = class {
|
|
3429
3429
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
3430
3430
|
this.nodes = nodes;
|
|
@@ -3587,7 +3587,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
3587
3587
|
}
|
|
3588
3588
|
};
|
|
3589
3589
|
|
|
3590
|
-
// bazel-out/
|
|
3590
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
3591
3591
|
var Serializer = class {
|
|
3592
3592
|
createNameMapper(message) {
|
|
3593
3593
|
return null;
|
|
@@ -3639,7 +3639,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
3639
3639
|
}
|
|
3640
3640
|
};
|
|
3641
3641
|
|
|
3642
|
-
// bazel-out/
|
|
3642
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
3643
3643
|
var _Visitor = class {
|
|
3644
3644
|
visitTag(tag) {
|
|
3645
3645
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -3727,7 +3727,7 @@ function escapeXml(text) {
|
|
|
3727
3727
|
return _ESCAPED_CHARS.reduce((text2, entry) => text2.replace(entry[0], entry[1]), text);
|
|
3728
3728
|
}
|
|
3729
3729
|
|
|
3730
|
-
// bazel-out/
|
|
3730
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
3731
3731
|
var _MESSAGES_TAG = "messagebundle";
|
|
3732
3732
|
var _MESSAGE_TAG = "msg";
|
|
3733
3733
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -3870,7 +3870,7 @@ function toPublicName(internalName) {
|
|
|
3870
3870
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
3871
3871
|
}
|
|
3872
3872
|
|
|
3873
|
-
// bazel-out/
|
|
3873
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
3874
3874
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
3875
3875
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
3876
3876
|
var I18N_ATTR = "i18n";
|
|
@@ -3972,7 +3972,7 @@ function declareI18nVariable(variable2) {
|
|
|
3972
3972
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
3973
3973
|
}
|
|
3974
3974
|
|
|
3975
|
-
// bazel-out/
|
|
3975
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
3976
3976
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
3977
3977
|
var TEMPORARY_NAME = "_t";
|
|
3978
3978
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4178,7 +4178,7 @@ function getInstructionStatements(instructions) {
|
|
|
4178
4178
|
return statements;
|
|
4179
4179
|
}
|
|
4180
4180
|
|
|
4181
|
-
// bazel-out/
|
|
4181
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4182
4182
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4183
4183
|
let result = null;
|
|
4184
4184
|
const factoryMeta = {
|
|
@@ -4267,7 +4267,7 @@ function createFactoryFunction(type) {
|
|
|
4267
4267
|
return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
|
|
4268
4268
|
}
|
|
4269
4269
|
|
|
4270
|
-
// bazel-out/
|
|
4270
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4271
4271
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4272
4272
|
/^\s*$/,
|
|
4273
4273
|
/[<>]/,
|
|
@@ -4289,7 +4289,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4289
4289
|
}
|
|
4290
4290
|
}
|
|
4291
4291
|
|
|
4292
|
-
// bazel-out/
|
|
4292
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
|
|
4293
4293
|
var InterpolationConfig = class {
|
|
4294
4294
|
static fromArray(markers) {
|
|
4295
4295
|
if (!markers) {
|
|
@@ -4305,7 +4305,7 @@ var InterpolationConfig = class {
|
|
|
4305
4305
|
};
|
|
4306
4306
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4307
4307
|
|
|
4308
|
-
// bazel-out/
|
|
4308
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4309
4309
|
var $EOF = 0;
|
|
4310
4310
|
var $BSPACE = 8;
|
|
4311
4311
|
var $TAB = 9;
|
|
@@ -4386,7 +4386,7 @@ function isQuote(code) {
|
|
|
4386
4386
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4387
4387
|
}
|
|
4388
4388
|
|
|
4389
|
-
// bazel-out/
|
|
4389
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4390
4390
|
var ParseLocation = class {
|
|
4391
4391
|
constructor(file, offset, line, col) {
|
|
4392
4392
|
this.file = file;
|
|
@@ -4533,7 +4533,7 @@ function sanitizeIdentifier(name) {
|
|
|
4533
4533
|
return name.replace(/\W/g, "_");
|
|
4534
4534
|
}
|
|
4535
4535
|
|
|
4536
|
-
// bazel-out/
|
|
4536
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
4537
4537
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
4538
4538
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
4539
4539
|
constructor() {
|
|
@@ -4604,7 +4604,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
4604
4604
|
}
|
|
4605
4605
|
};
|
|
4606
4606
|
|
|
4607
|
-
// bazel-out/
|
|
4607
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
4608
4608
|
var policy;
|
|
4609
4609
|
function getPolicy() {
|
|
4610
4610
|
if (policy === void 0) {
|
|
@@ -4641,7 +4641,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
4641
4641
|
return fn2.bind(_global);
|
|
4642
4642
|
}
|
|
4643
4643
|
|
|
4644
|
-
// bazel-out/
|
|
4644
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
4645
4645
|
var JitEvaluator = class {
|
|
4646
4646
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
4647
4647
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -4732,7 +4732,7 @@ function isUseStrictStatement(statement) {
|
|
|
4732
4732
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
4733
4733
|
}
|
|
4734
4734
|
|
|
4735
|
-
// bazel-out/
|
|
4735
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
4736
4736
|
function compileInjector(meta) {
|
|
4737
4737
|
const definitionMap = new DefinitionMap();
|
|
4738
4738
|
if (meta.providers !== null) {
|
|
@@ -4749,7 +4749,7 @@ function createInjectorType(meta) {
|
|
|
4749
4749
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
4750
4750
|
}
|
|
4751
4751
|
|
|
4752
|
-
// bazel-out/
|
|
4752
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
4753
4753
|
var R3JitReflector = class {
|
|
4754
4754
|
constructor(context) {
|
|
4755
4755
|
this.context = context;
|
|
@@ -4765,7 +4765,7 @@ var R3JitReflector = class {
|
|
|
4765
4765
|
}
|
|
4766
4766
|
};
|
|
4767
4767
|
|
|
4768
|
-
// bazel-out/
|
|
4768
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
4769
4769
|
var R3SelectorScopeMode;
|
|
4770
4770
|
(function(R3SelectorScopeMode2) {
|
|
4771
4771
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -4878,7 +4878,7 @@ function tupleOfTypes(types) {
|
|
|
4878
4878
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
4879
4879
|
}
|
|
4880
4880
|
|
|
4881
|
-
// bazel-out/
|
|
4881
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
4882
4882
|
function compilePipeFromMetadata(metadata) {
|
|
4883
4883
|
const definitionMapValues = [];
|
|
4884
4884
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -4899,7 +4899,7 @@ function createPipeType(metadata) {
|
|
|
4899
4899
|
]));
|
|
4900
4900
|
}
|
|
4901
4901
|
|
|
4902
|
-
// bazel-out/
|
|
4902
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
4903
4903
|
var R3TemplateDependencyKind;
|
|
4904
4904
|
(function(R3TemplateDependencyKind2) {
|
|
4905
4905
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -4907,7 +4907,7 @@ var R3TemplateDependencyKind;
|
|
|
4907
4907
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
4908
4908
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
4909
4909
|
|
|
4910
|
-
// bazel-out/
|
|
4910
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
4911
4911
|
var ParserError = class {
|
|
4912
4912
|
constructor(message, input, errLocation, ctxLocation) {
|
|
4913
4913
|
this.input = input;
|
|
@@ -5573,7 +5573,7 @@ var BoundElementProperty = class {
|
|
|
5573
5573
|
}
|
|
5574
5574
|
};
|
|
5575
5575
|
|
|
5576
|
-
// bazel-out/
|
|
5576
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
5577
5577
|
var EventHandlerVars = class {
|
|
5578
5578
|
};
|
|
5579
5579
|
EventHandlerVars.event = variable("$event");
|
|
@@ -6191,7 +6191,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6191
6191
|
}
|
|
6192
6192
|
};
|
|
6193
6193
|
|
|
6194
|
-
// bazel-out/
|
|
6194
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6195
6195
|
var _SECURITY_SCHEMA;
|
|
6196
6196
|
function SECURITY_SCHEMA() {
|
|
6197
6197
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6249,7 +6249,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6249
6249
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6250
6250
|
}
|
|
6251
6251
|
|
|
6252
|
-
// bazel-out/
|
|
6252
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6253
6253
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6254
6254
|
"inherit",
|
|
6255
6255
|
"initial",
|
|
@@ -6709,7 +6709,7 @@ function repeatGroups(groups, multiples) {
|
|
|
6709
6709
|
}
|
|
6710
6710
|
}
|
|
6711
6711
|
|
|
6712
|
-
// bazel-out/
|
|
6712
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
6713
6713
|
function parse(value) {
|
|
6714
6714
|
const styles = [];
|
|
6715
6715
|
let i = 0;
|
|
@@ -6770,7 +6770,7 @@ function hyphenate(value) {
|
|
|
6770
6770
|
}).toLowerCase();
|
|
6771
6771
|
}
|
|
6772
6772
|
|
|
6773
|
-
// bazel-out/
|
|
6773
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
6774
6774
|
var IMPORTANT_FLAG = "!important";
|
|
6775
6775
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
6776
6776
|
var StylingBuilder = class {
|
|
@@ -7103,7 +7103,7 @@ function isEmptyExpression(ast) {
|
|
|
7103
7103
|
return ast instanceof EmptyExpr;
|
|
7104
7104
|
}
|
|
7105
7105
|
|
|
7106
|
-
// bazel-out/
|
|
7106
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
7107
7107
|
var TokenType;
|
|
7108
7108
|
(function(TokenType2) {
|
|
7109
7109
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -7464,7 +7464,7 @@ function parseIntAutoRadix(text) {
|
|
|
7464
7464
|
return result;
|
|
7465
7465
|
}
|
|
7466
7466
|
|
|
7467
|
-
// bazel-out/
|
|
7467
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
7468
7468
|
var SplitInterpolation = class {
|
|
7469
7469
|
constructor(strings, expressions, offsets) {
|
|
7470
7470
|
this.strings = strings;
|
|
@@ -8358,7 +8358,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
8358
8358
|
return offsetMap;
|
|
8359
8359
|
}
|
|
8360
8360
|
|
|
8361
|
-
// bazel-out/
|
|
8361
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
8362
8362
|
var NodeWithI18n = class {
|
|
8363
8363
|
constructor(sourceSpan, i18n) {
|
|
8364
8364
|
this.sourceSpan = sourceSpan;
|
|
@@ -8446,7 +8446,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
8446
8446
|
return result;
|
|
8447
8447
|
}
|
|
8448
8448
|
|
|
8449
|
-
// bazel-out/
|
|
8449
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
8450
8450
|
var TagContentType;
|
|
8451
8451
|
(function(TagContentType2) {
|
|
8452
8452
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -8479,11 +8479,11 @@ function mergeNsAndName(prefix, localName) {
|
|
|
8479
8479
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
8480
8480
|
}
|
|
8481
8481
|
|
|
8482
|
-
// bazel-out/
|
|
8482
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
8483
8483
|
var ElementSchemaRegistry = class {
|
|
8484
8484
|
};
|
|
8485
8485
|
|
|
8486
|
-
// bazel-out/
|
|
8486
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
8487
8487
|
var BOOLEAN = "boolean";
|
|
8488
8488
|
var NUMBER = "number";
|
|
8489
8489
|
var STRING = "string";
|
|
@@ -8836,7 +8836,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
8836
8836
|
}
|
|
8837
8837
|
}
|
|
8838
8838
|
|
|
8839
|
-
// bazel-out/
|
|
8839
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
8840
8840
|
var HtmlTagDefinition = class {
|
|
8841
8841
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
8842
8842
|
this.closedByChildren = {};
|
|
@@ -8954,7 +8954,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
8954
8954
|
return (_b = (_a = TAG_DEFINITIONS[tagName]) != null ? _a : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
|
|
8955
8955
|
}
|
|
8956
8956
|
|
|
8957
|
-
// bazel-out/
|
|
8957
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
8958
8958
|
var NAMED_ENTITIES = {
|
|
8959
8959
|
"AElig": "\xC6",
|
|
8960
8960
|
"AMP": "&",
|
|
@@ -11085,7 +11085,7 @@ var NAMED_ENTITIES = {
|
|
|
11085
11085
|
var NGSP_UNICODE = "\uE500";
|
|
11086
11086
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
11087
11087
|
|
|
11088
|
-
// bazel-out/
|
|
11088
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
11089
11089
|
var TokenError = class extends ParseError {
|
|
11090
11090
|
constructor(errorMsg, tokenType, span) {
|
|
11091
11091
|
super(span, errorMsg);
|
|
@@ -11920,7 +11920,7 @@ var CursorError = class {
|
|
|
11920
11920
|
}
|
|
11921
11921
|
};
|
|
11922
11922
|
|
|
11923
|
-
// bazel-out/
|
|
11923
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
11924
11924
|
var TreeError = class extends ParseError {
|
|
11925
11925
|
static create(elementName, span, msg) {
|
|
11926
11926
|
return new TreeError(elementName, span, msg);
|
|
@@ -12247,7 +12247,7 @@ function decodeEntity(match, entity) {
|
|
|
12247
12247
|
return match;
|
|
12248
12248
|
}
|
|
12249
12249
|
|
|
12250
|
-
// bazel-out/
|
|
12250
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
12251
12251
|
var HtmlParser = class extends Parser2 {
|
|
12252
12252
|
constructor() {
|
|
12253
12253
|
super(getHtmlTagDefinition);
|
|
@@ -12257,7 +12257,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
12257
12257
|
}
|
|
12258
12258
|
};
|
|
12259
12259
|
|
|
12260
|
-
// bazel-out/
|
|
12260
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
12261
12261
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
12262
12262
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
12263
12263
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -12317,7 +12317,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
12317
12317
|
return result;
|
|
12318
12318
|
}
|
|
12319
12319
|
|
|
12320
|
-
// bazel-out/
|
|
12320
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12321
12321
|
function mapLiteral(obj, quoted = false) {
|
|
12322
12322
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12323
12323
|
key,
|
|
@@ -12326,7 +12326,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12326
12326
|
})));
|
|
12327
12327
|
}
|
|
12328
12328
|
|
|
12329
|
-
// bazel-out/
|
|
12329
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
12330
12330
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
12331
12331
|
"iframe|srcdoc",
|
|
12332
12332
|
"*|innerhtml",
|
|
@@ -12341,7 +12341,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
12341
12341
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
12342
12342
|
}
|
|
12343
12343
|
|
|
12344
|
-
// bazel-out/
|
|
12344
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
12345
12345
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
12346
12346
|
var ATTRIBUTE_PREFIX = "attr";
|
|
12347
12347
|
var CLASS_PREFIX = "class";
|
|
@@ -12661,7 +12661,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
12661
12661
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
12662
12662
|
}
|
|
12663
12663
|
|
|
12664
|
-
// bazel-out/
|
|
12664
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
12665
12665
|
function isStyleUrlResolvable(url) {
|
|
12666
12666
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
12667
12667
|
return false;
|
|
@@ -12670,7 +12670,7 @@ function isStyleUrlResolvable(url) {
|
|
|
12670
12670
|
}
|
|
12671
12671
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
12672
12672
|
|
|
12673
|
-
// bazel-out/
|
|
12673
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
12674
12674
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
12675
12675
|
var LINK_ELEMENT = "link";
|
|
12676
12676
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -12740,7 +12740,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
12740
12740
|
return selectAttr;
|
|
12741
12741
|
}
|
|
12742
12742
|
|
|
12743
|
-
// bazel-out/
|
|
12743
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
12744
12744
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
12745
12745
|
var KW_BIND_IDX = 1;
|
|
12746
12746
|
var KW_LET_IDX = 2;
|
|
@@ -13088,7 +13088,7 @@ function textContents(node) {
|
|
|
13088
13088
|
}
|
|
13089
13089
|
}
|
|
13090
13090
|
|
|
13091
|
-
// bazel-out/
|
|
13091
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
13092
13092
|
var TagType;
|
|
13093
13093
|
(function(TagType2) {
|
|
13094
13094
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -13223,7 +13223,7 @@ function serializePlaceholderValue(value) {
|
|
|
13223
13223
|
}
|
|
13224
13224
|
}
|
|
13225
13225
|
|
|
13226
|
-
// bazel-out/
|
|
13226
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
13227
13227
|
var IcuSerializerVisitor = class {
|
|
13228
13228
|
visitText(text) {
|
|
13229
13229
|
return text.value;
|
|
@@ -13254,7 +13254,7 @@ function serializeIcuNode(icu) {
|
|
|
13254
13254
|
return icu.visit(serializer);
|
|
13255
13255
|
}
|
|
13256
13256
|
|
|
13257
|
-
// bazel-out/
|
|
13257
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
13258
13258
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
13259
13259
|
"A": "LINK",
|
|
13260
13260
|
"B": "BOLD_TEXT",
|
|
@@ -13348,7 +13348,7 @@ var PlaceholderRegistry = class {
|
|
|
13348
13348
|
}
|
|
13349
13349
|
};
|
|
13350
13350
|
|
|
13351
|
-
// bazel-out/
|
|
13351
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
13352
13352
|
var _expParser = new Parser(new Lexer());
|
|
13353
13353
|
function createI18nMessageFactory(interpolationConfig) {
|
|
13354
13354
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -13503,14 +13503,14 @@ function extractPlaceholderName(input) {
|
|
|
13503
13503
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
13504
13504
|
}
|
|
13505
13505
|
|
|
13506
|
-
// bazel-out/
|
|
13506
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
13507
13507
|
var I18nError = class extends ParseError {
|
|
13508
13508
|
constructor(span, msg) {
|
|
13509
13509
|
super(span, msg);
|
|
13510
13510
|
}
|
|
13511
13511
|
};
|
|
13512
13512
|
|
|
13513
|
-
// bazel-out/
|
|
13513
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
13514
13514
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
13515
13515
|
if (htmlNode instanceof NodeWithI18n) {
|
|
13516
13516
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -13659,7 +13659,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
13659
13659
|
return jsDocComment(tags);
|
|
13660
13660
|
}
|
|
13661
13661
|
|
|
13662
|
-
// bazel-out/
|
|
13662
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
13663
13663
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
13664
13664
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
13665
13665
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -13707,7 +13707,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
13707
13707
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
13708
13708
|
}
|
|
13709
13709
|
|
|
13710
|
-
// bazel-out/
|
|
13710
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
13711
13711
|
function createLocalizeStatements(variable2, message, params) {
|
|
13712
13712
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
13713
13713
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -13790,7 +13790,7 @@ function createEmptyMessagePart(location) {
|
|
|
13790
13790
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
13791
13791
|
}
|
|
13792
13792
|
|
|
13793
|
-
// bazel-out/
|
|
13793
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
13794
13794
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
13795
13795
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
13796
13796
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -15092,7 +15092,7 @@ function createClosureModeGuard() {
|
|
|
15092
15092
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
15093
15093
|
}
|
|
15094
15094
|
|
|
15095
|
-
// bazel-out/
|
|
15095
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
15096
15096
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
15097
15097
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
15098
15098
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -15611,11 +15611,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
15611
15611
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
15612
15612
|
}
|
|
15613
15613
|
|
|
15614
|
-
// bazel-out/
|
|
15614
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
15615
15615
|
var ResourceLoader = class {
|
|
15616
15616
|
};
|
|
15617
15617
|
|
|
15618
|
-
// bazel-out/
|
|
15618
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
15619
15619
|
var CompilerFacadeImpl = class {
|
|
15620
15620
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
15621
15621
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -16098,10 +16098,10 @@ function publishFacade(global2) {
|
|
|
16098
16098
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
16099
16099
|
}
|
|
16100
16100
|
|
|
16101
|
-
// bazel-out/
|
|
16102
|
-
var VERSION2 = new Version("15.2.
|
|
16101
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/version.mjs
|
|
16102
|
+
var VERSION2 = new Version("15.2.6");
|
|
16103
16103
|
|
|
16104
|
-
// bazel-out/
|
|
16104
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
16105
16105
|
var _I18N_ATTR = "i18n";
|
|
16106
16106
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
16107
16107
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -16405,7 +16405,7 @@ function _parseMessageMeta(i18n) {
|
|
|
16405
16405
|
return { meaning, description, id: id.trim() };
|
|
16406
16406
|
}
|
|
16407
16407
|
|
|
16408
|
-
// bazel-out/
|
|
16408
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
16409
16409
|
var XmlTagDefinition = class {
|
|
16410
16410
|
constructor() {
|
|
16411
16411
|
this.closedByParent = false;
|
|
@@ -16429,7 +16429,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
16429
16429
|
return _TAG_DEFINITION;
|
|
16430
16430
|
}
|
|
16431
16431
|
|
|
16432
|
-
// bazel-out/
|
|
16432
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
16433
16433
|
var XmlParser = class extends Parser2 {
|
|
16434
16434
|
constructor() {
|
|
16435
16435
|
super(getXmlTagDefinition);
|
|
@@ -16439,7 +16439,7 @@ var XmlParser = class extends Parser2 {
|
|
|
16439
16439
|
}
|
|
16440
16440
|
};
|
|
16441
16441
|
|
|
16442
|
-
// bazel-out/
|
|
16442
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
16443
16443
|
var _VERSION = "1.2";
|
|
16444
16444
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
16445
16445
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -16679,7 +16679,7 @@ function getCtypeForTag(tag) {
|
|
|
16679
16679
|
}
|
|
16680
16680
|
}
|
|
16681
16681
|
|
|
16682
|
-
// bazel-out/
|
|
16682
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
16683
16683
|
var _VERSION2 = "2.0";
|
|
16684
16684
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
16685
16685
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -16967,7 +16967,7 @@ function getTypeForTag(tag) {
|
|
|
16967
16967
|
}
|
|
16968
16968
|
}
|
|
16969
16969
|
|
|
16970
|
-
// bazel-out/
|
|
16970
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
16971
16971
|
var MessageBundle = class {
|
|
16972
16972
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
16973
16973
|
this._htmlParser = _htmlParser;
|
|
@@ -17034,7 +17034,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
17034
17034
|
}
|
|
17035
17035
|
};
|
|
17036
17036
|
|
|
17037
|
-
// bazel-out/
|
|
17037
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
17038
17038
|
var FactoryTarget2;
|
|
17039
17039
|
(function(FactoryTarget3) {
|
|
17040
17040
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -17044,7 +17044,7 @@ var FactoryTarget2;
|
|
|
17044
17044
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
17045
17045
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
17046
17046
|
|
|
17047
|
-
// bazel-out/
|
|
17047
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
17048
17048
|
var R3TargetBinder = class {
|
|
17049
17049
|
constructor(directiveMatcher) {
|
|
17050
17050
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -17396,7 +17396,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
17396
17396
|
return templateEntities;
|
|
17397
17397
|
}
|
|
17398
17398
|
|
|
17399
|
-
// bazel-out/
|
|
17399
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
17400
17400
|
function compileClassMetadata(metadata) {
|
|
17401
17401
|
var _a, _b;
|
|
17402
17402
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -17409,12 +17409,12 @@ function compileClassMetadata(metadata) {
|
|
|
17409
17409
|
return iife.callFn([]);
|
|
17410
17410
|
}
|
|
17411
17411
|
|
|
17412
|
-
// bazel-out/
|
|
17412
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
17413
17413
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
17414
17414
|
function compileDeclareClassMetadata(metadata) {
|
|
17415
17415
|
const definitionMap = new DefinitionMap();
|
|
17416
17416
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
17417
|
-
definitionMap.set("version", literal("15.2.
|
|
17417
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17418
17418
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17419
17419
|
definitionMap.set("type", metadata.type);
|
|
17420
17420
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -17423,7 +17423,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
17423
17423
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
17424
17424
|
}
|
|
17425
17425
|
|
|
17426
|
-
// bazel-out/
|
|
17426
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
17427
17427
|
function toOptionalLiteralArray(values, mapper) {
|
|
17428
17428
|
if (values === null || values.length === 0) {
|
|
17429
17429
|
return null;
|
|
@@ -17471,7 +17471,7 @@ function compileDependency(dep) {
|
|
|
17471
17471
|
return depMeta.toLiteralMap();
|
|
17472
17472
|
}
|
|
17473
17473
|
|
|
17474
|
-
// bazel-out/
|
|
17474
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
17475
17475
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
17476
17476
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
17477
17477
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -17483,7 +17483,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
17483
17483
|
var _a;
|
|
17484
17484
|
const definitionMap = new DefinitionMap();
|
|
17485
17485
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
17486
|
-
definitionMap.set("version", literal("15.2.
|
|
17486
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17487
17487
|
definitionMap.set("type", meta.internalType);
|
|
17488
17488
|
if (meta.isStandalone) {
|
|
17489
17489
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -17573,7 +17573,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
17573
17573
|
return literalArr(expressions);
|
|
17574
17574
|
}
|
|
17575
17575
|
|
|
17576
|
-
// bazel-out/
|
|
17576
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
17577
17577
|
function compileDeclareComponentFromMetadata(meta, template, additionalTemplateInfo) {
|
|
17578
17578
|
const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
|
|
17579
17579
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -17660,12 +17660,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
17660
17660
|
});
|
|
17661
17661
|
}
|
|
17662
17662
|
|
|
17663
|
-
// bazel-out/
|
|
17663
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
17664
17664
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
17665
17665
|
function compileDeclareFactoryFunction(meta) {
|
|
17666
17666
|
const definitionMap = new DefinitionMap();
|
|
17667
17667
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
17668
|
-
definitionMap.set("version", literal("15.2.
|
|
17668
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17669
17669
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17670
17670
|
definitionMap.set("type", meta.internalType);
|
|
17671
17671
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -17677,7 +17677,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
17677
17677
|
};
|
|
17678
17678
|
}
|
|
17679
17679
|
|
|
17680
|
-
// bazel-out/
|
|
17680
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
17681
17681
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
17682
17682
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
17683
17683
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -17688,7 +17688,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
17688
17688
|
function createInjectableDefinitionMap(meta) {
|
|
17689
17689
|
const definitionMap = new DefinitionMap();
|
|
17690
17690
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
17691
|
-
definitionMap.set("version", literal("15.2.
|
|
17691
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17692
17692
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17693
17693
|
definitionMap.set("type", meta.internalType);
|
|
17694
17694
|
if (meta.providedIn !== void 0) {
|
|
@@ -17715,7 +17715,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
17715
17715
|
return definitionMap;
|
|
17716
17716
|
}
|
|
17717
17717
|
|
|
17718
|
-
// bazel-out/
|
|
17718
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
17719
17719
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
17720
17720
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
17721
17721
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -17726,7 +17726,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
17726
17726
|
function createInjectorDefinitionMap(meta) {
|
|
17727
17727
|
const definitionMap = new DefinitionMap();
|
|
17728
17728
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
17729
|
-
definitionMap.set("version", literal("15.2.
|
|
17729
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17730
17730
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17731
17731
|
definitionMap.set("type", meta.internalType);
|
|
17732
17732
|
definitionMap.set("providers", meta.providers);
|
|
@@ -17736,7 +17736,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
17736
17736
|
return definitionMap;
|
|
17737
17737
|
}
|
|
17738
17738
|
|
|
17739
|
-
// bazel-out/
|
|
17739
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
17740
17740
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
17741
17741
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
17742
17742
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -17747,7 +17747,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
17747
17747
|
function createNgModuleDefinitionMap(meta) {
|
|
17748
17748
|
const definitionMap = new DefinitionMap();
|
|
17749
17749
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
17750
|
-
definitionMap.set("version", literal("15.2.
|
|
17750
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17751
17751
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17752
17752
|
definitionMap.set("type", meta.internalType);
|
|
17753
17753
|
if (meta.bootstrap.length > 0) {
|
|
@@ -17771,7 +17771,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
17771
17771
|
return definitionMap;
|
|
17772
17772
|
}
|
|
17773
17773
|
|
|
17774
|
-
// bazel-out/
|
|
17774
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
17775
17775
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
17776
17776
|
function compileDeclarePipeFromMetadata(meta) {
|
|
17777
17777
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -17782,7 +17782,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
17782
17782
|
function createPipeDefinitionMap(meta) {
|
|
17783
17783
|
const definitionMap = new DefinitionMap();
|
|
17784
17784
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
17785
|
-
definitionMap.set("version", literal("15.2.
|
|
17785
|
+
definitionMap.set("version", literal("15.2.6"));
|
|
17786
17786
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17787
17787
|
definitionMap.set("type", meta.internalType);
|
|
17788
17788
|
if (meta.isStandalone) {
|
|
@@ -17795,13 +17795,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
17795
17795
|
return definitionMap;
|
|
17796
17796
|
}
|
|
17797
17797
|
|
|
17798
|
-
// bazel-out/
|
|
17798
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
17799
17799
|
publishFacade(_global);
|
|
17800
17800
|
|
|
17801
|
-
// bazel-out/
|
|
17802
|
-
var VERSION3 = new Version("15.2.
|
|
17801
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
17802
|
+
var VERSION3 = new Version("15.2.6");
|
|
17803
17803
|
|
|
17804
|
-
// bazel-out/
|
|
17804
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
17805
17805
|
var EmitFlags;
|
|
17806
17806
|
(function(EmitFlags2) {
|
|
17807
17807
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -17813,13 +17813,13 @@ var EmitFlags;
|
|
|
17813
17813
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
17814
17814
|
})(EmitFlags || (EmitFlags = {}));
|
|
17815
17815
|
|
|
17816
|
-
// bazel-out/
|
|
17816
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
17817
17817
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
17818
17818
|
|
|
17819
|
-
// bazel-out/
|
|
17819
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
17820
17820
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
17821
17821
|
|
|
17822
|
-
// bazel-out/
|
|
17822
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
17823
17823
|
var path = __toESM(require("path"), 1);
|
|
17824
17824
|
function i18nGetExtension(formatName) {
|
|
17825
17825
|
const format = formatName.toLowerCase();
|
|
@@ -17869,10 +17869,10 @@ function getPathNormalizer(basePath) {
|
|
|
17869
17869
|
};
|
|
17870
17870
|
}
|
|
17871
17871
|
|
|
17872
|
-
// bazel-out/
|
|
17872
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17873
17873
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
17874
17874
|
|
|
17875
|
-
// bazel-out/
|
|
17875
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
17876
17876
|
function toNumbers(value) {
|
|
17877
17877
|
const suffixIndex = value.lastIndexOf("-");
|
|
17878
17878
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -17907,7 +17907,7 @@ function compareVersions(v1, v2) {
|
|
|
17907
17907
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
17908
17908
|
}
|
|
17909
17909
|
|
|
17910
|
-
// bazel-out/
|
|
17910
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17911
17911
|
var MIN_TS_VERSION = "4.8.2";
|
|
17912
17912
|
var MAX_TS_VERSION = "5.0.0";
|
|
17913
17913
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -17920,13 +17920,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
17920
17920
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
17921
17921
|
}
|
|
17922
17922
|
|
|
17923
|
-
// bazel-out/
|
|
17923
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
17924
17924
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
17925
17925
|
|
|
17926
|
-
// bazel-out/
|
|
17926
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
17927
17927
|
var import_typescript19 = __toESM(require("typescript"), 1);
|
|
17928
17928
|
|
|
17929
|
-
// bazel-out/
|
|
17929
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
17930
17930
|
var ErrorCode;
|
|
17931
17931
|
(function(ErrorCode2) {
|
|
17932
17932
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -17996,7 +17996,7 @@ var ErrorCode;
|
|
|
17996
17996
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
17997
17997
|
})(ErrorCode || (ErrorCode = {}));
|
|
17998
17998
|
|
|
17999
|
-
// bazel-out/
|
|
17999
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
18000
18000
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
18001
18001
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
18002
18002
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -18008,15 +18008,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
18008
18008
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
18009
18009
|
]);
|
|
18010
18010
|
|
|
18011
|
-
// bazel-out/
|
|
18011
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18012
18012
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
18013
18013
|
|
|
18014
|
-
// bazel-out/
|
|
18014
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
18015
18015
|
function ngErrorCode(code) {
|
|
18016
18016
|
return parseInt("-99" + code);
|
|
18017
18017
|
}
|
|
18018
18018
|
|
|
18019
|
-
// bazel-out/
|
|
18019
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18020
18020
|
var FatalDiagnosticError = class {
|
|
18021
18021
|
constructor(code, node, message, relatedInformation) {
|
|
18022
18022
|
this.code = code;
|
|
@@ -18072,10 +18072,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
18072
18072
|
return messageText;
|
|
18073
18073
|
}
|
|
18074
18074
|
|
|
18075
|
-
// bazel-out/
|
|
18075
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
18076
18076
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
18077
18077
|
|
|
18078
|
-
// bazel-out/
|
|
18078
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
18079
18079
|
var ExtendedTemplateDiagnosticName;
|
|
18080
18080
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
18081
18081
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -18087,7 +18087,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
18087
18087
|
ExtendedTemplateDiagnosticName2["SUFFIX_NOT_SUPPORTED"] = "suffixNotSupported";
|
|
18088
18088
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
18089
18089
|
|
|
18090
|
-
// bazel-out/
|
|
18090
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
18091
18091
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
18092
18092
|
var Decorator = {
|
|
18093
18093
|
nodeForError: (decorator) => {
|
|
@@ -18122,7 +18122,7 @@ function isConcreteDeclaration(decl) {
|
|
|
18122
18122
|
return decl.kind === 0;
|
|
18123
18123
|
}
|
|
18124
18124
|
|
|
18125
|
-
// bazel-out/
|
|
18125
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
18126
18126
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
18127
18127
|
function typeToValue(typeNode, checker) {
|
|
18128
18128
|
if (typeNode === null) {
|
|
@@ -18288,10 +18288,10 @@ function extractModuleName(node) {
|
|
|
18288
18288
|
return node.moduleSpecifier.text;
|
|
18289
18289
|
}
|
|
18290
18290
|
|
|
18291
|
-
// bazel-out/
|
|
18291
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18292
18292
|
var import_typescript8 = __toESM(require("typescript"), 1);
|
|
18293
18293
|
|
|
18294
|
-
// bazel-out/
|
|
18294
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
18295
18295
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
18296
18296
|
function isNamedClassDeclaration(node) {
|
|
18297
18297
|
return import_typescript7.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -18300,7 +18300,7 @@ function isIdentifier(node) {
|
|
|
18300
18300
|
return node !== void 0 && import_typescript7.default.isIdentifier(node);
|
|
18301
18301
|
}
|
|
18302
18302
|
|
|
18303
|
-
// bazel-out/
|
|
18303
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18304
18304
|
var TypeScriptReflectionHost = class {
|
|
18305
18305
|
constructor(checker) {
|
|
18306
18306
|
this.checker = checker;
|
|
@@ -18736,13 +18736,13 @@ function getExportedName(decl, originalId) {
|
|
|
18736
18736
|
}
|
|
18737
18737
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
18738
18738
|
|
|
18739
|
-
// bazel-out/
|
|
18739
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
18740
18740
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
18741
18741
|
|
|
18742
|
-
// bazel-out/
|
|
18742
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18743
18743
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
18744
18744
|
|
|
18745
|
-
// bazel-out/
|
|
18745
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
18746
18746
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
18747
18747
|
var TS = /\.tsx?$/i;
|
|
18748
18748
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -18843,7 +18843,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
18843
18843
|
return redirectInfo.unredirected;
|
|
18844
18844
|
}
|
|
18845
18845
|
|
|
18846
|
-
// bazel-out/
|
|
18846
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
18847
18847
|
function findExportedNameOfNode(target, file, reflector) {
|
|
18848
18848
|
const exports = reflector.getExportsOfModule(file);
|
|
18849
18849
|
if (exports === null) {
|
|
@@ -18863,7 +18863,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
18863
18863
|
return foundExportName;
|
|
18864
18864
|
}
|
|
18865
18865
|
|
|
18866
|
-
// bazel-out/
|
|
18866
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18867
18867
|
var ImportFlags;
|
|
18868
18868
|
(function(ImportFlags2) {
|
|
18869
18869
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -19079,7 +19079,7 @@ var UnifiedModulesStrategy = class {
|
|
|
19079
19079
|
}
|
|
19080
19080
|
};
|
|
19081
19081
|
|
|
19082
|
-
// bazel-out/
|
|
19082
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
19083
19083
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
19084
19084
|
var UnifiedModulesAliasingHost = class {
|
|
19085
19085
|
constructor(unifiedModulesHost) {
|
|
@@ -19146,7 +19146,7 @@ var AliasStrategy = class {
|
|
|
19146
19146
|
}
|
|
19147
19147
|
};
|
|
19148
19148
|
|
|
19149
|
-
// bazel-out/
|
|
19149
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
19150
19150
|
function relativePathBetween(from, to) {
|
|
19151
19151
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
19152
19152
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -19155,7 +19155,7 @@ function normalizeSeparators2(path3) {
|
|
|
19155
19155
|
return path3.replace(/\\/g, "/");
|
|
19156
19156
|
}
|
|
19157
19157
|
|
|
19158
|
-
// bazel-out/
|
|
19158
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
19159
19159
|
var NoopImportRewriter = class {
|
|
19160
19160
|
shouldImportSymbol(symbol, specifier) {
|
|
19161
19161
|
return true;
|
|
@@ -19213,7 +19213,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
19213
19213
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
19214
19214
|
}
|
|
19215
19215
|
|
|
19216
|
-
// bazel-out/
|
|
19216
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
19217
19217
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
19218
19218
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
19219
19219
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -19248,7 +19248,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
19248
19248
|
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.");
|
|
19249
19249
|
}
|
|
19250
19250
|
|
|
19251
|
-
// bazel-out/
|
|
19251
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
19252
19252
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
19253
19253
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
19254
19254
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -19289,7 +19289,7 @@ var DefaultImportTracker = class {
|
|
|
19289
19289
|
}
|
|
19290
19290
|
};
|
|
19291
19291
|
|
|
19292
|
-
// bazel-out/
|
|
19292
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
19293
19293
|
var Reference2 = class {
|
|
19294
19294
|
constructor(node, bestGuessOwningModule = null) {
|
|
19295
19295
|
this.node = node;
|
|
@@ -19352,7 +19352,7 @@ var Reference2 = class {
|
|
|
19352
19352
|
}
|
|
19353
19353
|
};
|
|
19354
19354
|
|
|
19355
|
-
// bazel-out/
|
|
19355
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
19356
19356
|
var ModuleResolver = class {
|
|
19357
19357
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
19358
19358
|
this.program = program;
|
|
@@ -19369,7 +19369,7 @@ var ModuleResolver = class {
|
|
|
19369
19369
|
}
|
|
19370
19370
|
};
|
|
19371
19371
|
|
|
19372
|
-
// bazel-out/
|
|
19372
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
19373
19373
|
function valueReferenceToExpression(valueRef) {
|
|
19374
19374
|
if (valueRef.kind === 2) {
|
|
19375
19375
|
return null;
|
|
@@ -19606,7 +19606,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
19606
19606
|
return clazz.modifiers !== void 0 && clazz.modifiers.some((mod) => mod.kind === import_typescript18.default.SyntaxKind.AbstractKeyword);
|
|
19607
19607
|
}
|
|
19608
19608
|
|
|
19609
|
-
// bazel-out/
|
|
19609
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
19610
19610
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
19611
19611
|
const deps = [];
|
|
19612
19612
|
const errors = [];
|
|
@@ -19748,10 +19748,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
19748
19748
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
19749
19749
|
}
|
|
19750
19750
|
|
|
19751
|
-
// bazel-out/
|
|
19751
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
19752
19752
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
19753
19753
|
|
|
19754
|
-
// bazel-out/
|
|
19754
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
19755
19755
|
var MetaKind;
|
|
19756
19756
|
(function(MetaKind2) {
|
|
19757
19757
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -19764,10 +19764,10 @@ var MatchSource;
|
|
|
19764
19764
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
19765
19765
|
})(MatchSource || (MatchSource = {}));
|
|
19766
19766
|
|
|
19767
|
-
// bazel-out/
|
|
19767
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
19768
19768
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
19769
19769
|
|
|
19770
|
-
// bazel-out/
|
|
19770
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
19771
19771
|
var ClassPropertyMapping = class {
|
|
19772
19772
|
constructor(forwardMap) {
|
|
19773
19773
|
this.forwardMap = forwardMap;
|
|
@@ -19843,7 +19843,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
19843
19843
|
return reverseMap;
|
|
19844
19844
|
}
|
|
19845
19845
|
|
|
19846
|
-
// bazel-out/
|
|
19846
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
19847
19847
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
19848
19848
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
19849
19849
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -20025,7 +20025,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
20025
20025
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
20026
20026
|
}
|
|
20027
20027
|
|
|
20028
|
-
// bazel-out/
|
|
20028
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
20029
20029
|
var DtsMetadataReader = class {
|
|
20030
20030
|
constructor(checker, reflector) {
|
|
20031
20031
|
this.checker = checker;
|
|
@@ -20164,7 +20164,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
20164
20164
|
return result.length > 0 ? result : null;
|
|
20165
20165
|
}
|
|
20166
20166
|
|
|
20167
|
-
// bazel-out/
|
|
20167
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
20168
20168
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
20169
20169
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
20170
20170
|
if (topMeta === null) {
|
|
@@ -20221,7 +20221,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
20221
20221
|
});
|
|
20222
20222
|
}
|
|
20223
20223
|
|
|
20224
|
-
// bazel-out/
|
|
20224
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
20225
20225
|
var LocalMetadataRegistry = class {
|
|
20226
20226
|
constructor() {
|
|
20227
20227
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -20278,7 +20278,7 @@ var CompoundMetadataRegistry = class {
|
|
|
20278
20278
|
}
|
|
20279
20279
|
};
|
|
20280
20280
|
|
|
20281
|
-
// bazel-out/
|
|
20281
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
20282
20282
|
var ResourceRegistry = class {
|
|
20283
20283
|
constructor() {
|
|
20284
20284
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -20343,7 +20343,7 @@ var ResourceRegistry = class {
|
|
|
20343
20343
|
}
|
|
20344
20344
|
};
|
|
20345
20345
|
|
|
20346
|
-
// bazel-out/
|
|
20346
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
20347
20347
|
var EMPTY_ARRAY = [];
|
|
20348
20348
|
var HostDirectivesResolver = class {
|
|
20349
20349
|
constructor(metaReader) {
|
|
@@ -20393,10 +20393,10 @@ var HostDirectivesResolver = class {
|
|
|
20393
20393
|
}
|
|
20394
20394
|
};
|
|
20395
20395
|
|
|
20396
|
-
// bazel-out/
|
|
20396
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20397
20397
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
20398
20398
|
|
|
20399
|
-
// bazel-out/
|
|
20399
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
20400
20400
|
var DynamicValue = class {
|
|
20401
20401
|
constructor(node, reason, code) {
|
|
20402
20402
|
this.node = node;
|
|
@@ -20486,7 +20486,7 @@ var DynamicValue = class {
|
|
|
20486
20486
|
}
|
|
20487
20487
|
};
|
|
20488
20488
|
|
|
20489
|
-
// bazel-out/
|
|
20489
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
20490
20490
|
var ResolvedModule = class {
|
|
20491
20491
|
constructor(exports, evaluate) {
|
|
20492
20492
|
this.exports = exports;
|
|
@@ -20516,7 +20516,7 @@ var EnumValue = class {
|
|
|
20516
20516
|
var KnownFn = class {
|
|
20517
20517
|
};
|
|
20518
20518
|
|
|
20519
|
-
// bazel-out/
|
|
20519
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20520
20520
|
function describeResolvedType(value, maxDepth = 1) {
|
|
20521
20521
|
var _a, _b;
|
|
20522
20522
|
if (value === null) {
|
|
@@ -20645,10 +20645,10 @@ function getContainerNode(node) {
|
|
|
20645
20645
|
return node.getSourceFile();
|
|
20646
20646
|
}
|
|
20647
20647
|
|
|
20648
|
-
// bazel-out/
|
|
20648
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20649
20649
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
20650
20650
|
|
|
20651
|
-
// bazel-out/
|
|
20651
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
20652
20652
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
20653
20653
|
constructor(lhs) {
|
|
20654
20654
|
super();
|
|
@@ -20719,7 +20719,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
|
|
|
20719
20719
|
}
|
|
20720
20720
|
};
|
|
20721
20721
|
|
|
20722
|
-
// bazel-out/
|
|
20722
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
|
|
20723
20723
|
var AssignHelperFn = class extends ObjectAssignBuiltinFn {
|
|
20724
20724
|
};
|
|
20725
20725
|
var SpreadHelperFn = class extends KnownFn {
|
|
@@ -20772,7 +20772,7 @@ var ReadHelperFn = class extends KnownFn {
|
|
|
20772
20772
|
}
|
|
20773
20773
|
};
|
|
20774
20774
|
|
|
20775
|
-
// bazel-out/
|
|
20775
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
|
|
20776
20776
|
var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
|
|
20777
20777
|
var assignTsHelperFn = new AssignHelperFn();
|
|
20778
20778
|
var spreadTsHelperFn = new SpreadHelperFn();
|
|
@@ -20796,14 +20796,14 @@ function resolveKnownDeclaration(decl) {
|
|
|
20796
20796
|
}
|
|
20797
20797
|
}
|
|
20798
20798
|
|
|
20799
|
-
// bazel-out/
|
|
20799
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
20800
20800
|
var SyntheticValue = class {
|
|
20801
20801
|
constructor(value) {
|
|
20802
20802
|
this.value = value;
|
|
20803
20803
|
}
|
|
20804
20804
|
};
|
|
20805
20805
|
|
|
20806
|
-
// bazel-out/
|
|
20806
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20807
20807
|
function literalBinaryOp(op) {
|
|
20808
20808
|
return { op, literal: true };
|
|
20809
20809
|
}
|
|
@@ -21401,7 +21401,7 @@ function owningModule(context, override = null) {
|
|
|
21401
21401
|
}
|
|
21402
21402
|
}
|
|
21403
21403
|
|
|
21404
|
-
// bazel-out/
|
|
21404
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
21405
21405
|
var PartialEvaluator = class {
|
|
21406
21406
|
constructor(host, checker, dependencyTracker) {
|
|
21407
21407
|
this.host = host;
|
|
@@ -21421,7 +21421,7 @@ var PartialEvaluator = class {
|
|
|
21421
21421
|
}
|
|
21422
21422
|
};
|
|
21423
21423
|
|
|
21424
|
-
// bazel-out/
|
|
21424
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
21425
21425
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
21426
21426
|
const context = [];
|
|
21427
21427
|
for (const decl of data) {
|
|
@@ -21596,7 +21596,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
21596
21596
|
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}.`);
|
|
21597
21597
|
}
|
|
21598
21598
|
|
|
21599
|
-
// bazel-out/
|
|
21599
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
21600
21600
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
21601
21601
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
21602
21602
|
let resolved = null;
|
|
@@ -21629,7 +21629,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
21629
21629
|
return meta;
|
|
21630
21630
|
}
|
|
21631
21631
|
|
|
21632
|
-
// bazel-out/
|
|
21632
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
21633
21633
|
function compileNgFactoryDefField(metadata) {
|
|
21634
21634
|
const res = compileFactoryFunction(metadata);
|
|
21635
21635
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -21639,7 +21639,7 @@ function compileDeclareFactory(metadata) {
|
|
|
21639
21639
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
21640
21640
|
}
|
|
21641
21641
|
|
|
21642
|
-
// bazel-out/
|
|
21642
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
21643
21643
|
var InjectableClassRegistry = class {
|
|
21644
21644
|
constructor(host, isCore) {
|
|
21645
21645
|
this.host = host;
|
|
@@ -21665,7 +21665,7 @@ var InjectableClassRegistry = class {
|
|
|
21665
21665
|
}
|
|
21666
21666
|
};
|
|
21667
21667
|
|
|
21668
|
-
// bazel-out/
|
|
21668
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
21669
21669
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
21670
21670
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
21671
21671
|
if (!reflection.isClass(clazz)) {
|
|
@@ -21751,13 +21751,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
21751
21751
|
return result.transformed[0];
|
|
21752
21752
|
}
|
|
21753
21753
|
|
|
21754
|
-
// bazel-out/
|
|
21754
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
21755
21755
|
var NoopReferencesRegistry = class {
|
|
21756
21756
|
add(source, ...references) {
|
|
21757
21757
|
}
|
|
21758
21758
|
};
|
|
21759
21759
|
|
|
21760
|
-
// bazel-out/
|
|
21760
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
21761
21761
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
21762
21762
|
const schemas = [];
|
|
21763
21763
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -21786,10 +21786,10 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
21786
21786
|
return schemas;
|
|
21787
21787
|
}
|
|
21788
21788
|
|
|
21789
|
-
// bazel-out/
|
|
21789
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
21790
21790
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
21791
21791
|
|
|
21792
|
-
// bazel-out/
|
|
21792
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
21793
21793
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
21794
21794
|
var SemanticSymbol = class {
|
|
21795
21795
|
constructor(decl) {
|
|
@@ -21805,7 +21805,7 @@ function getSymbolIdentifier(decl) {
|
|
|
21805
21805
|
return decl.name.text;
|
|
21806
21806
|
}
|
|
21807
21807
|
|
|
21808
|
-
// bazel-out/
|
|
21808
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
21809
21809
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
21810
21810
|
isPublicApiAffected() {
|
|
21811
21811
|
return false;
|
|
@@ -21947,10 +21947,10 @@ function getImportPath(expr) {
|
|
|
21947
21947
|
}
|
|
21948
21948
|
}
|
|
21949
21949
|
|
|
21950
|
-
// bazel-out/
|
|
21950
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
21951
21951
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
21952
21952
|
|
|
21953
|
-
// bazel-out/
|
|
21953
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
21954
21954
|
function isSymbolEqual(a, b) {
|
|
21955
21955
|
if (a.decl === b.decl) {
|
|
21956
21956
|
return true;
|
|
@@ -22000,7 +22000,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
22000
22000
|
return true;
|
|
22001
22001
|
}
|
|
22002
22002
|
|
|
22003
|
-
// bazel-out/
|
|
22003
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
22004
22004
|
function extractSemanticTypeParameters(node) {
|
|
22005
22005
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
22006
22006
|
return null;
|
|
@@ -22020,7 +22020,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
22020
22020
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
22021
22021
|
}
|
|
22022
22022
|
|
|
22023
|
-
// bazel-out/
|
|
22023
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
22024
22024
|
var PerfPhase;
|
|
22025
22025
|
(function(PerfPhase2) {
|
|
22026
22026
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -22087,7 +22087,7 @@ var PerfCheckpoint;
|
|
|
22087
22087
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
22088
22088
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
22089
22089
|
|
|
22090
|
-
// bazel-out/
|
|
22090
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
22091
22091
|
var NoopPerfRecorder = class {
|
|
22092
22092
|
eventCount() {
|
|
22093
22093
|
}
|
|
@@ -22104,7 +22104,7 @@ var NoopPerfRecorder = class {
|
|
|
22104
22104
|
};
|
|
22105
22105
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
22106
22106
|
|
|
22107
|
-
// bazel-out/
|
|
22107
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
22108
22108
|
function mark() {
|
|
22109
22109
|
return process.hrtime();
|
|
22110
22110
|
}
|
|
@@ -22113,7 +22113,7 @@ function timeSinceInMicros(mark2) {
|
|
|
22113
22113
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
22114
22114
|
}
|
|
22115
22115
|
|
|
22116
|
-
// bazel-out/
|
|
22116
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
22117
22117
|
var ActivePerfRecorder = class {
|
|
22118
22118
|
static zeroedToNow() {
|
|
22119
22119
|
return new ActivePerfRecorder(mark());
|
|
@@ -22207,14 +22207,14 @@ var DelegatingPerfRecorder = class {
|
|
|
22207
22207
|
}
|
|
22208
22208
|
};
|
|
22209
22209
|
|
|
22210
|
-
// bazel-out/
|
|
22210
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
22211
22211
|
var ComponentScopeKind;
|
|
22212
22212
|
(function(ComponentScopeKind2) {
|
|
22213
22213
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
22214
22214
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
22215
22215
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
22216
22216
|
|
|
22217
|
-
// bazel-out/
|
|
22217
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
22218
22218
|
var CompoundComponentScopeReader = class {
|
|
22219
22219
|
constructor(readers) {
|
|
22220
22220
|
this.readers = readers;
|
|
@@ -22239,7 +22239,7 @@ var CompoundComponentScopeReader = class {
|
|
|
22239
22239
|
}
|
|
22240
22240
|
};
|
|
22241
22241
|
|
|
22242
|
-
// bazel-out/
|
|
22242
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
22243
22243
|
var MetadataDtsModuleScopeResolver = class {
|
|
22244
22244
|
constructor(dtsMetaReader, aliasingHost) {
|
|
22245
22245
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -22314,10 +22314,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
22314
22314
|
}
|
|
22315
22315
|
};
|
|
22316
22316
|
|
|
22317
|
-
// bazel-out/
|
|
22317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22318
22318
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
22319
22319
|
|
|
22320
|
-
// bazel-out/
|
|
22320
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
22321
22321
|
function getDiagnosticNode(ref, rawExpr) {
|
|
22322
22322
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
22323
22323
|
}
|
|
@@ -22340,7 +22340,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
22340
22340
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
22341
22341
|
}
|
|
22342
22342
|
|
|
22343
|
-
// bazel-out/
|
|
22343
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22344
22344
|
var LocalModuleScopeRegistry = class {
|
|
22345
22345
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
22346
22346
|
this.localReader = localReader;
|
|
@@ -22679,7 +22679,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
22679
22679
|
]);
|
|
22680
22680
|
}
|
|
22681
22681
|
|
|
22682
|
-
// bazel-out/
|
|
22682
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
22683
22683
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
22684
22684
|
var TypeCheckScopeRegistry = class {
|
|
22685
22685
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -22747,7 +22747,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
22747
22747
|
}
|
|
22748
22748
|
};
|
|
22749
22749
|
|
|
22750
|
-
// bazel-out/
|
|
22750
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
22751
22751
|
var CompilationMode;
|
|
22752
22752
|
(function(CompilationMode2) {
|
|
22753
22753
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -22765,7 +22765,7 @@ var HandlerFlags;
|
|
|
22765
22765
|
HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
|
|
22766
22766
|
})(HandlerFlags || (HandlerFlags = {}));
|
|
22767
22767
|
|
|
22768
|
-
// bazel-out/
|
|
22768
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
22769
22769
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
22770
22770
|
function aliasTransformFactory(exportStatements) {
|
|
22771
22771
|
return () => {
|
|
@@ -22788,10 +22788,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
22788
22788
|
};
|
|
22789
22789
|
}
|
|
22790
22790
|
|
|
22791
|
-
// bazel-out/
|
|
22791
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22792
22792
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
22793
22793
|
|
|
22794
|
-
// bazel-out/
|
|
22794
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
22795
22795
|
var TraitState;
|
|
22796
22796
|
(function(TraitState2) {
|
|
22797
22797
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -22846,7 +22846,7 @@ var TraitImpl = class {
|
|
|
22846
22846
|
}
|
|
22847
22847
|
};
|
|
22848
22848
|
|
|
22849
|
-
// bazel-out/
|
|
22849
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22850
22850
|
var TraitCompiler = class {
|
|
22851
22851
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
22852
22852
|
this.handlers = handlers;
|
|
@@ -23290,10 +23290,10 @@ function containsErrors(diagnostics) {
|
|
|
23290
23290
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
23291
23291
|
}
|
|
23292
23292
|
|
|
23293
|
-
// bazel-out/
|
|
23293
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
23294
23294
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
23295
23295
|
|
|
23296
|
-
// bazel-out/
|
|
23296
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
23297
23297
|
var Context = class {
|
|
23298
23298
|
constructor(isStatement) {
|
|
23299
23299
|
this.isStatement = isStatement;
|
|
@@ -23306,7 +23306,7 @@ var Context = class {
|
|
|
23306
23306
|
}
|
|
23307
23307
|
};
|
|
23308
23308
|
|
|
23309
|
-
// bazel-out/
|
|
23309
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
23310
23310
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
23311
23311
|
var ImportManager = class {
|
|
23312
23312
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -23342,7 +23342,7 @@ var ImportManager = class {
|
|
|
23342
23342
|
}
|
|
23343
23343
|
};
|
|
23344
23344
|
|
|
23345
|
-
// bazel-out/
|
|
23345
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
23346
23346
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
23347
23347
|
[UnaryOperator.Minus, "-"],
|
|
23348
23348
|
[UnaryOperator.Plus, "+"]
|
|
@@ -23573,10 +23573,10 @@ function createRange(span) {
|
|
|
23573
23573
|
};
|
|
23574
23574
|
}
|
|
23575
23575
|
|
|
23576
|
-
// bazel-out/
|
|
23576
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
23577
23577
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
23578
23578
|
|
|
23579
|
-
// bazel-out/
|
|
23579
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/ts_compatibility/src/ts_cross_version_utils.mjs
|
|
23580
23580
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
23581
23581
|
var IS_AFTER_TS_49 = isAfterVersion(4, 9);
|
|
23582
23582
|
var createParameterDeclaration = IS_AFTER_TS_49 ? import_typescript40.default.factory.createParameterDeclaration : (modifiers, dotDotDotToken, name, questionToken, type, initializer) => import_typescript40.default.factory.createParameterDeclaration(...splitModifiers(modifiers), dotDotDotToken, name, questionToken, type, initializer);
|
|
@@ -23606,7 +23606,7 @@ function isAfterVersion(targetMajor, targetMinor) {
|
|
|
23606
23606
|
return major === targetMajor ? minor >= targetMinor : true;
|
|
23607
23607
|
}
|
|
23608
23608
|
|
|
23609
|
-
// bazel-out/
|
|
23609
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
23610
23610
|
function translateType(type, imports) {
|
|
23611
23611
|
return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
|
|
23612
23612
|
}
|
|
@@ -23780,7 +23780,7 @@ var TypeTranslatorVisitor = class {
|
|
|
23780
23780
|
}
|
|
23781
23781
|
};
|
|
23782
23782
|
|
|
23783
|
-
// bazel-out/
|
|
23783
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
23784
23784
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
23785
23785
|
var PureAnnotation;
|
|
23786
23786
|
(function(PureAnnotation2) {
|
|
@@ -23963,7 +23963,7 @@ function attachComments(statement, leadingComments) {
|
|
|
23963
23963
|
}
|
|
23964
23964
|
}
|
|
23965
23965
|
|
|
23966
|
-
// bazel-out/
|
|
23966
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
23967
23967
|
function translateExpression(expression, imports, options = {}) {
|
|
23968
23968
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
23969
23969
|
}
|
|
@@ -23971,7 +23971,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
23971
23971
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
23972
23972
|
}
|
|
23973
23973
|
|
|
23974
|
-
// bazel-out/
|
|
23974
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
23975
23975
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
23976
23976
|
function addImports(importManager, sf, extraStatements = []) {
|
|
23977
23977
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -24007,7 +24007,7 @@ function isImportStatement(stmt) {
|
|
|
24007
24007
|
return import_typescript43.default.isImportDeclaration(stmt) || import_typescript43.default.isImportEqualsDeclaration(stmt) || import_typescript43.default.isNamespaceImport(stmt);
|
|
24008
24008
|
}
|
|
24009
24009
|
|
|
24010
|
-
// bazel-out/
|
|
24010
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
24011
24011
|
var DtsTransformRegistry = class {
|
|
24012
24012
|
constructor() {
|
|
24013
24013
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -24152,10 +24152,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
24152
24152
|
import_typescript44.default.forEachChild(node, markForEmitAsSingleLine);
|
|
24153
24153
|
}
|
|
24154
24154
|
|
|
24155
|
-
// bazel-out/
|
|
24155
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24156
24156
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
24157
24157
|
|
|
24158
|
-
// bazel-out/
|
|
24158
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
24159
24159
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
24160
24160
|
function visit(node, visitor, context) {
|
|
24161
24161
|
return visitor._visit(node, context);
|
|
@@ -24216,7 +24216,7 @@ var Visitor = class {
|
|
|
24216
24216
|
}
|
|
24217
24217
|
};
|
|
24218
24218
|
|
|
24219
|
-
// bazel-out/
|
|
24219
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24220
24220
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
24221
24221
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
24222
24222
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -24424,7 +24424,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
24424
24424
|
return array;
|
|
24425
24425
|
}
|
|
24426
24426
|
|
|
24427
|
-
// bazel-out/
|
|
24427
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
24428
24428
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
24429
24429
|
var EMPTY_OBJECT = {};
|
|
24430
24430
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -24840,7 +24840,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
|
|
|
24840
24840
|
};
|
|
24841
24841
|
}
|
|
24842
24842
|
|
|
24843
|
-
// bazel-out/
|
|
24843
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
24844
24844
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
24845
24845
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
24846
24846
|
super(decl);
|
|
@@ -24917,7 +24917,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
24917
24917
|
return isSymbolEqual(current, previous);
|
|
24918
24918
|
}
|
|
24919
24919
|
|
|
24920
|
-
// bazel-out/
|
|
24920
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
24921
24921
|
var FIELD_DECORATORS = [
|
|
24922
24922
|
"Input",
|
|
24923
24923
|
"Output",
|
|
@@ -25076,10 +25076,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
25076
25076
|
}
|
|
25077
25077
|
};
|
|
25078
25078
|
|
|
25079
|
-
// bazel-out/
|
|
25079
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25080
25080
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
25081
25081
|
|
|
25082
|
-
// bazel-out/
|
|
25082
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
25083
25083
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
25084
25084
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
25085
25085
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -25146,7 +25146,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
25146
25146
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
25147
25147
|
}
|
|
25148
25148
|
|
|
25149
|
-
// bazel-out/
|
|
25149
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25150
25150
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
25151
25151
|
constructor() {
|
|
25152
25152
|
super(...arguments);
|
|
@@ -25648,7 +25648,7 @@ function isSyntheticReference(ref) {
|
|
|
25648
25648
|
return ref.synthetic;
|
|
25649
25649
|
}
|
|
25650
25650
|
|
|
25651
|
-
// bazel-out/
|
|
25651
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
25652
25652
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
25653
25653
|
const name = ref.debugName || "(unknown)";
|
|
25654
25654
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -25671,7 +25671,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
25671
25671
|
return null;
|
|
25672
25672
|
}
|
|
25673
25673
|
|
|
25674
|
-
// bazel-out/
|
|
25674
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
25675
25675
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
25676
25676
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
25677
25677
|
switch (declaration.isInline) {
|
|
@@ -25986,7 +25986,7 @@ function _extractTemplateStyleUrls(template) {
|
|
|
25986
25986
|
return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
25987
25987
|
}
|
|
25988
25988
|
|
|
25989
|
-
// bazel-out/
|
|
25989
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
25990
25990
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
25991
25991
|
constructor() {
|
|
25992
25992
|
super(...arguments);
|
|
@@ -26021,7 +26021,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
26021
26021
|
}
|
|
26022
26022
|
};
|
|
26023
26023
|
|
|
26024
|
-
// bazel-out/
|
|
26024
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
26025
26025
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
26026
26026
|
if (value instanceof Map) {
|
|
26027
26027
|
const name = value.get("name");
|
|
@@ -26097,7 +26097,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
26097
26097
|
return false;
|
|
26098
26098
|
}
|
|
26099
26099
|
|
|
26100
|
-
// bazel-out/
|
|
26100
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
26101
26101
|
var EMPTY_ARRAY2 = [];
|
|
26102
26102
|
var ComponentDecoratorHandler = class {
|
|
26103
26103
|
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) {
|
|
@@ -26743,7 +26743,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
26743
26743
|
return diagnostics;
|
|
26744
26744
|
}
|
|
26745
26745
|
|
|
26746
|
-
// bazel-out/
|
|
26746
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
26747
26747
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
26748
26748
|
var InjectableDecoratorHandler = class {
|
|
26749
26749
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
|
|
@@ -26959,7 +26959,7 @@ function getDep(dep, reflector) {
|
|
|
26959
26959
|
return meta;
|
|
26960
26960
|
}
|
|
26961
26961
|
|
|
26962
|
-
// bazel-out/
|
|
26962
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
26963
26963
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
26964
26964
|
var PipeSymbol = class extends SemanticSymbol {
|
|
26965
26965
|
constructor(decl, name) {
|
|
@@ -27104,7 +27104,7 @@ var PipeDecoratorHandler = class {
|
|
|
27104
27104
|
}
|
|
27105
27105
|
};
|
|
27106
27106
|
|
|
27107
|
-
// bazel-out/
|
|
27107
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
27108
27108
|
var CycleAnalyzer = class {
|
|
27109
27109
|
constructor(importGraph) {
|
|
27110
27110
|
this.importGraph = importGraph;
|
|
@@ -27175,7 +27175,7 @@ var Cycle = class {
|
|
|
27175
27175
|
}
|
|
27176
27176
|
};
|
|
27177
27177
|
|
|
27178
|
-
// bazel-out/
|
|
27178
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
27179
27179
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
27180
27180
|
var ImportGraph = class {
|
|
27181
27181
|
constructor(checker, perf) {
|
|
@@ -27267,7 +27267,7 @@ var Found = class {
|
|
|
27267
27267
|
}
|
|
27268
27268
|
};
|
|
27269
27269
|
|
|
27270
|
-
// bazel-out/
|
|
27270
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
27271
27271
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
27272
27272
|
var FlatIndexGenerator = class {
|
|
27273
27273
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -27292,7 +27292,7 @@ export * from '${relativeEntryPoint}';
|
|
|
27292
27292
|
}
|
|
27293
27293
|
};
|
|
27294
27294
|
|
|
27295
|
-
// bazel-out/
|
|
27295
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
27296
27296
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
27297
27297
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
27298
27298
|
let resolvedEntryPoint = null;
|
|
@@ -27308,7 +27308,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
27308
27308
|
return resolvedEntryPoint;
|
|
27309
27309
|
}
|
|
27310
27310
|
|
|
27311
|
-
// bazel-out/
|
|
27311
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
27312
27312
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
27313
27313
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
27314
27314
|
const diagnostics = [];
|
|
@@ -27388,7 +27388,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
27388
27388
|
}
|
|
27389
27389
|
}
|
|
27390
27390
|
|
|
27391
|
-
// bazel-out/
|
|
27391
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
27392
27392
|
var ReferenceGraph = class {
|
|
27393
27393
|
constructor() {
|
|
27394
27394
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -27442,7 +27442,7 @@ var ReferenceGraph = class {
|
|
|
27442
27442
|
}
|
|
27443
27443
|
};
|
|
27444
27444
|
|
|
27445
|
-
// bazel-out/
|
|
27445
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
27446
27446
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
27447
27447
|
var UpdateMode;
|
|
27448
27448
|
(function(UpdateMode2) {
|
|
@@ -27450,13 +27450,13 @@ var UpdateMode;
|
|
|
27450
27450
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
27451
27451
|
})(UpdateMode || (UpdateMode = {}));
|
|
27452
27452
|
|
|
27453
|
-
// bazel-out/
|
|
27453
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27454
27454
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
27455
27455
|
|
|
27456
|
-
// bazel-out/
|
|
27456
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27457
27457
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
27458
27458
|
|
|
27459
|
-
// bazel-out/
|
|
27459
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
27460
27460
|
var NgExtension = Symbol("NgExtension");
|
|
27461
27461
|
function isExtended(sf) {
|
|
27462
27462
|
return sf[NgExtension] !== void 0;
|
|
@@ -27516,7 +27516,7 @@ function retagTsFile(sf) {
|
|
|
27516
27516
|
}
|
|
27517
27517
|
}
|
|
27518
27518
|
|
|
27519
|
-
// bazel-out/
|
|
27519
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
27520
27520
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
27521
27521
|
function makeShimFileName(fileName, suffix) {
|
|
27522
27522
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
@@ -27531,7 +27531,7 @@ function generatedModuleName(originalModuleName, originalFileName, genSuffix) {
|
|
|
27531
27531
|
return moduleName;
|
|
27532
27532
|
}
|
|
27533
27533
|
|
|
27534
|
-
// bazel-out/
|
|
27534
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27535
27535
|
var ShimAdapter = class {
|
|
27536
27536
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
27537
27537
|
this.delegate = delegate;
|
|
@@ -27626,7 +27626,7 @@ var ShimAdapter = class {
|
|
|
27626
27626
|
}
|
|
27627
27627
|
};
|
|
27628
27628
|
|
|
27629
|
-
// bazel-out/
|
|
27629
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/factory_generator.mjs
|
|
27630
27630
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
27631
27631
|
var TS_DTS_SUFFIX = /(\.d)?\.ts$/;
|
|
27632
27632
|
var STRIP_NG_FACTORY = /(.*)NgFactory$/;
|
|
@@ -27786,7 +27786,7 @@ function updateInitializers(stmt, update) {
|
|
|
27786
27786
|
return import_typescript62.default.factory.updateVariableStatement(stmt, import_typescript62.default.getModifiers(stmt), import_typescript62.default.factory.updateVariableDeclarationList(stmt.declarationList, stmt.declarationList.declarations.map((decl) => import_typescript62.default.factory.updateVariableDeclaration(decl, decl.name, decl.exclamationToken, decl.type, update(decl.initializer)))));
|
|
27787
27787
|
}
|
|
27788
27788
|
|
|
27789
|
-
// bazel-out/
|
|
27789
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
27790
27790
|
var ShimReferenceTagger = class {
|
|
27791
27791
|
constructor(shimExtensions) {
|
|
27792
27792
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -27820,7 +27820,7 @@ var ShimReferenceTagger = class {
|
|
|
27820
27820
|
}
|
|
27821
27821
|
};
|
|
27822
27822
|
|
|
27823
|
-
// bazel-out/
|
|
27823
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/summary_generator.mjs
|
|
27824
27824
|
var import_typescript64 = __toESM(require("typescript"), 1);
|
|
27825
27825
|
var SummaryGenerator = class {
|
|
27826
27826
|
constructor() {
|
|
@@ -27861,7 +27861,7 @@ function isExported2(decl) {
|
|
|
27861
27861
|
return modifiers !== void 0 && modifiers.some((mod) => mod.kind == import_typescript64.default.SyntaxKind.ExportKeyword) || false;
|
|
27862
27862
|
}
|
|
27863
27863
|
|
|
27864
|
-
// bazel-out/
|
|
27864
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27865
27865
|
var DelegatingCompilerHost = class {
|
|
27866
27866
|
constructor(delegate) {
|
|
27867
27867
|
this.delegate = delegate;
|
|
@@ -27972,7 +27972,7 @@ var TsCreateProgramDriver = class {
|
|
|
27972
27972
|
}
|
|
27973
27973
|
};
|
|
27974
27974
|
|
|
27975
|
-
// bazel-out/
|
|
27975
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
27976
27976
|
var FileDependencyGraph = class {
|
|
27977
27977
|
constructor() {
|
|
27978
27978
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -28039,7 +28039,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
28039
28039
|
return false;
|
|
28040
28040
|
}
|
|
28041
28041
|
|
|
28042
|
-
// bazel-out/
|
|
28042
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
28043
28043
|
var IncrementalStateKind;
|
|
28044
28044
|
(function(IncrementalStateKind2) {
|
|
28045
28045
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -28047,7 +28047,7 @@ var IncrementalStateKind;
|
|
|
28047
28047
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
28048
28048
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
28049
28049
|
|
|
28050
|
-
// bazel-out/
|
|
28050
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
28051
28051
|
var PhaseKind;
|
|
28052
28052
|
(function(PhaseKind2) {
|
|
28053
28053
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -28248,7 +28248,7 @@ function toOriginalSourceFile(sf) {
|
|
|
28248
28248
|
}
|
|
28249
28249
|
}
|
|
28250
28250
|
|
|
28251
|
-
// bazel-out/
|
|
28251
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
28252
28252
|
var TrackedIncrementalBuildStrategy = class {
|
|
28253
28253
|
constructor() {
|
|
28254
28254
|
this.state = null;
|
|
@@ -28269,7 +28269,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
28269
28269
|
};
|
|
28270
28270
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
28271
28271
|
|
|
28272
|
-
// bazel-out/
|
|
28272
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
28273
28273
|
var IdentifierKind;
|
|
28274
28274
|
(function(IdentifierKind2) {
|
|
28275
28275
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -28287,7 +28287,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
28287
28287
|
}
|
|
28288
28288
|
};
|
|
28289
28289
|
|
|
28290
|
-
// bazel-out/
|
|
28290
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
28291
28291
|
var IndexingContext = class {
|
|
28292
28292
|
constructor() {
|
|
28293
28293
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -28297,7 +28297,7 @@ var IndexingContext = class {
|
|
|
28297
28297
|
}
|
|
28298
28298
|
};
|
|
28299
28299
|
|
|
28300
|
-
// bazel-out/
|
|
28300
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
28301
28301
|
var ExpressionVisitor = class extends RecursiveAstVisitor {
|
|
28302
28302
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
28303
28303
|
super();
|
|
@@ -28533,7 +28533,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
28533
28533
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
28534
28534
|
}
|
|
28535
28535
|
|
|
28536
|
-
// bazel-out/
|
|
28536
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
28537
28537
|
function generateAnalysis(context) {
|
|
28538
28538
|
const analysis = /* @__PURE__ */ new Map();
|
|
28539
28539
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -28569,7 +28569,7 @@ function generateAnalysis(context) {
|
|
|
28569
28569
|
return analysis;
|
|
28570
28570
|
}
|
|
28571
28571
|
|
|
28572
|
-
// bazel-out/
|
|
28572
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
28573
28573
|
var NgModuleIndexImpl = class {
|
|
28574
28574
|
constructor(metaReader, localReader) {
|
|
28575
28575
|
this.metaReader = metaReader;
|
|
@@ -28658,7 +28658,7 @@ var NgModuleIndexImpl = class {
|
|
|
28658
28658
|
}
|
|
28659
28659
|
};
|
|
28660
28660
|
|
|
28661
|
-
// bazel-out/
|
|
28661
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
28662
28662
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
28663
28663
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
28664
28664
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -28806,7 +28806,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
28806
28806
|
};
|
|
28807
28807
|
}
|
|
28808
28808
|
|
|
28809
|
-
// bazel-out/
|
|
28809
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
28810
28810
|
var StandaloneComponentScopeReader = class {
|
|
28811
28811
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
28812
28812
|
this.metaReader = metaReader;
|
|
@@ -28884,21 +28884,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
28884
28884
|
}
|
|
28885
28885
|
};
|
|
28886
28886
|
|
|
28887
|
-
// bazel-out/
|
|
28887
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
28888
28888
|
var OptimizeFor;
|
|
28889
28889
|
(function(OptimizeFor2) {
|
|
28890
28890
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
28891
28891
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
28892
28892
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
28893
28893
|
|
|
28894
|
-
// bazel-out/
|
|
28894
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
28895
28895
|
var CompletionKind;
|
|
28896
28896
|
(function(CompletionKind2) {
|
|
28897
28897
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
28898
28898
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
28899
28899
|
})(CompletionKind || (CompletionKind = {}));
|
|
28900
28900
|
|
|
28901
|
-
// bazel-out/
|
|
28901
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
28902
28902
|
var PotentialImportKind;
|
|
28903
28903
|
(function(PotentialImportKind2) {
|
|
28904
28904
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -28910,7 +28910,7 @@ var PotentialImportMode;
|
|
|
28910
28910
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
28911
28911
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
28912
28912
|
|
|
28913
|
-
// bazel-out/
|
|
28913
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
28914
28914
|
var SymbolKind;
|
|
28915
28915
|
(function(SymbolKind2) {
|
|
28916
28916
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -28926,7 +28926,7 @@ var SymbolKind;
|
|
|
28926
28926
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
28927
28927
|
})(SymbolKind || (SymbolKind = {}));
|
|
28928
28928
|
|
|
28929
|
-
// bazel-out/
|
|
28929
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
28930
28930
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
28931
28931
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
28932
28932
|
var _a;
|
|
@@ -29033,7 +29033,7 @@ function parseTemplateAsSourceFile(fileName, template) {
|
|
|
29033
29033
|
return import_typescript69.default.createSourceFile(fileName, template, import_typescript69.default.ScriptTarget.Latest, false, import_typescript69.default.ScriptKind.JSX);
|
|
29034
29034
|
}
|
|
29035
29035
|
|
|
29036
|
-
// bazel-out/
|
|
29036
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
29037
29037
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
29038
29038
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
29039
29039
|
function getTemplateId(clazz) {
|
|
@@ -29050,10 +29050,10 @@ function allocateTemplateId(sf) {
|
|
|
29050
29050
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
29051
29051
|
}
|
|
29052
29052
|
|
|
29053
|
-
// bazel-out/
|
|
29053
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
29054
29054
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
29055
29055
|
|
|
29056
|
-
// bazel-out/
|
|
29056
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
29057
29057
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
29058
29058
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
29059
29059
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -29182,7 +29182,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
29182
29182
|
}) || false;
|
|
29183
29183
|
}
|
|
29184
29184
|
|
|
29185
|
-
// bazel-out/
|
|
29185
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
29186
29186
|
var CompletionEngine = class {
|
|
29187
29187
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
29188
29188
|
this.tcb = tcb;
|
|
@@ -29339,10 +29339,10 @@ var CompletionEngine = class {
|
|
|
29339
29339
|
}
|
|
29340
29340
|
};
|
|
29341
29341
|
|
|
29342
|
-
// bazel-out/
|
|
29342
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
29343
29343
|
var import_typescript86 = __toESM(require("typescript"), 1);
|
|
29344
29344
|
|
|
29345
|
-
// bazel-out/
|
|
29345
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
29346
29346
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
29347
29347
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
29348
29348
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -29394,10 +29394,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
29394
29394
|
}
|
|
29395
29395
|
};
|
|
29396
29396
|
|
|
29397
|
-
// bazel-out/
|
|
29397
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29398
29398
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
29399
29399
|
|
|
29400
|
-
// bazel-out/
|
|
29400
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
29401
29401
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
29402
29402
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
29403
29403
|
import_typescript73.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -29471,16 +29471,16 @@ function isAccessExpression(node) {
|
|
|
29471
29471
|
return import_typescript73.default.isPropertyAccessExpression(node) || import_typescript73.default.isElementAccessExpression(node);
|
|
29472
29472
|
}
|
|
29473
29473
|
|
|
29474
|
-
// bazel-out/
|
|
29474
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29475
29475
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
29476
29476
|
|
|
29477
|
-
// bazel-out/
|
|
29477
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29478
29478
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
29479
29479
|
|
|
29480
|
-
// bazel-out/
|
|
29480
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29481
29481
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
29482
29482
|
|
|
29483
|
-
// bazel-out/
|
|
29483
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
29484
29484
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
29485
29485
|
var INELIGIBLE = {};
|
|
29486
29486
|
function canEmitType(type, canEmit) {
|
|
@@ -29555,7 +29555,7 @@ var TypeEmitter = class {
|
|
|
29555
29555
|
}
|
|
29556
29556
|
};
|
|
29557
29557
|
|
|
29558
|
-
// bazel-out/
|
|
29558
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29559
29559
|
var TypeParameterEmitter = class {
|
|
29560
29560
|
constructor(typeParameters, reflector) {
|
|
29561
29561
|
this.typeParameters = typeParameters;
|
|
@@ -29632,7 +29632,7 @@ var TypeParameterEmitter = class {
|
|
|
29632
29632
|
}
|
|
29633
29633
|
};
|
|
29634
29634
|
|
|
29635
|
-
// bazel-out/
|
|
29635
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29636
29636
|
var TcbInliningRequirement;
|
|
29637
29637
|
(function(TcbInliningRequirement2) {
|
|
29638
29638
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -29712,7 +29712,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
29712
29712
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
29713
29713
|
}
|
|
29714
29714
|
|
|
29715
|
-
// bazel-out/
|
|
29715
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29716
29716
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
29717
29717
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
29718
29718
|
const rawType = import_typescript78.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -29824,7 +29824,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
29824
29824
|
});
|
|
29825
29825
|
}
|
|
29826
29826
|
|
|
29827
|
-
// bazel-out/
|
|
29827
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29828
29828
|
var Environment = class {
|
|
29829
29829
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
29830
29830
|
this.config = config;
|
|
@@ -29916,7 +29916,7 @@ var Environment = class {
|
|
|
29916
29916
|
}
|
|
29917
29917
|
};
|
|
29918
29918
|
|
|
29919
|
-
// bazel-out/
|
|
29919
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
29920
29920
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
29921
29921
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
29922
29922
|
constructor(resolver) {
|
|
@@ -30047,7 +30047,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
30047
30047
|
});
|
|
30048
30048
|
}
|
|
30049
30049
|
|
|
30050
|
-
// bazel-out/
|
|
30050
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
30051
30051
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
30052
30052
|
var TypeCheckShimGenerator = class {
|
|
30053
30053
|
constructor() {
|
|
@@ -30065,10 +30065,10 @@ var TypeCheckShimGenerator = class {
|
|
|
30065
30065
|
}
|
|
30066
30066
|
};
|
|
30067
30067
|
|
|
30068
|
-
// bazel-out/
|
|
30068
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30069
30069
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
30070
30070
|
|
|
30071
|
-
// bazel-out/
|
|
30071
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
30072
30072
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
30073
30073
|
function wrapForDiagnostics(expr) {
|
|
30074
30074
|
return import_typescript82.default.factory.createParenthesizedExpression(expr);
|
|
@@ -30113,7 +30113,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
30113
30113
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
30114
30114
|
}
|
|
30115
30115
|
|
|
30116
|
-
// bazel-out/
|
|
30116
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
30117
30117
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
30118
30118
|
var NULL_AS_ANY = import_typescript83.default.factory.createAsExpression(import_typescript83.default.factory.createNull(), import_typescript83.default.factory.createKeywordTypeNode(import_typescript83.default.SyntaxKind.AnyKeyword));
|
|
30119
30119
|
var UNDEFINED = import_typescript83.default.factory.createIdentifier("undefined");
|
|
@@ -30442,7 +30442,7 @@ var VeSafeLhsInferenceBugDetector = class {
|
|
|
30442
30442
|
};
|
|
30443
30443
|
VeSafeLhsInferenceBugDetector.SINGLETON = new VeSafeLhsInferenceBugDetector();
|
|
30444
30444
|
|
|
30445
|
-
// bazel-out/
|
|
30445
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
30446
30446
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
30447
30447
|
constructor(templateId, boundTarget, oob) {
|
|
30448
30448
|
super();
|
|
@@ -30465,7 +30465,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
|
30465
30465
|
}
|
|
30466
30466
|
};
|
|
30467
30467
|
|
|
30468
|
-
// bazel-out/
|
|
30468
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30469
30469
|
var TcbGenericContextBehavior;
|
|
30470
30470
|
(function(TcbGenericContextBehavior2) {
|
|
30471
30471
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -31568,7 +31568,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
31568
31568
|
}
|
|
31569
31569
|
};
|
|
31570
31570
|
|
|
31571
|
-
// bazel-out/
|
|
31571
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
31572
31572
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
31573
31573
|
var TypeCheckFile = class extends Environment {
|
|
31574
31574
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -31604,7 +31604,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
31604
31604
|
}
|
|
31605
31605
|
};
|
|
31606
31606
|
|
|
31607
|
-
// bazel-out/
|
|
31607
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
31608
31608
|
var InliningMode;
|
|
31609
31609
|
(function(InliningMode2) {
|
|
31610
31610
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -31842,7 +31842,7 @@ function splitStringAtPoints(str, points) {
|
|
|
31842
31842
|
return splits;
|
|
31843
31843
|
}
|
|
31844
31844
|
|
|
31845
|
-
// bazel-out/
|
|
31845
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
31846
31846
|
var LF_CHAR = 10;
|
|
31847
31847
|
var CR_CHAR = 13;
|
|
31848
31848
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -31883,7 +31883,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
31883
31883
|
return low - 1;
|
|
31884
31884
|
}
|
|
31885
31885
|
|
|
31886
|
-
// bazel-out/
|
|
31886
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
31887
31887
|
var TemplateSource = class {
|
|
31888
31888
|
constructor(mapping, file) {
|
|
31889
31889
|
this.mapping = mapping;
|
|
@@ -31934,7 +31934,7 @@ var TemplateSourceManager = class {
|
|
|
31934
31934
|
}
|
|
31935
31935
|
};
|
|
31936
31936
|
|
|
31937
|
-
// bazel-out/
|
|
31937
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
31938
31938
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
31939
31939
|
var SymbolBuilder = class {
|
|
31940
31940
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -32411,7 +32411,7 @@ function sourceSpanEqual(a, b) {
|
|
|
32411
32411
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
32412
32412
|
}
|
|
32413
32413
|
|
|
32414
|
-
// bazel-out/
|
|
32414
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
32415
32415
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
32416
32416
|
var TemplateTypeCheckerImpl = class {
|
|
32417
32417
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -33104,7 +33104,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
33104
33104
|
}
|
|
33105
33105
|
};
|
|
33106
33106
|
|
|
33107
|
-
// bazel-out/
|
|
33107
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
33108
33108
|
var TemplateCheckWithVisitor = class {
|
|
33109
33109
|
run(ctx, component, template) {
|
|
33110
33110
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -33180,7 +33180,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor {
|
|
|
33180
33180
|
}
|
|
33181
33181
|
};
|
|
33182
33182
|
|
|
33183
|
-
// bazel-out/
|
|
33183
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
33184
33184
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
33185
33185
|
constructor() {
|
|
33186
33186
|
super(...arguments);
|
|
@@ -33205,7 +33205,7 @@ var factory = {
|
|
|
33205
33205
|
create: () => new InvalidBananaInBoxCheck()
|
|
33206
33206
|
};
|
|
33207
33207
|
|
|
33208
|
-
// bazel-out/
|
|
33208
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
33209
33209
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
33210
33210
|
["ngIf", "NgIf"],
|
|
33211
33211
|
["ngFor", "NgFor"],
|
|
@@ -33249,7 +33249,7 @@ var factory2 = {
|
|
|
33249
33249
|
}
|
|
33250
33250
|
};
|
|
33251
33251
|
|
|
33252
|
-
// bazel-out/
|
|
33252
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
33253
33253
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
33254
33254
|
constructor() {
|
|
33255
33255
|
super(...arguments);
|
|
@@ -33281,7 +33281,7 @@ var factory3 = {
|
|
|
33281
33281
|
create: () => new MissingNgForOfLetCheck()
|
|
33282
33282
|
};
|
|
33283
33283
|
|
|
33284
|
-
// bazel-out/
|
|
33284
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
33285
33285
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
33286
33286
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33287
33287
|
constructor() {
|
|
@@ -33325,7 +33325,7 @@ var factory4 = {
|
|
|
33325
33325
|
}
|
|
33326
33326
|
};
|
|
33327
33327
|
|
|
33328
|
-
// bazel-out/
|
|
33328
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
33329
33329
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
33330
33330
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33331
33331
|
constructor() {
|
|
@@ -33370,7 +33370,7 @@ var factory5 = {
|
|
|
33370
33370
|
}
|
|
33371
33371
|
};
|
|
33372
33372
|
|
|
33373
|
-
// bazel-out/
|
|
33373
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
33374
33374
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
33375
33375
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
33376
33376
|
constructor() {
|
|
@@ -33393,7 +33393,7 @@ var factory6 = {
|
|
|
33393
33393
|
create: () => new SuffixNotSupportedCheck()
|
|
33394
33394
|
};
|
|
33395
33395
|
|
|
33396
|
-
// bazel-out/
|
|
33396
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
33397
33397
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
33398
33398
|
constructor() {
|
|
33399
33399
|
super(...arguments);
|
|
@@ -33431,10 +33431,10 @@ var factory7 = {
|
|
|
33431
33431
|
create: () => new TextAttributeNotBindingSpec()
|
|
33432
33432
|
};
|
|
33433
33433
|
|
|
33434
|
-
// bazel-out/
|
|
33434
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33435
33435
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
33436
33436
|
|
|
33437
|
-
// bazel-out/
|
|
33437
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
33438
33438
|
var DiagnosticCategoryLabel;
|
|
33439
33439
|
(function(DiagnosticCategoryLabel2) {
|
|
33440
33440
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -33442,7 +33442,7 @@ var DiagnosticCategoryLabel;
|
|
|
33442
33442
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
33443
33443
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
33444
33444
|
|
|
33445
|
-
// bazel-out/
|
|
33445
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33446
33446
|
var ExtendedTemplateCheckerImpl = class {
|
|
33447
33447
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
33448
33448
|
var _a, _b, _c, _d, _e;
|
|
@@ -33494,7 +33494,7 @@ function assertNever(value) {
|
|
|
33494
33494
|
${value}`);
|
|
33495
33495
|
}
|
|
33496
33496
|
|
|
33497
|
-
// bazel-out/
|
|
33497
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
33498
33498
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
33499
33499
|
factory,
|
|
33500
33500
|
factory4,
|
|
@@ -33505,7 +33505,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
33505
33505
|
factory6
|
|
33506
33506
|
];
|
|
33507
33507
|
|
|
33508
|
-
// bazel-out/
|
|
33508
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
33509
33509
|
var CompilationTicketKind;
|
|
33510
33510
|
(function(CompilationTicketKind2) {
|
|
33511
33511
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -34195,7 +34195,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
34195
34195
|
return versions;
|
|
34196
34196
|
}
|
|
34197
34197
|
|
|
34198
|
-
// bazel-out/
|
|
34198
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
34199
34199
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
34200
34200
|
var DelegatingCompilerHost2 = class {
|
|
34201
34201
|
constructor(delegate) {
|
|
@@ -34340,7 +34340,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
34340
34340
|
}
|
|
34341
34341
|
};
|
|
34342
34342
|
|
|
34343
|
-
// bazel-out/
|
|
34343
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
34344
34344
|
var NgtscProgram = class {
|
|
34345
34345
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
34346
34346
|
this.options = options;
|
|
@@ -34558,21 +34558,21 @@ function mergeEmitResults(emitResults) {
|
|
|
34558
34558
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
34559
34559
|
}
|
|
34560
34560
|
|
|
34561
|
-
// bazel-out/
|
|
34561
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
34562
34562
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
34563
34563
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
34564
34564
|
}
|
|
34565
34565
|
|
|
34566
|
-
// bazel-out/
|
|
34566
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
34567
34567
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
34568
34568
|
|
|
34569
|
-
// bazel-out/
|
|
34569
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
34570
34570
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
34571
34571
|
|
|
34572
|
-
// bazel-out/
|
|
34572
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
34573
34573
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
34574
34574
|
|
|
34575
|
-
// bazel-out/
|
|
34575
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
34576
34576
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
34577
34577
|
ngDevMode: false,
|
|
34578
34578
|
ngI18nClosureMode: false
|
|
@@ -34581,7 +34581,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
34581
34581
|
ngJitMode: false
|
|
34582
34582
|
});
|
|
34583
34583
|
|
|
34584
|
-
// bazel-out/
|
|
34584
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
34585
34585
|
var LogLevel;
|
|
34586
34586
|
(function(LogLevel2) {
|
|
34587
34587
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -34590,7 +34590,7 @@ var LogLevel;
|
|
|
34590
34590
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
34591
34591
|
})(LogLevel || (LogLevel = {}));
|
|
34592
34592
|
|
|
34593
|
-
// bazel-out/
|
|
34593
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
34594
34594
|
var RESET = "\x1B[0m";
|
|
34595
34595
|
var RED = "\x1B[31m";
|
|
34596
34596
|
var YELLOW = "\x1B[33m";
|
|
@@ -34599,18 +34599,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
34599
34599
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
34600
34600
|
var ERROR = `${RED}Error:${RESET}`;
|
|
34601
34601
|
|
|
34602
|
-
// bazel-out/
|
|
34602
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
34603
34603
|
setFileSystem(new NodeJSFileSystem());
|
|
34604
34604
|
|
|
34605
|
-
// bazel-out/
|
|
34605
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
34606
34606
|
var import_fs2 = require("fs");
|
|
34607
34607
|
var import_path8 = require("path");
|
|
34608
34608
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
34609
34609
|
|
|
34610
|
-
// bazel-out/
|
|
34610
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34611
34611
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
34612
34612
|
|
|
34613
|
-
// bazel-out/
|
|
34613
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
34614
34614
|
var import_path4 = require("path");
|
|
34615
34615
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
34616
34616
|
var IS_AFTER_TS_492 = isAfterVersion2(4, 9);
|
|
@@ -34803,7 +34803,7 @@ function isAfterVersion2(targetMajor, targetMinor) {
|
|
|
34803
34803
|
return major === targetMajor ? minor >= targetMinor : true;
|
|
34804
34804
|
}
|
|
34805
34805
|
|
|
34806
|
-
// bazel-out/
|
|
34806
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34807
34807
|
var ChangeTracker = class {
|
|
34808
34808
|
constructor(_printer, _importRemapper) {
|
|
34809
34809
|
this._printer = _printer;
|
|
@@ -34856,7 +34856,7 @@ function normalizePath(path3) {
|
|
|
34856
34856
|
return path3.replace(/\\/g, "/");
|
|
34857
34857
|
}
|
|
34858
34858
|
|
|
34859
|
-
// bazel-out/
|
|
34859
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
34860
34860
|
var import_core13 = require("@angular-devkit/core");
|
|
34861
34861
|
function getProjectTsConfigPaths(tree) {
|
|
34862
34862
|
return __async(this, null, function* () {
|
|
@@ -34936,11 +34936,11 @@ function getWorkspace(tree) {
|
|
|
34936
34936
|
});
|
|
34937
34937
|
}
|
|
34938
34938
|
|
|
34939
|
-
// bazel-out/
|
|
34939
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34940
34940
|
var import_path5 = require("path");
|
|
34941
34941
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
34942
34942
|
|
|
34943
|
-
// bazel-out/
|
|
34943
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
34944
34944
|
var path2 = __toESM(require("path"), 1);
|
|
34945
34945
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
34946
34946
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -34957,7 +34957,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
34957
34957
|
return import_typescript103.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
34958
34958
|
}
|
|
34959
34959
|
|
|
34960
|
-
// bazel-out/
|
|
34960
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34961
34961
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
34962
34962
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
34963
34963
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -34986,13 +34986,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
34986
34986
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
34987
34987
|
}
|
|
34988
34988
|
|
|
34989
|
-
// bazel-out/
|
|
34989
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
34990
34990
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
34991
34991
|
|
|
34992
|
-
// bazel-out/
|
|
34992
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
34993
34993
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
34994
34994
|
|
|
34995
|
-
// bazel-out/
|
|
34995
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
34996
34996
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
34997
34997
|
function getImportOfIdentifier(typeChecker, node) {
|
|
34998
34998
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -35036,7 +35036,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
35036
35036
|
});
|
|
35037
35037
|
}
|
|
35038
35038
|
|
|
35039
|
-
// bazel-out/
|
|
35039
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
35040
35040
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
35041
35041
|
if (!import_typescript106.default.isCallExpression(decorator.expression) || !import_typescript106.default.isIdentifier(decorator.expression.expression)) {
|
|
35042
35042
|
return null;
|
|
@@ -35045,7 +35045,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
35045
35045
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
35046
35046
|
}
|
|
35047
35047
|
|
|
35048
|
-
// bazel-out/
|
|
35048
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
35049
35049
|
function getAngularDecorators(typeChecker, decorators) {
|
|
35050
35050
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
35051
35051
|
node,
|
|
@@ -35055,7 +35055,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
35055
35055
|
}));
|
|
35056
35056
|
}
|
|
35057
35057
|
|
|
35058
|
-
// bazel-out/
|
|
35058
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
35059
35059
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
35060
35060
|
function closestNode(node, predicate) {
|
|
35061
35061
|
let current = node.parent;
|
|
@@ -35068,7 +35068,7 @@ function closestNode(node, predicate) {
|
|
|
35068
35068
|
return null;
|
|
35069
35069
|
}
|
|
35070
35070
|
|
|
35071
|
-
// bazel-out/
|
|
35071
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
35072
35072
|
var import_path6 = require("path");
|
|
35073
35073
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
35074
35074
|
var UniqueItemTracker = class {
|
|
@@ -35238,7 +35238,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
35238
35238
|
}));
|
|
35239
35239
|
}
|
|
35240
35240
|
|
|
35241
|
-
// bazel-out/
|
|
35241
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
35242
35242
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
35243
35243
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
35244
35244
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -35437,14 +35437,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
35437
35437
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
35438
35438
|
}
|
|
35439
35439
|
|
|
35440
|
-
// bazel-out/
|
|
35440
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35441
35441
|
var import_path7 = require("path");
|
|
35442
35442
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
35443
35443
|
|
|
35444
|
-
// bazel-out/
|
|
35444
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35445
35445
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
35446
35446
|
|
|
35447
|
-
// bazel-out/
|
|
35447
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
35448
35448
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
35449
35449
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
35450
35450
|
var _a, _b;
|
|
@@ -35453,7 +35453,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
35453
35453
|
return !!(((_a = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
|
|
35454
35454
|
}
|
|
35455
35455
|
|
|
35456
|
-
// bazel-out/
|
|
35456
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35457
35457
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
35458
35458
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
35459
35459
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -35801,7 +35801,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
35801
35801
|
return metadata != null && metadata.isStandalone;
|
|
35802
35802
|
}
|
|
35803
35803
|
|
|
35804
|
-
// bazel-out/
|
|
35804
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35805
35805
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
35806
35806
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
35807
35807
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -36177,7 +36177,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
36177
36177
|
return false;
|
|
36178
36178
|
}
|
|
36179
36179
|
|
|
36180
|
-
// bazel-out/
|
|
36180
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
36181
36181
|
var MigrationMode;
|
|
36182
36182
|
(function(MigrationMode2) {
|
|
36183
36183
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|