@angular/core 16.1.5 → 16.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +2 -2
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +2 -2
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
- package/schematics/migrations/remove-module-id/bundle.js +14 -14
- package/schematics/ng-generate/standalone-migration/bundle.js +358 -359
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
|
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
63
63
|
});
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
// bazel-out/
|
|
66
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
67
67
|
var standalone_migration_exports = {};
|
|
68
68
|
__export(standalone_migration_exports, {
|
|
69
69
|
default: () => standalone_migration_default
|
|
@@ -71,10 +71,10 @@ __export(standalone_migration_exports, {
|
|
|
71
71
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
72
72
|
var import_schematics = require("@angular-devkit/schematics");
|
|
73
73
|
|
|
74
|
-
// bazel-out/
|
|
74
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
75
75
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
76
76
|
|
|
77
|
-
// bazel-out/
|
|
77
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
78
78
|
var InvalidFileSystem = class {
|
|
79
79
|
exists(path3) {
|
|
80
80
|
throw makeError();
|
|
@@ -162,7 +162,7 @@ function makeError() {
|
|
|
162
162
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
// bazel-out/
|
|
165
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
166
166
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
167
167
|
function stripExtension(path3) {
|
|
168
168
|
return path3.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -175,7 +175,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
175
175
|
return sf;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
// bazel-out/
|
|
178
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
179
179
|
var fs = new InvalidFileSystem();
|
|
180
180
|
function getFileSystem() {
|
|
181
181
|
return fs;
|
|
@@ -219,7 +219,7 @@ function toRelativeImport(relativePath) {
|
|
|
219
219
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
// bazel-out/
|
|
222
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
223
223
|
var LogicalProjectPath = {
|
|
224
224
|
relativePathBetween: function(from, to) {
|
|
225
225
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -265,7 +265,7 @@ function isWithinBasePath(base, path3) {
|
|
|
265
265
|
return isLocalRelativePath(relative(base, path3));
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
// bazel-out/
|
|
268
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
269
269
|
var import_fs = __toESM(require("fs"), 1);
|
|
270
270
|
var import_module = __toESM(require("module"), 1);
|
|
271
271
|
var p = __toESM(require("path"), 1);
|
|
@@ -373,7 +373,7 @@ function toggleCase(str) {
|
|
|
373
373
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
// bazel-out/
|
|
376
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
377
377
|
var _SELECTOR_REGEXP = new RegExp(
|
|
378
378
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
379
379
|
"g"
|
|
@@ -681,7 +681,7 @@ var SelectorContext = class {
|
|
|
681
681
|
}
|
|
682
682
|
};
|
|
683
683
|
|
|
684
|
-
// bazel-out/
|
|
684
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/core.mjs
|
|
685
685
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
686
686
|
var ViewEncapsulation;
|
|
687
687
|
(function(ViewEncapsulation2) {
|
|
@@ -744,7 +744,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
744
744
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
745
745
|
}
|
|
746
746
|
|
|
747
|
-
// bazel-out/
|
|
747
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
748
748
|
var output_ast_exports = {};
|
|
749
749
|
__export(output_ast_exports, {
|
|
750
750
|
ArrayType: () => ArrayType,
|
|
@@ -829,7 +829,7 @@ __export(output_ast_exports, {
|
|
|
829
829
|
variable: () => variable
|
|
830
830
|
});
|
|
831
831
|
|
|
832
|
-
// bazel-out/
|
|
832
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
|
|
833
833
|
var BigInteger = class {
|
|
834
834
|
static zero() {
|
|
835
835
|
return new BigInteger([0]);
|
|
@@ -921,7 +921,7 @@ var BigIntExponentiation = class {
|
|
|
921
921
|
}
|
|
922
922
|
};
|
|
923
923
|
|
|
924
|
-
// bazel-out/
|
|
924
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
925
925
|
var textEncoder;
|
|
926
926
|
function digest(message) {
|
|
927
927
|
return message.id || computeDigest(message);
|
|
@@ -1184,7 +1184,7 @@ function wordsToDecimalString(hi, lo) {
|
|
|
1184
1184
|
return decimal.toString();
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
-
// bazel-out/
|
|
1187
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1188
1188
|
var TypeModifier;
|
|
1189
1189
|
(function(TypeModifier2) {
|
|
1190
1190
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -2226,7 +2226,7 @@ function serializeTags(tags) {
|
|
|
2226
2226
|
return out;
|
|
2227
2227
|
}
|
|
2228
2228
|
|
|
2229
|
-
// bazel-out/
|
|
2229
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
2230
2230
|
var CONSTANT_PREFIX = "_c";
|
|
2231
2231
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
2232
2232
|
var KEY_CONTEXT = {};
|
|
@@ -2391,7 +2391,7 @@ function isLongStringLiteral(expr) {
|
|
|
2391
2391
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2392
2392
|
}
|
|
2393
2393
|
|
|
2394
|
-
// bazel-out/
|
|
2394
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2395
2395
|
var CORE = "@angular/core";
|
|
2396
2396
|
var _Identifiers = class {
|
|
2397
2397
|
};
|
|
@@ -2949,7 +2949,7 @@ var Identifiers = _Identifiers;
|
|
|
2949
2949
|
_Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
|
|
2950
2950
|
})();
|
|
2951
2951
|
|
|
2952
|
-
// bazel-out/
|
|
2952
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2953
2953
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2954
2954
|
function dashCaseToCamelCase(input) {
|
|
2955
2955
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -3037,7 +3037,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
3037
3037
|
return [truthy, falsy];
|
|
3038
3038
|
}
|
|
3039
3039
|
|
|
3040
|
-
// bazel-out/
|
|
3040
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
3041
3041
|
var VERSION = 3;
|
|
3042
3042
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
3043
3043
|
var SourceMapGenerator = class {
|
|
@@ -3166,7 +3166,7 @@ function toBase64Digit(value) {
|
|
|
3166
3166
|
return B64_DIGITS[value];
|
|
3167
3167
|
}
|
|
3168
3168
|
|
|
3169
|
-
// bazel-out/
|
|
3169
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
3170
3170
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
3171
3171
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
3172
3172
|
var _INDENT_WITH = " ";
|
|
@@ -3641,7 +3641,7 @@ function _createIndent(count) {
|
|
|
3641
3641
|
return res;
|
|
3642
3642
|
}
|
|
3643
3643
|
|
|
3644
|
-
// bazel-out/
|
|
3644
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3645
3645
|
function typeWithParameters(type, numParams) {
|
|
3646
3646
|
if (numParams === 0) {
|
|
3647
3647
|
return expressionType(type);
|
|
@@ -3709,7 +3709,7 @@ function generateForwardRef(expr) {
|
|
|
3709
3709
|
return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
|
|
3710
3710
|
}
|
|
3711
3711
|
|
|
3712
|
-
// bazel-out/
|
|
3712
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3713
3713
|
var R3FactoryDelegateType;
|
|
3714
3714
|
(function(R3FactoryDelegateType2) {
|
|
3715
3715
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3854,7 +3854,7 @@ function getInjectFn(target) {
|
|
|
3854
3854
|
}
|
|
3855
3855
|
}
|
|
3856
3856
|
|
|
3857
|
-
// bazel-out/
|
|
3857
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3858
3858
|
var Comment = class {
|
|
3859
3859
|
constructor(value, sourceSpan) {
|
|
3860
3860
|
this.value = value;
|
|
@@ -4076,7 +4076,7 @@ function visitAll(visitor, nodes) {
|
|
|
4076
4076
|
return result;
|
|
4077
4077
|
}
|
|
4078
4078
|
|
|
4079
|
-
// bazel-out/
|
|
4079
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
4080
4080
|
var Message = class {
|
|
4081
4081
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
4082
4082
|
this.nodes = nodes;
|
|
@@ -4239,7 +4239,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4239
4239
|
}
|
|
4240
4240
|
};
|
|
4241
4241
|
|
|
4242
|
-
// bazel-out/
|
|
4242
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
4243
4243
|
var Serializer = class {
|
|
4244
4244
|
createNameMapper(message) {
|
|
4245
4245
|
return null;
|
|
@@ -4291,7 +4291,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
4291
4291
|
}
|
|
4292
4292
|
};
|
|
4293
4293
|
|
|
4294
|
-
// bazel-out/
|
|
4294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4295
4295
|
var _Visitor = class {
|
|
4296
4296
|
visitTag(tag) {
|
|
4297
4297
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4379,7 +4379,7 @@ function escapeXml(text2) {
|
|
|
4379
4379
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
4380
4380
|
}
|
|
4381
4381
|
|
|
4382
|
-
// bazel-out/
|
|
4382
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4383
4383
|
var _MESSAGES_TAG = "messagebundle";
|
|
4384
4384
|
var _MESSAGE_TAG = "msg";
|
|
4385
4385
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -4522,7 +4522,7 @@ function toPublicName(internalName) {
|
|
|
4522
4522
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4523
4523
|
}
|
|
4524
4524
|
|
|
4525
|
-
// bazel-out/
|
|
4525
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4526
4526
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
4527
4527
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
4528
4528
|
var I18N_ATTR = "i18n";
|
|
@@ -4624,7 +4624,7 @@ function declareI18nVariable(variable2) {
|
|
|
4624
4624
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
4625
4625
|
}
|
|
4626
4626
|
|
|
4627
|
-
// bazel-out/
|
|
4627
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4628
4628
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4629
4629
|
var TEMPORARY_NAME = "_t";
|
|
4630
4630
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4840,7 +4840,7 @@ function getInstructionStatements(instructions) {
|
|
|
4840
4840
|
return statements;
|
|
4841
4841
|
}
|
|
4842
4842
|
|
|
4843
|
-
// bazel-out/
|
|
4843
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4844
4844
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4845
4845
|
let result = null;
|
|
4846
4846
|
const factoryMeta = {
|
|
@@ -4928,7 +4928,7 @@ function createFactoryFunction(type) {
|
|
|
4928
4928
|
return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
|
|
4929
4929
|
}
|
|
4930
4930
|
|
|
4931
|
-
// bazel-out/
|
|
4931
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4932
4932
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4933
4933
|
/^\s*$/,
|
|
4934
4934
|
/[<>]/,
|
|
@@ -4950,7 +4950,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4950
4950
|
}
|
|
4951
4951
|
}
|
|
4952
4952
|
|
|
4953
|
-
// bazel-out/
|
|
4953
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
|
|
4954
4954
|
var InterpolationConfig = class {
|
|
4955
4955
|
static fromArray(markers) {
|
|
4956
4956
|
if (!markers) {
|
|
@@ -4966,7 +4966,7 @@ var InterpolationConfig = class {
|
|
|
4966
4966
|
};
|
|
4967
4967
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4968
4968
|
|
|
4969
|
-
// bazel-out/
|
|
4969
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4970
4970
|
var $EOF = 0;
|
|
4971
4971
|
var $BSPACE = 8;
|
|
4972
4972
|
var $TAB = 9;
|
|
@@ -5047,7 +5047,7 @@ function isQuote(code) {
|
|
|
5047
5047
|
return code === $SQ || code === $DQ || code === $BT;
|
|
5048
5048
|
}
|
|
5049
5049
|
|
|
5050
|
-
// bazel-out/
|
|
5050
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
5051
5051
|
var ParseLocation = class {
|
|
5052
5052
|
constructor(file, offset, line, col) {
|
|
5053
5053
|
this.file = file;
|
|
@@ -5194,7 +5194,7 @@ function sanitizeIdentifier(name) {
|
|
|
5194
5194
|
return name.replace(/\W/g, "_");
|
|
5195
5195
|
}
|
|
5196
5196
|
|
|
5197
|
-
// bazel-out/
|
|
5197
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5198
5198
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5199
5199
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5200
5200
|
constructor() {
|
|
@@ -5265,7 +5265,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5265
5265
|
}
|
|
5266
5266
|
};
|
|
5267
5267
|
|
|
5268
|
-
// bazel-out/
|
|
5268
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5269
5269
|
var policy;
|
|
5270
5270
|
function getPolicy() {
|
|
5271
5271
|
if (policy === void 0) {
|
|
@@ -5302,7 +5302,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5302
5302
|
return fn2.bind(_global);
|
|
5303
5303
|
}
|
|
5304
5304
|
|
|
5305
|
-
// bazel-out/
|
|
5305
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5306
5306
|
var JitEvaluator = class {
|
|
5307
5307
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5308
5308
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5393,7 +5393,7 @@ function isUseStrictStatement(statement) {
|
|
|
5393
5393
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5394
5394
|
}
|
|
5395
5395
|
|
|
5396
|
-
// bazel-out/
|
|
5396
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5397
5397
|
function compileInjector(meta) {
|
|
5398
5398
|
const definitionMap = new DefinitionMap();
|
|
5399
5399
|
if (meta.providers !== null) {
|
|
@@ -5410,7 +5410,7 @@ function createInjectorType(meta) {
|
|
|
5410
5410
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5411
5411
|
}
|
|
5412
5412
|
|
|
5413
|
-
// bazel-out/
|
|
5413
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5414
5414
|
var R3JitReflector = class {
|
|
5415
5415
|
constructor(context) {
|
|
5416
5416
|
this.context = context;
|
|
@@ -5426,7 +5426,7 @@ var R3JitReflector = class {
|
|
|
5426
5426
|
}
|
|
5427
5427
|
};
|
|
5428
5428
|
|
|
5429
|
-
// bazel-out/
|
|
5429
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5430
5430
|
var R3SelectorScopeMode;
|
|
5431
5431
|
(function(R3SelectorScopeMode2) {
|
|
5432
5432
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5570,7 +5570,7 @@ function tupleOfTypes(types) {
|
|
|
5570
5570
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5571
5571
|
}
|
|
5572
5572
|
|
|
5573
|
-
// bazel-out/
|
|
5573
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5574
5574
|
function compilePipeFromMetadata(metadata) {
|
|
5575
5575
|
const definitionMapValues = [];
|
|
5576
5576
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5591,7 +5591,7 @@ function createPipeType(metadata) {
|
|
|
5591
5591
|
]));
|
|
5592
5592
|
}
|
|
5593
5593
|
|
|
5594
|
-
// bazel-out/
|
|
5594
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5595
5595
|
var R3TemplateDependencyKind;
|
|
5596
5596
|
(function(R3TemplateDependencyKind2) {
|
|
5597
5597
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5599,7 +5599,7 @@ var R3TemplateDependencyKind;
|
|
|
5599
5599
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5600
5600
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5601
5601
|
|
|
5602
|
-
// bazel-out/
|
|
5602
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
5603
5603
|
var ParserError = class {
|
|
5604
5604
|
constructor(message, input, errLocation, ctxLocation) {
|
|
5605
5605
|
this.input = input;
|
|
@@ -6265,7 +6265,7 @@ var BoundElementProperty = class {
|
|
|
6265
6265
|
}
|
|
6266
6266
|
};
|
|
6267
6267
|
|
|
6268
|
-
// bazel-out/
|
|
6268
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
6269
6269
|
var _EventHandlerVars = class {
|
|
6270
6270
|
};
|
|
6271
6271
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -6886,7 +6886,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6886
6886
|
}
|
|
6887
6887
|
};
|
|
6888
6888
|
|
|
6889
|
-
// bazel-out/
|
|
6889
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6890
6890
|
var _SECURITY_SCHEMA;
|
|
6891
6891
|
function SECURITY_SCHEMA() {
|
|
6892
6892
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6944,7 +6944,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6944
6944
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6945
6945
|
}
|
|
6946
6946
|
|
|
6947
|
-
// bazel-out/
|
|
6947
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6948
6948
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6949
6949
|
"inherit",
|
|
6950
6950
|
"initial",
|
|
@@ -7411,7 +7411,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7411
7411
|
}
|
|
7412
7412
|
}
|
|
7413
7413
|
|
|
7414
|
-
// bazel-out/
|
|
7414
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
7415
7415
|
var TagContentType;
|
|
7416
7416
|
(function(TagContentType2) {
|
|
7417
7417
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -7444,7 +7444,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
7444
7444
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
7445
7445
|
}
|
|
7446
7446
|
|
|
7447
|
-
// bazel-out/
|
|
7447
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/element.mjs
|
|
7448
7448
|
var ElementAttributeKind;
|
|
7449
7449
|
(function(ElementAttributeKind2) {
|
|
7450
7450
|
ElementAttributeKind2[ElementAttributeKind2["Attribute"] = 0] = "Attribute";
|
|
@@ -7521,7 +7521,7 @@ function assertIsElementAttributes(attrs) {
|
|
|
7521
7521
|
}
|
|
7522
7522
|
}
|
|
7523
7523
|
|
|
7524
|
-
// bazel-out/
|
|
7524
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7525
7525
|
var OpKind;
|
|
7526
7526
|
(function(OpKind2) {
|
|
7527
7527
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -7564,7 +7564,7 @@ var SemanticVariableKind;
|
|
|
7564
7564
|
SemanticVariableKind2[SemanticVariableKind2["SavedView"] = 2] = "SavedView";
|
|
7565
7565
|
})(SemanticVariableKind || (SemanticVariableKind = {}));
|
|
7566
7566
|
|
|
7567
|
-
// bazel-out/
|
|
7567
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7568
7568
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7569
7569
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7570
7570
|
var UsesSlotIndex = Symbol("UsesSlotIndex");
|
|
@@ -7605,7 +7605,7 @@ function hasUsesSlotIndexTrait(value) {
|
|
|
7605
7605
|
return value[UsesSlotIndex] === true;
|
|
7606
7606
|
}
|
|
7607
7607
|
|
|
7608
|
-
// bazel-out/
|
|
7608
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7609
7609
|
var _a;
|
|
7610
7610
|
var _b;
|
|
7611
7611
|
var _c;
|
|
@@ -8008,7 +8008,7 @@ function transformExpressionsInStatement(stmt, transform, flags) {
|
|
|
8008
8008
|
}
|
|
8009
8009
|
}
|
|
8010
8010
|
|
|
8011
|
-
// bazel-out/
|
|
8011
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
8012
8012
|
var _OpList = class {
|
|
8013
8013
|
constructor() {
|
|
8014
8014
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -8174,7 +8174,7 @@ var OpList = _OpList;
|
|
|
8174
8174
|
_OpList.nextListId = 0;
|
|
8175
8175
|
})();
|
|
8176
8176
|
|
|
8177
|
-
// bazel-out/
|
|
8177
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
8178
8178
|
function createStatementOp(statement) {
|
|
8179
8179
|
return __spreadValues({
|
|
8180
8180
|
kind: OpKind.Statement,
|
|
@@ -8195,7 +8195,7 @@ var NEW_OP = {
|
|
|
8195
8195
|
next: null
|
|
8196
8196
|
};
|
|
8197
8197
|
|
|
8198
|
-
// bazel-out/
|
|
8198
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
8199
8199
|
function createElementStartOp(tag, xref) {
|
|
8200
8200
|
return __spreadValues(__spreadValues({
|
|
8201
8201
|
kind: OpKind.ElementStart,
|
|
@@ -8247,7 +8247,7 @@ function createPipeOp(xref, name) {
|
|
|
8247
8247
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
8248
8248
|
}
|
|
8249
8249
|
|
|
8250
|
-
// bazel-out/
|
|
8250
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
8251
8251
|
function createInterpolateTextOp(xref, strings, expressions) {
|
|
8252
8252
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
8253
8253
|
kind: OpKind.InterpolateText,
|
|
@@ -8280,7 +8280,7 @@ function createAdvanceOp(delta) {
|
|
|
8280
8280
|
}, NEW_OP);
|
|
8281
8281
|
}
|
|
8282
8282
|
|
|
8283
|
-
// bazel-out/
|
|
8283
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
8284
8284
|
function phaseConstCollection(cpl) {
|
|
8285
8285
|
for (const [_, view] of cpl.views) {
|
|
8286
8286
|
for (const op of view.create) {
|
|
@@ -8321,7 +8321,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n, projectAs, s
|
|
|
8321
8321
|
return literalArr(attrArray);
|
|
8322
8322
|
}
|
|
8323
8323
|
|
|
8324
|
-
// bazel-out/
|
|
8324
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
8325
8325
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
8326
8326
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
8327
8327
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]]
|
|
@@ -8342,7 +8342,7 @@ function phaseEmptyElements(cpl) {
|
|
|
8342
8342
|
}
|
|
8343
8343
|
}
|
|
8344
8344
|
|
|
8345
|
-
// bazel-out/
|
|
8345
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
8346
8346
|
function phaseGenerateAdvance(cpl) {
|
|
8347
8347
|
for (const [_, view] of cpl.views) {
|
|
8348
8348
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -8374,7 +8374,7 @@ function phaseGenerateAdvance(cpl) {
|
|
|
8374
8374
|
}
|
|
8375
8375
|
}
|
|
8376
8376
|
|
|
8377
|
-
// bazel-out/
|
|
8377
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
8378
8378
|
function element(slot, tag, constIndex, localRefIndex) {
|
|
8379
8379
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex);
|
|
8380
8380
|
}
|
|
@@ -8603,7 +8603,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs) {
|
|
|
8603
8603
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs).toStmt());
|
|
8604
8604
|
}
|
|
8605
8605
|
|
|
8606
|
-
// bazel-out/
|
|
8606
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
8607
8607
|
function phaseReify(cpl) {
|
|
8608
8608
|
for (const [_, view] of cpl.views) {
|
|
8609
8609
|
reifyCreateOperations(view, view.create);
|
|
@@ -8757,7 +8757,7 @@ var LookForEventVisitor = class extends RecursiveAstVisitor {
|
|
|
8757
8757
|
}
|
|
8758
8758
|
};
|
|
8759
8759
|
|
|
8760
|
-
// bazel-out/
|
|
8760
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
8761
8761
|
function phaseSlotAllocation(cpl) {
|
|
8762
8762
|
const slotMap = /* @__PURE__ */ new Map();
|
|
8763
8763
|
for (const [_, view] of cpl.views) {
|
|
@@ -8800,7 +8800,7 @@ function phaseSlotAllocation(cpl) {
|
|
|
8800
8800
|
}
|
|
8801
8801
|
}
|
|
8802
8802
|
|
|
8803
|
-
// bazel-out/
|
|
8803
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
8804
8804
|
function phaseVarCounting(cpl) {
|
|
8805
8805
|
for (const [_, view] of cpl.views) {
|
|
8806
8806
|
let varCount = 0;
|
|
@@ -8857,13 +8857,13 @@ function varsUsedByIrExpression(expr) {
|
|
|
8857
8857
|
}
|
|
8858
8858
|
}
|
|
8859
8859
|
|
|
8860
|
-
// bazel-out/
|
|
8860
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
8861
8861
|
function phaseNaming(cpl) {
|
|
8862
8862
|
addNamesToView(cpl.root, cpl.componentName, { index: 0 });
|
|
8863
8863
|
}
|
|
8864
8864
|
function addNamesToView(view, baseName, state) {
|
|
8865
8865
|
if (view.fnName === null) {
|
|
8866
|
-
view.fnName = `${baseName}_Template
|
|
8866
|
+
view.fnName = sanitizeIdentifier(`${baseName}_Template`);
|
|
8867
8867
|
}
|
|
8868
8868
|
const varNames = /* @__PURE__ */ new Map();
|
|
8869
8869
|
for (const op of view.ops()) {
|
|
@@ -8873,7 +8873,7 @@ function addNamesToView(view, baseName, state) {
|
|
|
8873
8873
|
if (op.slot === null) {
|
|
8874
8874
|
throw new Error(`Expected a slot to be assigned`);
|
|
8875
8875
|
}
|
|
8876
|
-
op.handlerFnName = `${view.fnName}_${op.tag}_${op.name}_${op.slot}_listener
|
|
8876
|
+
op.handlerFnName = sanitizeIdentifier(`${view.fnName}_${op.tag}_${op.name}_${op.slot}_listener`);
|
|
8877
8877
|
}
|
|
8878
8878
|
break;
|
|
8879
8879
|
case OpKind.Variable:
|
|
@@ -8884,8 +8884,7 @@ function addNamesToView(view, baseName, state) {
|
|
|
8884
8884
|
if (op.slot === null) {
|
|
8885
8885
|
throw new Error(`Expected slot to be assigned`);
|
|
8886
8886
|
}
|
|
8887
|
-
|
|
8888
|
-
addNamesToView(childView, `${baseName}_${safeTagName}_${op.slot}`, state);
|
|
8887
|
+
addNamesToView(childView, `${baseName}_${op.tag}_${op.slot}`, state);
|
|
8889
8888
|
break;
|
|
8890
8889
|
}
|
|
8891
8890
|
}
|
|
@@ -8915,7 +8914,7 @@ function getVariableName(variable2, state) {
|
|
|
8915
8914
|
return variable2.name;
|
|
8916
8915
|
}
|
|
8917
8916
|
|
|
8918
|
-
// bazel-out/
|
|
8917
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
8919
8918
|
function phaseLocalRefs(cpl) {
|
|
8920
8919
|
for (const view of cpl.views.values()) {
|
|
8921
8920
|
for (const op of view.create) {
|
|
@@ -8946,7 +8945,7 @@ function serializeLocalRefs(refs) {
|
|
|
8946
8945
|
return literalArr(constRefs);
|
|
8947
8946
|
}
|
|
8948
8947
|
|
|
8949
|
-
// bazel-out/
|
|
8948
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
8950
8949
|
function phaseGenerateVariables(cpl) {
|
|
8951
8950
|
recursivelyProcessView(cpl.root, null);
|
|
8952
8951
|
}
|
|
@@ -9028,7 +9027,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
9028
9027
|
return newOps;
|
|
9029
9028
|
}
|
|
9030
9029
|
|
|
9031
|
-
// bazel-out/
|
|
9030
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
9032
9031
|
function phaseResolveNames(cpl) {
|
|
9033
9032
|
for (const [_, view] of cpl.views) {
|
|
9034
9033
|
processLexicalScope(view, view.create, null);
|
|
@@ -9081,7 +9080,7 @@ function processLexicalScope(view, ops, savedView) {
|
|
|
9081
9080
|
}
|
|
9082
9081
|
}
|
|
9083
9082
|
|
|
9084
|
-
// bazel-out/
|
|
9083
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
9085
9084
|
function phaseResolveContexts(cpl) {
|
|
9086
9085
|
for (const view of cpl.views.values()) {
|
|
9087
9086
|
processLexicalScope2(view, view.create);
|
|
@@ -9119,7 +9118,7 @@ function processLexicalScope2(view, ops) {
|
|
|
9119
9118
|
}
|
|
9120
9119
|
}
|
|
9121
9120
|
|
|
9122
|
-
// bazel-out/
|
|
9121
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
9123
9122
|
function phaseVariableOptimization(cpl, options) {
|
|
9124
9123
|
for (const [_, view] of cpl.views) {
|
|
9125
9124
|
optimizeVariablesInOpList(view.create, options);
|
|
@@ -9329,7 +9328,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
9329
9328
|
}
|
|
9330
9329
|
}
|
|
9331
9330
|
|
|
9332
|
-
// bazel-out/
|
|
9331
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9333
9332
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9334
9333
|
Identifiers.elementStart,
|
|
9335
9334
|
Identifiers.elementEnd,
|
|
@@ -9375,7 +9374,7 @@ function chainOperationsInList(opList) {
|
|
|
9375
9374
|
}
|
|
9376
9375
|
}
|
|
9377
9376
|
|
|
9378
|
-
// bazel-out/
|
|
9377
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
9379
9378
|
function phaseMergeNextContext(cpl) {
|
|
9380
9379
|
for (const view of cpl.views.values()) {
|
|
9381
9380
|
for (const op of view.create) {
|
|
@@ -9420,7 +9419,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
9420
9419
|
}
|
|
9421
9420
|
}
|
|
9422
9421
|
|
|
9423
|
-
// bazel-out/
|
|
9422
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
9424
9423
|
var CONTAINER_TAG = "ng-container";
|
|
9425
9424
|
function phaseNgContainer(cpl) {
|
|
9426
9425
|
for (const [_, view] of cpl.views) {
|
|
@@ -9437,7 +9436,7 @@ function phaseNgContainer(cpl) {
|
|
|
9437
9436
|
}
|
|
9438
9437
|
}
|
|
9439
9438
|
|
|
9440
|
-
// bazel-out/
|
|
9439
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
9441
9440
|
function phaseSaveRestoreView(cpl) {
|
|
9442
9441
|
for (const view of cpl.views.values()) {
|
|
9443
9442
|
if (view === cpl.root) {
|
|
@@ -9470,7 +9469,7 @@ function phaseSaveRestoreView(cpl) {
|
|
|
9470
9469
|
}
|
|
9471
9470
|
}
|
|
9472
9471
|
|
|
9473
|
-
// bazel-out/
|
|
9472
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
9474
9473
|
function phasePureFunctionExtraction(cpl) {
|
|
9475
9474
|
for (const view of cpl.views.values()) {
|
|
9476
9475
|
for (const op of view.ops()) {
|
|
@@ -9512,7 +9511,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
9512
9511
|
}
|
|
9513
9512
|
};
|
|
9514
9513
|
|
|
9515
|
-
// bazel-out/
|
|
9514
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
9516
9515
|
function phasePipeCreation(cpl) {
|
|
9517
9516
|
for (const view of cpl.views.values()) {
|
|
9518
9517
|
processPipeBindingsInView(view);
|
|
@@ -9555,7 +9554,7 @@ function addPipeToCreationBlock(view, afterTargetXref, binding) {
|
|
|
9555
9554
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
9556
9555
|
}
|
|
9557
9556
|
|
|
9558
|
-
// bazel-out/
|
|
9557
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
9559
9558
|
function phasePipeVariadic(cpl) {
|
|
9560
9559
|
for (const view of cpl.views.values()) {
|
|
9561
9560
|
for (const op of view.update) {
|
|
@@ -9572,7 +9571,7 @@ function phasePipeVariadic(cpl) {
|
|
|
9572
9571
|
}
|
|
9573
9572
|
}
|
|
9574
9573
|
|
|
9575
|
-
// bazel-out/
|
|
9574
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
9576
9575
|
function phasePureLiteralStructures(cpl) {
|
|
9577
9576
|
for (const view of cpl.views.values()) {
|
|
9578
9577
|
for (const op of view.update) {
|
|
@@ -9619,7 +9618,7 @@ function transformLiteralMap(expr) {
|
|
|
9619
9618
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
9620
9619
|
}
|
|
9621
9620
|
|
|
9622
|
-
// bazel-out/
|
|
9621
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/align_pipe_variadic_var_offset.mjs
|
|
9623
9622
|
function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
9624
9623
|
for (const view of cpl.views.values()) {
|
|
9625
9624
|
for (const op of view.update) {
|
|
@@ -9640,7 +9639,7 @@ function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
|
9640
9639
|
}
|
|
9641
9640
|
}
|
|
9642
9641
|
|
|
9643
|
-
// bazel-out/
|
|
9642
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
9644
9643
|
function transformTemplate(cpl) {
|
|
9645
9644
|
phasePipeCreation(cpl);
|
|
9646
9645
|
phasePipeVariadic(cpl);
|
|
@@ -9722,7 +9721,7 @@ function maybeGenerateRfBlock(flag, statements) {
|
|
|
9722
9721
|
];
|
|
9723
9722
|
}
|
|
9724
9723
|
|
|
9725
|
-
// bazel-out/
|
|
9724
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
9726
9725
|
var ComponentCompilation = class {
|
|
9727
9726
|
constructor(componentName, pool) {
|
|
9728
9727
|
this.componentName = componentName;
|
|
@@ -9780,7 +9779,7 @@ var ViewCompilation = class {
|
|
|
9780
9779
|
}
|
|
9781
9780
|
};
|
|
9782
9781
|
|
|
9783
|
-
// bazel-out/
|
|
9782
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9784
9783
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9785
9784
|
["&&", BinaryOperator.And],
|
|
9786
9785
|
[">", BinaryOperator.Bigger],
|
|
@@ -9801,7 +9800,7 @@ var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
|
9801
9800
|
["+", BinaryOperator.Plus]
|
|
9802
9801
|
]);
|
|
9803
9802
|
|
|
9804
|
-
// bazel-out/
|
|
9803
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
9805
9804
|
function ingest(componentName, template2, constantPool) {
|
|
9806
9805
|
const cpl = new ComponentCompilation(componentName, constantPool);
|
|
9807
9806
|
ingestNodes(cpl.root, template2);
|
|
@@ -9996,10 +9995,10 @@ function assertIsArray(value) {
|
|
|
9996
9995
|
}
|
|
9997
9996
|
}
|
|
9998
9997
|
|
|
9999
|
-
// bazel-out/
|
|
9998
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
10000
9999
|
var USE_TEMPLATE_PIPELINE = false;
|
|
10001
10000
|
|
|
10002
|
-
// bazel-out/
|
|
10001
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
10003
10002
|
function parse(value) {
|
|
10004
10003
|
const styles = [];
|
|
10005
10004
|
let i = 0;
|
|
@@ -10060,7 +10059,7 @@ function hyphenate(value) {
|
|
|
10060
10059
|
}).toLowerCase();
|
|
10061
10060
|
}
|
|
10062
10061
|
|
|
10063
|
-
// bazel-out/
|
|
10062
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
10064
10063
|
var IMPORTANT_FLAG = "!important";
|
|
10065
10064
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
10066
10065
|
var StylingBuilder = class {
|
|
@@ -10393,7 +10392,7 @@ function isEmptyExpression(ast) {
|
|
|
10393
10392
|
return ast instanceof EmptyExpr;
|
|
10394
10393
|
}
|
|
10395
10394
|
|
|
10396
|
-
// bazel-out/
|
|
10395
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
10397
10396
|
var TokenType;
|
|
10398
10397
|
(function(TokenType2) {
|
|
10399
10398
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -10754,7 +10753,7 @@ function parseIntAutoRadix(text2) {
|
|
|
10754
10753
|
return result;
|
|
10755
10754
|
}
|
|
10756
10755
|
|
|
10757
|
-
// bazel-out/
|
|
10756
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
10758
10757
|
var SplitInterpolation = class {
|
|
10759
10758
|
constructor(strings, expressions, offsets) {
|
|
10760
10759
|
this.strings = strings;
|
|
@@ -11648,7 +11647,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
11648
11647
|
return offsetMap;
|
|
11649
11648
|
}
|
|
11650
11649
|
|
|
11651
|
-
// bazel-out/
|
|
11650
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
11652
11651
|
var NodeWithI18n = class {
|
|
11653
11652
|
constructor(sourceSpan, i18n) {
|
|
11654
11653
|
this.sourceSpan = sourceSpan;
|
|
@@ -11736,11 +11735,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
11736
11735
|
return result;
|
|
11737
11736
|
}
|
|
11738
11737
|
|
|
11739
|
-
// bazel-out/
|
|
11738
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
11740
11739
|
var ElementSchemaRegistry = class {
|
|
11741
11740
|
};
|
|
11742
11741
|
|
|
11743
|
-
// bazel-out/
|
|
11742
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
11744
11743
|
var BOOLEAN = "boolean";
|
|
11745
11744
|
var NUMBER = "number";
|
|
11746
11745
|
var STRING = "string";
|
|
@@ -12093,7 +12092,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12093
12092
|
}
|
|
12094
12093
|
}
|
|
12095
12094
|
|
|
12096
|
-
// bazel-out/
|
|
12095
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12097
12096
|
var HtmlTagDefinition = class {
|
|
12098
12097
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12099
12098
|
this.closedByChildren = {};
|
|
@@ -12211,7 +12210,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
12211
12210
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
12212
12211
|
}
|
|
12213
12212
|
|
|
12214
|
-
// bazel-out/
|
|
12213
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12215
12214
|
var NAMED_ENTITIES = {
|
|
12216
12215
|
"AElig": "\xC6",
|
|
12217
12216
|
"AMP": "&",
|
|
@@ -14342,7 +14341,7 @@ var NAMED_ENTITIES = {
|
|
|
14342
14341
|
var NGSP_UNICODE = "\uE500";
|
|
14343
14342
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14344
14343
|
|
|
14345
|
-
// bazel-out/
|
|
14344
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14346
14345
|
var TokenError = class extends ParseError {
|
|
14347
14346
|
constructor(errorMsg, tokenType, span) {
|
|
14348
14347
|
super(span, errorMsg);
|
|
@@ -15177,7 +15176,7 @@ var CursorError = class {
|
|
|
15177
15176
|
}
|
|
15178
15177
|
};
|
|
15179
15178
|
|
|
15180
|
-
// bazel-out/
|
|
15179
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15181
15180
|
var TreeError = class extends ParseError {
|
|
15182
15181
|
static create(elementName, span, msg) {
|
|
15183
15182
|
return new TreeError(elementName, span, msg);
|
|
@@ -15504,7 +15503,7 @@ function decodeEntity(match, entity) {
|
|
|
15504
15503
|
return match;
|
|
15505
15504
|
}
|
|
15506
15505
|
|
|
15507
|
-
// bazel-out/
|
|
15506
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
15508
15507
|
var HtmlParser = class extends Parser2 {
|
|
15509
15508
|
constructor() {
|
|
15510
15509
|
super(getHtmlTagDefinition);
|
|
@@ -15514,7 +15513,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
15514
15513
|
}
|
|
15515
15514
|
};
|
|
15516
15515
|
|
|
15517
|
-
// bazel-out/
|
|
15516
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
15518
15517
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
15519
15518
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
15520
15519
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -15574,7 +15573,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
15574
15573
|
return result;
|
|
15575
15574
|
}
|
|
15576
15575
|
|
|
15577
|
-
// bazel-out/
|
|
15576
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
15578
15577
|
function mapLiteral(obj, quoted = false) {
|
|
15579
15578
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
15580
15579
|
key,
|
|
@@ -15583,7 +15582,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
15583
15582
|
})));
|
|
15584
15583
|
}
|
|
15585
15584
|
|
|
15586
|
-
// bazel-out/
|
|
15585
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
15587
15586
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
15588
15587
|
"iframe|srcdoc",
|
|
15589
15588
|
"*|innerhtml",
|
|
@@ -15598,7 +15597,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
15598
15597
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
15599
15598
|
}
|
|
15600
15599
|
|
|
15601
|
-
// bazel-out/
|
|
15600
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
15602
15601
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
15603
15602
|
var ATTRIBUTE_PREFIX = "attr";
|
|
15604
15603
|
var CLASS_PREFIX = "class";
|
|
@@ -15918,7 +15917,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
15918
15917
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
15919
15918
|
}
|
|
15920
15919
|
|
|
15921
|
-
// bazel-out/
|
|
15920
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
15922
15921
|
function isStyleUrlResolvable(url) {
|
|
15923
15922
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
15924
15923
|
return false;
|
|
@@ -15927,7 +15926,7 @@ function isStyleUrlResolvable(url) {
|
|
|
15927
15926
|
}
|
|
15928
15927
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
15929
15928
|
|
|
15930
|
-
// bazel-out/
|
|
15929
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
15931
15930
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
15932
15931
|
var LINK_ELEMENT = "link";
|
|
15933
15932
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -15997,7 +15996,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
15997
15996
|
return selectAttr;
|
|
15998
15997
|
}
|
|
15999
15998
|
|
|
16000
|
-
// bazel-out/
|
|
15999
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
16001
16000
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
16002
16001
|
var KW_BIND_IDX = 1;
|
|
16003
16002
|
var KW_LET_IDX = 2;
|
|
@@ -16345,7 +16344,7 @@ function textContents(node) {
|
|
|
16345
16344
|
}
|
|
16346
16345
|
}
|
|
16347
16346
|
|
|
16348
|
-
// bazel-out/
|
|
16347
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
16349
16348
|
var TagType;
|
|
16350
16349
|
(function(TagType2) {
|
|
16351
16350
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -16480,7 +16479,7 @@ function serializePlaceholderValue(value) {
|
|
|
16480
16479
|
}
|
|
16481
16480
|
}
|
|
16482
16481
|
|
|
16483
|
-
// bazel-out/
|
|
16482
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
16484
16483
|
var IcuSerializerVisitor = class {
|
|
16485
16484
|
visitText(text2) {
|
|
16486
16485
|
return text2.value;
|
|
@@ -16511,7 +16510,7 @@ function serializeIcuNode(icu) {
|
|
|
16511
16510
|
return icu.visit(serializer);
|
|
16512
16511
|
}
|
|
16513
16512
|
|
|
16514
|
-
// bazel-out/
|
|
16513
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
16515
16514
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
16516
16515
|
"A": "LINK",
|
|
16517
16516
|
"B": "BOLD_TEXT",
|
|
@@ -16605,7 +16604,7 @@ var PlaceholderRegistry = class {
|
|
|
16605
16604
|
}
|
|
16606
16605
|
};
|
|
16607
16606
|
|
|
16608
|
-
// bazel-out/
|
|
16607
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
16609
16608
|
var _expParser = new Parser(new Lexer());
|
|
16610
16609
|
function createI18nMessageFactory(interpolationConfig) {
|
|
16611
16610
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -16760,14 +16759,14 @@ function extractPlaceholderName(input) {
|
|
|
16760
16759
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
16761
16760
|
}
|
|
16762
16761
|
|
|
16763
|
-
// bazel-out/
|
|
16762
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
16764
16763
|
var I18nError = class extends ParseError {
|
|
16765
16764
|
constructor(span, msg) {
|
|
16766
16765
|
super(span, msg);
|
|
16767
16766
|
}
|
|
16768
16767
|
};
|
|
16769
16768
|
|
|
16770
|
-
// bazel-out/
|
|
16769
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16771
16770
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16772
16771
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16773
16772
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16916,7 +16915,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16916
16915
|
return jsDocComment(tags);
|
|
16917
16916
|
}
|
|
16918
16917
|
|
|
16919
|
-
// bazel-out/
|
|
16918
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16920
16919
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16921
16920
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16922
16921
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16964,7 +16963,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16964
16963
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16965
16964
|
}
|
|
16966
16965
|
|
|
16967
|
-
// bazel-out/
|
|
16966
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16968
16967
|
function createLocalizeStatements(variable2, message, params) {
|
|
16969
16968
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16970
16969
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -17047,7 +17046,7 @@ function createEmptyMessagePart(location) {
|
|
|
17047
17046
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
17048
17047
|
}
|
|
17049
17048
|
|
|
17050
|
-
// bazel-out/
|
|
17049
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
17051
17050
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
17052
17051
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
17053
17052
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -18349,7 +18348,7 @@ function createClosureModeGuard() {
|
|
|
18349
18348
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
18350
18349
|
}
|
|
18351
18350
|
|
|
18352
|
-
// bazel-out/
|
|
18351
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
18353
18352
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
18354
18353
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
18355
18354
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -18909,11 +18908,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
18909
18908
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
18910
18909
|
}
|
|
18911
18910
|
|
|
18912
|
-
// bazel-out/
|
|
18911
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
18913
18912
|
var ResourceLoader = class {
|
|
18914
18913
|
};
|
|
18915
18914
|
|
|
18916
|
-
// bazel-out/
|
|
18915
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
18917
18916
|
var CompilerFacadeImpl = class {
|
|
18918
18917
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
18919
18918
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -19437,10 +19436,10 @@ function publishFacade(global2) {
|
|
|
19437
19436
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
19438
19437
|
}
|
|
19439
19438
|
|
|
19440
|
-
// bazel-out/
|
|
19441
|
-
var VERSION2 = new Version("16.1.
|
|
19439
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
|
|
19440
|
+
var VERSION2 = new Version("16.1.6");
|
|
19442
19441
|
|
|
19443
|
-
// bazel-out/
|
|
19442
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
19444
19443
|
var _I18N_ATTR = "i18n";
|
|
19445
19444
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
19446
19445
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -19744,7 +19743,7 @@ function _parseMessageMeta(i18n) {
|
|
|
19744
19743
|
return { meaning, description, id: id.trim() };
|
|
19745
19744
|
}
|
|
19746
19745
|
|
|
19747
|
-
// bazel-out/
|
|
19746
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
19748
19747
|
var XmlTagDefinition = class {
|
|
19749
19748
|
constructor() {
|
|
19750
19749
|
this.closedByParent = false;
|
|
@@ -19769,7 +19768,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
19769
19768
|
return _TAG_DEFINITION;
|
|
19770
19769
|
}
|
|
19771
19770
|
|
|
19772
|
-
// bazel-out/
|
|
19771
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
19773
19772
|
var XmlParser = class extends Parser2 {
|
|
19774
19773
|
constructor() {
|
|
19775
19774
|
super(getXmlTagDefinition);
|
|
@@ -19779,7 +19778,7 @@ var XmlParser = class extends Parser2 {
|
|
|
19779
19778
|
}
|
|
19780
19779
|
};
|
|
19781
19780
|
|
|
19782
|
-
// bazel-out/
|
|
19781
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
19783
19782
|
var _VERSION = "1.2";
|
|
19784
19783
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
19785
19784
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -20019,7 +20018,7 @@ function getCtypeForTag(tag) {
|
|
|
20019
20018
|
}
|
|
20020
20019
|
}
|
|
20021
20020
|
|
|
20022
|
-
// bazel-out/
|
|
20021
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
20023
20022
|
var _VERSION2 = "2.0";
|
|
20024
20023
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
20025
20024
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -20310,7 +20309,7 @@ function getTypeForTag(tag) {
|
|
|
20310
20309
|
}
|
|
20311
20310
|
}
|
|
20312
20311
|
|
|
20313
|
-
// bazel-out/
|
|
20312
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
20314
20313
|
var MessageBundle = class {
|
|
20315
20314
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
20316
20315
|
this._htmlParser = _htmlParser;
|
|
@@ -20377,7 +20376,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
20377
20376
|
}
|
|
20378
20377
|
};
|
|
20379
20378
|
|
|
20380
|
-
// bazel-out/
|
|
20379
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
20381
20380
|
var FactoryTarget2;
|
|
20382
20381
|
(function(FactoryTarget3) {
|
|
20383
20382
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -20387,7 +20386,7 @@ var FactoryTarget2;
|
|
|
20387
20386
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
20388
20387
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
20389
20388
|
|
|
20390
|
-
// bazel-out/
|
|
20389
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
20391
20390
|
var R3TargetBinder = class {
|
|
20392
20391
|
constructor(directiveMatcher) {
|
|
20393
20392
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -20739,7 +20738,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
20739
20738
|
return templateEntities;
|
|
20740
20739
|
}
|
|
20741
20740
|
|
|
20742
|
-
// bazel-out/
|
|
20741
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
20743
20742
|
function compileClassMetadata(metadata) {
|
|
20744
20743
|
var _a2, _b2;
|
|
20745
20744
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -20752,12 +20751,12 @@ function compileClassMetadata(metadata) {
|
|
|
20752
20751
|
return iife.callFn([]);
|
|
20753
20752
|
}
|
|
20754
20753
|
|
|
20755
|
-
// bazel-out/
|
|
20754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
20756
20755
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
20757
20756
|
function compileDeclareClassMetadata(metadata) {
|
|
20758
20757
|
const definitionMap = new DefinitionMap();
|
|
20759
20758
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
20760
|
-
definitionMap.set("version", literal("16.1.
|
|
20759
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
20761
20760
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20762
20761
|
definitionMap.set("type", metadata.type);
|
|
20763
20762
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -20766,7 +20765,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
20766
20765
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
20767
20766
|
}
|
|
20768
20767
|
|
|
20769
|
-
// bazel-out/
|
|
20768
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
20770
20769
|
function toOptionalLiteralArray(values, mapper) {
|
|
20771
20770
|
if (values === null || values.length === 0) {
|
|
20772
20771
|
return null;
|
|
@@ -20814,7 +20813,7 @@ function compileDependency(dep) {
|
|
|
20814
20813
|
return depMeta.toLiteralMap();
|
|
20815
20814
|
}
|
|
20816
20815
|
|
|
20817
|
-
// bazel-out/
|
|
20816
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
20818
20817
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
20819
20818
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
20820
20819
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -20826,7 +20825,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
20826
20825
|
var _a2;
|
|
20827
20826
|
const definitionMap = new DefinitionMap();
|
|
20828
20827
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
20829
|
-
definitionMap.set("version", literal("16.1.
|
|
20828
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
20830
20829
|
definitionMap.set("type", meta.type.value);
|
|
20831
20830
|
if (meta.isStandalone) {
|
|
20832
20831
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -20919,7 +20918,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
20919
20918
|
return literalArr(expressions);
|
|
20920
20919
|
}
|
|
20921
20920
|
|
|
20922
|
-
// bazel-out/
|
|
20921
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
20923
20922
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
20924
20923
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
20925
20924
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -21006,12 +21005,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
21006
21005
|
});
|
|
21007
21006
|
}
|
|
21008
21007
|
|
|
21009
|
-
// bazel-out/
|
|
21008
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
21010
21009
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
21011
21010
|
function compileDeclareFactoryFunction(meta) {
|
|
21012
21011
|
const definitionMap = new DefinitionMap();
|
|
21013
21012
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
21014
|
-
definitionMap.set("version", literal("16.1.
|
|
21013
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
21015
21014
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21016
21015
|
definitionMap.set("type", meta.type.value);
|
|
21017
21016
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -21023,7 +21022,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
21023
21022
|
};
|
|
21024
21023
|
}
|
|
21025
21024
|
|
|
21026
|
-
// bazel-out/
|
|
21025
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
21027
21026
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
21028
21027
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
21029
21028
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -21034,7 +21033,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
21034
21033
|
function createInjectableDefinitionMap(meta) {
|
|
21035
21034
|
const definitionMap = new DefinitionMap();
|
|
21036
21035
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
21037
|
-
definitionMap.set("version", literal("16.1.
|
|
21036
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
21038
21037
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21039
21038
|
definitionMap.set("type", meta.type.value);
|
|
21040
21039
|
if (meta.providedIn !== void 0) {
|
|
@@ -21061,7 +21060,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
21061
21060
|
return definitionMap;
|
|
21062
21061
|
}
|
|
21063
21062
|
|
|
21064
|
-
// bazel-out/
|
|
21063
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
21065
21064
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
21066
21065
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
21067
21066
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -21072,7 +21071,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
21072
21071
|
function createInjectorDefinitionMap(meta) {
|
|
21073
21072
|
const definitionMap = new DefinitionMap();
|
|
21074
21073
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
21075
|
-
definitionMap.set("version", literal("16.1.
|
|
21074
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
21076
21075
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21077
21076
|
definitionMap.set("type", meta.type.value);
|
|
21078
21077
|
definitionMap.set("providers", meta.providers);
|
|
@@ -21082,7 +21081,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
21082
21081
|
return definitionMap;
|
|
21083
21082
|
}
|
|
21084
21083
|
|
|
21085
|
-
// bazel-out/
|
|
21084
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
21086
21085
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
21087
21086
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
21088
21087
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -21096,7 +21095,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
21096
21095
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
21097
21096
|
}
|
|
21098
21097
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
21099
|
-
definitionMap.set("version", literal("16.1.
|
|
21098
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
21100
21099
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21101
21100
|
definitionMap.set("type", meta.type.value);
|
|
21102
21101
|
if (meta.bootstrap.length > 0) {
|
|
@@ -21120,7 +21119,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
21120
21119
|
return definitionMap;
|
|
21121
21120
|
}
|
|
21122
21121
|
|
|
21123
|
-
// bazel-out/
|
|
21122
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
21124
21123
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
21125
21124
|
function compileDeclarePipeFromMetadata(meta) {
|
|
21126
21125
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -21131,7 +21130,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
21131
21130
|
function createPipeDefinitionMap(meta) {
|
|
21132
21131
|
const definitionMap = new DefinitionMap();
|
|
21133
21132
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
21134
|
-
definitionMap.set("version", literal("16.1.
|
|
21133
|
+
definitionMap.set("version", literal("16.1.6"));
|
|
21135
21134
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21136
21135
|
definitionMap.set("type", meta.type.value);
|
|
21137
21136
|
if (meta.isStandalone) {
|
|
@@ -21144,13 +21143,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
21144
21143
|
return definitionMap;
|
|
21145
21144
|
}
|
|
21146
21145
|
|
|
21147
|
-
// bazel-out/
|
|
21146
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
21148
21147
|
publishFacade(_global);
|
|
21149
21148
|
|
|
21150
|
-
// bazel-out/
|
|
21151
|
-
var VERSION3 = new Version("16.1.
|
|
21149
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
21150
|
+
var VERSION3 = new Version("16.1.6");
|
|
21152
21151
|
|
|
21153
|
-
// bazel-out/
|
|
21152
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
21154
21153
|
var EmitFlags;
|
|
21155
21154
|
(function(EmitFlags2) {
|
|
21156
21155
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -21162,13 +21161,13 @@ var EmitFlags;
|
|
|
21162
21161
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
21163
21162
|
})(EmitFlags || (EmitFlags = {}));
|
|
21164
21163
|
|
|
21165
|
-
// bazel-out/
|
|
21164
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
21166
21165
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
21167
21166
|
|
|
21168
|
-
// bazel-out/
|
|
21167
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
21169
21168
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
21170
21169
|
|
|
21171
|
-
// bazel-out/
|
|
21170
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
21172
21171
|
var path = __toESM(require("path"), 1);
|
|
21173
21172
|
function i18nGetExtension(formatName) {
|
|
21174
21173
|
const format = formatName.toLowerCase();
|
|
@@ -21218,10 +21217,10 @@ function getPathNormalizer(basePath) {
|
|
|
21218
21217
|
};
|
|
21219
21218
|
}
|
|
21220
21219
|
|
|
21221
|
-
// bazel-out/
|
|
21220
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
21222
21221
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
21223
21222
|
|
|
21224
|
-
// bazel-out/
|
|
21223
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
21225
21224
|
function toNumbers(value) {
|
|
21226
21225
|
const suffixIndex = value.lastIndexOf("-");
|
|
21227
21226
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -21256,7 +21255,7 @@ function compareVersions(v1, v2) {
|
|
|
21256
21255
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
21257
21256
|
}
|
|
21258
21257
|
|
|
21259
|
-
// bazel-out/
|
|
21258
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
21260
21259
|
var MIN_TS_VERSION = "4.9.3";
|
|
21261
21260
|
var MAX_TS_VERSION = "5.2.0";
|
|
21262
21261
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -21269,13 +21268,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
21269
21268
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
21270
21269
|
}
|
|
21271
21270
|
|
|
21272
|
-
// bazel-out/
|
|
21271
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
21273
21272
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
21274
21273
|
|
|
21275
|
-
// bazel-out/
|
|
21274
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
21276
21275
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
21277
21276
|
|
|
21278
|
-
// bazel-out/
|
|
21277
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
21279
21278
|
var ErrorCode;
|
|
21280
21279
|
(function(ErrorCode2) {
|
|
21281
21280
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -21349,7 +21348,7 @@ var ErrorCode;
|
|
|
21349
21348
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
21350
21349
|
})(ErrorCode || (ErrorCode = {}));
|
|
21351
21350
|
|
|
21352
|
-
// bazel-out/
|
|
21351
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
21353
21352
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
21354
21353
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
21355
21354
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -21361,15 +21360,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
21361
21360
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
21362
21361
|
]);
|
|
21363
21362
|
|
|
21364
|
-
// bazel-out/
|
|
21363
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
21365
21364
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
21366
21365
|
|
|
21367
|
-
// bazel-out/
|
|
21366
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
21368
21367
|
function ngErrorCode(code) {
|
|
21369
21368
|
return parseInt("-99" + code);
|
|
21370
21369
|
}
|
|
21371
21370
|
|
|
21372
|
-
// bazel-out/
|
|
21371
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
21373
21372
|
var FatalDiagnosticError = class {
|
|
21374
21373
|
constructor(code, node, message, relatedInformation) {
|
|
21375
21374
|
this.code = code;
|
|
@@ -21425,10 +21424,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
21425
21424
|
return messageText;
|
|
21426
21425
|
}
|
|
21427
21426
|
|
|
21428
|
-
// bazel-out/
|
|
21427
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
21429
21428
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
21430
21429
|
|
|
21431
|
-
// bazel-out/
|
|
21430
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
21432
21431
|
var ExtendedTemplateDiagnosticName;
|
|
21433
21432
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
21434
21433
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -21441,13 +21440,13 @@ var ExtendedTemplateDiagnosticName;
|
|
|
21441
21440
|
ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
|
|
21442
21441
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
21443
21442
|
|
|
21444
|
-
// bazel-out/
|
|
21443
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
21445
21444
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
21446
21445
|
|
|
21447
|
-
// bazel-out/
|
|
21446
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
21448
21447
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
21449
21448
|
|
|
21450
|
-
// bazel-out/
|
|
21449
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
21451
21450
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
21452
21451
|
var TS = /\.tsx?$/i;
|
|
21453
21452
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -21548,7 +21547,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
21548
21547
|
return redirectInfo.unredirected;
|
|
21549
21548
|
}
|
|
21550
21549
|
|
|
21551
|
-
// bazel-out/
|
|
21550
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
21552
21551
|
function findExportedNameOfNode(target, file, reflector) {
|
|
21553
21552
|
const exports = reflector.getExportsOfModule(file);
|
|
21554
21553
|
if (exports === null) {
|
|
@@ -21568,7 +21567,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
21568
21567
|
return foundExportName;
|
|
21569
21568
|
}
|
|
21570
21569
|
|
|
21571
|
-
// bazel-out/
|
|
21570
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
21572
21571
|
var ImportFlags;
|
|
21573
21572
|
(function(ImportFlags2) {
|
|
21574
21573
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -21784,7 +21783,7 @@ var UnifiedModulesStrategy = class {
|
|
|
21784
21783
|
}
|
|
21785
21784
|
};
|
|
21786
21785
|
|
|
21787
|
-
// bazel-out/
|
|
21786
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
21788
21787
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
21789
21788
|
var UnifiedModulesAliasingHost = class {
|
|
21790
21789
|
constructor(unifiedModulesHost) {
|
|
@@ -21851,7 +21850,7 @@ var AliasStrategy = class {
|
|
|
21851
21850
|
}
|
|
21852
21851
|
};
|
|
21853
21852
|
|
|
21854
|
-
// bazel-out/
|
|
21853
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
21855
21854
|
function relativePathBetween(from, to) {
|
|
21856
21855
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
21857
21856
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -21860,7 +21859,7 @@ function normalizeSeparators2(path3) {
|
|
|
21860
21859
|
return path3.replace(/\\/g, "/");
|
|
21861
21860
|
}
|
|
21862
21861
|
|
|
21863
|
-
// bazel-out/
|
|
21862
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
21864
21863
|
var NoopImportRewriter = class {
|
|
21865
21864
|
shouldImportSymbol(symbol, specifier) {
|
|
21866
21865
|
return true;
|
|
@@ -21918,7 +21917,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
21918
21917
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
21919
21918
|
}
|
|
21920
21919
|
|
|
21921
|
-
// bazel-out/
|
|
21920
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
21922
21921
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
21923
21922
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
21924
21923
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -21953,7 +21952,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
21953
21952
|
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.");
|
|
21954
21953
|
}
|
|
21955
21954
|
|
|
21956
|
-
// bazel-out/
|
|
21955
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
21957
21956
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
21958
21957
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
21959
21958
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -21994,7 +21993,7 @@ var DefaultImportTracker = class {
|
|
|
21994
21993
|
}
|
|
21995
21994
|
};
|
|
21996
21995
|
|
|
21997
|
-
// bazel-out/
|
|
21996
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
21998
21997
|
var Reference2 = class {
|
|
21999
21998
|
constructor(node, bestGuessOwningModule = null) {
|
|
22000
21999
|
this.node = node;
|
|
@@ -22057,7 +22056,7 @@ var Reference2 = class {
|
|
|
22057
22056
|
}
|
|
22058
22057
|
};
|
|
22059
22058
|
|
|
22060
|
-
// bazel-out/
|
|
22059
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
22061
22060
|
var ModuleResolver = class {
|
|
22062
22061
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
22063
22062
|
this.program = program;
|
|
@@ -22074,7 +22073,7 @@ var ModuleResolver = class {
|
|
|
22074
22073
|
}
|
|
22075
22074
|
};
|
|
22076
22075
|
|
|
22077
|
-
// bazel-out/
|
|
22076
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
22078
22077
|
function valueReferenceToExpression(valueRef) {
|
|
22079
22078
|
if (valueRef.kind === 2) {
|
|
22080
22079
|
return null;
|
|
@@ -22313,7 +22312,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
22313
22312
|
return import_typescript13.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript13.default.SyntaxKind.AbstractKeyword) : false;
|
|
22314
22313
|
}
|
|
22315
22314
|
|
|
22316
|
-
// bazel-out/
|
|
22315
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
22317
22316
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
22318
22317
|
const deps = [];
|
|
22319
22318
|
const errors = [];
|
|
@@ -22455,10 +22454,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
22455
22454
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
22456
22455
|
}
|
|
22457
22456
|
|
|
22458
|
-
// bazel-out/
|
|
22457
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
22459
22458
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
22460
22459
|
|
|
22461
|
-
// bazel-out/
|
|
22460
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
22462
22461
|
var MetaKind;
|
|
22463
22462
|
(function(MetaKind2) {
|
|
22464
22463
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -22471,10 +22470,10 @@ var MatchSource;
|
|
|
22471
22470
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
22472
22471
|
})(MatchSource || (MatchSource = {}));
|
|
22473
22472
|
|
|
22474
|
-
// bazel-out/
|
|
22473
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
22475
22474
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
22476
22475
|
|
|
22477
|
-
// bazel-out/
|
|
22476
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
22478
22477
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
22479
22478
|
function isDecoratorIdentifier(exp) {
|
|
22480
22479
|
return import_typescript15.default.isIdentifier(exp) || import_typescript15.default.isPropertyAccessExpression(exp) && import_typescript15.default.isIdentifier(exp.expression) && import_typescript15.default.isIdentifier(exp.name);
|
|
@@ -22488,7 +22487,7 @@ var ClassMemberKind;
|
|
|
22488
22487
|
ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
|
|
22489
22488
|
})(ClassMemberKind || (ClassMemberKind = {}));
|
|
22490
22489
|
|
|
22491
|
-
// bazel-out/
|
|
22490
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
22492
22491
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
22493
22492
|
function typeToValue(typeNode, checker) {
|
|
22494
22493
|
if (typeNode === null) {
|
|
@@ -22654,10 +22653,10 @@ function extractModuleName(node) {
|
|
|
22654
22653
|
return node.moduleSpecifier.text;
|
|
22655
22654
|
}
|
|
22656
22655
|
|
|
22657
|
-
// bazel-out/
|
|
22656
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
22658
22657
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
22659
22658
|
|
|
22660
|
-
// bazel-out/
|
|
22659
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
22661
22660
|
var import_typescript17 = __toESM(require("typescript"), 1);
|
|
22662
22661
|
function isNamedClassDeclaration(node) {
|
|
22663
22662
|
return import_typescript17.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -22666,7 +22665,7 @@ function isIdentifier(node) {
|
|
|
22666
22665
|
return node !== void 0 && import_typescript17.default.isIdentifier(node);
|
|
22667
22666
|
}
|
|
22668
22667
|
|
|
22669
|
-
// bazel-out/
|
|
22668
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
22670
22669
|
var TypeScriptReflectionHost = class {
|
|
22671
22670
|
constructor(checker) {
|
|
22672
22671
|
this.checker = checker;
|
|
@@ -23095,7 +23094,7 @@ function getExportedName(decl, originalId) {
|
|
|
23095
23094
|
}
|
|
23096
23095
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
23097
23096
|
|
|
23098
|
-
// bazel-out/
|
|
23097
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
23099
23098
|
var ClassPropertyMapping = class {
|
|
23100
23099
|
constructor(forwardMap) {
|
|
23101
23100
|
this.forwardMap = forwardMap;
|
|
@@ -23173,7 +23172,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
23173
23172
|
return reverseMap;
|
|
23174
23173
|
}
|
|
23175
23174
|
|
|
23176
|
-
// bazel-out/
|
|
23175
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
23177
23176
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
23178
23177
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
23179
23178
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -23358,7 +23357,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
23358
23357
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
23359
23358
|
}
|
|
23360
23359
|
|
|
23361
|
-
// bazel-out/
|
|
23360
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
23362
23361
|
var DtsMetadataReader = class {
|
|
23363
23362
|
constructor(checker, reflector) {
|
|
23364
23363
|
this.checker = checker;
|
|
@@ -23533,7 +23532,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
23533
23532
|
return result.length > 0 ? result : null;
|
|
23534
23533
|
}
|
|
23535
23534
|
|
|
23536
|
-
// bazel-out/
|
|
23535
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
23537
23536
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
23538
23537
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
23539
23538
|
if (topMeta === null) {
|
|
@@ -23590,7 +23589,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
23590
23589
|
});
|
|
23591
23590
|
}
|
|
23592
23591
|
|
|
23593
|
-
// bazel-out/
|
|
23592
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
23594
23593
|
var LocalMetadataRegistry = class {
|
|
23595
23594
|
constructor() {
|
|
23596
23595
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -23647,7 +23646,7 @@ var CompoundMetadataRegistry = class {
|
|
|
23647
23646
|
}
|
|
23648
23647
|
};
|
|
23649
23648
|
|
|
23650
|
-
// bazel-out/
|
|
23649
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
23651
23650
|
var ResourceRegistry = class {
|
|
23652
23651
|
constructor() {
|
|
23653
23652
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -23712,7 +23711,7 @@ var ResourceRegistry = class {
|
|
|
23712
23711
|
}
|
|
23713
23712
|
};
|
|
23714
23713
|
|
|
23715
|
-
// bazel-out/
|
|
23714
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
23716
23715
|
var ExportedProviderStatusResolver = class {
|
|
23717
23716
|
constructor(metaReader) {
|
|
23718
23717
|
this.metaReader = metaReader;
|
|
@@ -23756,7 +23755,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
23756
23755
|
}
|
|
23757
23756
|
};
|
|
23758
23757
|
|
|
23759
|
-
// bazel-out/
|
|
23758
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
23760
23759
|
var EMPTY_ARRAY = [];
|
|
23761
23760
|
var HostDirectivesResolver = class {
|
|
23762
23761
|
constructor(metaReader) {
|
|
@@ -23817,10 +23816,10 @@ function resolveOutput(bindingName) {
|
|
|
23817
23816
|
return bindingName;
|
|
23818
23817
|
}
|
|
23819
23818
|
|
|
23820
|
-
// bazel-out/
|
|
23819
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
23821
23820
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
23822
23821
|
|
|
23823
|
-
// bazel-out/
|
|
23822
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
23824
23823
|
var DynamicValue = class {
|
|
23825
23824
|
constructor(node, reason, code) {
|
|
23826
23825
|
this.node = node;
|
|
@@ -23910,7 +23909,7 @@ var DynamicValue = class {
|
|
|
23910
23909
|
}
|
|
23911
23910
|
};
|
|
23912
23911
|
|
|
23913
|
-
// bazel-out/
|
|
23912
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
23914
23913
|
var ResolvedModule = class {
|
|
23915
23914
|
constructor(exports, evaluate) {
|
|
23916
23915
|
this.exports = exports;
|
|
@@ -23940,7 +23939,7 @@ var EnumValue = class {
|
|
|
23940
23939
|
var KnownFn = class {
|
|
23941
23940
|
};
|
|
23942
23941
|
|
|
23943
|
-
// bazel-out/
|
|
23942
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
23944
23943
|
function describeResolvedType(value, maxDepth = 1) {
|
|
23945
23944
|
var _a2, _b2;
|
|
23946
23945
|
if (value === null) {
|
|
@@ -24069,10 +24068,10 @@ function getContainerNode(node) {
|
|
|
24069
24068
|
return node.getSourceFile();
|
|
24070
24069
|
}
|
|
24071
24070
|
|
|
24072
|
-
// bazel-out/
|
|
24071
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
24073
24072
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
24074
24073
|
|
|
24075
|
-
// bazel-out/
|
|
24074
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
24076
24075
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
24077
24076
|
constructor(lhs) {
|
|
24078
24077
|
super();
|
|
@@ -24124,14 +24123,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
24124
24123
|
}
|
|
24125
24124
|
};
|
|
24126
24125
|
|
|
24127
|
-
// bazel-out/
|
|
24126
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
24128
24127
|
var SyntheticValue = class {
|
|
24129
24128
|
constructor(value) {
|
|
24130
24129
|
this.value = value;
|
|
24131
24130
|
}
|
|
24132
24131
|
};
|
|
24133
24132
|
|
|
24134
|
-
// bazel-out/
|
|
24133
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
24135
24134
|
function literalBinaryOp(op) {
|
|
24136
24135
|
return { op, literal: true };
|
|
24137
24136
|
}
|
|
@@ -24709,7 +24708,7 @@ function getOriginalKeywordKind(identifier) {
|
|
|
24709
24708
|
return typeof import_typescript25.default.identifierToKeywordKind === "function" ? import_typescript25.default.identifierToKeywordKind(identifier) : identifier.originalKeywordKind;
|
|
24710
24709
|
}
|
|
24711
24710
|
|
|
24712
|
-
// bazel-out/
|
|
24711
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
24713
24712
|
var PartialEvaluator = class {
|
|
24714
24713
|
constructor(host, checker, dependencyTracker) {
|
|
24715
24714
|
this.host = host;
|
|
@@ -24729,7 +24728,7 @@ var PartialEvaluator = class {
|
|
|
24729
24728
|
}
|
|
24730
24729
|
};
|
|
24731
24730
|
|
|
24732
|
-
// bazel-out/
|
|
24731
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
24733
24732
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
24734
24733
|
const context = [];
|
|
24735
24734
|
for (const decl of data) {
|
|
@@ -24925,7 +24924,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
24925
24924
|
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}.`);
|
|
24926
24925
|
}
|
|
24927
24926
|
|
|
24928
|
-
// bazel-out/
|
|
24927
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
24929
24928
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
24930
24929
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
24931
24930
|
let resolved = null;
|
|
@@ -24958,7 +24957,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
24958
24957
|
return meta;
|
|
24959
24958
|
}
|
|
24960
24959
|
|
|
24961
|
-
// bazel-out/
|
|
24960
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
24962
24961
|
function compileNgFactoryDefField(metadata) {
|
|
24963
24962
|
const res = compileFactoryFunction(metadata);
|
|
24964
24963
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -24968,7 +24967,7 @@ function compileDeclareFactory(metadata) {
|
|
|
24968
24967
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
24969
24968
|
}
|
|
24970
24969
|
|
|
24971
|
-
// bazel-out/
|
|
24970
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
24972
24971
|
var InjectableClassRegistry = class {
|
|
24973
24972
|
constructor(host, isCore) {
|
|
24974
24973
|
this.host = host;
|
|
@@ -24994,7 +24993,7 @@ var InjectableClassRegistry = class {
|
|
|
24994
24993
|
}
|
|
24995
24994
|
};
|
|
24996
24995
|
|
|
24997
|
-
// bazel-out/
|
|
24996
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
24998
24997
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
24999
24998
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
25000
24999
|
if (!reflection.isClass(clazz)) {
|
|
@@ -25080,13 +25079,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
25080
25079
|
return result.transformed[0];
|
|
25081
25080
|
}
|
|
25082
25081
|
|
|
25083
|
-
// bazel-out/
|
|
25082
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
25084
25083
|
var NoopReferencesRegistry = class {
|
|
25085
25084
|
add(source, ...references) {
|
|
25086
25085
|
}
|
|
25087
25086
|
};
|
|
25088
25087
|
|
|
25089
|
-
// bazel-out/
|
|
25088
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
25090
25089
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
25091
25090
|
const schemas = [];
|
|
25092
25091
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -25115,7 +25114,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
25115
25114
|
return schemas;
|
|
25116
25115
|
}
|
|
25117
25116
|
|
|
25118
|
-
// bazel-out/
|
|
25117
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
25119
25118
|
function compileInputTransformFields(inputs) {
|
|
25120
25119
|
const extraFields = [];
|
|
25121
25120
|
for (const input of inputs) {
|
|
@@ -25131,10 +25130,10 @@ function compileInputTransformFields(inputs) {
|
|
|
25131
25130
|
return extraFields;
|
|
25132
25131
|
}
|
|
25133
25132
|
|
|
25134
|
-
// bazel-out/
|
|
25133
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
25135
25134
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
25136
25135
|
|
|
25137
|
-
// bazel-out/
|
|
25136
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
25138
25137
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
25139
25138
|
var SemanticSymbol = class {
|
|
25140
25139
|
constructor(decl) {
|
|
@@ -25150,7 +25149,7 @@ function getSymbolIdentifier(decl) {
|
|
|
25150
25149
|
return decl.name.text;
|
|
25151
25150
|
}
|
|
25152
25151
|
|
|
25153
|
-
// bazel-out/
|
|
25152
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
25154
25153
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
25155
25154
|
isPublicApiAffected() {
|
|
25156
25155
|
return false;
|
|
@@ -25292,10 +25291,10 @@ function getImportPath(expr) {
|
|
|
25292
25291
|
}
|
|
25293
25292
|
}
|
|
25294
25293
|
|
|
25295
|
-
// bazel-out/
|
|
25294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
25296
25295
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
25297
25296
|
|
|
25298
|
-
// bazel-out/
|
|
25297
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
25299
25298
|
function isSymbolEqual(a, b) {
|
|
25300
25299
|
if (a.decl === b.decl) {
|
|
25301
25300
|
return true;
|
|
@@ -25345,7 +25344,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
25345
25344
|
return true;
|
|
25346
25345
|
}
|
|
25347
25346
|
|
|
25348
|
-
// bazel-out/
|
|
25347
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
25349
25348
|
function extractSemanticTypeParameters(node) {
|
|
25350
25349
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
25351
25350
|
return null;
|
|
@@ -25365,7 +25364,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
25365
25364
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
25366
25365
|
}
|
|
25367
25366
|
|
|
25368
|
-
// bazel-out/
|
|
25367
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
25369
25368
|
var PerfPhase;
|
|
25370
25369
|
(function(PerfPhase2) {
|
|
25371
25370
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -25432,7 +25431,7 @@ var PerfCheckpoint;
|
|
|
25432
25431
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
25433
25432
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
25434
25433
|
|
|
25435
|
-
// bazel-out/
|
|
25434
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
25436
25435
|
var NoopPerfRecorder = class {
|
|
25437
25436
|
eventCount() {
|
|
25438
25437
|
}
|
|
@@ -25449,7 +25448,7 @@ var NoopPerfRecorder = class {
|
|
|
25449
25448
|
};
|
|
25450
25449
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
25451
25450
|
|
|
25452
|
-
// bazel-out/
|
|
25451
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
25453
25452
|
function mark() {
|
|
25454
25453
|
return process.hrtime();
|
|
25455
25454
|
}
|
|
@@ -25458,7 +25457,7 @@ function timeSinceInMicros(mark2) {
|
|
|
25458
25457
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
25459
25458
|
}
|
|
25460
25459
|
|
|
25461
|
-
// bazel-out/
|
|
25460
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
25462
25461
|
var ActivePerfRecorder = class {
|
|
25463
25462
|
static zeroedToNow() {
|
|
25464
25463
|
return new ActivePerfRecorder(mark());
|
|
@@ -25552,14 +25551,14 @@ var DelegatingPerfRecorder = class {
|
|
|
25552
25551
|
}
|
|
25553
25552
|
};
|
|
25554
25553
|
|
|
25555
|
-
// bazel-out/
|
|
25554
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
25556
25555
|
var ComponentScopeKind;
|
|
25557
25556
|
(function(ComponentScopeKind2) {
|
|
25558
25557
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
25559
25558
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
25560
25559
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
25561
25560
|
|
|
25562
|
-
// bazel-out/
|
|
25561
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
25563
25562
|
var CompoundComponentScopeReader = class {
|
|
25564
25563
|
constructor(readers) {
|
|
25565
25564
|
this.readers = readers;
|
|
@@ -25584,7 +25583,7 @@ var CompoundComponentScopeReader = class {
|
|
|
25584
25583
|
}
|
|
25585
25584
|
};
|
|
25586
25585
|
|
|
25587
|
-
// bazel-out/
|
|
25586
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
25588
25587
|
var MetadataDtsModuleScopeResolver = class {
|
|
25589
25588
|
constructor(dtsMetaReader, aliasingHost) {
|
|
25590
25589
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -25659,10 +25658,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
25659
25658
|
}
|
|
25660
25659
|
};
|
|
25661
25660
|
|
|
25662
|
-
// bazel-out/
|
|
25661
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
25663
25662
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
25664
25663
|
|
|
25665
|
-
// bazel-out/
|
|
25664
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
25666
25665
|
function getDiagnosticNode(ref, rawExpr) {
|
|
25667
25666
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
25668
25667
|
}
|
|
@@ -25685,7 +25684,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
25685
25684
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
25686
25685
|
}
|
|
25687
25686
|
|
|
25688
|
-
// bazel-out/
|
|
25687
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
25689
25688
|
var LocalModuleScopeRegistry = class {
|
|
25690
25689
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
25691
25690
|
this.localReader = localReader;
|
|
@@ -26024,7 +26023,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
26024
26023
|
]);
|
|
26025
26024
|
}
|
|
26026
26025
|
|
|
26027
|
-
// bazel-out/
|
|
26026
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
26028
26027
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
26029
26028
|
var TypeCheckScopeRegistry = class {
|
|
26030
26029
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -26092,7 +26091,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
26092
26091
|
}
|
|
26093
26092
|
};
|
|
26094
26093
|
|
|
26095
|
-
// bazel-out/
|
|
26094
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
26096
26095
|
var CompilationMode;
|
|
26097
26096
|
(function(CompilationMode2) {
|
|
26098
26097
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -26106,7 +26105,7 @@ var HandlerPrecedence;
|
|
|
26106
26105
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
26107
26106
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
26108
26107
|
|
|
26109
|
-
// bazel-out/
|
|
26108
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
26110
26109
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
26111
26110
|
function aliasTransformFactory(exportStatements) {
|
|
26112
26111
|
return () => {
|
|
@@ -26129,10 +26128,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
26129
26128
|
};
|
|
26130
26129
|
}
|
|
26131
26130
|
|
|
26132
|
-
// bazel-out/
|
|
26131
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
26133
26132
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
26134
26133
|
|
|
26135
|
-
// bazel-out/
|
|
26134
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
26136
26135
|
var TraitState;
|
|
26137
26136
|
(function(TraitState2) {
|
|
26138
26137
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -26189,7 +26188,7 @@ var TraitImpl = class {
|
|
|
26189
26188
|
}
|
|
26190
26189
|
};
|
|
26191
26190
|
|
|
26192
|
-
// bazel-out/
|
|
26191
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
26193
26192
|
var TraitCompiler = class {
|
|
26194
26193
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
26195
26194
|
this.handlers = handlers;
|
|
@@ -26624,10 +26623,10 @@ function containsErrors(diagnostics) {
|
|
|
26624
26623
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
26625
26624
|
}
|
|
26626
26625
|
|
|
26627
|
-
// bazel-out/
|
|
26626
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
26628
26627
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
26629
26628
|
|
|
26630
|
-
// bazel-out/
|
|
26629
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
26631
26630
|
var Context = class {
|
|
26632
26631
|
constructor(isStatement) {
|
|
26633
26632
|
this.isStatement = isStatement;
|
|
@@ -26640,7 +26639,7 @@ var Context = class {
|
|
|
26640
26639
|
}
|
|
26641
26640
|
};
|
|
26642
26641
|
|
|
26643
|
-
// bazel-out/
|
|
26642
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
26644
26643
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
26645
26644
|
var ImportManager = class {
|
|
26646
26645
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -26676,7 +26675,7 @@ var ImportManager = class {
|
|
|
26676
26675
|
}
|
|
26677
26676
|
};
|
|
26678
26677
|
|
|
26679
|
-
// bazel-out/
|
|
26678
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
26680
26679
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
26681
26680
|
[UnaryOperator.Minus, "-"],
|
|
26682
26681
|
[UnaryOperator.Plus, "+"]
|
|
@@ -26907,7 +26906,7 @@ function createRange(span) {
|
|
|
26907
26906
|
};
|
|
26908
26907
|
}
|
|
26909
26908
|
|
|
26910
|
-
// bazel-out/
|
|
26909
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
26911
26910
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
26912
26911
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
26913
26912
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
@@ -27123,7 +27122,7 @@ var TypeTranslatorVisitor = class {
|
|
|
27123
27122
|
}
|
|
27124
27123
|
};
|
|
27125
27124
|
|
|
27126
|
-
// bazel-out/
|
|
27125
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
27127
27126
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
27128
27127
|
var PureAnnotation;
|
|
27129
27128
|
(function(PureAnnotation2) {
|
|
@@ -27306,7 +27305,7 @@ function attachComments(statement, leadingComments) {
|
|
|
27306
27305
|
}
|
|
27307
27306
|
}
|
|
27308
27307
|
|
|
27309
|
-
// bazel-out/
|
|
27308
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
27310
27309
|
function translateExpression(expression, imports, options = {}) {
|
|
27311
27310
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
27312
27311
|
}
|
|
@@ -27314,7 +27313,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
27314
27313
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
27315
27314
|
}
|
|
27316
27315
|
|
|
27317
|
-
// bazel-out/
|
|
27316
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
27318
27317
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
27319
27318
|
function addImports(importManager, sf, extraStatements = []) {
|
|
27320
27319
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -27350,7 +27349,7 @@ function isImportStatement(stmt) {
|
|
|
27350
27349
|
return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
|
|
27351
27350
|
}
|
|
27352
27351
|
|
|
27353
|
-
// bazel-out/
|
|
27352
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
27354
27353
|
var DtsTransformRegistry = class {
|
|
27355
27354
|
constructor() {
|
|
27356
27355
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -27497,10 +27496,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
27497
27496
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
27498
27497
|
}
|
|
27499
27498
|
|
|
27500
|
-
// bazel-out/
|
|
27499
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
27501
27500
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
27502
27501
|
|
|
27503
|
-
// bazel-out/
|
|
27502
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
27504
27503
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
27505
27504
|
function visit(node, visitor, context) {
|
|
27506
27505
|
return visitor._visit(node, context);
|
|
@@ -27561,7 +27560,7 @@ var Visitor = class {
|
|
|
27561
27560
|
}
|
|
27562
27561
|
};
|
|
27563
27562
|
|
|
27564
|
-
// bazel-out/
|
|
27563
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
27565
27564
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
27566
27565
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
27567
27566
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -27772,7 +27771,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
27772
27771
|
return array;
|
|
27773
27772
|
}
|
|
27774
27773
|
|
|
27775
|
-
// bazel-out/
|
|
27774
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
27776
27775
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
27777
27776
|
var EMPTY_OBJECT = {};
|
|
27778
27777
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -28335,7 +28334,7 @@ function toR3InputMetadata(mapping) {
|
|
|
28335
28334
|
};
|
|
28336
28335
|
}
|
|
28337
28336
|
|
|
28338
|
-
// bazel-out/
|
|
28337
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
28339
28338
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
28340
28339
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
28341
28340
|
super(decl);
|
|
@@ -28415,7 +28414,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
28415
28414
|
return isSymbolEqual(current, previous);
|
|
28416
28415
|
}
|
|
28417
28416
|
|
|
28418
|
-
// bazel-out/
|
|
28417
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
28419
28418
|
var FIELD_DECORATORS = [
|
|
28420
28419
|
"Input",
|
|
28421
28420
|
"Output",
|
|
@@ -28579,10 +28578,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
28579
28578
|
}
|
|
28580
28579
|
};
|
|
28581
28580
|
|
|
28582
|
-
// bazel-out/
|
|
28581
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
28583
28582
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
28584
28583
|
|
|
28585
|
-
// bazel-out/
|
|
28584
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
28586
28585
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
28587
28586
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
28588
28587
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -28649,7 +28648,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
28649
28648
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
28650
28649
|
}
|
|
28651
28650
|
|
|
28652
|
-
// bazel-out/
|
|
28651
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
28653
28652
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
28654
28653
|
constructor(decl, hasProviders) {
|
|
28655
28654
|
super(decl);
|
|
@@ -29186,7 +29185,7 @@ function isSyntheticReference(ref) {
|
|
|
29186
29185
|
return ref.synthetic;
|
|
29187
29186
|
}
|
|
29188
29187
|
|
|
29189
|
-
// bazel-out/
|
|
29188
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
29190
29189
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
29191
29190
|
const name = ref.debugName || "(unknown)";
|
|
29192
29191
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -29209,7 +29208,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
29209
29208
|
return null;
|
|
29210
29209
|
}
|
|
29211
29210
|
|
|
29212
|
-
// bazel-out/
|
|
29211
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
29213
29212
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
29214
29213
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
29215
29214
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -29519,7 +29518,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
29519
29518
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
29520
29519
|
}
|
|
29521
29520
|
|
|
29522
|
-
// bazel-out/
|
|
29521
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
29523
29522
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
29524
29523
|
constructor() {
|
|
29525
29524
|
super(...arguments);
|
|
@@ -29554,7 +29553,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
29554
29553
|
}
|
|
29555
29554
|
};
|
|
29556
29555
|
|
|
29557
|
-
// bazel-out/
|
|
29556
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
29558
29557
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
29559
29558
|
if (value instanceof Map) {
|
|
29560
29559
|
const name = value.get("name");
|
|
@@ -29630,7 +29629,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
29630
29629
|
return false;
|
|
29631
29630
|
}
|
|
29632
29631
|
|
|
29633
|
-
// bazel-out/
|
|
29632
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
29634
29633
|
var EMPTY_ARRAY2 = [];
|
|
29635
29634
|
var ComponentDecoratorHandler = class {
|
|
29636
29635
|
constructor(reflector, evaluator, metaRegistry, metaReader, scopeReader, dtsScopeReader, scopeRegistry, typeCheckScopeRegistry, resourceRegistry, isCore, strictCtorDeps, resourceLoader, rootDirs, defaultPreserveWhitespaces, i18nUseExternalIds, enableI18nLegacyMessageIdFormat, usePoisonedData, i18nNormalizeLineEndingsInICUs, moduleResolver, cycleAnalyzer, cycleHandlingStrategy, refEmitter, referencesRegistry, depTracker, injectableRegistry, semanticDepGraphUpdater, annotateForClosureCompiler, perf, hostDirectivesResolver, includeClassMetadata) {
|
|
@@ -30282,7 +30281,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
30282
30281
|
return diagnostics;
|
|
30283
30282
|
}
|
|
30284
30283
|
|
|
30285
|
-
// bazel-out/
|
|
30284
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
30286
30285
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
30287
30286
|
var InjectableDecoratorHandler = class {
|
|
30288
30287
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, errorOnDuplicateProv = true) {
|
|
@@ -30497,7 +30496,7 @@ function getDep(dep, reflector) {
|
|
|
30497
30496
|
return meta;
|
|
30498
30497
|
}
|
|
30499
30498
|
|
|
30500
|
-
// bazel-out/
|
|
30499
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
30501
30500
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
30502
30501
|
var PipeSymbol = class extends SemanticSymbol {
|
|
30503
30502
|
constructor(decl, name) {
|
|
@@ -30641,7 +30640,7 @@ var PipeDecoratorHandler = class {
|
|
|
30641
30640
|
}
|
|
30642
30641
|
};
|
|
30643
30642
|
|
|
30644
|
-
// bazel-out/
|
|
30643
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
30645
30644
|
var CycleAnalyzer = class {
|
|
30646
30645
|
constructor(importGraph) {
|
|
30647
30646
|
this.importGraph = importGraph;
|
|
@@ -30712,7 +30711,7 @@ var Cycle = class {
|
|
|
30712
30711
|
}
|
|
30713
30712
|
};
|
|
30714
30713
|
|
|
30715
|
-
// bazel-out/
|
|
30714
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
30716
30715
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
30717
30716
|
var ImportGraph = class {
|
|
30718
30717
|
constructor(checker, perf) {
|
|
@@ -30804,7 +30803,7 @@ var Found = class {
|
|
|
30804
30803
|
}
|
|
30805
30804
|
};
|
|
30806
30805
|
|
|
30807
|
-
// bazel-out/
|
|
30806
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
30808
30807
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
30809
30808
|
var FlatIndexGenerator = class {
|
|
30810
30809
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -30829,7 +30828,7 @@ export * from '${relativeEntryPoint}';
|
|
|
30829
30828
|
}
|
|
30830
30829
|
};
|
|
30831
30830
|
|
|
30832
|
-
// bazel-out/
|
|
30831
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
30833
30832
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
30834
30833
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
30835
30834
|
let resolvedEntryPoint = null;
|
|
@@ -30845,7 +30844,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
30845
30844
|
return resolvedEntryPoint;
|
|
30846
30845
|
}
|
|
30847
30846
|
|
|
30848
|
-
// bazel-out/
|
|
30847
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
30849
30848
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
30850
30849
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
30851
30850
|
const diagnostics = [];
|
|
@@ -30925,7 +30924,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
30925
30924
|
}
|
|
30926
30925
|
}
|
|
30927
30926
|
|
|
30928
|
-
// bazel-out/
|
|
30927
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
30929
30928
|
var ReferenceGraph = class {
|
|
30930
30929
|
constructor() {
|
|
30931
30930
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -30979,7 +30978,7 @@ var ReferenceGraph = class {
|
|
|
30979
30978
|
}
|
|
30980
30979
|
};
|
|
30981
30980
|
|
|
30982
|
-
// bazel-out/
|
|
30981
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
30983
30982
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
30984
30983
|
var UpdateMode;
|
|
30985
30984
|
(function(UpdateMode2) {
|
|
@@ -30987,13 +30986,13 @@ var UpdateMode;
|
|
|
30987
30986
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
30988
30987
|
})(UpdateMode || (UpdateMode = {}));
|
|
30989
30988
|
|
|
30990
|
-
// bazel-out/
|
|
30989
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
30991
30990
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
30992
30991
|
|
|
30993
|
-
// bazel-out/
|
|
30992
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
30994
30993
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
30995
30994
|
|
|
30996
|
-
// bazel-out/
|
|
30995
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
30997
30996
|
var NgExtension = Symbol("NgExtension");
|
|
30998
30997
|
function isExtended(sf) {
|
|
30999
30998
|
return sf[NgExtension] !== void 0;
|
|
@@ -31053,13 +31052,13 @@ function retagTsFile(sf) {
|
|
|
31053
31052
|
}
|
|
31054
31053
|
}
|
|
31055
31054
|
|
|
31056
|
-
// bazel-out/
|
|
31055
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
31057
31056
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
31058
31057
|
function makeShimFileName(fileName, suffix) {
|
|
31059
31058
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
31060
31059
|
}
|
|
31061
31060
|
|
|
31062
|
-
// bazel-out/
|
|
31061
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
31063
31062
|
var ShimAdapter = class {
|
|
31064
31063
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
31065
31064
|
this.delegate = delegate;
|
|
@@ -31154,7 +31153,7 @@ var ShimAdapter = class {
|
|
|
31154
31153
|
}
|
|
31155
31154
|
};
|
|
31156
31155
|
|
|
31157
|
-
// bazel-out/
|
|
31156
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
31158
31157
|
var ShimReferenceTagger = class {
|
|
31159
31158
|
constructor(shimExtensions) {
|
|
31160
31159
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -31188,7 +31187,7 @@ var ShimReferenceTagger = class {
|
|
|
31188
31187
|
}
|
|
31189
31188
|
};
|
|
31190
31189
|
|
|
31191
|
-
// bazel-out/
|
|
31190
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
31192
31191
|
var DelegatingCompilerHost = class {
|
|
31193
31192
|
constructor(delegate) {
|
|
31194
31193
|
this.delegate = delegate;
|
|
@@ -31301,7 +31300,7 @@ var TsCreateProgramDriver = class {
|
|
|
31301
31300
|
}
|
|
31302
31301
|
};
|
|
31303
31302
|
|
|
31304
|
-
// bazel-out/
|
|
31303
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
31305
31304
|
var FileDependencyGraph = class {
|
|
31306
31305
|
constructor() {
|
|
31307
31306
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -31368,7 +31367,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
31368
31367
|
return false;
|
|
31369
31368
|
}
|
|
31370
31369
|
|
|
31371
|
-
// bazel-out/
|
|
31370
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
31372
31371
|
var IncrementalStateKind;
|
|
31373
31372
|
(function(IncrementalStateKind2) {
|
|
31374
31373
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -31376,7 +31375,7 @@ var IncrementalStateKind;
|
|
|
31376
31375
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
31377
31376
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
31378
31377
|
|
|
31379
|
-
// bazel-out/
|
|
31378
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
31380
31379
|
var PhaseKind;
|
|
31381
31380
|
(function(PhaseKind2) {
|
|
31382
31381
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -31577,7 +31576,7 @@ function toOriginalSourceFile(sf) {
|
|
|
31577
31576
|
}
|
|
31578
31577
|
}
|
|
31579
31578
|
|
|
31580
|
-
// bazel-out/
|
|
31579
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
31581
31580
|
var TrackedIncrementalBuildStrategy = class {
|
|
31582
31581
|
constructor() {
|
|
31583
31582
|
this.state = null;
|
|
@@ -31598,7 +31597,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
31598
31597
|
};
|
|
31599
31598
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
31600
31599
|
|
|
31601
|
-
// bazel-out/
|
|
31600
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
31602
31601
|
var IdentifierKind;
|
|
31603
31602
|
(function(IdentifierKind2) {
|
|
31604
31603
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -31616,7 +31615,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
31616
31615
|
}
|
|
31617
31616
|
};
|
|
31618
31617
|
|
|
31619
|
-
// bazel-out/
|
|
31618
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
31620
31619
|
var IndexingContext = class {
|
|
31621
31620
|
constructor() {
|
|
31622
31621
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -31626,7 +31625,7 @@ var IndexingContext = class {
|
|
|
31626
31625
|
}
|
|
31627
31626
|
};
|
|
31628
31627
|
|
|
31629
|
-
// bazel-out/
|
|
31628
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
31630
31629
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
31631
31630
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
31632
31631
|
super();
|
|
@@ -31862,7 +31861,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
31862
31861
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
31863
31862
|
}
|
|
31864
31863
|
|
|
31865
|
-
// bazel-out/
|
|
31864
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
31866
31865
|
function generateAnalysis(context) {
|
|
31867
31866
|
const analysis = /* @__PURE__ */ new Map();
|
|
31868
31867
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -31898,7 +31897,7 @@ function generateAnalysis(context) {
|
|
|
31898
31897
|
return analysis;
|
|
31899
31898
|
}
|
|
31900
31899
|
|
|
31901
|
-
// bazel-out/
|
|
31900
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
31902
31901
|
var NgModuleIndexImpl = class {
|
|
31903
31902
|
constructor(metaReader, localReader) {
|
|
31904
31903
|
this.metaReader = metaReader;
|
|
@@ -31987,7 +31986,7 @@ var NgModuleIndexImpl = class {
|
|
|
31987
31986
|
}
|
|
31988
31987
|
};
|
|
31989
31988
|
|
|
31990
|
-
// bazel-out/
|
|
31989
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
31991
31990
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
31992
31991
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
31993
31992
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -32135,7 +32134,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
32135
32134
|
};
|
|
32136
32135
|
}
|
|
32137
32136
|
|
|
32138
|
-
// bazel-out/
|
|
32137
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
32139
32138
|
var StandaloneComponentScopeReader = class {
|
|
32140
32139
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
32141
32140
|
this.metaReader = metaReader;
|
|
@@ -32213,21 +32212,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
32213
32212
|
}
|
|
32214
32213
|
};
|
|
32215
32214
|
|
|
32216
|
-
// bazel-out/
|
|
32215
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
32217
32216
|
var OptimizeFor;
|
|
32218
32217
|
(function(OptimizeFor2) {
|
|
32219
32218
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
32220
32219
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
32221
32220
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
32222
32221
|
|
|
32223
|
-
// bazel-out/
|
|
32222
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
32224
32223
|
var CompletionKind;
|
|
32225
32224
|
(function(CompletionKind2) {
|
|
32226
32225
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
32227
32226
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
32228
32227
|
})(CompletionKind || (CompletionKind = {}));
|
|
32229
32228
|
|
|
32230
|
-
// bazel-out/
|
|
32229
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
32231
32230
|
var PotentialImportKind;
|
|
32232
32231
|
(function(PotentialImportKind2) {
|
|
32233
32232
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -32239,7 +32238,7 @@ var PotentialImportMode;
|
|
|
32239
32238
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
32240
32239
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
32241
32240
|
|
|
32242
|
-
// bazel-out/
|
|
32241
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
32243
32242
|
var SymbolKind;
|
|
32244
32243
|
(function(SymbolKind2) {
|
|
32245
32244
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -32255,7 +32254,7 @@ var SymbolKind;
|
|
|
32255
32254
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
32256
32255
|
})(SymbolKind || (SymbolKind = {}));
|
|
32257
32256
|
|
|
32258
|
-
// bazel-out/
|
|
32257
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
32259
32258
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
32260
32259
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
32261
32260
|
var _a2;
|
|
@@ -32362,7 +32361,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
32362
32361
|
return import_typescript66.default.createSourceFile(fileName, template2, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
|
|
32363
32362
|
}
|
|
32364
32363
|
|
|
32365
|
-
// bazel-out/
|
|
32364
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
32366
32365
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
32367
32366
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
32368
32367
|
function getTemplateId(clazz) {
|
|
@@ -32379,10 +32378,10 @@ function allocateTemplateId(sf) {
|
|
|
32379
32378
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
32380
32379
|
}
|
|
32381
32380
|
|
|
32382
|
-
// bazel-out/
|
|
32381
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
32383
32382
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
32384
32383
|
|
|
32385
|
-
// bazel-out/
|
|
32384
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
32386
32385
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
32387
32386
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
32388
32387
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -32511,7 +32510,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
32511
32510
|
}) || false;
|
|
32512
32511
|
}
|
|
32513
32512
|
|
|
32514
|
-
// bazel-out/
|
|
32513
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
32515
32514
|
var CompletionEngine = class {
|
|
32516
32515
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
32517
32516
|
this.tcb = tcb;
|
|
@@ -32668,10 +32667,10 @@ var CompletionEngine = class {
|
|
|
32668
32667
|
}
|
|
32669
32668
|
};
|
|
32670
32669
|
|
|
32671
|
-
// bazel-out/
|
|
32670
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
32672
32671
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
32673
32672
|
|
|
32674
|
-
// bazel-out/
|
|
32673
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
32675
32674
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
32676
32675
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
32677
32676
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -32723,10 +32722,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
32723
32722
|
}
|
|
32724
32723
|
};
|
|
32725
32724
|
|
|
32726
|
-
// bazel-out/
|
|
32725
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
32727
32726
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
32728
32727
|
|
|
32729
|
-
// bazel-out/
|
|
32728
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
32730
32729
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
32731
32730
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
32732
32731
|
import_typescript70.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -32800,16 +32799,16 @@ function isAccessExpression(node) {
|
|
|
32800
32799
|
return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
|
|
32801
32800
|
}
|
|
32802
32801
|
|
|
32803
|
-
// bazel-out/
|
|
32802
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
32804
32803
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
32805
32804
|
|
|
32806
|
-
// bazel-out/
|
|
32805
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
32807
32806
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
32808
32807
|
|
|
32809
|
-
// bazel-out/
|
|
32808
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
32810
32809
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
32811
32810
|
|
|
32812
|
-
// bazel-out/
|
|
32811
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
32813
32812
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
32814
32813
|
var INELIGIBLE = {};
|
|
32815
32814
|
function canEmitType(type, canEmit) {
|
|
@@ -32884,7 +32883,7 @@ var TypeEmitter = class {
|
|
|
32884
32883
|
}
|
|
32885
32884
|
};
|
|
32886
32885
|
|
|
32887
|
-
// bazel-out/
|
|
32886
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
32888
32887
|
var TypeParameterEmitter = class {
|
|
32889
32888
|
constructor(typeParameters, reflector) {
|
|
32890
32889
|
this.typeParameters = typeParameters;
|
|
@@ -32961,7 +32960,7 @@ var TypeParameterEmitter = class {
|
|
|
32961
32960
|
}
|
|
32962
32961
|
};
|
|
32963
32962
|
|
|
32964
|
-
// bazel-out/
|
|
32963
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
32965
32964
|
var TcbInliningRequirement;
|
|
32966
32965
|
(function(TcbInliningRequirement2) {
|
|
32967
32966
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -33041,7 +33040,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
33041
33040
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
33042
33041
|
}
|
|
33043
33042
|
|
|
33044
|
-
// bazel-out/
|
|
33043
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
33045
33044
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
33046
33045
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
33047
33046
|
const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -33152,7 +33151,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
33152
33151
|
});
|
|
33153
33152
|
}
|
|
33154
33153
|
|
|
33155
|
-
// bazel-out/
|
|
33154
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
33156
33155
|
var Environment = class {
|
|
33157
33156
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
33158
33157
|
this.config = config;
|
|
@@ -33246,7 +33245,7 @@ var Environment = class {
|
|
|
33246
33245
|
}
|
|
33247
33246
|
};
|
|
33248
33247
|
|
|
33249
|
-
// bazel-out/
|
|
33248
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
33250
33249
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
33251
33250
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
33252
33251
|
constructor(resolver) {
|
|
@@ -33381,7 +33380,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
33381
33380
|
});
|
|
33382
33381
|
}
|
|
33383
33382
|
|
|
33384
|
-
// bazel-out/
|
|
33383
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
33385
33384
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
33386
33385
|
var TypeCheckShimGenerator = class {
|
|
33387
33386
|
constructor() {
|
|
@@ -33399,10 +33398,10 @@ var TypeCheckShimGenerator = class {
|
|
|
33399
33398
|
}
|
|
33400
33399
|
};
|
|
33401
33400
|
|
|
33402
|
-
// bazel-out/
|
|
33401
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
33403
33402
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
33404
33403
|
|
|
33405
|
-
// bazel-out/
|
|
33404
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
33406
33405
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
33407
33406
|
function wrapForDiagnostics(expr) {
|
|
33408
33407
|
return import_typescript79.default.factory.createParenthesizedExpression(expr);
|
|
@@ -33447,7 +33446,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
33447
33446
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
33448
33447
|
}
|
|
33449
33448
|
|
|
33450
|
-
// bazel-out/
|
|
33449
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
33451
33450
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
33452
33451
|
var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
|
|
33453
33452
|
var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
|
|
@@ -33779,7 +33778,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
33779
33778
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
33780
33779
|
})();
|
|
33781
33780
|
|
|
33782
|
-
// bazel-out/
|
|
33781
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
33783
33782
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
33784
33783
|
constructor(templateId, boundTarget, oob) {
|
|
33785
33784
|
super();
|
|
@@ -33802,7 +33801,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
|
33802
33801
|
}
|
|
33803
33802
|
};
|
|
33804
33803
|
|
|
33805
|
-
// bazel-out/
|
|
33804
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
33806
33805
|
var TcbGenericContextBehavior;
|
|
33807
33806
|
(function(TcbGenericContextBehavior2) {
|
|
33808
33807
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -34929,7 +34928,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
34929
34928
|
}
|
|
34930
34929
|
};
|
|
34931
34930
|
|
|
34932
|
-
// bazel-out/
|
|
34931
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
34933
34932
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
34934
34933
|
var TypeCheckFile = class extends Environment {
|
|
34935
34934
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -34965,7 +34964,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
34965
34964
|
}
|
|
34966
34965
|
};
|
|
34967
34966
|
|
|
34968
|
-
// bazel-out/
|
|
34967
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
34969
34968
|
var InliningMode;
|
|
34970
34969
|
(function(InliningMode2) {
|
|
34971
34970
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -35202,7 +35201,7 @@ function splitStringAtPoints(str, points) {
|
|
|
35202
35201
|
return splits;
|
|
35203
35202
|
}
|
|
35204
35203
|
|
|
35205
|
-
// bazel-out/
|
|
35204
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
35206
35205
|
var LF_CHAR = 10;
|
|
35207
35206
|
var CR_CHAR = 13;
|
|
35208
35207
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -35243,7 +35242,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
35243
35242
|
return low - 1;
|
|
35244
35243
|
}
|
|
35245
35244
|
|
|
35246
|
-
// bazel-out/
|
|
35245
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
35247
35246
|
var TemplateSource = class {
|
|
35248
35247
|
constructor(mapping, file) {
|
|
35249
35248
|
this.mapping = mapping;
|
|
@@ -35294,7 +35293,7 @@ var TemplateSourceManager = class {
|
|
|
35294
35293
|
}
|
|
35295
35294
|
};
|
|
35296
35295
|
|
|
35297
|
-
// bazel-out/
|
|
35296
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
35298
35297
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
35299
35298
|
var SymbolBuilder = class {
|
|
35300
35299
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -35771,7 +35770,7 @@ function sourceSpanEqual(a, b) {
|
|
|
35771
35770
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
35772
35771
|
}
|
|
35773
35772
|
|
|
35774
|
-
// bazel-out/
|
|
35773
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
35775
35774
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
35776
35775
|
var TemplateTypeCheckerImpl = class {
|
|
35777
35776
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -36467,7 +36466,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
36467
36466
|
}
|
|
36468
36467
|
};
|
|
36469
36468
|
|
|
36470
|
-
// bazel-out/
|
|
36469
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
36471
36470
|
var TemplateCheckWithVisitor = class {
|
|
36472
36471
|
run(ctx, component, template2) {
|
|
36473
36472
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -36543,7 +36542,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
36543
36542
|
}
|
|
36544
36543
|
};
|
|
36545
36544
|
|
|
36546
|
-
// bazel-out/
|
|
36545
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
36547
36546
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
36548
36547
|
constructor() {
|
|
36549
36548
|
super(...arguments);
|
|
@@ -36568,7 +36567,7 @@ var factory = {
|
|
|
36568
36567
|
create: () => new InvalidBananaInBoxCheck()
|
|
36569
36568
|
};
|
|
36570
36569
|
|
|
36571
|
-
// bazel-out/
|
|
36570
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
36572
36571
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
36573
36572
|
["ngIf", "NgIf"],
|
|
36574
36573
|
["ngFor", "NgFor"],
|
|
@@ -36612,7 +36611,7 @@ var factory2 = {
|
|
|
36612
36611
|
}
|
|
36613
36612
|
};
|
|
36614
36613
|
|
|
36615
|
-
// bazel-out/
|
|
36614
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
36616
36615
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
36617
36616
|
constructor() {
|
|
36618
36617
|
super(...arguments);
|
|
@@ -36644,7 +36643,7 @@ var factory3 = {
|
|
|
36644
36643
|
create: () => new MissingNgForOfLetCheck()
|
|
36645
36644
|
};
|
|
36646
36645
|
|
|
36647
|
-
// bazel-out/
|
|
36646
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
36648
36647
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
36649
36648
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
36650
36649
|
constructor() {
|
|
@@ -36688,7 +36687,7 @@ var factory4 = {
|
|
|
36688
36687
|
}
|
|
36689
36688
|
};
|
|
36690
36689
|
|
|
36691
|
-
// bazel-out/
|
|
36690
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
36692
36691
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
36693
36692
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
36694
36693
|
constructor() {
|
|
@@ -36733,7 +36732,7 @@ var factory5 = {
|
|
|
36733
36732
|
}
|
|
36734
36733
|
};
|
|
36735
36734
|
|
|
36736
|
-
// bazel-out/
|
|
36735
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
36737
36736
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
36738
36737
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
36739
36738
|
constructor() {
|
|
@@ -36756,7 +36755,7 @@ var factory6 = {
|
|
|
36756
36755
|
create: () => new SuffixNotSupportedCheck()
|
|
36757
36756
|
};
|
|
36758
36757
|
|
|
36759
|
-
// bazel-out/
|
|
36758
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
36760
36759
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
36761
36760
|
constructor() {
|
|
36762
36761
|
super(...arguments);
|
|
@@ -36794,10 +36793,10 @@ var factory7 = {
|
|
|
36794
36793
|
create: () => new TextAttributeNotBindingSpec()
|
|
36795
36794
|
};
|
|
36796
36795
|
|
|
36797
|
-
// bazel-out/
|
|
36796
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
36798
36797
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
36799
36798
|
|
|
36800
|
-
// bazel-out/
|
|
36799
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
36801
36800
|
var DiagnosticCategoryLabel;
|
|
36802
36801
|
(function(DiagnosticCategoryLabel2) {
|
|
36803
36802
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -36805,7 +36804,7 @@ var DiagnosticCategoryLabel;
|
|
|
36805
36804
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
36806
36805
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
36807
36806
|
|
|
36808
|
-
// bazel-out/
|
|
36807
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
36809
36808
|
var ExtendedTemplateCheckerImpl = class {
|
|
36810
36809
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
36811
36810
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -36857,7 +36856,7 @@ function assertNever(value) {
|
|
|
36857
36856
|
${value}`);
|
|
36858
36857
|
}
|
|
36859
36858
|
|
|
36860
|
-
// bazel-out/
|
|
36859
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
36861
36860
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
36862
36861
|
factory,
|
|
36863
36862
|
factory4,
|
|
@@ -36868,7 +36867,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
36868
36867
|
factory6
|
|
36869
36868
|
];
|
|
36870
36869
|
|
|
36871
|
-
// bazel-out/
|
|
36870
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
36872
36871
|
var CompilationTicketKind;
|
|
36873
36872
|
(function(CompilationTicketKind2) {
|
|
36874
36873
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -37591,7 +37590,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
37591
37590
|
return versions;
|
|
37592
37591
|
}
|
|
37593
37592
|
|
|
37594
|
-
// bazel-out/
|
|
37593
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
37595
37594
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
37596
37595
|
var DelegatingCompilerHost2 = class {
|
|
37597
37596
|
constructor(delegate) {
|
|
@@ -37724,7 +37723,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
37724
37723
|
}
|
|
37725
37724
|
};
|
|
37726
37725
|
|
|
37727
|
-
// bazel-out/
|
|
37726
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
37728
37727
|
var NgtscProgram = class {
|
|
37729
37728
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
37730
37729
|
this.options = options;
|
|
@@ -37942,21 +37941,21 @@ function mergeEmitResults(emitResults) {
|
|
|
37942
37941
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
37943
37942
|
}
|
|
37944
37943
|
|
|
37945
|
-
// bazel-out/
|
|
37944
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
37946
37945
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
37947
37946
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
37948
37947
|
}
|
|
37949
37948
|
|
|
37950
|
-
// bazel-out/
|
|
37949
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
37951
37950
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
37952
37951
|
|
|
37953
|
-
// bazel-out/
|
|
37952
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
37954
37953
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
37955
37954
|
|
|
37956
|
-
// bazel-out/
|
|
37955
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
37957
37956
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
37958
37957
|
|
|
37959
|
-
// bazel-out/
|
|
37958
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
37960
37959
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
37961
37960
|
ngDevMode: false,
|
|
37962
37961
|
ngI18nClosureMode: false
|
|
@@ -37965,7 +37964,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
37965
37964
|
ngJitMode: false
|
|
37966
37965
|
});
|
|
37967
37966
|
|
|
37968
|
-
// bazel-out/
|
|
37967
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
37969
37968
|
var LogLevel;
|
|
37970
37969
|
(function(LogLevel2) {
|
|
37971
37970
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -37974,7 +37973,7 @@ var LogLevel;
|
|
|
37974
37973
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
37975
37974
|
})(LogLevel || (LogLevel = {}));
|
|
37976
37975
|
|
|
37977
|
-
// bazel-out/
|
|
37976
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
37978
37977
|
var RESET = "\x1B[0m";
|
|
37979
37978
|
var RED = "\x1B[31m";
|
|
37980
37979
|
var YELLOW = "\x1B[33m";
|
|
@@ -37983,18 +37982,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
37983
37982
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
37984
37983
|
var ERROR = `${RED}Error:${RESET}`;
|
|
37985
37984
|
|
|
37986
|
-
// bazel-out/
|
|
37985
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
37987
37986
|
setFileSystem(new NodeJSFileSystem());
|
|
37988
37987
|
|
|
37989
|
-
// bazel-out/
|
|
37988
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
37990
37989
|
var import_fs2 = require("fs");
|
|
37991
37990
|
var import_path8 = require("path");
|
|
37992
37991
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
37993
37992
|
|
|
37994
|
-
// bazel-out/
|
|
37993
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
37995
37994
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
37996
37995
|
|
|
37997
|
-
// bazel-out/
|
|
37996
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
37998
37997
|
var import_path4 = require("path");
|
|
37999
37998
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
38000
37999
|
var ImportManager2 = class {
|
|
@@ -38178,7 +38177,7 @@ ${text2}`;
|
|
|
38178
38177
|
}
|
|
38179
38178
|
};
|
|
38180
38179
|
|
|
38181
|
-
// bazel-out/
|
|
38180
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
38182
38181
|
var ChangeTracker = class {
|
|
38183
38182
|
constructor(_printer, _importRemapper) {
|
|
38184
38183
|
__publicField(this, "_printer");
|
|
@@ -38234,7 +38233,7 @@ function normalizePath(path3) {
|
|
|
38234
38233
|
return path3.replace(/\\/g, "/");
|
|
38235
38234
|
}
|
|
38236
38235
|
|
|
38237
|
-
// bazel-out/
|
|
38236
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
38238
38237
|
var import_core13 = require("@angular-devkit/core");
|
|
38239
38238
|
function getProjectTsConfigPaths(tree) {
|
|
38240
38239
|
return __async(this, null, function* () {
|
|
@@ -38314,11 +38313,11 @@ function getWorkspace(tree) {
|
|
|
38314
38313
|
});
|
|
38315
38314
|
}
|
|
38316
38315
|
|
|
38317
|
-
// bazel-out/
|
|
38316
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
38318
38317
|
var import_path5 = require("path");
|
|
38319
38318
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
38320
38319
|
|
|
38321
|
-
// bazel-out/
|
|
38320
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
38322
38321
|
var path2 = __toESM(require("path"), 1);
|
|
38323
38322
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
38324
38323
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -38335,7 +38334,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
38335
38334
|
return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
38336
38335
|
}
|
|
38337
38336
|
|
|
38338
|
-
// bazel-out/
|
|
38337
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
38339
38338
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
38340
38339
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
38341
38340
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -38364,13 +38363,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
38364
38363
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
38365
38364
|
}
|
|
38366
38365
|
|
|
38367
|
-
// bazel-out/
|
|
38366
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
38368
38367
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
38369
38368
|
|
|
38370
|
-
// bazel-out/
|
|
38369
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
38371
38370
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
38372
38371
|
|
|
38373
|
-
// bazel-out/
|
|
38372
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
38374
38373
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
38375
38374
|
function getImportOfIdentifier(typeChecker, node) {
|
|
38376
38375
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -38421,7 +38420,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
38421
38420
|
});
|
|
38422
38421
|
}
|
|
38423
38422
|
|
|
38424
|
-
// bazel-out/
|
|
38423
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
38425
38424
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
38426
38425
|
if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
|
|
38427
38426
|
return null;
|
|
@@ -38430,7 +38429,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
38430
38429
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
38431
38430
|
}
|
|
38432
38431
|
|
|
38433
|
-
// bazel-out/
|
|
38432
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
38434
38433
|
function getAngularDecorators(typeChecker, decorators) {
|
|
38435
38434
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
38436
38435
|
node,
|
|
@@ -38440,7 +38439,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
38440
38439
|
}));
|
|
38441
38440
|
}
|
|
38442
38441
|
|
|
38443
|
-
// bazel-out/
|
|
38442
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
38444
38443
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
38445
38444
|
function closestNode(node, predicate) {
|
|
38446
38445
|
let current = node.parent;
|
|
@@ -38453,7 +38452,7 @@ function closestNode(node, predicate) {
|
|
|
38453
38452
|
return null;
|
|
38454
38453
|
}
|
|
38455
38454
|
|
|
38456
|
-
// bazel-out/
|
|
38455
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
38457
38456
|
var import_path6 = require("path");
|
|
38458
38457
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
38459
38458
|
var UniqueItemTracker = class {
|
|
@@ -38629,7 +38628,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
38629
38628
|
}));
|
|
38630
38629
|
}
|
|
38631
38630
|
|
|
38632
|
-
// bazel-out/
|
|
38631
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
38633
38632
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
38634
38633
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
38635
38634
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -38828,14 +38827,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
38828
38827
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
38829
38828
|
}
|
|
38830
38829
|
|
|
38831
|
-
// bazel-out/
|
|
38830
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
38832
38831
|
var import_path7 = require("path");
|
|
38833
38832
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
38834
38833
|
|
|
38835
|
-
// bazel-out/
|
|
38834
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
38836
38835
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
38837
38836
|
|
|
38838
|
-
// bazel-out/
|
|
38837
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
38839
38838
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
38840
38839
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
38841
38840
|
var _a2, _b2;
|
|
@@ -38844,7 +38843,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
38844
38843
|
return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b2 = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b2[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
|
|
38845
38844
|
}
|
|
38846
38845
|
|
|
38847
|
-
// bazel-out/
|
|
38846
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
38848
38847
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
38849
38848
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
38850
38849
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -39207,7 +39206,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
39207
39206
|
return metadata != null && metadata.isStandalone;
|
|
39208
39207
|
}
|
|
39209
39208
|
|
|
39210
|
-
// bazel-out/
|
|
39209
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
39211
39210
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
39212
39211
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
39213
39212
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -39584,7 +39583,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
39584
39583
|
return false;
|
|
39585
39584
|
}
|
|
39586
39585
|
|
|
39587
|
-
// bazel-out/
|
|
39586
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
39588
39587
|
var MigrationMode;
|
|
39589
39588
|
(function(MigrationMode2) {
|
|
39590
39589
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|