@angular/core 15.2.3 → 15.2.5
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/change_detection/change_detector_ref.mjs +4 -4
- package/esm2020/src/render3/instructions/styling.mjs +5 -2
- package/esm2020/src/render3/node_selector_matcher.mjs +17 -5
- package/esm2020/src/render3/view_ref.mjs +1 -1
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/esm2020/testing/src/test_bed_compiler.mjs +12 -7
- package/fesm2015/core.mjs +22 -7
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +33 -13
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +22 -7
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +33 -13
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +5 -5
- 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 +326 -341
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
|
@@ -59,7 +59,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
59
59
|
});
|
|
60
60
|
};
|
|
61
61
|
|
|
62
|
-
// bazel-out/
|
|
62
|
+
// bazel-out/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
6713
6713
|
function parse(value) {
|
|
6714
6714
|
const styles = [];
|
|
6715
6715
|
let i = 0;
|
|
@@ -6718,7 +6718,6 @@ function parse(value) {
|
|
|
6718
6718
|
let valueStart = 0;
|
|
6719
6719
|
let propStart = 0;
|
|
6720
6720
|
let currentProp = null;
|
|
6721
|
-
let valueHasQuotes = false;
|
|
6722
6721
|
while (i < value.length) {
|
|
6723
6722
|
const token = value.charCodeAt(i++);
|
|
6724
6723
|
switch (token) {
|
|
@@ -6729,7 +6728,6 @@ function parse(value) {
|
|
|
6729
6728
|
parenDepth--;
|
|
6730
6729
|
break;
|
|
6731
6730
|
case 39:
|
|
6732
|
-
valueHasQuotes = valueHasQuotes || valueStart > 0;
|
|
6733
6731
|
if (quote === 0) {
|
|
6734
6732
|
quote = 39;
|
|
6735
6733
|
} else if (quote === 39 && value.charCodeAt(i - 1) !== 92) {
|
|
@@ -6737,7 +6735,6 @@ function parse(value) {
|
|
|
6737
6735
|
}
|
|
6738
6736
|
break;
|
|
6739
6737
|
case 34:
|
|
6740
|
-
valueHasQuotes = valueHasQuotes || valueStart > 0;
|
|
6741
6738
|
if (quote === 0) {
|
|
6742
6739
|
quote = 34;
|
|
6743
6740
|
} else if (quote === 34 && value.charCodeAt(i - 1) !== 92) {
|
|
@@ -6753,39 +6750,27 @@ function parse(value) {
|
|
|
6753
6750
|
case 59:
|
|
6754
6751
|
if (currentProp && valueStart > 0 && parenDepth === 0 && quote === 0) {
|
|
6755
6752
|
const styleVal = value.substring(valueStart, i - 1).trim();
|
|
6756
|
-
styles.push(currentProp,
|
|
6753
|
+
styles.push(currentProp, styleVal);
|
|
6757
6754
|
propStart = i;
|
|
6758
6755
|
valueStart = 0;
|
|
6759
6756
|
currentProp = null;
|
|
6760
|
-
valueHasQuotes = false;
|
|
6761
6757
|
}
|
|
6762
6758
|
break;
|
|
6763
6759
|
}
|
|
6764
6760
|
}
|
|
6765
6761
|
if (currentProp && valueStart) {
|
|
6766
6762
|
const styleVal = value.slice(valueStart).trim();
|
|
6767
|
-
styles.push(currentProp,
|
|
6763
|
+
styles.push(currentProp, styleVal);
|
|
6768
6764
|
}
|
|
6769
6765
|
return styles;
|
|
6770
6766
|
}
|
|
6771
|
-
function stripUnnecessaryQuotes(value) {
|
|
6772
|
-
const qS = value.charCodeAt(0);
|
|
6773
|
-
const qE = value.charCodeAt(value.length - 1);
|
|
6774
|
-
if (qS == qE && (qS == 39 || qS == 34)) {
|
|
6775
|
-
const tempValue = value.substring(1, value.length - 1);
|
|
6776
|
-
if (tempValue.indexOf("'") == -1 && tempValue.indexOf('"') == -1) {
|
|
6777
|
-
value = tempValue;
|
|
6778
|
-
}
|
|
6779
|
-
}
|
|
6780
|
-
return value;
|
|
6781
|
-
}
|
|
6782
6767
|
function hyphenate(value) {
|
|
6783
6768
|
return value.replace(/[a-z][A-Z]/g, (v) => {
|
|
6784
6769
|
return v.charAt(0) + "-" + v.charAt(1);
|
|
6785
6770
|
}).toLowerCase();
|
|
6786
6771
|
}
|
|
6787
6772
|
|
|
6788
|
-
// bazel-out/
|
|
6773
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
6789
6774
|
var IMPORTANT_FLAG = "!important";
|
|
6790
6775
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
6791
6776
|
var StylingBuilder = class {
|
|
@@ -7118,7 +7103,7 @@ function isEmptyExpression(ast) {
|
|
|
7118
7103
|
return ast instanceof EmptyExpr;
|
|
7119
7104
|
}
|
|
7120
7105
|
|
|
7121
|
-
// bazel-out/
|
|
7106
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
7122
7107
|
var TokenType;
|
|
7123
7108
|
(function(TokenType2) {
|
|
7124
7109
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -7479,7 +7464,7 @@ function parseIntAutoRadix(text) {
|
|
|
7479
7464
|
return result;
|
|
7480
7465
|
}
|
|
7481
7466
|
|
|
7482
|
-
// bazel-out/
|
|
7467
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
7483
7468
|
var SplitInterpolation = class {
|
|
7484
7469
|
constructor(strings, expressions, offsets) {
|
|
7485
7470
|
this.strings = strings;
|
|
@@ -8135,7 +8120,7 @@ var _ParseAST = class {
|
|
|
8135
8120
|
const sourceSpan = this.sourceSpan(keyStart);
|
|
8136
8121
|
values.push(new PropertyRead(span, sourceSpan, sourceSpan, new ImplicitReceiver(span, sourceSpan), key));
|
|
8137
8122
|
}
|
|
8138
|
-
} while (this.consumeOptionalCharacter($COMMA));
|
|
8123
|
+
} while (this.consumeOptionalCharacter($COMMA) && !this.next.isCharacter($RBRACE));
|
|
8139
8124
|
this.rbracesExpected--;
|
|
8140
8125
|
this.expectCharacter($RBRACE);
|
|
8141
8126
|
}
|
|
@@ -8373,7 +8358,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
8373
8358
|
return offsetMap;
|
|
8374
8359
|
}
|
|
8375
8360
|
|
|
8376
|
-
// bazel-out/
|
|
8361
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
8377
8362
|
var NodeWithI18n = class {
|
|
8378
8363
|
constructor(sourceSpan, i18n) {
|
|
8379
8364
|
this.sourceSpan = sourceSpan;
|
|
@@ -8461,7 +8446,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
8461
8446
|
return result;
|
|
8462
8447
|
}
|
|
8463
8448
|
|
|
8464
|
-
// bazel-out/
|
|
8449
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
8465
8450
|
var TagContentType;
|
|
8466
8451
|
(function(TagContentType2) {
|
|
8467
8452
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -8494,11 +8479,11 @@ function mergeNsAndName(prefix, localName) {
|
|
|
8494
8479
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
8495
8480
|
}
|
|
8496
8481
|
|
|
8497
|
-
// bazel-out/
|
|
8482
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
8498
8483
|
var ElementSchemaRegistry = class {
|
|
8499
8484
|
};
|
|
8500
8485
|
|
|
8501
|
-
// bazel-out/
|
|
8486
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
8502
8487
|
var BOOLEAN = "boolean";
|
|
8503
8488
|
var NUMBER = "number";
|
|
8504
8489
|
var STRING = "string";
|
|
@@ -8851,7 +8836,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
8851
8836
|
}
|
|
8852
8837
|
}
|
|
8853
8838
|
|
|
8854
|
-
// bazel-out/
|
|
8839
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
8855
8840
|
var HtmlTagDefinition = class {
|
|
8856
8841
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
8857
8842
|
this.closedByChildren = {};
|
|
@@ -8969,7 +8954,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
8969
8954
|
return (_b = (_a = TAG_DEFINITIONS[tagName]) != null ? _a : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
|
|
8970
8955
|
}
|
|
8971
8956
|
|
|
8972
|
-
// bazel-out/
|
|
8957
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
8973
8958
|
var NAMED_ENTITIES = {
|
|
8974
8959
|
"AElig": "\xC6",
|
|
8975
8960
|
"AMP": "&",
|
|
@@ -11100,7 +11085,7 @@ var NAMED_ENTITIES = {
|
|
|
11100
11085
|
var NGSP_UNICODE = "\uE500";
|
|
11101
11086
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
11102
11087
|
|
|
11103
|
-
// bazel-out/
|
|
11088
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
11104
11089
|
var TokenError = class extends ParseError {
|
|
11105
11090
|
constructor(errorMsg, tokenType, span) {
|
|
11106
11091
|
super(span, errorMsg);
|
|
@@ -11935,7 +11920,7 @@ var CursorError = class {
|
|
|
11935
11920
|
}
|
|
11936
11921
|
};
|
|
11937
11922
|
|
|
11938
|
-
// bazel-out/
|
|
11923
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
11939
11924
|
var TreeError = class extends ParseError {
|
|
11940
11925
|
static create(elementName, span, msg) {
|
|
11941
11926
|
return new TreeError(elementName, span, msg);
|
|
@@ -12262,7 +12247,7 @@ function decodeEntity(match, entity) {
|
|
|
12262
12247
|
return match;
|
|
12263
12248
|
}
|
|
12264
12249
|
|
|
12265
|
-
// bazel-out/
|
|
12250
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
12266
12251
|
var HtmlParser = class extends Parser2 {
|
|
12267
12252
|
constructor() {
|
|
12268
12253
|
super(getHtmlTagDefinition);
|
|
@@ -12272,7 +12257,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
12272
12257
|
}
|
|
12273
12258
|
};
|
|
12274
12259
|
|
|
12275
|
-
// bazel-out/
|
|
12260
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
12276
12261
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
12277
12262
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
12278
12263
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -12332,7 +12317,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
12332
12317
|
return result;
|
|
12333
12318
|
}
|
|
12334
12319
|
|
|
12335
|
-
// bazel-out/
|
|
12320
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12336
12321
|
function mapLiteral(obj, quoted = false) {
|
|
12337
12322
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12338
12323
|
key,
|
|
@@ -12341,7 +12326,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12341
12326
|
})));
|
|
12342
12327
|
}
|
|
12343
12328
|
|
|
12344
|
-
// bazel-out/
|
|
12329
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
12345
12330
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
12346
12331
|
"iframe|srcdoc",
|
|
12347
12332
|
"*|innerhtml",
|
|
@@ -12356,7 +12341,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
12356
12341
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
12357
12342
|
}
|
|
12358
12343
|
|
|
12359
|
-
// bazel-out/
|
|
12344
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
12360
12345
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
12361
12346
|
var ATTRIBUTE_PREFIX = "attr";
|
|
12362
12347
|
var CLASS_PREFIX = "class";
|
|
@@ -12676,7 +12661,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
12676
12661
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
12677
12662
|
}
|
|
12678
12663
|
|
|
12679
|
-
// bazel-out/
|
|
12664
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
12680
12665
|
function isStyleUrlResolvable(url) {
|
|
12681
12666
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
12682
12667
|
return false;
|
|
@@ -12685,7 +12670,7 @@ function isStyleUrlResolvable(url) {
|
|
|
12685
12670
|
}
|
|
12686
12671
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
12687
12672
|
|
|
12688
|
-
// bazel-out/
|
|
12673
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
12689
12674
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
12690
12675
|
var LINK_ELEMENT = "link";
|
|
12691
12676
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -12755,7 +12740,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
12755
12740
|
return selectAttr;
|
|
12756
12741
|
}
|
|
12757
12742
|
|
|
12758
|
-
// bazel-out/
|
|
12743
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
12759
12744
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
12760
12745
|
var KW_BIND_IDX = 1;
|
|
12761
12746
|
var KW_LET_IDX = 2;
|
|
@@ -13103,7 +13088,7 @@ function textContents(node) {
|
|
|
13103
13088
|
}
|
|
13104
13089
|
}
|
|
13105
13090
|
|
|
13106
|
-
// bazel-out/
|
|
13091
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
13107
13092
|
var TagType;
|
|
13108
13093
|
(function(TagType2) {
|
|
13109
13094
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -13238,7 +13223,7 @@ function serializePlaceholderValue(value) {
|
|
|
13238
13223
|
}
|
|
13239
13224
|
}
|
|
13240
13225
|
|
|
13241
|
-
// bazel-out/
|
|
13226
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
13242
13227
|
var IcuSerializerVisitor = class {
|
|
13243
13228
|
visitText(text) {
|
|
13244
13229
|
return text.value;
|
|
@@ -13269,7 +13254,7 @@ function serializeIcuNode(icu) {
|
|
|
13269
13254
|
return icu.visit(serializer);
|
|
13270
13255
|
}
|
|
13271
13256
|
|
|
13272
|
-
// bazel-out/
|
|
13257
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
13273
13258
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
13274
13259
|
"A": "LINK",
|
|
13275
13260
|
"B": "BOLD_TEXT",
|
|
@@ -13363,7 +13348,7 @@ var PlaceholderRegistry = class {
|
|
|
13363
13348
|
}
|
|
13364
13349
|
};
|
|
13365
13350
|
|
|
13366
|
-
// bazel-out/
|
|
13351
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
13367
13352
|
var _expParser = new Parser(new Lexer());
|
|
13368
13353
|
function createI18nMessageFactory(interpolationConfig) {
|
|
13369
13354
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -13518,14 +13503,14 @@ function extractPlaceholderName(input) {
|
|
|
13518
13503
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
13519
13504
|
}
|
|
13520
13505
|
|
|
13521
|
-
// bazel-out/
|
|
13506
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
13522
13507
|
var I18nError = class extends ParseError {
|
|
13523
13508
|
constructor(span, msg) {
|
|
13524
13509
|
super(span, msg);
|
|
13525
13510
|
}
|
|
13526
13511
|
};
|
|
13527
13512
|
|
|
13528
|
-
// bazel-out/
|
|
13513
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
13529
13514
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
13530
13515
|
if (htmlNode instanceof NodeWithI18n) {
|
|
13531
13516
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -13674,7 +13659,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
13674
13659
|
return jsDocComment(tags);
|
|
13675
13660
|
}
|
|
13676
13661
|
|
|
13677
|
-
// bazel-out/
|
|
13662
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
13678
13663
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
13679
13664
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
13680
13665
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -13722,7 +13707,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
13722
13707
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
13723
13708
|
}
|
|
13724
13709
|
|
|
13725
|
-
// bazel-out/
|
|
13710
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
13726
13711
|
function createLocalizeStatements(variable2, message, params) {
|
|
13727
13712
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
13728
13713
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -13805,7 +13790,7 @@ function createEmptyMessagePart(location) {
|
|
|
13805
13790
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
13806
13791
|
}
|
|
13807
13792
|
|
|
13808
|
-
// bazel-out/
|
|
13793
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
13809
13794
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
13810
13795
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
13811
13796
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -15107,7 +15092,7 @@ function createClosureModeGuard() {
|
|
|
15107
15092
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
15108
15093
|
}
|
|
15109
15094
|
|
|
15110
|
-
// bazel-out/
|
|
15095
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
15111
15096
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
15112
15097
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
15113
15098
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -15626,11 +15611,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
15626
15611
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
15627
15612
|
}
|
|
15628
15613
|
|
|
15629
|
-
// bazel-out/
|
|
15614
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
15630
15615
|
var ResourceLoader = class {
|
|
15631
15616
|
};
|
|
15632
15617
|
|
|
15633
|
-
// bazel-out/
|
|
15618
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
15634
15619
|
var CompilerFacadeImpl = class {
|
|
15635
15620
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
15636
15621
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -16113,10 +16098,10 @@ function publishFacade(global2) {
|
|
|
16113
16098
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
16114
16099
|
}
|
|
16115
16100
|
|
|
16116
|
-
// bazel-out/
|
|
16117
|
-
var VERSION2 = new Version("15.2.
|
|
16101
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
|
|
16102
|
+
var VERSION2 = new Version("15.2.5");
|
|
16118
16103
|
|
|
16119
|
-
// bazel-out/
|
|
16104
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
16120
16105
|
var _I18N_ATTR = "i18n";
|
|
16121
16106
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
16122
16107
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -16420,7 +16405,7 @@ function _parseMessageMeta(i18n) {
|
|
|
16420
16405
|
return { meaning, description, id: id.trim() };
|
|
16421
16406
|
}
|
|
16422
16407
|
|
|
16423
|
-
// bazel-out/
|
|
16408
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
16424
16409
|
var XmlTagDefinition = class {
|
|
16425
16410
|
constructor() {
|
|
16426
16411
|
this.closedByParent = false;
|
|
@@ -16444,7 +16429,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
16444
16429
|
return _TAG_DEFINITION;
|
|
16445
16430
|
}
|
|
16446
16431
|
|
|
16447
|
-
// bazel-out/
|
|
16432
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
16448
16433
|
var XmlParser = class extends Parser2 {
|
|
16449
16434
|
constructor() {
|
|
16450
16435
|
super(getXmlTagDefinition);
|
|
@@ -16454,7 +16439,7 @@ var XmlParser = class extends Parser2 {
|
|
|
16454
16439
|
}
|
|
16455
16440
|
};
|
|
16456
16441
|
|
|
16457
|
-
// bazel-out/
|
|
16442
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
16458
16443
|
var _VERSION = "1.2";
|
|
16459
16444
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
16460
16445
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -16694,7 +16679,7 @@ function getCtypeForTag(tag) {
|
|
|
16694
16679
|
}
|
|
16695
16680
|
}
|
|
16696
16681
|
|
|
16697
|
-
// bazel-out/
|
|
16682
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
16698
16683
|
var _VERSION2 = "2.0";
|
|
16699
16684
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
16700
16685
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -16982,7 +16967,7 @@ function getTypeForTag(tag) {
|
|
|
16982
16967
|
}
|
|
16983
16968
|
}
|
|
16984
16969
|
|
|
16985
|
-
// bazel-out/
|
|
16970
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
16986
16971
|
var MessageBundle = class {
|
|
16987
16972
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
16988
16973
|
this._htmlParser = _htmlParser;
|
|
@@ -17049,7 +17034,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
17049
17034
|
}
|
|
17050
17035
|
};
|
|
17051
17036
|
|
|
17052
|
-
// bazel-out/
|
|
17037
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
17053
17038
|
var FactoryTarget2;
|
|
17054
17039
|
(function(FactoryTarget3) {
|
|
17055
17040
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -17059,7 +17044,7 @@ var FactoryTarget2;
|
|
|
17059
17044
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
17060
17045
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
17061
17046
|
|
|
17062
|
-
// bazel-out/
|
|
17047
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
17063
17048
|
var R3TargetBinder = class {
|
|
17064
17049
|
constructor(directiveMatcher) {
|
|
17065
17050
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -17411,7 +17396,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
17411
17396
|
return templateEntities;
|
|
17412
17397
|
}
|
|
17413
17398
|
|
|
17414
|
-
// bazel-out/
|
|
17399
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
17415
17400
|
function compileClassMetadata(metadata) {
|
|
17416
17401
|
var _a, _b;
|
|
17417
17402
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -17424,12 +17409,12 @@ function compileClassMetadata(metadata) {
|
|
|
17424
17409
|
return iife.callFn([]);
|
|
17425
17410
|
}
|
|
17426
17411
|
|
|
17427
|
-
// bazel-out/
|
|
17412
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
17428
17413
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
17429
17414
|
function compileDeclareClassMetadata(metadata) {
|
|
17430
17415
|
const definitionMap = new DefinitionMap();
|
|
17431
17416
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
17432
|
-
definitionMap.set("version", literal("15.2.
|
|
17417
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17433
17418
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17434
17419
|
definitionMap.set("type", metadata.type);
|
|
17435
17420
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -17438,7 +17423,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
17438
17423
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
17439
17424
|
}
|
|
17440
17425
|
|
|
17441
|
-
// bazel-out/
|
|
17426
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
17442
17427
|
function toOptionalLiteralArray(values, mapper) {
|
|
17443
17428
|
if (values === null || values.length === 0) {
|
|
17444
17429
|
return null;
|
|
@@ -17486,7 +17471,7 @@ function compileDependency(dep) {
|
|
|
17486
17471
|
return depMeta.toLiteralMap();
|
|
17487
17472
|
}
|
|
17488
17473
|
|
|
17489
|
-
// bazel-out/
|
|
17474
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
17490
17475
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
17491
17476
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
17492
17477
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -17498,7 +17483,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
17498
17483
|
var _a;
|
|
17499
17484
|
const definitionMap = new DefinitionMap();
|
|
17500
17485
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
17501
|
-
definitionMap.set("version", literal("15.2.
|
|
17486
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17502
17487
|
definitionMap.set("type", meta.internalType);
|
|
17503
17488
|
if (meta.isStandalone) {
|
|
17504
17489
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -17588,7 +17573,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
17588
17573
|
return literalArr(expressions);
|
|
17589
17574
|
}
|
|
17590
17575
|
|
|
17591
|
-
// bazel-out/
|
|
17576
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
17592
17577
|
function compileDeclareComponentFromMetadata(meta, template, additionalTemplateInfo) {
|
|
17593
17578
|
const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
|
|
17594
17579
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -17675,12 +17660,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
17675
17660
|
});
|
|
17676
17661
|
}
|
|
17677
17662
|
|
|
17678
|
-
// bazel-out/
|
|
17663
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
17679
17664
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
17680
17665
|
function compileDeclareFactoryFunction(meta) {
|
|
17681
17666
|
const definitionMap = new DefinitionMap();
|
|
17682
17667
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
17683
|
-
definitionMap.set("version", literal("15.2.
|
|
17668
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17684
17669
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17685
17670
|
definitionMap.set("type", meta.internalType);
|
|
17686
17671
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -17692,7 +17677,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
17692
17677
|
};
|
|
17693
17678
|
}
|
|
17694
17679
|
|
|
17695
|
-
// bazel-out/
|
|
17680
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
17696
17681
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
17697
17682
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
17698
17683
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -17703,7 +17688,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
17703
17688
|
function createInjectableDefinitionMap(meta) {
|
|
17704
17689
|
const definitionMap = new DefinitionMap();
|
|
17705
17690
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
17706
|
-
definitionMap.set("version", literal("15.2.
|
|
17691
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17707
17692
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17708
17693
|
definitionMap.set("type", meta.internalType);
|
|
17709
17694
|
if (meta.providedIn !== void 0) {
|
|
@@ -17730,7 +17715,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
17730
17715
|
return definitionMap;
|
|
17731
17716
|
}
|
|
17732
17717
|
|
|
17733
|
-
// bazel-out/
|
|
17718
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
17734
17719
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
17735
17720
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
17736
17721
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -17741,7 +17726,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
17741
17726
|
function createInjectorDefinitionMap(meta) {
|
|
17742
17727
|
const definitionMap = new DefinitionMap();
|
|
17743
17728
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
17744
|
-
definitionMap.set("version", literal("15.2.
|
|
17729
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17745
17730
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17746
17731
|
definitionMap.set("type", meta.internalType);
|
|
17747
17732
|
definitionMap.set("providers", meta.providers);
|
|
@@ -17751,7 +17736,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
17751
17736
|
return definitionMap;
|
|
17752
17737
|
}
|
|
17753
17738
|
|
|
17754
|
-
// bazel-out/
|
|
17739
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
17755
17740
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
17756
17741
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
17757
17742
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -17762,7 +17747,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
17762
17747
|
function createNgModuleDefinitionMap(meta) {
|
|
17763
17748
|
const definitionMap = new DefinitionMap();
|
|
17764
17749
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
17765
|
-
definitionMap.set("version", literal("15.2.
|
|
17750
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17766
17751
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17767
17752
|
definitionMap.set("type", meta.internalType);
|
|
17768
17753
|
if (meta.bootstrap.length > 0) {
|
|
@@ -17786,7 +17771,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
17786
17771
|
return definitionMap;
|
|
17787
17772
|
}
|
|
17788
17773
|
|
|
17789
|
-
// bazel-out/
|
|
17774
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
17790
17775
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
17791
17776
|
function compileDeclarePipeFromMetadata(meta) {
|
|
17792
17777
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -17797,7 +17782,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
17797
17782
|
function createPipeDefinitionMap(meta) {
|
|
17798
17783
|
const definitionMap = new DefinitionMap();
|
|
17799
17784
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
17800
|
-
definitionMap.set("version", literal("15.2.
|
|
17785
|
+
definitionMap.set("version", literal("15.2.5"));
|
|
17801
17786
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
17802
17787
|
definitionMap.set("type", meta.internalType);
|
|
17803
17788
|
if (meta.isStandalone) {
|
|
@@ -17810,13 +17795,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
17810
17795
|
return definitionMap;
|
|
17811
17796
|
}
|
|
17812
17797
|
|
|
17813
|
-
// bazel-out/
|
|
17798
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
17814
17799
|
publishFacade(_global);
|
|
17815
17800
|
|
|
17816
|
-
// bazel-out/
|
|
17817
|
-
var VERSION3 = new Version("15.2.
|
|
17801
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
17802
|
+
var VERSION3 = new Version("15.2.5");
|
|
17818
17803
|
|
|
17819
|
-
// bazel-out/
|
|
17804
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
17820
17805
|
var EmitFlags;
|
|
17821
17806
|
(function(EmitFlags2) {
|
|
17822
17807
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -17828,13 +17813,13 @@ var EmitFlags;
|
|
|
17828
17813
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
17829
17814
|
})(EmitFlags || (EmitFlags = {}));
|
|
17830
17815
|
|
|
17831
|
-
// bazel-out/
|
|
17816
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
17832
17817
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
17833
17818
|
|
|
17834
|
-
// bazel-out/
|
|
17819
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
17835
17820
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
17836
17821
|
|
|
17837
|
-
// bazel-out/
|
|
17822
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
17838
17823
|
var path = __toESM(require("path"), 1);
|
|
17839
17824
|
function i18nGetExtension(formatName) {
|
|
17840
17825
|
const format = formatName.toLowerCase();
|
|
@@ -17884,10 +17869,10 @@ function getPathNormalizer(basePath) {
|
|
|
17884
17869
|
};
|
|
17885
17870
|
}
|
|
17886
17871
|
|
|
17887
|
-
// bazel-out/
|
|
17872
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17888
17873
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
17889
17874
|
|
|
17890
|
-
// bazel-out/
|
|
17875
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
17891
17876
|
function toNumbers(value) {
|
|
17892
17877
|
const suffixIndex = value.lastIndexOf("-");
|
|
17893
17878
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -17922,7 +17907,7 @@ function compareVersions(v1, v2) {
|
|
|
17922
17907
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
17923
17908
|
}
|
|
17924
17909
|
|
|
17925
|
-
// bazel-out/
|
|
17910
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
17926
17911
|
var MIN_TS_VERSION = "4.8.2";
|
|
17927
17912
|
var MAX_TS_VERSION = "5.0.0";
|
|
17928
17913
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -17935,13 +17920,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
17935
17920
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
17936
17921
|
}
|
|
17937
17922
|
|
|
17938
|
-
// bazel-out/
|
|
17923
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
17939
17924
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
17940
17925
|
|
|
17941
|
-
// bazel-out/
|
|
17926
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
17942
17927
|
var import_typescript19 = __toESM(require("typescript"), 1);
|
|
17943
17928
|
|
|
17944
|
-
// bazel-out/
|
|
17929
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
17945
17930
|
var ErrorCode;
|
|
17946
17931
|
(function(ErrorCode2) {
|
|
17947
17932
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -18011,7 +17996,7 @@ var ErrorCode;
|
|
|
18011
17996
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
18012
17997
|
})(ErrorCode || (ErrorCode = {}));
|
|
18013
17998
|
|
|
18014
|
-
// bazel-out/
|
|
17999
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
18015
18000
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
18016
18001
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
18017
18002
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -18023,15 +18008,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
18023
18008
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
18024
18009
|
]);
|
|
18025
18010
|
|
|
18026
|
-
// bazel-out/
|
|
18011
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18027
18012
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
18028
18013
|
|
|
18029
|
-
// bazel-out/
|
|
18014
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
18030
18015
|
function ngErrorCode(code) {
|
|
18031
18016
|
return parseInt("-99" + code);
|
|
18032
18017
|
}
|
|
18033
18018
|
|
|
18034
|
-
// bazel-out/
|
|
18019
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
18035
18020
|
var FatalDiagnosticError = class {
|
|
18036
18021
|
constructor(code, node, message, relatedInformation) {
|
|
18037
18022
|
this.code = code;
|
|
@@ -18087,10 +18072,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
18087
18072
|
return messageText;
|
|
18088
18073
|
}
|
|
18089
18074
|
|
|
18090
|
-
// bazel-out/
|
|
18075
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
18091
18076
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
18092
18077
|
|
|
18093
|
-
// bazel-out/
|
|
18078
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
18094
18079
|
var ExtendedTemplateDiagnosticName;
|
|
18095
18080
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
18096
18081
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -18102,7 +18087,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
18102
18087
|
ExtendedTemplateDiagnosticName2["SUFFIX_NOT_SUPPORTED"] = "suffixNotSupported";
|
|
18103
18088
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
18104
18089
|
|
|
18105
|
-
// bazel-out/
|
|
18090
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
18106
18091
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
18107
18092
|
var Decorator = {
|
|
18108
18093
|
nodeForError: (decorator) => {
|
|
@@ -18137,7 +18122,7 @@ function isConcreteDeclaration(decl) {
|
|
|
18137
18122
|
return decl.kind === 0;
|
|
18138
18123
|
}
|
|
18139
18124
|
|
|
18140
|
-
// bazel-out/
|
|
18125
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
18141
18126
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
18142
18127
|
function typeToValue(typeNode, checker) {
|
|
18143
18128
|
if (typeNode === null) {
|
|
@@ -18303,10 +18288,10 @@ function extractModuleName(node) {
|
|
|
18303
18288
|
return node.moduleSpecifier.text;
|
|
18304
18289
|
}
|
|
18305
18290
|
|
|
18306
|
-
// bazel-out/
|
|
18291
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18307
18292
|
var import_typescript8 = __toESM(require("typescript"), 1);
|
|
18308
18293
|
|
|
18309
|
-
// bazel-out/
|
|
18294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
18310
18295
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
18311
18296
|
function isNamedClassDeclaration(node) {
|
|
18312
18297
|
return import_typescript7.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -18315,7 +18300,7 @@ function isIdentifier(node) {
|
|
|
18315
18300
|
return node !== void 0 && import_typescript7.default.isIdentifier(node);
|
|
18316
18301
|
}
|
|
18317
18302
|
|
|
18318
|
-
// bazel-out/
|
|
18303
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
18319
18304
|
var TypeScriptReflectionHost = class {
|
|
18320
18305
|
constructor(checker) {
|
|
18321
18306
|
this.checker = checker;
|
|
@@ -18751,13 +18736,13 @@ function getExportedName(decl, originalId) {
|
|
|
18751
18736
|
}
|
|
18752
18737
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
18753
18738
|
|
|
18754
|
-
// bazel-out/
|
|
18739
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
18755
18740
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
18756
18741
|
|
|
18757
|
-
// bazel-out/
|
|
18742
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18758
18743
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
18759
18744
|
|
|
18760
|
-
// bazel-out/
|
|
18745
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
18761
18746
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
18762
18747
|
var TS = /\.tsx?$/i;
|
|
18763
18748
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -18858,7 +18843,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
18858
18843
|
return redirectInfo.unredirected;
|
|
18859
18844
|
}
|
|
18860
18845
|
|
|
18861
|
-
// bazel-out/
|
|
18846
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
18862
18847
|
function findExportedNameOfNode(target, file, reflector) {
|
|
18863
18848
|
const exports = reflector.getExportsOfModule(file);
|
|
18864
18849
|
if (exports === null) {
|
|
@@ -18878,7 +18863,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
18878
18863
|
return foundExportName;
|
|
18879
18864
|
}
|
|
18880
18865
|
|
|
18881
|
-
// bazel-out/
|
|
18866
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
18882
18867
|
var ImportFlags;
|
|
18883
18868
|
(function(ImportFlags2) {
|
|
18884
18869
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -19094,7 +19079,7 @@ var UnifiedModulesStrategy = class {
|
|
|
19094
19079
|
}
|
|
19095
19080
|
};
|
|
19096
19081
|
|
|
19097
|
-
// bazel-out/
|
|
19082
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
19098
19083
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
19099
19084
|
var UnifiedModulesAliasingHost = class {
|
|
19100
19085
|
constructor(unifiedModulesHost) {
|
|
@@ -19161,7 +19146,7 @@ var AliasStrategy = class {
|
|
|
19161
19146
|
}
|
|
19162
19147
|
};
|
|
19163
19148
|
|
|
19164
|
-
// bazel-out/
|
|
19149
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
19165
19150
|
function relativePathBetween(from, to) {
|
|
19166
19151
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
19167
19152
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -19170,7 +19155,7 @@ function normalizeSeparators2(path3) {
|
|
|
19170
19155
|
return path3.replace(/\\/g, "/");
|
|
19171
19156
|
}
|
|
19172
19157
|
|
|
19173
|
-
// bazel-out/
|
|
19158
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
19174
19159
|
var NoopImportRewriter = class {
|
|
19175
19160
|
shouldImportSymbol(symbol, specifier) {
|
|
19176
19161
|
return true;
|
|
@@ -19228,7 +19213,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
19228
19213
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
19229
19214
|
}
|
|
19230
19215
|
|
|
19231
|
-
// bazel-out/
|
|
19216
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
19232
19217
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
19233
19218
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
19234
19219
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -19263,7 +19248,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
19263
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.");
|
|
19264
19249
|
}
|
|
19265
19250
|
|
|
19266
|
-
// bazel-out/
|
|
19251
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
19267
19252
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
19268
19253
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
19269
19254
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -19304,7 +19289,7 @@ var DefaultImportTracker = class {
|
|
|
19304
19289
|
}
|
|
19305
19290
|
};
|
|
19306
19291
|
|
|
19307
|
-
// bazel-out/
|
|
19292
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
19308
19293
|
var Reference2 = class {
|
|
19309
19294
|
constructor(node, bestGuessOwningModule = null) {
|
|
19310
19295
|
this.node = node;
|
|
@@ -19367,7 +19352,7 @@ var Reference2 = class {
|
|
|
19367
19352
|
}
|
|
19368
19353
|
};
|
|
19369
19354
|
|
|
19370
|
-
// bazel-out/
|
|
19355
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
19371
19356
|
var ModuleResolver = class {
|
|
19372
19357
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
19373
19358
|
this.program = program;
|
|
@@ -19384,7 +19369,7 @@ var ModuleResolver = class {
|
|
|
19384
19369
|
}
|
|
19385
19370
|
};
|
|
19386
19371
|
|
|
19387
|
-
// bazel-out/
|
|
19372
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
19388
19373
|
function valueReferenceToExpression(valueRef) {
|
|
19389
19374
|
if (valueRef.kind === 2) {
|
|
19390
19375
|
return null;
|
|
@@ -19621,7 +19606,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
19621
19606
|
return clazz.modifiers !== void 0 && clazz.modifiers.some((mod) => mod.kind === import_typescript18.default.SyntaxKind.AbstractKeyword);
|
|
19622
19607
|
}
|
|
19623
19608
|
|
|
19624
|
-
// bazel-out/
|
|
19609
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
19625
19610
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
19626
19611
|
const deps = [];
|
|
19627
19612
|
const errors = [];
|
|
@@ -19763,10 +19748,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
19763
19748
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
19764
19749
|
}
|
|
19765
19750
|
|
|
19766
|
-
// bazel-out/
|
|
19751
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
19767
19752
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
19768
19753
|
|
|
19769
|
-
// bazel-out/
|
|
19754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
19770
19755
|
var MetaKind;
|
|
19771
19756
|
(function(MetaKind2) {
|
|
19772
19757
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -19779,10 +19764,10 @@ var MatchSource;
|
|
|
19779
19764
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
19780
19765
|
})(MatchSource || (MatchSource = {}));
|
|
19781
19766
|
|
|
19782
|
-
// bazel-out/
|
|
19767
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
19783
19768
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
19784
19769
|
|
|
19785
|
-
// bazel-out/
|
|
19770
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
19786
19771
|
var ClassPropertyMapping = class {
|
|
19787
19772
|
constructor(forwardMap) {
|
|
19788
19773
|
this.forwardMap = forwardMap;
|
|
@@ -19858,7 +19843,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
19858
19843
|
return reverseMap;
|
|
19859
19844
|
}
|
|
19860
19845
|
|
|
19861
|
-
// bazel-out/
|
|
19846
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
19862
19847
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
19863
19848
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
19864
19849
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -20040,7 +20025,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
20040
20025
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
20041
20026
|
}
|
|
20042
20027
|
|
|
20043
|
-
// bazel-out/
|
|
20028
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
20044
20029
|
var DtsMetadataReader = class {
|
|
20045
20030
|
constructor(checker, reflector) {
|
|
20046
20031
|
this.checker = checker;
|
|
@@ -20179,7 +20164,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
20179
20164
|
return result.length > 0 ? result : null;
|
|
20180
20165
|
}
|
|
20181
20166
|
|
|
20182
|
-
// bazel-out/
|
|
20167
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
20183
20168
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
20184
20169
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
20185
20170
|
if (topMeta === null) {
|
|
@@ -20236,7 +20221,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
20236
20221
|
});
|
|
20237
20222
|
}
|
|
20238
20223
|
|
|
20239
|
-
// bazel-out/
|
|
20224
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
20240
20225
|
var LocalMetadataRegistry = class {
|
|
20241
20226
|
constructor() {
|
|
20242
20227
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -20293,7 +20278,7 @@ var CompoundMetadataRegistry = class {
|
|
|
20293
20278
|
}
|
|
20294
20279
|
};
|
|
20295
20280
|
|
|
20296
|
-
// bazel-out/
|
|
20281
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
20297
20282
|
var ResourceRegistry = class {
|
|
20298
20283
|
constructor() {
|
|
20299
20284
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -20358,7 +20343,7 @@ var ResourceRegistry = class {
|
|
|
20358
20343
|
}
|
|
20359
20344
|
};
|
|
20360
20345
|
|
|
20361
|
-
// bazel-out/
|
|
20346
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
20362
20347
|
var EMPTY_ARRAY = [];
|
|
20363
20348
|
var HostDirectivesResolver = class {
|
|
20364
20349
|
constructor(metaReader) {
|
|
@@ -20408,10 +20393,10 @@ var HostDirectivesResolver = class {
|
|
|
20408
20393
|
}
|
|
20409
20394
|
};
|
|
20410
20395
|
|
|
20411
|
-
// bazel-out/
|
|
20396
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20412
20397
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
20413
20398
|
|
|
20414
|
-
// bazel-out/
|
|
20399
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
20415
20400
|
var DynamicValue = class {
|
|
20416
20401
|
constructor(node, reason, code) {
|
|
20417
20402
|
this.node = node;
|
|
@@ -20501,7 +20486,7 @@ var DynamicValue = class {
|
|
|
20501
20486
|
}
|
|
20502
20487
|
};
|
|
20503
20488
|
|
|
20504
|
-
// bazel-out/
|
|
20489
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
20505
20490
|
var ResolvedModule = class {
|
|
20506
20491
|
constructor(exports, evaluate) {
|
|
20507
20492
|
this.exports = exports;
|
|
@@ -20531,7 +20516,7 @@ var EnumValue = class {
|
|
|
20531
20516
|
var KnownFn = class {
|
|
20532
20517
|
};
|
|
20533
20518
|
|
|
20534
|
-
// bazel-out/
|
|
20519
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
20535
20520
|
function describeResolvedType(value, maxDepth = 1) {
|
|
20536
20521
|
var _a, _b;
|
|
20537
20522
|
if (value === null) {
|
|
@@ -20660,10 +20645,10 @@ function getContainerNode(node) {
|
|
|
20660
20645
|
return node.getSourceFile();
|
|
20661
20646
|
}
|
|
20662
20647
|
|
|
20663
|
-
// bazel-out/
|
|
20648
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20664
20649
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
20665
20650
|
|
|
20666
|
-
// bazel-out/
|
|
20651
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
20667
20652
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
20668
20653
|
constructor(lhs) {
|
|
20669
20654
|
super();
|
|
@@ -20734,7 +20719,7 @@ var ObjectAssignBuiltinFn = class extends KnownFn {
|
|
|
20734
20719
|
}
|
|
20735
20720
|
};
|
|
20736
20721
|
|
|
20737
|
-
// bazel-out/
|
|
20722
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/ts_helpers.mjs
|
|
20738
20723
|
var AssignHelperFn = class extends ObjectAssignBuiltinFn {
|
|
20739
20724
|
};
|
|
20740
20725
|
var SpreadHelperFn = class extends KnownFn {
|
|
@@ -20787,7 +20772,7 @@ var ReadHelperFn = class extends KnownFn {
|
|
|
20787
20772
|
}
|
|
20788
20773
|
};
|
|
20789
20774
|
|
|
20790
|
-
// bazel-out/
|
|
20775
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/known_declaration.mjs
|
|
20791
20776
|
var jsGlobalObjectValue = /* @__PURE__ */ new Map([["assign", new ObjectAssignBuiltinFn()]]);
|
|
20792
20777
|
var assignTsHelperFn = new AssignHelperFn();
|
|
20793
20778
|
var spreadTsHelperFn = new SpreadHelperFn();
|
|
@@ -20811,14 +20796,14 @@ function resolveKnownDeclaration(decl) {
|
|
|
20811
20796
|
}
|
|
20812
20797
|
}
|
|
20813
20798
|
|
|
20814
|
-
// bazel-out/
|
|
20799
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
20815
20800
|
var SyntheticValue = class {
|
|
20816
20801
|
constructor(value) {
|
|
20817
20802
|
this.value = value;
|
|
20818
20803
|
}
|
|
20819
20804
|
};
|
|
20820
20805
|
|
|
20821
|
-
// bazel-out/
|
|
20806
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
20822
20807
|
function literalBinaryOp(op) {
|
|
20823
20808
|
return { op, literal: true };
|
|
20824
20809
|
}
|
|
@@ -21416,7 +21401,7 @@ function owningModule(context, override = null) {
|
|
|
21416
21401
|
}
|
|
21417
21402
|
}
|
|
21418
21403
|
|
|
21419
|
-
// bazel-out/
|
|
21404
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
21420
21405
|
var PartialEvaluator = class {
|
|
21421
21406
|
constructor(host, checker, dependencyTracker) {
|
|
21422
21407
|
this.host = host;
|
|
@@ -21436,7 +21421,7 @@ var PartialEvaluator = class {
|
|
|
21436
21421
|
}
|
|
21437
21422
|
};
|
|
21438
21423
|
|
|
21439
|
-
// bazel-out/
|
|
21424
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
21440
21425
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
21441
21426
|
const context = [];
|
|
21442
21427
|
for (const decl of data) {
|
|
@@ -21611,7 +21596,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
21611
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}.`);
|
|
21612
21597
|
}
|
|
21613
21598
|
|
|
21614
|
-
// bazel-out/
|
|
21599
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
21615
21600
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
21616
21601
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
21617
21602
|
let resolved = null;
|
|
@@ -21644,7 +21629,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
21644
21629
|
return meta;
|
|
21645
21630
|
}
|
|
21646
21631
|
|
|
21647
|
-
// bazel-out/
|
|
21632
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
21648
21633
|
function compileNgFactoryDefField(metadata) {
|
|
21649
21634
|
const res = compileFactoryFunction(metadata);
|
|
21650
21635
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -21654,7 +21639,7 @@ function compileDeclareFactory(metadata) {
|
|
|
21654
21639
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
21655
21640
|
}
|
|
21656
21641
|
|
|
21657
|
-
// bazel-out/
|
|
21642
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
21658
21643
|
var InjectableClassRegistry = class {
|
|
21659
21644
|
constructor(host, isCore) {
|
|
21660
21645
|
this.host = host;
|
|
@@ -21680,7 +21665,7 @@ var InjectableClassRegistry = class {
|
|
|
21680
21665
|
}
|
|
21681
21666
|
};
|
|
21682
21667
|
|
|
21683
|
-
// bazel-out/
|
|
21668
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
21684
21669
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
21685
21670
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
21686
21671
|
if (!reflection.isClass(clazz)) {
|
|
@@ -21766,13 +21751,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
21766
21751
|
return result.transformed[0];
|
|
21767
21752
|
}
|
|
21768
21753
|
|
|
21769
|
-
// bazel-out/
|
|
21754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
21770
21755
|
var NoopReferencesRegistry = class {
|
|
21771
21756
|
add(source, ...references) {
|
|
21772
21757
|
}
|
|
21773
21758
|
};
|
|
21774
21759
|
|
|
21775
|
-
// bazel-out/
|
|
21760
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
21776
21761
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
21777
21762
|
const schemas = [];
|
|
21778
21763
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -21801,10 +21786,10 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
21801
21786
|
return schemas;
|
|
21802
21787
|
}
|
|
21803
21788
|
|
|
21804
|
-
// bazel-out/
|
|
21789
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
21805
21790
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
21806
21791
|
|
|
21807
|
-
// bazel-out/
|
|
21792
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
21808
21793
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
21809
21794
|
var SemanticSymbol = class {
|
|
21810
21795
|
constructor(decl) {
|
|
@@ -21820,7 +21805,7 @@ function getSymbolIdentifier(decl) {
|
|
|
21820
21805
|
return decl.name.text;
|
|
21821
21806
|
}
|
|
21822
21807
|
|
|
21823
|
-
// bazel-out/
|
|
21808
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
21824
21809
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
21825
21810
|
isPublicApiAffected() {
|
|
21826
21811
|
return false;
|
|
@@ -21962,10 +21947,10 @@ function getImportPath(expr) {
|
|
|
21962
21947
|
}
|
|
21963
21948
|
}
|
|
21964
21949
|
|
|
21965
|
-
// bazel-out/
|
|
21950
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
21966
21951
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
21967
21952
|
|
|
21968
|
-
// bazel-out/
|
|
21953
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
21969
21954
|
function isSymbolEqual(a, b) {
|
|
21970
21955
|
if (a.decl === b.decl) {
|
|
21971
21956
|
return true;
|
|
@@ -22015,7 +22000,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
22015
22000
|
return true;
|
|
22016
22001
|
}
|
|
22017
22002
|
|
|
22018
|
-
// bazel-out/
|
|
22003
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
22019
22004
|
function extractSemanticTypeParameters(node) {
|
|
22020
22005
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
22021
22006
|
return null;
|
|
@@ -22035,7 +22020,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
22035
22020
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
22036
22021
|
}
|
|
22037
22022
|
|
|
22038
|
-
// bazel-out/
|
|
22023
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
22039
22024
|
var PerfPhase;
|
|
22040
22025
|
(function(PerfPhase2) {
|
|
22041
22026
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -22102,7 +22087,7 @@ var PerfCheckpoint;
|
|
|
22102
22087
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
22103
22088
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
22104
22089
|
|
|
22105
|
-
// bazel-out/
|
|
22090
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
22106
22091
|
var NoopPerfRecorder = class {
|
|
22107
22092
|
eventCount() {
|
|
22108
22093
|
}
|
|
@@ -22119,7 +22104,7 @@ var NoopPerfRecorder = class {
|
|
|
22119
22104
|
};
|
|
22120
22105
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
22121
22106
|
|
|
22122
|
-
// bazel-out/
|
|
22107
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
22123
22108
|
function mark() {
|
|
22124
22109
|
return process.hrtime();
|
|
22125
22110
|
}
|
|
@@ -22128,7 +22113,7 @@ function timeSinceInMicros(mark2) {
|
|
|
22128
22113
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
22129
22114
|
}
|
|
22130
22115
|
|
|
22131
|
-
// bazel-out/
|
|
22116
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
22132
22117
|
var ActivePerfRecorder = class {
|
|
22133
22118
|
static zeroedToNow() {
|
|
22134
22119
|
return new ActivePerfRecorder(mark());
|
|
@@ -22222,14 +22207,14 @@ var DelegatingPerfRecorder = class {
|
|
|
22222
22207
|
}
|
|
22223
22208
|
};
|
|
22224
22209
|
|
|
22225
|
-
// bazel-out/
|
|
22210
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
22226
22211
|
var ComponentScopeKind;
|
|
22227
22212
|
(function(ComponentScopeKind2) {
|
|
22228
22213
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
22229
22214
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
22230
22215
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
22231
22216
|
|
|
22232
|
-
// bazel-out/
|
|
22217
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
22233
22218
|
var CompoundComponentScopeReader = class {
|
|
22234
22219
|
constructor(readers) {
|
|
22235
22220
|
this.readers = readers;
|
|
@@ -22254,7 +22239,7 @@ var CompoundComponentScopeReader = class {
|
|
|
22254
22239
|
}
|
|
22255
22240
|
};
|
|
22256
22241
|
|
|
22257
|
-
// bazel-out/
|
|
22242
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
22258
22243
|
var MetadataDtsModuleScopeResolver = class {
|
|
22259
22244
|
constructor(dtsMetaReader, aliasingHost) {
|
|
22260
22245
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -22329,10 +22314,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
22329
22314
|
}
|
|
22330
22315
|
};
|
|
22331
22316
|
|
|
22332
|
-
// bazel-out/
|
|
22317
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22333
22318
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
22334
22319
|
|
|
22335
|
-
// bazel-out/
|
|
22320
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
22336
22321
|
function getDiagnosticNode(ref, rawExpr) {
|
|
22337
22322
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
22338
22323
|
}
|
|
@@ -22355,7 +22340,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
22355
22340
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
22356
22341
|
}
|
|
22357
22342
|
|
|
22358
|
-
// bazel-out/
|
|
22343
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
22359
22344
|
var LocalModuleScopeRegistry = class {
|
|
22360
22345
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
22361
22346
|
this.localReader = localReader;
|
|
@@ -22694,7 +22679,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
22694
22679
|
]);
|
|
22695
22680
|
}
|
|
22696
22681
|
|
|
22697
|
-
// bazel-out/
|
|
22682
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
22698
22683
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
22699
22684
|
var TypeCheckScopeRegistry = class {
|
|
22700
22685
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -22762,7 +22747,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
22762
22747
|
}
|
|
22763
22748
|
};
|
|
22764
22749
|
|
|
22765
|
-
// bazel-out/
|
|
22750
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
22766
22751
|
var CompilationMode;
|
|
22767
22752
|
(function(CompilationMode2) {
|
|
22768
22753
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -22780,7 +22765,7 @@ var HandlerFlags;
|
|
|
22780
22765
|
HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
|
|
22781
22766
|
})(HandlerFlags || (HandlerFlags = {}));
|
|
22782
22767
|
|
|
22783
|
-
// bazel-out/
|
|
22768
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
22784
22769
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
22785
22770
|
function aliasTransformFactory(exportStatements) {
|
|
22786
22771
|
return () => {
|
|
@@ -22803,10 +22788,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
22803
22788
|
};
|
|
22804
22789
|
}
|
|
22805
22790
|
|
|
22806
|
-
// bazel-out/
|
|
22791
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22807
22792
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
22808
22793
|
|
|
22809
|
-
// bazel-out/
|
|
22794
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
22810
22795
|
var TraitState;
|
|
22811
22796
|
(function(TraitState2) {
|
|
22812
22797
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -22861,7 +22846,7 @@ var TraitImpl = class {
|
|
|
22861
22846
|
}
|
|
22862
22847
|
};
|
|
22863
22848
|
|
|
22864
|
-
// bazel-out/
|
|
22849
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
22865
22850
|
var TraitCompiler = class {
|
|
22866
22851
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
22867
22852
|
this.handlers = handlers;
|
|
@@ -23305,10 +23290,10 @@ function containsErrors(diagnostics) {
|
|
|
23305
23290
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
23306
23291
|
}
|
|
23307
23292
|
|
|
23308
|
-
// bazel-out/
|
|
23293
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
23309
23294
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
23310
23295
|
|
|
23311
|
-
// bazel-out/
|
|
23296
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
23312
23297
|
var Context = class {
|
|
23313
23298
|
constructor(isStatement) {
|
|
23314
23299
|
this.isStatement = isStatement;
|
|
@@ -23321,7 +23306,7 @@ var Context = class {
|
|
|
23321
23306
|
}
|
|
23322
23307
|
};
|
|
23323
23308
|
|
|
23324
|
-
// bazel-out/
|
|
23309
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
23325
23310
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
23326
23311
|
var ImportManager = class {
|
|
23327
23312
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -23357,7 +23342,7 @@ var ImportManager = class {
|
|
|
23357
23342
|
}
|
|
23358
23343
|
};
|
|
23359
23344
|
|
|
23360
|
-
// bazel-out/
|
|
23345
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
23361
23346
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
23362
23347
|
[UnaryOperator.Minus, "-"],
|
|
23363
23348
|
[UnaryOperator.Plus, "+"]
|
|
@@ -23588,10 +23573,10 @@ function createRange(span) {
|
|
|
23588
23573
|
};
|
|
23589
23574
|
}
|
|
23590
23575
|
|
|
23591
|
-
// bazel-out/
|
|
23576
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
23592
23577
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
23593
23578
|
|
|
23594
|
-
// bazel-out/
|
|
23579
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/ts_compatibility/src/ts_cross_version_utils.mjs
|
|
23595
23580
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
23596
23581
|
var IS_AFTER_TS_49 = isAfterVersion(4, 9);
|
|
23597
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);
|
|
@@ -23621,7 +23606,7 @@ function isAfterVersion(targetMajor, targetMinor) {
|
|
|
23621
23606
|
return major === targetMajor ? minor >= targetMinor : true;
|
|
23622
23607
|
}
|
|
23623
23608
|
|
|
23624
|
-
// bazel-out/
|
|
23609
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
23625
23610
|
function translateType(type, imports) {
|
|
23626
23611
|
return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
|
|
23627
23612
|
}
|
|
@@ -23795,7 +23780,7 @@ var TypeTranslatorVisitor = class {
|
|
|
23795
23780
|
}
|
|
23796
23781
|
};
|
|
23797
23782
|
|
|
23798
|
-
// bazel-out/
|
|
23783
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
23799
23784
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
23800
23785
|
var PureAnnotation;
|
|
23801
23786
|
(function(PureAnnotation2) {
|
|
@@ -23978,7 +23963,7 @@ function attachComments(statement, leadingComments) {
|
|
|
23978
23963
|
}
|
|
23979
23964
|
}
|
|
23980
23965
|
|
|
23981
|
-
// bazel-out/
|
|
23966
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
23982
23967
|
function translateExpression(expression, imports, options = {}) {
|
|
23983
23968
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
23984
23969
|
}
|
|
@@ -23986,7 +23971,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
23986
23971
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
23987
23972
|
}
|
|
23988
23973
|
|
|
23989
|
-
// bazel-out/
|
|
23974
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
23990
23975
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
23991
23976
|
function addImports(importManager, sf, extraStatements = []) {
|
|
23992
23977
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -24022,7 +24007,7 @@ function isImportStatement(stmt) {
|
|
|
24022
24007
|
return import_typescript43.default.isImportDeclaration(stmt) || import_typescript43.default.isImportEqualsDeclaration(stmt) || import_typescript43.default.isNamespaceImport(stmt);
|
|
24023
24008
|
}
|
|
24024
24009
|
|
|
24025
|
-
// bazel-out/
|
|
24010
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
24026
24011
|
var DtsTransformRegistry = class {
|
|
24027
24012
|
constructor() {
|
|
24028
24013
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -24167,10 +24152,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
24167
24152
|
import_typescript44.default.forEachChild(node, markForEmitAsSingleLine);
|
|
24168
24153
|
}
|
|
24169
24154
|
|
|
24170
|
-
// bazel-out/
|
|
24155
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24171
24156
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
24172
24157
|
|
|
24173
|
-
// bazel-out/
|
|
24158
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
24174
24159
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
24175
24160
|
function visit(node, visitor, context) {
|
|
24176
24161
|
return visitor._visit(node, context);
|
|
@@ -24231,7 +24216,7 @@ var Visitor = class {
|
|
|
24231
24216
|
}
|
|
24232
24217
|
};
|
|
24233
24218
|
|
|
24234
|
-
// bazel-out/
|
|
24219
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
24235
24220
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
24236
24221
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
24237
24222
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -24439,7 +24424,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
24439
24424
|
return array;
|
|
24440
24425
|
}
|
|
24441
24426
|
|
|
24442
|
-
// bazel-out/
|
|
24427
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
24443
24428
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
24444
24429
|
var EMPTY_OBJECT = {};
|
|
24445
24430
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -24855,7 +24840,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
|
|
|
24855
24840
|
};
|
|
24856
24841
|
}
|
|
24857
24842
|
|
|
24858
|
-
// bazel-out/
|
|
24843
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
24859
24844
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
24860
24845
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
24861
24846
|
super(decl);
|
|
@@ -24932,7 +24917,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
24932
24917
|
return isSymbolEqual(current, previous);
|
|
24933
24918
|
}
|
|
24934
24919
|
|
|
24935
|
-
// bazel-out/
|
|
24920
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
24936
24921
|
var FIELD_DECORATORS = [
|
|
24937
24922
|
"Input",
|
|
24938
24923
|
"Output",
|
|
@@ -25091,10 +25076,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
25091
25076
|
}
|
|
25092
25077
|
};
|
|
25093
25078
|
|
|
25094
|
-
// bazel-out/
|
|
25079
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25095
25080
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
25096
25081
|
|
|
25097
|
-
// bazel-out/
|
|
25082
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
25098
25083
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
25099
25084
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
25100
25085
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -25161,7 +25146,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
25161
25146
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
25162
25147
|
}
|
|
25163
25148
|
|
|
25164
|
-
// bazel-out/
|
|
25149
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
25165
25150
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
25166
25151
|
constructor() {
|
|
25167
25152
|
super(...arguments);
|
|
@@ -25663,7 +25648,7 @@ function isSyntheticReference(ref) {
|
|
|
25663
25648
|
return ref.synthetic;
|
|
25664
25649
|
}
|
|
25665
25650
|
|
|
25666
|
-
// bazel-out/
|
|
25651
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
25667
25652
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
25668
25653
|
const name = ref.debugName || "(unknown)";
|
|
25669
25654
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -25686,7 +25671,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
25686
25671
|
return null;
|
|
25687
25672
|
}
|
|
25688
25673
|
|
|
25689
|
-
// bazel-out/
|
|
25674
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
25690
25675
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
25691
25676
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
25692
25677
|
switch (declaration.isInline) {
|
|
@@ -26001,7 +25986,7 @@ function _extractTemplateStyleUrls(template) {
|
|
|
26001
25986
|
return template.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
26002
25987
|
}
|
|
26003
25988
|
|
|
26004
|
-
// bazel-out/
|
|
25989
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
26005
25990
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
26006
25991
|
constructor() {
|
|
26007
25992
|
super(...arguments);
|
|
@@ -26036,7 +26021,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
26036
26021
|
}
|
|
26037
26022
|
};
|
|
26038
26023
|
|
|
26039
|
-
// bazel-out/
|
|
26024
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
26040
26025
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
26041
26026
|
if (value instanceof Map) {
|
|
26042
26027
|
const name = value.get("name");
|
|
@@ -26112,7 +26097,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
26112
26097
|
return false;
|
|
26113
26098
|
}
|
|
26114
26099
|
|
|
26115
|
-
// bazel-out/
|
|
26100
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
26116
26101
|
var EMPTY_ARRAY2 = [];
|
|
26117
26102
|
var ComponentDecoratorHandler = class {
|
|
26118
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) {
|
|
@@ -26758,7 +26743,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
26758
26743
|
return diagnostics;
|
|
26759
26744
|
}
|
|
26760
26745
|
|
|
26761
|
-
// bazel-out/
|
|
26746
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
26762
26747
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
26763
26748
|
var InjectableDecoratorHandler = class {
|
|
26764
26749
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
|
|
@@ -26974,7 +26959,7 @@ function getDep(dep, reflector) {
|
|
|
26974
26959
|
return meta;
|
|
26975
26960
|
}
|
|
26976
26961
|
|
|
26977
|
-
// bazel-out/
|
|
26962
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
26978
26963
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
26979
26964
|
var PipeSymbol = class extends SemanticSymbol {
|
|
26980
26965
|
constructor(decl, name) {
|
|
@@ -27119,7 +27104,7 @@ var PipeDecoratorHandler = class {
|
|
|
27119
27104
|
}
|
|
27120
27105
|
};
|
|
27121
27106
|
|
|
27122
|
-
// bazel-out/
|
|
27107
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
27123
27108
|
var CycleAnalyzer = class {
|
|
27124
27109
|
constructor(importGraph) {
|
|
27125
27110
|
this.importGraph = importGraph;
|
|
@@ -27190,7 +27175,7 @@ var Cycle = class {
|
|
|
27190
27175
|
}
|
|
27191
27176
|
};
|
|
27192
27177
|
|
|
27193
|
-
// bazel-out/
|
|
27178
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
27194
27179
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
27195
27180
|
var ImportGraph = class {
|
|
27196
27181
|
constructor(checker, perf) {
|
|
@@ -27282,7 +27267,7 @@ var Found = class {
|
|
|
27282
27267
|
}
|
|
27283
27268
|
};
|
|
27284
27269
|
|
|
27285
|
-
// bazel-out/
|
|
27270
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
27286
27271
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
27287
27272
|
var FlatIndexGenerator = class {
|
|
27288
27273
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -27307,7 +27292,7 @@ export * from '${relativeEntryPoint}';
|
|
|
27307
27292
|
}
|
|
27308
27293
|
};
|
|
27309
27294
|
|
|
27310
|
-
// bazel-out/
|
|
27295
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
27311
27296
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
27312
27297
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
27313
27298
|
let resolvedEntryPoint = null;
|
|
@@ -27323,7 +27308,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
27323
27308
|
return resolvedEntryPoint;
|
|
27324
27309
|
}
|
|
27325
27310
|
|
|
27326
|
-
// bazel-out/
|
|
27311
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
27327
27312
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
27328
27313
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
27329
27314
|
const diagnostics = [];
|
|
@@ -27403,7 +27388,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
27403
27388
|
}
|
|
27404
27389
|
}
|
|
27405
27390
|
|
|
27406
|
-
// bazel-out/
|
|
27391
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
27407
27392
|
var ReferenceGraph = class {
|
|
27408
27393
|
constructor() {
|
|
27409
27394
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -27457,7 +27442,7 @@ var ReferenceGraph = class {
|
|
|
27457
27442
|
}
|
|
27458
27443
|
};
|
|
27459
27444
|
|
|
27460
|
-
// bazel-out/
|
|
27445
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
27461
27446
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
27462
27447
|
var UpdateMode;
|
|
27463
27448
|
(function(UpdateMode2) {
|
|
@@ -27465,13 +27450,13 @@ var UpdateMode;
|
|
|
27465
27450
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
27466
27451
|
})(UpdateMode || (UpdateMode = {}));
|
|
27467
27452
|
|
|
27468
|
-
// bazel-out/
|
|
27453
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27469
27454
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
27470
27455
|
|
|
27471
|
-
// bazel-out/
|
|
27456
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27472
27457
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
27473
27458
|
|
|
27474
|
-
// bazel-out/
|
|
27459
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
27475
27460
|
var NgExtension = Symbol("NgExtension");
|
|
27476
27461
|
function isExtended(sf) {
|
|
27477
27462
|
return sf[NgExtension] !== void 0;
|
|
@@ -27531,7 +27516,7 @@ function retagTsFile(sf) {
|
|
|
27531
27516
|
}
|
|
27532
27517
|
}
|
|
27533
27518
|
|
|
27534
|
-
// bazel-out/
|
|
27519
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
27535
27520
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
27536
27521
|
function makeShimFileName(fileName, suffix) {
|
|
27537
27522
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
@@ -27546,7 +27531,7 @@ function generatedModuleName(originalModuleName, originalFileName, genSuffix) {
|
|
|
27546
27531
|
return moduleName;
|
|
27547
27532
|
}
|
|
27548
27533
|
|
|
27549
|
-
// bazel-out/
|
|
27534
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
27550
27535
|
var ShimAdapter = class {
|
|
27551
27536
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
27552
27537
|
this.delegate = delegate;
|
|
@@ -27641,7 +27626,7 @@ var ShimAdapter = class {
|
|
|
27641
27626
|
}
|
|
27642
27627
|
};
|
|
27643
27628
|
|
|
27644
|
-
// bazel-out/
|
|
27629
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/factory_generator.mjs
|
|
27645
27630
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
27646
27631
|
var TS_DTS_SUFFIX = /(\.d)?\.ts$/;
|
|
27647
27632
|
var STRIP_NG_FACTORY = /(.*)NgFactory$/;
|
|
@@ -27801,7 +27786,7 @@ function updateInitializers(stmt, update) {
|
|
|
27801
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)))));
|
|
27802
27787
|
}
|
|
27803
27788
|
|
|
27804
|
-
// bazel-out/
|
|
27789
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
27805
27790
|
var ShimReferenceTagger = class {
|
|
27806
27791
|
constructor(shimExtensions) {
|
|
27807
27792
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -27835,7 +27820,7 @@ var ShimReferenceTagger = class {
|
|
|
27835
27820
|
}
|
|
27836
27821
|
};
|
|
27837
27822
|
|
|
27838
|
-
// bazel-out/
|
|
27823
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/summary_generator.mjs
|
|
27839
27824
|
var import_typescript64 = __toESM(require("typescript"), 1);
|
|
27840
27825
|
var SummaryGenerator = class {
|
|
27841
27826
|
constructor() {
|
|
@@ -27876,7 +27861,7 @@ function isExported2(decl) {
|
|
|
27876
27861
|
return modifiers !== void 0 && modifiers.some((mod) => mod.kind == import_typescript64.default.SyntaxKind.ExportKeyword) || false;
|
|
27877
27862
|
}
|
|
27878
27863
|
|
|
27879
|
-
// bazel-out/
|
|
27864
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
27880
27865
|
var DelegatingCompilerHost = class {
|
|
27881
27866
|
constructor(delegate) {
|
|
27882
27867
|
this.delegate = delegate;
|
|
@@ -27987,7 +27972,7 @@ var TsCreateProgramDriver = class {
|
|
|
27987
27972
|
}
|
|
27988
27973
|
};
|
|
27989
27974
|
|
|
27990
|
-
// bazel-out/
|
|
27975
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
27991
27976
|
var FileDependencyGraph = class {
|
|
27992
27977
|
constructor() {
|
|
27993
27978
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -28054,7 +28039,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
28054
28039
|
return false;
|
|
28055
28040
|
}
|
|
28056
28041
|
|
|
28057
|
-
// bazel-out/
|
|
28042
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
28058
28043
|
var IncrementalStateKind;
|
|
28059
28044
|
(function(IncrementalStateKind2) {
|
|
28060
28045
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -28062,7 +28047,7 @@ var IncrementalStateKind;
|
|
|
28062
28047
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
28063
28048
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
28064
28049
|
|
|
28065
|
-
// bazel-out/
|
|
28050
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
28066
28051
|
var PhaseKind;
|
|
28067
28052
|
(function(PhaseKind2) {
|
|
28068
28053
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -28263,7 +28248,7 @@ function toOriginalSourceFile(sf) {
|
|
|
28263
28248
|
}
|
|
28264
28249
|
}
|
|
28265
28250
|
|
|
28266
|
-
// bazel-out/
|
|
28251
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
28267
28252
|
var TrackedIncrementalBuildStrategy = class {
|
|
28268
28253
|
constructor() {
|
|
28269
28254
|
this.state = null;
|
|
@@ -28284,7 +28269,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
28284
28269
|
};
|
|
28285
28270
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
28286
28271
|
|
|
28287
|
-
// bazel-out/
|
|
28272
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
28288
28273
|
var IdentifierKind;
|
|
28289
28274
|
(function(IdentifierKind2) {
|
|
28290
28275
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -28302,7 +28287,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
28302
28287
|
}
|
|
28303
28288
|
};
|
|
28304
28289
|
|
|
28305
|
-
// bazel-out/
|
|
28290
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
28306
28291
|
var IndexingContext = class {
|
|
28307
28292
|
constructor() {
|
|
28308
28293
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -28312,7 +28297,7 @@ var IndexingContext = class {
|
|
|
28312
28297
|
}
|
|
28313
28298
|
};
|
|
28314
28299
|
|
|
28315
|
-
// bazel-out/
|
|
28300
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
28316
28301
|
var ExpressionVisitor = class extends RecursiveAstVisitor {
|
|
28317
28302
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
28318
28303
|
super();
|
|
@@ -28548,7 +28533,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
28548
28533
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
28549
28534
|
}
|
|
28550
28535
|
|
|
28551
|
-
// bazel-out/
|
|
28536
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
28552
28537
|
function generateAnalysis(context) {
|
|
28553
28538
|
const analysis = /* @__PURE__ */ new Map();
|
|
28554
28539
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -28584,7 +28569,7 @@ function generateAnalysis(context) {
|
|
|
28584
28569
|
return analysis;
|
|
28585
28570
|
}
|
|
28586
28571
|
|
|
28587
|
-
// bazel-out/
|
|
28572
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
28588
28573
|
var NgModuleIndexImpl = class {
|
|
28589
28574
|
constructor(metaReader, localReader) {
|
|
28590
28575
|
this.metaReader = metaReader;
|
|
@@ -28673,7 +28658,7 @@ var NgModuleIndexImpl = class {
|
|
|
28673
28658
|
}
|
|
28674
28659
|
};
|
|
28675
28660
|
|
|
28676
|
-
// bazel-out/
|
|
28661
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
28677
28662
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
28678
28663
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
28679
28664
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -28821,7 +28806,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
28821
28806
|
};
|
|
28822
28807
|
}
|
|
28823
28808
|
|
|
28824
|
-
// bazel-out/
|
|
28809
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
28825
28810
|
var StandaloneComponentScopeReader = class {
|
|
28826
28811
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
28827
28812
|
this.metaReader = metaReader;
|
|
@@ -28899,21 +28884,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
28899
28884
|
}
|
|
28900
28885
|
};
|
|
28901
28886
|
|
|
28902
|
-
// bazel-out/
|
|
28887
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
28903
28888
|
var OptimizeFor;
|
|
28904
28889
|
(function(OptimizeFor2) {
|
|
28905
28890
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
28906
28891
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
28907
28892
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
28908
28893
|
|
|
28909
|
-
// bazel-out/
|
|
28894
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
28910
28895
|
var CompletionKind;
|
|
28911
28896
|
(function(CompletionKind2) {
|
|
28912
28897
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
28913
28898
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
28914
28899
|
})(CompletionKind || (CompletionKind = {}));
|
|
28915
28900
|
|
|
28916
|
-
// bazel-out/
|
|
28901
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
28917
28902
|
var PotentialImportKind;
|
|
28918
28903
|
(function(PotentialImportKind2) {
|
|
28919
28904
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -28925,7 +28910,7 @@ var PotentialImportMode;
|
|
|
28925
28910
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
28926
28911
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
28927
28912
|
|
|
28928
|
-
// bazel-out/
|
|
28913
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
28929
28914
|
var SymbolKind;
|
|
28930
28915
|
(function(SymbolKind2) {
|
|
28931
28916
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -28941,7 +28926,7 @@ var SymbolKind;
|
|
|
28941
28926
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
28942
28927
|
})(SymbolKind || (SymbolKind = {}));
|
|
28943
28928
|
|
|
28944
|
-
// bazel-out/
|
|
28929
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
28945
28930
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
28946
28931
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
28947
28932
|
var _a;
|
|
@@ -29048,7 +29033,7 @@ function parseTemplateAsSourceFile(fileName, template) {
|
|
|
29048
29033
|
return import_typescript69.default.createSourceFile(fileName, template, import_typescript69.default.ScriptTarget.Latest, false, import_typescript69.default.ScriptKind.JSX);
|
|
29049
29034
|
}
|
|
29050
29035
|
|
|
29051
|
-
// bazel-out/
|
|
29036
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
29052
29037
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
29053
29038
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
29054
29039
|
function getTemplateId(clazz) {
|
|
@@ -29065,10 +29050,10 @@ function allocateTemplateId(sf) {
|
|
|
29065
29050
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
29066
29051
|
}
|
|
29067
29052
|
|
|
29068
|
-
// bazel-out/
|
|
29053
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
29069
29054
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
29070
29055
|
|
|
29071
|
-
// bazel-out/
|
|
29056
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
29072
29057
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
29073
29058
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
29074
29059
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -29197,7 +29182,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
29197
29182
|
}) || false;
|
|
29198
29183
|
}
|
|
29199
29184
|
|
|
29200
|
-
// bazel-out/
|
|
29185
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
29201
29186
|
var CompletionEngine = class {
|
|
29202
29187
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
29203
29188
|
this.tcb = tcb;
|
|
@@ -29354,10 +29339,10 @@ var CompletionEngine = class {
|
|
|
29354
29339
|
}
|
|
29355
29340
|
};
|
|
29356
29341
|
|
|
29357
|
-
// bazel-out/
|
|
29342
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
29358
29343
|
var import_typescript86 = __toESM(require("typescript"), 1);
|
|
29359
29344
|
|
|
29360
|
-
// bazel-out/
|
|
29345
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
29361
29346
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
29362
29347
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
29363
29348
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -29409,10 +29394,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
29409
29394
|
}
|
|
29410
29395
|
};
|
|
29411
29396
|
|
|
29412
|
-
// bazel-out/
|
|
29397
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29413
29398
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
29414
29399
|
|
|
29415
|
-
// bazel-out/
|
|
29400
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
29416
29401
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
29417
29402
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
29418
29403
|
import_typescript73.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -29486,16 +29471,16 @@ function isAccessExpression(node) {
|
|
|
29486
29471
|
return import_typescript73.default.isPropertyAccessExpression(node) || import_typescript73.default.isElementAccessExpression(node);
|
|
29487
29472
|
}
|
|
29488
29473
|
|
|
29489
|
-
// bazel-out/
|
|
29474
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29490
29475
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
29491
29476
|
|
|
29492
|
-
// bazel-out/
|
|
29477
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29493
29478
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
29494
29479
|
|
|
29495
|
-
// bazel-out/
|
|
29480
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29496
29481
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
29497
29482
|
|
|
29498
|
-
// bazel-out/
|
|
29483
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
29499
29484
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
29500
29485
|
var INELIGIBLE = {};
|
|
29501
29486
|
function canEmitType(type, canEmit) {
|
|
@@ -29570,7 +29555,7 @@ var TypeEmitter = class {
|
|
|
29570
29555
|
}
|
|
29571
29556
|
};
|
|
29572
29557
|
|
|
29573
|
-
// bazel-out/
|
|
29558
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
29574
29559
|
var TypeParameterEmitter = class {
|
|
29575
29560
|
constructor(typeParameters, reflector) {
|
|
29576
29561
|
this.typeParameters = typeParameters;
|
|
@@ -29647,7 +29632,7 @@ var TypeParameterEmitter = class {
|
|
|
29647
29632
|
}
|
|
29648
29633
|
};
|
|
29649
29634
|
|
|
29650
|
-
// bazel-out/
|
|
29635
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
29651
29636
|
var TcbInliningRequirement;
|
|
29652
29637
|
(function(TcbInliningRequirement2) {
|
|
29653
29638
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -29727,7 +29712,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
29727
29712
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
29728
29713
|
}
|
|
29729
29714
|
|
|
29730
|
-
// bazel-out/
|
|
29715
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
29731
29716
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
29732
29717
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
29733
29718
|
const rawType = import_typescript78.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -29839,7 +29824,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
29839
29824
|
});
|
|
29840
29825
|
}
|
|
29841
29826
|
|
|
29842
|
-
// bazel-out/
|
|
29827
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
29843
29828
|
var Environment = class {
|
|
29844
29829
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
29845
29830
|
this.config = config;
|
|
@@ -29931,7 +29916,7 @@ var Environment = class {
|
|
|
29931
29916
|
}
|
|
29932
29917
|
};
|
|
29933
29918
|
|
|
29934
|
-
// bazel-out/
|
|
29919
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
29935
29920
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
29936
29921
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
29937
29922
|
constructor(resolver) {
|
|
@@ -30062,7 +30047,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
30062
30047
|
});
|
|
30063
30048
|
}
|
|
30064
30049
|
|
|
30065
|
-
// bazel-out/
|
|
30050
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
30066
30051
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
30067
30052
|
var TypeCheckShimGenerator = class {
|
|
30068
30053
|
constructor() {
|
|
@@ -30080,10 +30065,10 @@ var TypeCheckShimGenerator = class {
|
|
|
30080
30065
|
}
|
|
30081
30066
|
};
|
|
30082
30067
|
|
|
30083
|
-
// bazel-out/
|
|
30068
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30084
30069
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
30085
30070
|
|
|
30086
|
-
// bazel-out/
|
|
30071
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
30087
30072
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
30088
30073
|
function wrapForDiagnostics(expr) {
|
|
30089
30074
|
return import_typescript82.default.factory.createParenthesizedExpression(expr);
|
|
@@ -30128,7 +30113,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
30128
30113
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
30129
30114
|
}
|
|
30130
30115
|
|
|
30131
|
-
// bazel-out/
|
|
30116
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
30132
30117
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
30133
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));
|
|
30134
30119
|
var UNDEFINED = import_typescript83.default.factory.createIdentifier("undefined");
|
|
@@ -30457,7 +30442,7 @@ var VeSafeLhsInferenceBugDetector = class {
|
|
|
30457
30442
|
};
|
|
30458
30443
|
VeSafeLhsInferenceBugDetector.SINGLETON = new VeSafeLhsInferenceBugDetector();
|
|
30459
30444
|
|
|
30460
|
-
// bazel-out/
|
|
30445
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
30461
30446
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
30462
30447
|
constructor(templateId, boundTarget, oob) {
|
|
30463
30448
|
super();
|
|
@@ -30480,7 +30465,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor {
|
|
|
30480
30465
|
}
|
|
30481
30466
|
};
|
|
30482
30467
|
|
|
30483
|
-
// bazel-out/
|
|
30468
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
30484
30469
|
var TcbGenericContextBehavior;
|
|
30485
30470
|
(function(TcbGenericContextBehavior2) {
|
|
30486
30471
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -31583,7 +31568,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
31583
31568
|
}
|
|
31584
31569
|
};
|
|
31585
31570
|
|
|
31586
|
-
// bazel-out/
|
|
31571
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
31587
31572
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
31588
31573
|
var TypeCheckFile = class extends Environment {
|
|
31589
31574
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -31619,7 +31604,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
31619
31604
|
}
|
|
31620
31605
|
};
|
|
31621
31606
|
|
|
31622
|
-
// bazel-out/
|
|
31607
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
31623
31608
|
var InliningMode;
|
|
31624
31609
|
(function(InliningMode2) {
|
|
31625
31610
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -31857,7 +31842,7 @@ function splitStringAtPoints(str, points) {
|
|
|
31857
31842
|
return splits;
|
|
31858
31843
|
}
|
|
31859
31844
|
|
|
31860
|
-
// bazel-out/
|
|
31845
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
31861
31846
|
var LF_CHAR = 10;
|
|
31862
31847
|
var CR_CHAR = 13;
|
|
31863
31848
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -31898,7 +31883,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
31898
31883
|
return low - 1;
|
|
31899
31884
|
}
|
|
31900
31885
|
|
|
31901
|
-
// bazel-out/
|
|
31886
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
31902
31887
|
var TemplateSource = class {
|
|
31903
31888
|
constructor(mapping, file) {
|
|
31904
31889
|
this.mapping = mapping;
|
|
@@ -31949,7 +31934,7 @@ var TemplateSourceManager = class {
|
|
|
31949
31934
|
}
|
|
31950
31935
|
};
|
|
31951
31936
|
|
|
31952
|
-
// bazel-out/
|
|
31937
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
31953
31938
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
31954
31939
|
var SymbolBuilder = class {
|
|
31955
31940
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -32426,7 +32411,7 @@ function sourceSpanEqual(a, b) {
|
|
|
32426
32411
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
32427
32412
|
}
|
|
32428
32413
|
|
|
32429
|
-
// bazel-out/
|
|
32414
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
32430
32415
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
32431
32416
|
var TemplateTypeCheckerImpl = class {
|
|
32432
32417
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -33119,7 +33104,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
33119
33104
|
}
|
|
33120
33105
|
};
|
|
33121
33106
|
|
|
33122
|
-
// bazel-out/
|
|
33107
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
33123
33108
|
var TemplateCheckWithVisitor = class {
|
|
33124
33109
|
run(ctx, component, template) {
|
|
33125
33110
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -33195,7 +33180,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor {
|
|
|
33195
33180
|
}
|
|
33196
33181
|
};
|
|
33197
33182
|
|
|
33198
|
-
// bazel-out/
|
|
33183
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
33199
33184
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
33200
33185
|
constructor() {
|
|
33201
33186
|
super(...arguments);
|
|
@@ -33220,7 +33205,7 @@ var factory = {
|
|
|
33220
33205
|
create: () => new InvalidBananaInBoxCheck()
|
|
33221
33206
|
};
|
|
33222
33207
|
|
|
33223
|
-
// bazel-out/
|
|
33208
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
33224
33209
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
33225
33210
|
["ngIf", "NgIf"],
|
|
33226
33211
|
["ngFor", "NgFor"],
|
|
@@ -33264,7 +33249,7 @@ var factory2 = {
|
|
|
33264
33249
|
}
|
|
33265
33250
|
};
|
|
33266
33251
|
|
|
33267
|
-
// bazel-out/
|
|
33252
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
33268
33253
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
33269
33254
|
constructor() {
|
|
33270
33255
|
super(...arguments);
|
|
@@ -33296,7 +33281,7 @@ var factory3 = {
|
|
|
33296
33281
|
create: () => new MissingNgForOfLetCheck()
|
|
33297
33282
|
};
|
|
33298
33283
|
|
|
33299
|
-
// bazel-out/
|
|
33284
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
33300
33285
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
33301
33286
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33302
33287
|
constructor() {
|
|
@@ -33340,7 +33325,7 @@ var factory4 = {
|
|
|
33340
33325
|
}
|
|
33341
33326
|
};
|
|
33342
33327
|
|
|
33343
|
-
// bazel-out/
|
|
33328
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
33344
33329
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
33345
33330
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
33346
33331
|
constructor() {
|
|
@@ -33385,7 +33370,7 @@ var factory5 = {
|
|
|
33385
33370
|
}
|
|
33386
33371
|
};
|
|
33387
33372
|
|
|
33388
|
-
// bazel-out/
|
|
33373
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
33389
33374
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
33390
33375
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
33391
33376
|
constructor() {
|
|
@@ -33408,7 +33393,7 @@ var factory6 = {
|
|
|
33408
33393
|
create: () => new SuffixNotSupportedCheck()
|
|
33409
33394
|
};
|
|
33410
33395
|
|
|
33411
|
-
// bazel-out/
|
|
33396
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
33412
33397
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
33413
33398
|
constructor() {
|
|
33414
33399
|
super(...arguments);
|
|
@@ -33446,10 +33431,10 @@ var factory7 = {
|
|
|
33446
33431
|
create: () => new TextAttributeNotBindingSpec()
|
|
33447
33432
|
};
|
|
33448
33433
|
|
|
33449
|
-
// bazel-out/
|
|
33434
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33450
33435
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
33451
33436
|
|
|
33452
|
-
// bazel-out/
|
|
33437
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
33453
33438
|
var DiagnosticCategoryLabel;
|
|
33454
33439
|
(function(DiagnosticCategoryLabel2) {
|
|
33455
33440
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -33457,7 +33442,7 @@ var DiagnosticCategoryLabel;
|
|
|
33457
33442
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
33458
33443
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
33459
33444
|
|
|
33460
|
-
// bazel-out/
|
|
33445
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
33461
33446
|
var ExtendedTemplateCheckerImpl = class {
|
|
33462
33447
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
33463
33448
|
var _a, _b, _c, _d, _e;
|
|
@@ -33509,7 +33494,7 @@ function assertNever(value) {
|
|
|
33509
33494
|
${value}`);
|
|
33510
33495
|
}
|
|
33511
33496
|
|
|
33512
|
-
// bazel-out/
|
|
33497
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
33513
33498
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
33514
33499
|
factory,
|
|
33515
33500
|
factory4,
|
|
@@ -33520,7 +33505,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
33520
33505
|
factory6
|
|
33521
33506
|
];
|
|
33522
33507
|
|
|
33523
|
-
// bazel-out/
|
|
33508
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
33524
33509
|
var CompilationTicketKind;
|
|
33525
33510
|
(function(CompilationTicketKind2) {
|
|
33526
33511
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -34210,7 +34195,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
34210
34195
|
return versions;
|
|
34211
34196
|
}
|
|
34212
34197
|
|
|
34213
|
-
// bazel-out/
|
|
34198
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
34214
34199
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
34215
34200
|
var DelegatingCompilerHost2 = class {
|
|
34216
34201
|
constructor(delegate) {
|
|
@@ -34355,7 +34340,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
34355
34340
|
}
|
|
34356
34341
|
};
|
|
34357
34342
|
|
|
34358
|
-
// bazel-out/
|
|
34343
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
34359
34344
|
var NgtscProgram = class {
|
|
34360
34345
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
34361
34346
|
this.options = options;
|
|
@@ -34573,21 +34558,21 @@ function mergeEmitResults(emitResults) {
|
|
|
34573
34558
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
34574
34559
|
}
|
|
34575
34560
|
|
|
34576
|
-
// bazel-out/
|
|
34561
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
34577
34562
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
34578
34563
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
34579
34564
|
}
|
|
34580
34565
|
|
|
34581
|
-
// bazel-out/
|
|
34566
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
34582
34567
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
34583
34568
|
|
|
34584
|
-
// bazel-out/
|
|
34569
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
34585
34570
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
34586
34571
|
|
|
34587
|
-
// bazel-out/
|
|
34572
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
34588
34573
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
34589
34574
|
|
|
34590
|
-
// bazel-out/
|
|
34575
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
34591
34576
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
34592
34577
|
ngDevMode: false,
|
|
34593
34578
|
ngI18nClosureMode: false
|
|
@@ -34596,7 +34581,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
34596
34581
|
ngJitMode: false
|
|
34597
34582
|
});
|
|
34598
34583
|
|
|
34599
|
-
// bazel-out/
|
|
34584
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
34600
34585
|
var LogLevel;
|
|
34601
34586
|
(function(LogLevel2) {
|
|
34602
34587
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -34605,7 +34590,7 @@ var LogLevel;
|
|
|
34605
34590
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
34606
34591
|
})(LogLevel || (LogLevel = {}));
|
|
34607
34592
|
|
|
34608
|
-
// bazel-out/
|
|
34593
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
34609
34594
|
var RESET = "\x1B[0m";
|
|
34610
34595
|
var RED = "\x1B[31m";
|
|
34611
34596
|
var YELLOW = "\x1B[33m";
|
|
@@ -34614,18 +34599,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
34614
34599
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
34615
34600
|
var ERROR = `${RED}Error:${RESET}`;
|
|
34616
34601
|
|
|
34617
|
-
// bazel-out/
|
|
34602
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
34618
34603
|
setFileSystem(new NodeJSFileSystem());
|
|
34619
34604
|
|
|
34620
|
-
// bazel-out/
|
|
34605
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
34621
34606
|
var import_fs2 = require("fs");
|
|
34622
34607
|
var import_path8 = require("path");
|
|
34623
34608
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
34624
34609
|
|
|
34625
|
-
// bazel-out/
|
|
34610
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34626
34611
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
34627
34612
|
|
|
34628
|
-
// bazel-out/
|
|
34613
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
34629
34614
|
var import_path4 = require("path");
|
|
34630
34615
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
34631
34616
|
var IS_AFTER_TS_492 = isAfterVersion2(4, 9);
|
|
@@ -34818,7 +34803,7 @@ function isAfterVersion2(targetMajor, targetMinor) {
|
|
|
34818
34803
|
return major === targetMajor ? minor >= targetMinor : true;
|
|
34819
34804
|
}
|
|
34820
34805
|
|
|
34821
|
-
// bazel-out/
|
|
34806
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
34822
34807
|
var ChangeTracker = class {
|
|
34823
34808
|
constructor(_printer, _importRemapper) {
|
|
34824
34809
|
this._printer = _printer;
|
|
@@ -34871,7 +34856,7 @@ function normalizePath(path3) {
|
|
|
34871
34856
|
return path3.replace(/\\/g, "/");
|
|
34872
34857
|
}
|
|
34873
34858
|
|
|
34874
|
-
// bazel-out/
|
|
34859
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
34875
34860
|
var import_core13 = require("@angular-devkit/core");
|
|
34876
34861
|
function getProjectTsConfigPaths(tree) {
|
|
34877
34862
|
return __async(this, null, function* () {
|
|
@@ -34951,11 +34936,11 @@ function getWorkspace(tree) {
|
|
|
34951
34936
|
});
|
|
34952
34937
|
}
|
|
34953
34938
|
|
|
34954
|
-
// bazel-out/
|
|
34939
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34955
34940
|
var import_path5 = require("path");
|
|
34956
34941
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
34957
34942
|
|
|
34958
|
-
// bazel-out/
|
|
34943
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
34959
34944
|
var path2 = __toESM(require("path"), 1);
|
|
34960
34945
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
34961
34946
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -34972,7 +34957,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
34972
34957
|
return import_typescript103.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
34973
34958
|
}
|
|
34974
34959
|
|
|
34975
|
-
// bazel-out/
|
|
34960
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
34976
34961
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
34977
34962
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
34978
34963
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -35001,13 +34986,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
35001
34986
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
35002
34987
|
}
|
|
35003
34988
|
|
|
35004
|
-
// bazel-out/
|
|
34989
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
35005
34990
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
35006
34991
|
|
|
35007
|
-
// bazel-out/
|
|
34992
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
35008
34993
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
35009
34994
|
|
|
35010
|
-
// bazel-out/
|
|
34995
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
35011
34996
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
35012
34997
|
function getImportOfIdentifier(typeChecker, node) {
|
|
35013
34998
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -35051,7 +35036,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
35051
35036
|
});
|
|
35052
35037
|
}
|
|
35053
35038
|
|
|
35054
|
-
// bazel-out/
|
|
35039
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
35055
35040
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
35056
35041
|
if (!import_typescript106.default.isCallExpression(decorator.expression) || !import_typescript106.default.isIdentifier(decorator.expression.expression)) {
|
|
35057
35042
|
return null;
|
|
@@ -35060,7 +35045,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
35060
35045
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
35061
35046
|
}
|
|
35062
35047
|
|
|
35063
|
-
// bazel-out/
|
|
35048
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
35064
35049
|
function getAngularDecorators(typeChecker, decorators) {
|
|
35065
35050
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
35066
35051
|
node,
|
|
@@ -35070,7 +35055,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
35070
35055
|
}));
|
|
35071
35056
|
}
|
|
35072
35057
|
|
|
35073
|
-
// bazel-out/
|
|
35058
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
35074
35059
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
35075
35060
|
function closestNode(node, predicate) {
|
|
35076
35061
|
let current = node.parent;
|
|
@@ -35083,7 +35068,7 @@ function closestNode(node, predicate) {
|
|
|
35083
35068
|
return null;
|
|
35084
35069
|
}
|
|
35085
35070
|
|
|
35086
|
-
// bazel-out/
|
|
35071
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
35087
35072
|
var import_path6 = require("path");
|
|
35088
35073
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
35089
35074
|
var UniqueItemTracker = class {
|
|
@@ -35253,7 +35238,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
35253
35238
|
}));
|
|
35254
35239
|
}
|
|
35255
35240
|
|
|
35256
|
-
// bazel-out/
|
|
35241
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
35257
35242
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
35258
35243
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
35259
35244
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -35452,14 +35437,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
35452
35437
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
35453
35438
|
}
|
|
35454
35439
|
|
|
35455
|
-
// bazel-out/
|
|
35440
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35456
35441
|
var import_path7 = require("path");
|
|
35457
35442
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
35458
35443
|
|
|
35459
|
-
// bazel-out/
|
|
35444
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35460
35445
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
35461
35446
|
|
|
35462
|
-
// bazel-out/
|
|
35447
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
35463
35448
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
35464
35449
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
35465
35450
|
var _a, _b;
|
|
@@ -35468,7 +35453,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
35468
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];
|
|
35469
35454
|
}
|
|
35470
35455
|
|
|
35471
|
-
// bazel-out/
|
|
35456
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
35472
35457
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
35473
35458
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
35474
35459
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -35816,7 +35801,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
35816
35801
|
return metadata != null && metadata.isStandalone;
|
|
35817
35802
|
}
|
|
35818
35803
|
|
|
35819
|
-
// bazel-out/
|
|
35804
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
35820
35805
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
35821
35806
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
35822
35807
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -36192,7 +36177,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
36192
36177
|
return false;
|
|
36193
36178
|
}
|
|
36194
36179
|
|
|
36195
|
-
// bazel-out/
|
|
36180
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
36196
36181
|
var MigrationMode;
|
|
36197
36182
|
(function(MigrationMode2) {
|
|
36198
36183
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|