@angular/core 16.1.4 → 16.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/rxjs-interop/src/take_until_destroyed.mjs +3 -3
- package/esm2022/rxjs-interop/src/to_observable.mjs +1 -1
- package/esm2022/rxjs-interop/src/to_signal.mjs +1 -1
- package/esm2022/src/di/contextual.mjs +10 -7
- package/esm2022/src/di/injection_token.mjs +2 -2
- package/esm2022/src/di/injector_compatibility.mjs +4 -3
- package/esm2022/src/di/interface/defs.mjs +3 -2
- package/esm2022/src/di/interface/injector.mjs +2 -2
- package/esm2022/src/di/provider_collection.mjs +2 -2
- package/esm2022/src/di/r3_injector.mjs +1 -1
- package/esm2022/src/errors.mjs +1 -1
- package/esm2022/src/linker/template_ref.mjs +1 -1
- package/esm2022/src/render3/assert.mjs +8 -3
- package/esm2022/src/render3/features/standalone_feature.mjs +4 -4
- package/esm2022/src/render3/pipe.mjs +26 -2
- package/esm2022/src/render3/reactivity/effect.mjs +1 -1
- package/esm2022/src/signals/src/graph.mjs +7 -3
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/src/zone/ng_zone.mjs +10 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +68 -21
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +9 -5
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +59 -21
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +33 -18
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +15 -12
- 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 +355 -355
- 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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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,7 +8857,7 @@ function varsUsedByIrExpression(expr) {
|
|
|
8857
8857
|
}
|
|
8858
8858
|
}
|
|
8859
8859
|
|
|
8860
|
-
// bazel-out/
|
|
8860
|
+
// bazel-out/darwin-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
|
}
|
|
@@ -8915,7 +8915,7 @@ function getVariableName(variable2, state) {
|
|
|
8915
8915
|
return variable2.name;
|
|
8916
8916
|
}
|
|
8917
8917
|
|
|
8918
|
-
// bazel-out/
|
|
8918
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
8919
8919
|
function phaseLocalRefs(cpl) {
|
|
8920
8920
|
for (const view of cpl.views.values()) {
|
|
8921
8921
|
for (const op of view.create) {
|
|
@@ -8946,7 +8946,7 @@ function serializeLocalRefs(refs) {
|
|
|
8946
8946
|
return literalArr(constRefs);
|
|
8947
8947
|
}
|
|
8948
8948
|
|
|
8949
|
-
// bazel-out/
|
|
8949
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
8950
8950
|
function phaseGenerateVariables(cpl) {
|
|
8951
8951
|
recursivelyProcessView(cpl.root, null);
|
|
8952
8952
|
}
|
|
@@ -9028,7 +9028,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
9028
9028
|
return newOps;
|
|
9029
9029
|
}
|
|
9030
9030
|
|
|
9031
|
-
// bazel-out/
|
|
9031
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
9032
9032
|
function phaseResolveNames(cpl) {
|
|
9033
9033
|
for (const [_, view] of cpl.views) {
|
|
9034
9034
|
processLexicalScope(view, view.create, null);
|
|
@@ -9081,7 +9081,7 @@ function processLexicalScope(view, ops, savedView) {
|
|
|
9081
9081
|
}
|
|
9082
9082
|
}
|
|
9083
9083
|
|
|
9084
|
-
// bazel-out/
|
|
9084
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
9085
9085
|
function phaseResolveContexts(cpl) {
|
|
9086
9086
|
for (const view of cpl.views.values()) {
|
|
9087
9087
|
processLexicalScope2(view, view.create);
|
|
@@ -9119,7 +9119,7 @@ function processLexicalScope2(view, ops) {
|
|
|
9119
9119
|
}
|
|
9120
9120
|
}
|
|
9121
9121
|
|
|
9122
|
-
// bazel-out/
|
|
9122
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
9123
9123
|
function phaseVariableOptimization(cpl, options) {
|
|
9124
9124
|
for (const [_, view] of cpl.views) {
|
|
9125
9125
|
optimizeVariablesInOpList(view.create, options);
|
|
@@ -9329,7 +9329,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
9329
9329
|
}
|
|
9330
9330
|
}
|
|
9331
9331
|
|
|
9332
|
-
// bazel-out/
|
|
9332
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9333
9333
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9334
9334
|
Identifiers.elementStart,
|
|
9335
9335
|
Identifiers.elementEnd,
|
|
@@ -9375,7 +9375,7 @@ function chainOperationsInList(opList) {
|
|
|
9375
9375
|
}
|
|
9376
9376
|
}
|
|
9377
9377
|
|
|
9378
|
-
// bazel-out/
|
|
9378
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
9379
9379
|
function phaseMergeNextContext(cpl) {
|
|
9380
9380
|
for (const view of cpl.views.values()) {
|
|
9381
9381
|
for (const op of view.create) {
|
|
@@ -9420,7 +9420,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
9420
9420
|
}
|
|
9421
9421
|
}
|
|
9422
9422
|
|
|
9423
|
-
// bazel-out/
|
|
9423
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
9424
9424
|
var CONTAINER_TAG = "ng-container";
|
|
9425
9425
|
function phaseNgContainer(cpl) {
|
|
9426
9426
|
for (const [_, view] of cpl.views) {
|
|
@@ -9437,7 +9437,7 @@ function phaseNgContainer(cpl) {
|
|
|
9437
9437
|
}
|
|
9438
9438
|
}
|
|
9439
9439
|
|
|
9440
|
-
// bazel-out/
|
|
9440
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
9441
9441
|
function phaseSaveRestoreView(cpl) {
|
|
9442
9442
|
for (const view of cpl.views.values()) {
|
|
9443
9443
|
if (view === cpl.root) {
|
|
@@ -9470,7 +9470,7 @@ function phaseSaveRestoreView(cpl) {
|
|
|
9470
9470
|
}
|
|
9471
9471
|
}
|
|
9472
9472
|
|
|
9473
|
-
// bazel-out/
|
|
9473
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
9474
9474
|
function phasePureFunctionExtraction(cpl) {
|
|
9475
9475
|
for (const view of cpl.views.values()) {
|
|
9476
9476
|
for (const op of view.ops()) {
|
|
@@ -9512,7 +9512,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
9512
9512
|
}
|
|
9513
9513
|
};
|
|
9514
9514
|
|
|
9515
|
-
// bazel-out/
|
|
9515
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
9516
9516
|
function phasePipeCreation(cpl) {
|
|
9517
9517
|
for (const view of cpl.views.values()) {
|
|
9518
9518
|
processPipeBindingsInView(view);
|
|
@@ -9555,7 +9555,7 @@ function addPipeToCreationBlock(view, afterTargetXref, binding) {
|
|
|
9555
9555
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
9556
9556
|
}
|
|
9557
9557
|
|
|
9558
|
-
// bazel-out/
|
|
9558
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
9559
9559
|
function phasePipeVariadic(cpl) {
|
|
9560
9560
|
for (const view of cpl.views.values()) {
|
|
9561
9561
|
for (const op of view.update) {
|
|
@@ -9572,7 +9572,7 @@ function phasePipeVariadic(cpl) {
|
|
|
9572
9572
|
}
|
|
9573
9573
|
}
|
|
9574
9574
|
|
|
9575
|
-
// bazel-out/
|
|
9575
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
9576
9576
|
function phasePureLiteralStructures(cpl) {
|
|
9577
9577
|
for (const view of cpl.views.values()) {
|
|
9578
9578
|
for (const op of view.update) {
|
|
@@ -9619,7 +9619,7 @@ function transformLiteralMap(expr) {
|
|
|
9619
9619
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
9620
9620
|
}
|
|
9621
9621
|
|
|
9622
|
-
// bazel-out/
|
|
9622
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/align_pipe_variadic_var_offset.mjs
|
|
9623
9623
|
function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
9624
9624
|
for (const view of cpl.views.values()) {
|
|
9625
9625
|
for (const op of view.update) {
|
|
@@ -9640,7 +9640,7 @@ function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
|
9640
9640
|
}
|
|
9641
9641
|
}
|
|
9642
9642
|
|
|
9643
|
-
// bazel-out/
|
|
9643
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
9644
9644
|
function transformTemplate(cpl) {
|
|
9645
9645
|
phasePipeCreation(cpl);
|
|
9646
9646
|
phasePipeVariadic(cpl);
|
|
@@ -9722,7 +9722,7 @@ function maybeGenerateRfBlock(flag, statements) {
|
|
|
9722
9722
|
];
|
|
9723
9723
|
}
|
|
9724
9724
|
|
|
9725
|
-
// bazel-out/
|
|
9725
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
9726
9726
|
var ComponentCompilation = class {
|
|
9727
9727
|
constructor(componentName, pool) {
|
|
9728
9728
|
this.componentName = componentName;
|
|
@@ -9780,7 +9780,7 @@ var ViewCompilation = class {
|
|
|
9780
9780
|
}
|
|
9781
9781
|
};
|
|
9782
9782
|
|
|
9783
|
-
// bazel-out/
|
|
9783
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9784
9784
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9785
9785
|
["&&", BinaryOperator.And],
|
|
9786
9786
|
[">", BinaryOperator.Bigger],
|
|
@@ -9801,7 +9801,7 @@ var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
|
9801
9801
|
["+", BinaryOperator.Plus]
|
|
9802
9802
|
]);
|
|
9803
9803
|
|
|
9804
|
-
// bazel-out/
|
|
9804
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
9805
9805
|
function ingest(componentName, template2, constantPool) {
|
|
9806
9806
|
const cpl = new ComponentCompilation(componentName, constantPool);
|
|
9807
9807
|
ingestNodes(cpl.root, template2);
|
|
@@ -9996,10 +9996,10 @@ function assertIsArray(value) {
|
|
|
9996
9996
|
}
|
|
9997
9997
|
}
|
|
9998
9998
|
|
|
9999
|
-
// bazel-out/
|
|
9999
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
10000
10000
|
var USE_TEMPLATE_PIPELINE = false;
|
|
10001
10001
|
|
|
10002
|
-
// bazel-out/
|
|
10002
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
10003
10003
|
function parse(value) {
|
|
10004
10004
|
const styles = [];
|
|
10005
10005
|
let i = 0;
|
|
@@ -10060,7 +10060,7 @@ function hyphenate(value) {
|
|
|
10060
10060
|
}).toLowerCase();
|
|
10061
10061
|
}
|
|
10062
10062
|
|
|
10063
|
-
// bazel-out/
|
|
10063
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
10064
10064
|
var IMPORTANT_FLAG = "!important";
|
|
10065
10065
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
10066
10066
|
var StylingBuilder = class {
|
|
@@ -10393,7 +10393,7 @@ function isEmptyExpression(ast) {
|
|
|
10393
10393
|
return ast instanceof EmptyExpr;
|
|
10394
10394
|
}
|
|
10395
10395
|
|
|
10396
|
-
// bazel-out/
|
|
10396
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
10397
10397
|
var TokenType;
|
|
10398
10398
|
(function(TokenType2) {
|
|
10399
10399
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -10754,7 +10754,7 @@ function parseIntAutoRadix(text2) {
|
|
|
10754
10754
|
return result;
|
|
10755
10755
|
}
|
|
10756
10756
|
|
|
10757
|
-
// bazel-out/
|
|
10757
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
10758
10758
|
var SplitInterpolation = class {
|
|
10759
10759
|
constructor(strings, expressions, offsets) {
|
|
10760
10760
|
this.strings = strings;
|
|
@@ -11648,7 +11648,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
11648
11648
|
return offsetMap;
|
|
11649
11649
|
}
|
|
11650
11650
|
|
|
11651
|
-
// bazel-out/
|
|
11651
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
11652
11652
|
var NodeWithI18n = class {
|
|
11653
11653
|
constructor(sourceSpan, i18n) {
|
|
11654
11654
|
this.sourceSpan = sourceSpan;
|
|
@@ -11736,11 +11736,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
11736
11736
|
return result;
|
|
11737
11737
|
}
|
|
11738
11738
|
|
|
11739
|
-
// bazel-out/
|
|
11739
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
11740
11740
|
var ElementSchemaRegistry = class {
|
|
11741
11741
|
};
|
|
11742
11742
|
|
|
11743
|
-
// bazel-out/
|
|
11743
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
11744
11744
|
var BOOLEAN = "boolean";
|
|
11745
11745
|
var NUMBER = "number";
|
|
11746
11746
|
var STRING = "string";
|
|
@@ -12093,7 +12093,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12093
12093
|
}
|
|
12094
12094
|
}
|
|
12095
12095
|
|
|
12096
|
-
// bazel-out/
|
|
12096
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12097
12097
|
var HtmlTagDefinition = class {
|
|
12098
12098
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12099
12099
|
this.closedByChildren = {};
|
|
@@ -12211,7 +12211,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
12211
12211
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
12212
12212
|
}
|
|
12213
12213
|
|
|
12214
|
-
// bazel-out/
|
|
12214
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12215
12215
|
var NAMED_ENTITIES = {
|
|
12216
12216
|
"AElig": "\xC6",
|
|
12217
12217
|
"AMP": "&",
|
|
@@ -14342,7 +14342,7 @@ var NAMED_ENTITIES = {
|
|
|
14342
14342
|
var NGSP_UNICODE = "\uE500";
|
|
14343
14343
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14344
14344
|
|
|
14345
|
-
// bazel-out/
|
|
14345
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14346
14346
|
var TokenError = class extends ParseError {
|
|
14347
14347
|
constructor(errorMsg, tokenType, span) {
|
|
14348
14348
|
super(span, errorMsg);
|
|
@@ -15177,7 +15177,7 @@ var CursorError = class {
|
|
|
15177
15177
|
}
|
|
15178
15178
|
};
|
|
15179
15179
|
|
|
15180
|
-
// bazel-out/
|
|
15180
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15181
15181
|
var TreeError = class extends ParseError {
|
|
15182
15182
|
static create(elementName, span, msg) {
|
|
15183
15183
|
return new TreeError(elementName, span, msg);
|
|
@@ -15504,7 +15504,7 @@ function decodeEntity(match, entity) {
|
|
|
15504
15504
|
return match;
|
|
15505
15505
|
}
|
|
15506
15506
|
|
|
15507
|
-
// bazel-out/
|
|
15507
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
15508
15508
|
var HtmlParser = class extends Parser2 {
|
|
15509
15509
|
constructor() {
|
|
15510
15510
|
super(getHtmlTagDefinition);
|
|
@@ -15514,7 +15514,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
15514
15514
|
}
|
|
15515
15515
|
};
|
|
15516
15516
|
|
|
15517
|
-
// bazel-out/
|
|
15517
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
15518
15518
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
15519
15519
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
15520
15520
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -15574,7 +15574,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
15574
15574
|
return result;
|
|
15575
15575
|
}
|
|
15576
15576
|
|
|
15577
|
-
// bazel-out/
|
|
15577
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
15578
15578
|
function mapLiteral(obj, quoted = false) {
|
|
15579
15579
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
15580
15580
|
key,
|
|
@@ -15583,7 +15583,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
15583
15583
|
})));
|
|
15584
15584
|
}
|
|
15585
15585
|
|
|
15586
|
-
// bazel-out/
|
|
15586
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
15587
15587
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
15588
15588
|
"iframe|srcdoc",
|
|
15589
15589
|
"*|innerhtml",
|
|
@@ -15598,7 +15598,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
15598
15598
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
15599
15599
|
}
|
|
15600
15600
|
|
|
15601
|
-
// bazel-out/
|
|
15601
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
15602
15602
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
15603
15603
|
var ATTRIBUTE_PREFIX = "attr";
|
|
15604
15604
|
var CLASS_PREFIX = "class";
|
|
@@ -15918,7 +15918,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
15918
15918
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
15919
15919
|
}
|
|
15920
15920
|
|
|
15921
|
-
// bazel-out/
|
|
15921
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
15922
15922
|
function isStyleUrlResolvable(url) {
|
|
15923
15923
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
15924
15924
|
return false;
|
|
@@ -15927,7 +15927,7 @@ function isStyleUrlResolvable(url) {
|
|
|
15927
15927
|
}
|
|
15928
15928
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
15929
15929
|
|
|
15930
|
-
// bazel-out/
|
|
15930
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
15931
15931
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
15932
15932
|
var LINK_ELEMENT = "link";
|
|
15933
15933
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -15997,7 +15997,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
15997
15997
|
return selectAttr;
|
|
15998
15998
|
}
|
|
15999
15999
|
|
|
16000
|
-
// bazel-out/
|
|
16000
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
16001
16001
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
16002
16002
|
var KW_BIND_IDX = 1;
|
|
16003
16003
|
var KW_LET_IDX = 2;
|
|
@@ -16345,7 +16345,7 @@ function textContents(node) {
|
|
|
16345
16345
|
}
|
|
16346
16346
|
}
|
|
16347
16347
|
|
|
16348
|
-
// bazel-out/
|
|
16348
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
16349
16349
|
var TagType;
|
|
16350
16350
|
(function(TagType2) {
|
|
16351
16351
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -16480,7 +16480,7 @@ function serializePlaceholderValue(value) {
|
|
|
16480
16480
|
}
|
|
16481
16481
|
}
|
|
16482
16482
|
|
|
16483
|
-
// bazel-out/
|
|
16483
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
16484
16484
|
var IcuSerializerVisitor = class {
|
|
16485
16485
|
visitText(text2) {
|
|
16486
16486
|
return text2.value;
|
|
@@ -16511,7 +16511,7 @@ function serializeIcuNode(icu) {
|
|
|
16511
16511
|
return icu.visit(serializer);
|
|
16512
16512
|
}
|
|
16513
16513
|
|
|
16514
|
-
// bazel-out/
|
|
16514
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
16515
16515
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
16516
16516
|
"A": "LINK",
|
|
16517
16517
|
"B": "BOLD_TEXT",
|
|
@@ -16605,7 +16605,7 @@ var PlaceholderRegistry = class {
|
|
|
16605
16605
|
}
|
|
16606
16606
|
};
|
|
16607
16607
|
|
|
16608
|
-
// bazel-out/
|
|
16608
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
16609
16609
|
var _expParser = new Parser(new Lexer());
|
|
16610
16610
|
function createI18nMessageFactory(interpolationConfig) {
|
|
16611
16611
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -16760,14 +16760,14 @@ function extractPlaceholderName(input) {
|
|
|
16760
16760
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
16761
16761
|
}
|
|
16762
16762
|
|
|
16763
|
-
// bazel-out/
|
|
16763
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
16764
16764
|
var I18nError = class extends ParseError {
|
|
16765
16765
|
constructor(span, msg) {
|
|
16766
16766
|
super(span, msg);
|
|
16767
16767
|
}
|
|
16768
16768
|
};
|
|
16769
16769
|
|
|
16770
|
-
// bazel-out/
|
|
16770
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16771
16771
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16772
16772
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16773
16773
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16916,7 +16916,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16916
16916
|
return jsDocComment(tags);
|
|
16917
16917
|
}
|
|
16918
16918
|
|
|
16919
|
-
// bazel-out/
|
|
16919
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16920
16920
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16921
16921
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16922
16922
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16964,7 +16964,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16964
16964
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16965
16965
|
}
|
|
16966
16966
|
|
|
16967
|
-
// bazel-out/
|
|
16967
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16968
16968
|
function createLocalizeStatements(variable2, message, params) {
|
|
16969
16969
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16970
16970
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -17047,7 +17047,7 @@ function createEmptyMessagePart(location) {
|
|
|
17047
17047
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
17048
17048
|
}
|
|
17049
17049
|
|
|
17050
|
-
// bazel-out/
|
|
17050
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
17051
17051
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
17052
17052
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
17053
17053
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -18349,7 +18349,7 @@ function createClosureModeGuard() {
|
|
|
18349
18349
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
18350
18350
|
}
|
|
18351
18351
|
|
|
18352
|
-
// bazel-out/
|
|
18352
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
18353
18353
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
18354
18354
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
18355
18355
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -18909,11 +18909,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
18909
18909
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
18910
18910
|
}
|
|
18911
18911
|
|
|
18912
|
-
// bazel-out/
|
|
18912
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
18913
18913
|
var ResourceLoader = class {
|
|
18914
18914
|
};
|
|
18915
18915
|
|
|
18916
|
-
// bazel-out/
|
|
18916
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
18917
18917
|
var CompilerFacadeImpl = class {
|
|
18918
18918
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
18919
18919
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -19437,10 +19437,10 @@ function publishFacade(global2) {
|
|
|
19437
19437
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
19438
19438
|
}
|
|
19439
19439
|
|
|
19440
|
-
// bazel-out/
|
|
19441
|
-
var VERSION2 = new Version("16.1.
|
|
19440
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/version.mjs
|
|
19441
|
+
var VERSION2 = new Version("16.1.5");
|
|
19442
19442
|
|
|
19443
|
-
// bazel-out/
|
|
19443
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
19444
19444
|
var _I18N_ATTR = "i18n";
|
|
19445
19445
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
19446
19446
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -19744,7 +19744,7 @@ function _parseMessageMeta(i18n) {
|
|
|
19744
19744
|
return { meaning, description, id: id.trim() };
|
|
19745
19745
|
}
|
|
19746
19746
|
|
|
19747
|
-
// bazel-out/
|
|
19747
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
19748
19748
|
var XmlTagDefinition = class {
|
|
19749
19749
|
constructor() {
|
|
19750
19750
|
this.closedByParent = false;
|
|
@@ -19769,7 +19769,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
19769
19769
|
return _TAG_DEFINITION;
|
|
19770
19770
|
}
|
|
19771
19771
|
|
|
19772
|
-
// bazel-out/
|
|
19772
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
19773
19773
|
var XmlParser = class extends Parser2 {
|
|
19774
19774
|
constructor() {
|
|
19775
19775
|
super(getXmlTagDefinition);
|
|
@@ -19779,7 +19779,7 @@ var XmlParser = class extends Parser2 {
|
|
|
19779
19779
|
}
|
|
19780
19780
|
};
|
|
19781
19781
|
|
|
19782
|
-
// bazel-out/
|
|
19782
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
19783
19783
|
var _VERSION = "1.2";
|
|
19784
19784
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
19785
19785
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -20019,7 +20019,7 @@ function getCtypeForTag(tag) {
|
|
|
20019
20019
|
}
|
|
20020
20020
|
}
|
|
20021
20021
|
|
|
20022
|
-
// bazel-out/
|
|
20022
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
20023
20023
|
var _VERSION2 = "2.0";
|
|
20024
20024
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
20025
20025
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -20310,7 +20310,7 @@ function getTypeForTag(tag) {
|
|
|
20310
20310
|
}
|
|
20311
20311
|
}
|
|
20312
20312
|
|
|
20313
|
-
// bazel-out/
|
|
20313
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
20314
20314
|
var MessageBundle = class {
|
|
20315
20315
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
20316
20316
|
this._htmlParser = _htmlParser;
|
|
@@ -20377,7 +20377,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
20377
20377
|
}
|
|
20378
20378
|
};
|
|
20379
20379
|
|
|
20380
|
-
// bazel-out/
|
|
20380
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
20381
20381
|
var FactoryTarget2;
|
|
20382
20382
|
(function(FactoryTarget3) {
|
|
20383
20383
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -20387,7 +20387,7 @@ var FactoryTarget2;
|
|
|
20387
20387
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
20388
20388
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
20389
20389
|
|
|
20390
|
-
// bazel-out/
|
|
20390
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
20391
20391
|
var R3TargetBinder = class {
|
|
20392
20392
|
constructor(directiveMatcher) {
|
|
20393
20393
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -20739,7 +20739,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
20739
20739
|
return templateEntities;
|
|
20740
20740
|
}
|
|
20741
20741
|
|
|
20742
|
-
// bazel-out/
|
|
20742
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
20743
20743
|
function compileClassMetadata(metadata) {
|
|
20744
20744
|
var _a2, _b2;
|
|
20745
20745
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -20752,12 +20752,12 @@ function compileClassMetadata(metadata) {
|
|
|
20752
20752
|
return iife.callFn([]);
|
|
20753
20753
|
}
|
|
20754
20754
|
|
|
20755
|
-
// bazel-out/
|
|
20755
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
20756
20756
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
20757
20757
|
function compileDeclareClassMetadata(metadata) {
|
|
20758
20758
|
const definitionMap = new DefinitionMap();
|
|
20759
20759
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
20760
|
-
definitionMap.set("version", literal("16.1.
|
|
20760
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
20761
20761
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20762
20762
|
definitionMap.set("type", metadata.type);
|
|
20763
20763
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -20766,7 +20766,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
20766
20766
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
20767
20767
|
}
|
|
20768
20768
|
|
|
20769
|
-
// bazel-out/
|
|
20769
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
20770
20770
|
function toOptionalLiteralArray(values, mapper) {
|
|
20771
20771
|
if (values === null || values.length === 0) {
|
|
20772
20772
|
return null;
|
|
@@ -20814,7 +20814,7 @@ function compileDependency(dep) {
|
|
|
20814
20814
|
return depMeta.toLiteralMap();
|
|
20815
20815
|
}
|
|
20816
20816
|
|
|
20817
|
-
// bazel-out/
|
|
20817
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
20818
20818
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
20819
20819
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
20820
20820
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -20826,7 +20826,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
20826
20826
|
var _a2;
|
|
20827
20827
|
const definitionMap = new DefinitionMap();
|
|
20828
20828
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
20829
|
-
definitionMap.set("version", literal("16.1.
|
|
20829
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
20830
20830
|
definitionMap.set("type", meta.type.value);
|
|
20831
20831
|
if (meta.isStandalone) {
|
|
20832
20832
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -20919,7 +20919,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
20919
20919
|
return literalArr(expressions);
|
|
20920
20920
|
}
|
|
20921
20921
|
|
|
20922
|
-
// bazel-out/
|
|
20922
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
20923
20923
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
20924
20924
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
20925
20925
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -21006,12 +21006,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
21006
21006
|
});
|
|
21007
21007
|
}
|
|
21008
21008
|
|
|
21009
|
-
// bazel-out/
|
|
21009
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
21010
21010
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
21011
21011
|
function compileDeclareFactoryFunction(meta) {
|
|
21012
21012
|
const definitionMap = new DefinitionMap();
|
|
21013
21013
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
21014
|
-
definitionMap.set("version", literal("16.1.
|
|
21014
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
21015
21015
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21016
21016
|
definitionMap.set("type", meta.type.value);
|
|
21017
21017
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -21023,7 +21023,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
21023
21023
|
};
|
|
21024
21024
|
}
|
|
21025
21025
|
|
|
21026
|
-
// bazel-out/
|
|
21026
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
21027
21027
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
21028
21028
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
21029
21029
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -21034,7 +21034,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
21034
21034
|
function createInjectableDefinitionMap(meta) {
|
|
21035
21035
|
const definitionMap = new DefinitionMap();
|
|
21036
21036
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
21037
|
-
definitionMap.set("version", literal("16.1.
|
|
21037
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
21038
21038
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21039
21039
|
definitionMap.set("type", meta.type.value);
|
|
21040
21040
|
if (meta.providedIn !== void 0) {
|
|
@@ -21061,7 +21061,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
21061
21061
|
return definitionMap;
|
|
21062
21062
|
}
|
|
21063
21063
|
|
|
21064
|
-
// bazel-out/
|
|
21064
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
21065
21065
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
21066
21066
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
21067
21067
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -21072,7 +21072,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
21072
21072
|
function createInjectorDefinitionMap(meta) {
|
|
21073
21073
|
const definitionMap = new DefinitionMap();
|
|
21074
21074
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
21075
|
-
definitionMap.set("version", literal("16.1.
|
|
21075
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
21076
21076
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21077
21077
|
definitionMap.set("type", meta.type.value);
|
|
21078
21078
|
definitionMap.set("providers", meta.providers);
|
|
@@ -21082,7 +21082,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
21082
21082
|
return definitionMap;
|
|
21083
21083
|
}
|
|
21084
21084
|
|
|
21085
|
-
// bazel-out/
|
|
21085
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
21086
21086
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
21087
21087
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
21088
21088
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -21096,7 +21096,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
21096
21096
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
21097
21097
|
}
|
|
21098
21098
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
21099
|
-
definitionMap.set("version", literal("16.1.
|
|
21099
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
21100
21100
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21101
21101
|
definitionMap.set("type", meta.type.value);
|
|
21102
21102
|
if (meta.bootstrap.length > 0) {
|
|
@@ -21120,7 +21120,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
21120
21120
|
return definitionMap;
|
|
21121
21121
|
}
|
|
21122
21122
|
|
|
21123
|
-
// bazel-out/
|
|
21123
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
21124
21124
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
21125
21125
|
function compileDeclarePipeFromMetadata(meta) {
|
|
21126
21126
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -21131,7 +21131,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
21131
21131
|
function createPipeDefinitionMap(meta) {
|
|
21132
21132
|
const definitionMap = new DefinitionMap();
|
|
21133
21133
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
21134
|
-
definitionMap.set("version", literal("16.1.
|
|
21134
|
+
definitionMap.set("version", literal("16.1.5"));
|
|
21135
21135
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
21136
21136
|
definitionMap.set("type", meta.type.value);
|
|
21137
21137
|
if (meta.isStandalone) {
|
|
@@ -21144,13 +21144,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
21144
21144
|
return definitionMap;
|
|
21145
21145
|
}
|
|
21146
21146
|
|
|
21147
|
-
// bazel-out/
|
|
21147
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
21148
21148
|
publishFacade(_global);
|
|
21149
21149
|
|
|
21150
|
-
// bazel-out/
|
|
21151
|
-
var VERSION3 = new Version("16.1.
|
|
21150
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
21151
|
+
var VERSION3 = new Version("16.1.5");
|
|
21152
21152
|
|
|
21153
|
-
// bazel-out/
|
|
21153
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
21154
21154
|
var EmitFlags;
|
|
21155
21155
|
(function(EmitFlags2) {
|
|
21156
21156
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -21162,13 +21162,13 @@ var EmitFlags;
|
|
|
21162
21162
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
21163
21163
|
})(EmitFlags || (EmitFlags = {}));
|
|
21164
21164
|
|
|
21165
|
-
// bazel-out/
|
|
21165
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
21166
21166
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
21167
21167
|
|
|
21168
|
-
// bazel-out/
|
|
21168
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
21169
21169
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
21170
21170
|
|
|
21171
|
-
// bazel-out/
|
|
21171
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
21172
21172
|
var path = __toESM(require("path"), 1);
|
|
21173
21173
|
function i18nGetExtension(formatName) {
|
|
21174
21174
|
const format = formatName.toLowerCase();
|
|
@@ -21218,10 +21218,10 @@ function getPathNormalizer(basePath) {
|
|
|
21218
21218
|
};
|
|
21219
21219
|
}
|
|
21220
21220
|
|
|
21221
|
-
// bazel-out/
|
|
21221
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
21222
21222
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
21223
21223
|
|
|
21224
|
-
// bazel-out/
|
|
21224
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
21225
21225
|
function toNumbers(value) {
|
|
21226
21226
|
const suffixIndex = value.lastIndexOf("-");
|
|
21227
21227
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -21256,7 +21256,7 @@ function compareVersions(v1, v2) {
|
|
|
21256
21256
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
21257
21257
|
}
|
|
21258
21258
|
|
|
21259
|
-
// bazel-out/
|
|
21259
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
21260
21260
|
var MIN_TS_VERSION = "4.9.3";
|
|
21261
21261
|
var MAX_TS_VERSION = "5.2.0";
|
|
21262
21262
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -21269,13 +21269,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
21269
21269
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
21270
21270
|
}
|
|
21271
21271
|
|
|
21272
|
-
// bazel-out/
|
|
21272
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
21273
21273
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
21274
21274
|
|
|
21275
|
-
// bazel-out/
|
|
21275
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
21276
21276
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
21277
21277
|
|
|
21278
|
-
// bazel-out/
|
|
21278
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
21279
21279
|
var ErrorCode;
|
|
21280
21280
|
(function(ErrorCode2) {
|
|
21281
21281
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -21349,7 +21349,7 @@ var ErrorCode;
|
|
|
21349
21349
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
21350
21350
|
})(ErrorCode || (ErrorCode = {}));
|
|
21351
21351
|
|
|
21352
|
-
// bazel-out/
|
|
21352
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
21353
21353
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
21354
21354
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
21355
21355
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -21361,15 +21361,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
21361
21361
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
21362
21362
|
]);
|
|
21363
21363
|
|
|
21364
|
-
// bazel-out/
|
|
21364
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
21365
21365
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
21366
21366
|
|
|
21367
|
-
// bazel-out/
|
|
21367
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
21368
21368
|
function ngErrorCode(code) {
|
|
21369
21369
|
return parseInt("-99" + code);
|
|
21370
21370
|
}
|
|
21371
21371
|
|
|
21372
|
-
// bazel-out/
|
|
21372
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
21373
21373
|
var FatalDiagnosticError = class {
|
|
21374
21374
|
constructor(code, node, message, relatedInformation) {
|
|
21375
21375
|
this.code = code;
|
|
@@ -21425,10 +21425,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
21425
21425
|
return messageText;
|
|
21426
21426
|
}
|
|
21427
21427
|
|
|
21428
|
-
// bazel-out/
|
|
21428
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
21429
21429
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
21430
21430
|
|
|
21431
|
-
// bazel-out/
|
|
21431
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
21432
21432
|
var ExtendedTemplateDiagnosticName;
|
|
21433
21433
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
21434
21434
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -21441,13 +21441,13 @@ var ExtendedTemplateDiagnosticName;
|
|
|
21441
21441
|
ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
|
|
21442
21442
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
21443
21443
|
|
|
21444
|
-
// bazel-out/
|
|
21444
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
21445
21445
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
21446
21446
|
|
|
21447
|
-
// bazel-out/
|
|
21447
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
21448
21448
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
21449
21449
|
|
|
21450
|
-
// bazel-out/
|
|
21450
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
21451
21451
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
21452
21452
|
var TS = /\.tsx?$/i;
|
|
21453
21453
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -21548,7 +21548,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
21548
21548
|
return redirectInfo.unredirected;
|
|
21549
21549
|
}
|
|
21550
21550
|
|
|
21551
|
-
// bazel-out/
|
|
21551
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
21552
21552
|
function findExportedNameOfNode(target, file, reflector) {
|
|
21553
21553
|
const exports = reflector.getExportsOfModule(file);
|
|
21554
21554
|
if (exports === null) {
|
|
@@ -21568,7 +21568,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
21568
21568
|
return foundExportName;
|
|
21569
21569
|
}
|
|
21570
21570
|
|
|
21571
|
-
// bazel-out/
|
|
21571
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
21572
21572
|
var ImportFlags;
|
|
21573
21573
|
(function(ImportFlags2) {
|
|
21574
21574
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -21784,7 +21784,7 @@ var UnifiedModulesStrategy = class {
|
|
|
21784
21784
|
}
|
|
21785
21785
|
};
|
|
21786
21786
|
|
|
21787
|
-
// bazel-out/
|
|
21787
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
21788
21788
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
21789
21789
|
var UnifiedModulesAliasingHost = class {
|
|
21790
21790
|
constructor(unifiedModulesHost) {
|
|
@@ -21851,7 +21851,7 @@ var AliasStrategy = class {
|
|
|
21851
21851
|
}
|
|
21852
21852
|
};
|
|
21853
21853
|
|
|
21854
|
-
// bazel-out/
|
|
21854
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
21855
21855
|
function relativePathBetween(from, to) {
|
|
21856
21856
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
21857
21857
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -21860,7 +21860,7 @@ function normalizeSeparators2(path3) {
|
|
|
21860
21860
|
return path3.replace(/\\/g, "/");
|
|
21861
21861
|
}
|
|
21862
21862
|
|
|
21863
|
-
// bazel-out/
|
|
21863
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
21864
21864
|
var NoopImportRewriter = class {
|
|
21865
21865
|
shouldImportSymbol(symbol, specifier) {
|
|
21866
21866
|
return true;
|
|
@@ -21918,7 +21918,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
21918
21918
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
21919
21919
|
}
|
|
21920
21920
|
|
|
21921
|
-
// bazel-out/
|
|
21921
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
21922
21922
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
21923
21923
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
21924
21924
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -21953,7 +21953,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
21953
21953
|
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
21954
|
}
|
|
21955
21955
|
|
|
21956
|
-
// bazel-out/
|
|
21956
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
21957
21957
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
21958
21958
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
21959
21959
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -21994,7 +21994,7 @@ var DefaultImportTracker = class {
|
|
|
21994
21994
|
}
|
|
21995
21995
|
};
|
|
21996
21996
|
|
|
21997
|
-
// bazel-out/
|
|
21997
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
21998
21998
|
var Reference2 = class {
|
|
21999
21999
|
constructor(node, bestGuessOwningModule = null) {
|
|
22000
22000
|
this.node = node;
|
|
@@ -22057,7 +22057,7 @@ var Reference2 = class {
|
|
|
22057
22057
|
}
|
|
22058
22058
|
};
|
|
22059
22059
|
|
|
22060
|
-
// bazel-out/
|
|
22060
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
22061
22061
|
var ModuleResolver = class {
|
|
22062
22062
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
22063
22063
|
this.program = program;
|
|
@@ -22074,7 +22074,7 @@ var ModuleResolver = class {
|
|
|
22074
22074
|
}
|
|
22075
22075
|
};
|
|
22076
22076
|
|
|
22077
|
-
// bazel-out/
|
|
22077
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
22078
22078
|
function valueReferenceToExpression(valueRef) {
|
|
22079
22079
|
if (valueRef.kind === 2) {
|
|
22080
22080
|
return null;
|
|
@@ -22313,7 +22313,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
22313
22313
|
return import_typescript13.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript13.default.SyntaxKind.AbstractKeyword) : false;
|
|
22314
22314
|
}
|
|
22315
22315
|
|
|
22316
|
-
// bazel-out/
|
|
22316
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
22317
22317
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
22318
22318
|
const deps = [];
|
|
22319
22319
|
const errors = [];
|
|
@@ -22455,10 +22455,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
22455
22455
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
22456
22456
|
}
|
|
22457
22457
|
|
|
22458
|
-
// bazel-out/
|
|
22458
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
22459
22459
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
22460
22460
|
|
|
22461
|
-
// bazel-out/
|
|
22461
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
22462
22462
|
var MetaKind;
|
|
22463
22463
|
(function(MetaKind2) {
|
|
22464
22464
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -22471,10 +22471,10 @@ var MatchSource;
|
|
|
22471
22471
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
22472
22472
|
})(MatchSource || (MatchSource = {}));
|
|
22473
22473
|
|
|
22474
|
-
// bazel-out/
|
|
22474
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
22475
22475
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
22476
22476
|
|
|
22477
|
-
// bazel-out/
|
|
22477
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
22478
22478
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
22479
22479
|
function isDecoratorIdentifier(exp) {
|
|
22480
22480
|
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 +22488,7 @@ var ClassMemberKind;
|
|
|
22488
22488
|
ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
|
|
22489
22489
|
})(ClassMemberKind || (ClassMemberKind = {}));
|
|
22490
22490
|
|
|
22491
|
-
// bazel-out/
|
|
22491
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
22492
22492
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
22493
22493
|
function typeToValue(typeNode, checker) {
|
|
22494
22494
|
if (typeNode === null) {
|
|
@@ -22654,10 +22654,10 @@ function extractModuleName(node) {
|
|
|
22654
22654
|
return node.moduleSpecifier.text;
|
|
22655
22655
|
}
|
|
22656
22656
|
|
|
22657
|
-
// bazel-out/
|
|
22657
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
22658
22658
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
22659
22659
|
|
|
22660
|
-
// bazel-out/
|
|
22660
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
22661
22661
|
var import_typescript17 = __toESM(require("typescript"), 1);
|
|
22662
22662
|
function isNamedClassDeclaration(node) {
|
|
22663
22663
|
return import_typescript17.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -22666,7 +22666,7 @@ function isIdentifier(node) {
|
|
|
22666
22666
|
return node !== void 0 && import_typescript17.default.isIdentifier(node);
|
|
22667
22667
|
}
|
|
22668
22668
|
|
|
22669
|
-
// bazel-out/
|
|
22669
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
22670
22670
|
var TypeScriptReflectionHost = class {
|
|
22671
22671
|
constructor(checker) {
|
|
22672
22672
|
this.checker = checker;
|
|
@@ -23095,7 +23095,7 @@ function getExportedName(decl, originalId) {
|
|
|
23095
23095
|
}
|
|
23096
23096
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
23097
23097
|
|
|
23098
|
-
// bazel-out/
|
|
23098
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
23099
23099
|
var ClassPropertyMapping = class {
|
|
23100
23100
|
constructor(forwardMap) {
|
|
23101
23101
|
this.forwardMap = forwardMap;
|
|
@@ -23173,7 +23173,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
23173
23173
|
return reverseMap;
|
|
23174
23174
|
}
|
|
23175
23175
|
|
|
23176
|
-
// bazel-out/
|
|
23176
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
23177
23177
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
23178
23178
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
23179
23179
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -23358,7 +23358,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
23358
23358
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
23359
23359
|
}
|
|
23360
23360
|
|
|
23361
|
-
// bazel-out/
|
|
23361
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
23362
23362
|
var DtsMetadataReader = class {
|
|
23363
23363
|
constructor(checker, reflector) {
|
|
23364
23364
|
this.checker = checker;
|
|
@@ -23533,7 +23533,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
23533
23533
|
return result.length > 0 ? result : null;
|
|
23534
23534
|
}
|
|
23535
23535
|
|
|
23536
|
-
// bazel-out/
|
|
23536
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
23537
23537
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
23538
23538
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
23539
23539
|
if (topMeta === null) {
|
|
@@ -23590,7 +23590,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
23590
23590
|
});
|
|
23591
23591
|
}
|
|
23592
23592
|
|
|
23593
|
-
// bazel-out/
|
|
23593
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
23594
23594
|
var LocalMetadataRegistry = class {
|
|
23595
23595
|
constructor() {
|
|
23596
23596
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -23647,7 +23647,7 @@ var CompoundMetadataRegistry = class {
|
|
|
23647
23647
|
}
|
|
23648
23648
|
};
|
|
23649
23649
|
|
|
23650
|
-
// bazel-out/
|
|
23650
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
23651
23651
|
var ResourceRegistry = class {
|
|
23652
23652
|
constructor() {
|
|
23653
23653
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -23712,7 +23712,7 @@ var ResourceRegistry = class {
|
|
|
23712
23712
|
}
|
|
23713
23713
|
};
|
|
23714
23714
|
|
|
23715
|
-
// bazel-out/
|
|
23715
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
23716
23716
|
var ExportedProviderStatusResolver = class {
|
|
23717
23717
|
constructor(metaReader) {
|
|
23718
23718
|
this.metaReader = metaReader;
|
|
@@ -23756,7 +23756,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
23756
23756
|
}
|
|
23757
23757
|
};
|
|
23758
23758
|
|
|
23759
|
-
// bazel-out/
|
|
23759
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
23760
23760
|
var EMPTY_ARRAY = [];
|
|
23761
23761
|
var HostDirectivesResolver = class {
|
|
23762
23762
|
constructor(metaReader) {
|
|
@@ -23817,10 +23817,10 @@ function resolveOutput(bindingName) {
|
|
|
23817
23817
|
return bindingName;
|
|
23818
23818
|
}
|
|
23819
23819
|
|
|
23820
|
-
// bazel-out/
|
|
23820
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
23821
23821
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
23822
23822
|
|
|
23823
|
-
// bazel-out/
|
|
23823
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
23824
23824
|
var DynamicValue = class {
|
|
23825
23825
|
constructor(node, reason, code) {
|
|
23826
23826
|
this.node = node;
|
|
@@ -23910,7 +23910,7 @@ var DynamicValue = class {
|
|
|
23910
23910
|
}
|
|
23911
23911
|
};
|
|
23912
23912
|
|
|
23913
|
-
// bazel-out/
|
|
23913
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
23914
23914
|
var ResolvedModule = class {
|
|
23915
23915
|
constructor(exports, evaluate) {
|
|
23916
23916
|
this.exports = exports;
|
|
@@ -23940,7 +23940,7 @@ var EnumValue = class {
|
|
|
23940
23940
|
var KnownFn = class {
|
|
23941
23941
|
};
|
|
23942
23942
|
|
|
23943
|
-
// bazel-out/
|
|
23943
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
23944
23944
|
function describeResolvedType(value, maxDepth = 1) {
|
|
23945
23945
|
var _a2, _b2;
|
|
23946
23946
|
if (value === null) {
|
|
@@ -24069,10 +24069,10 @@ function getContainerNode(node) {
|
|
|
24069
24069
|
return node.getSourceFile();
|
|
24070
24070
|
}
|
|
24071
24071
|
|
|
24072
|
-
// bazel-out/
|
|
24072
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
24073
24073
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
24074
24074
|
|
|
24075
|
-
// bazel-out/
|
|
24075
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
24076
24076
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
24077
24077
|
constructor(lhs) {
|
|
24078
24078
|
super();
|
|
@@ -24124,14 +24124,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
24124
24124
|
}
|
|
24125
24125
|
};
|
|
24126
24126
|
|
|
24127
|
-
// bazel-out/
|
|
24127
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
24128
24128
|
var SyntheticValue = class {
|
|
24129
24129
|
constructor(value) {
|
|
24130
24130
|
this.value = value;
|
|
24131
24131
|
}
|
|
24132
24132
|
};
|
|
24133
24133
|
|
|
24134
|
-
// bazel-out/
|
|
24134
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
24135
24135
|
function literalBinaryOp(op) {
|
|
24136
24136
|
return { op, literal: true };
|
|
24137
24137
|
}
|
|
@@ -24709,7 +24709,7 @@ function getOriginalKeywordKind(identifier) {
|
|
|
24709
24709
|
return typeof import_typescript25.default.identifierToKeywordKind === "function" ? import_typescript25.default.identifierToKeywordKind(identifier) : identifier.originalKeywordKind;
|
|
24710
24710
|
}
|
|
24711
24711
|
|
|
24712
|
-
// bazel-out/
|
|
24712
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
24713
24713
|
var PartialEvaluator = class {
|
|
24714
24714
|
constructor(host, checker, dependencyTracker) {
|
|
24715
24715
|
this.host = host;
|
|
@@ -24729,7 +24729,7 @@ var PartialEvaluator = class {
|
|
|
24729
24729
|
}
|
|
24730
24730
|
};
|
|
24731
24731
|
|
|
24732
|
-
// bazel-out/
|
|
24732
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
24733
24733
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
24734
24734
|
const context = [];
|
|
24735
24735
|
for (const decl of data) {
|
|
@@ -24925,7 +24925,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
24925
24925
|
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
24926
|
}
|
|
24927
24927
|
|
|
24928
|
-
// bazel-out/
|
|
24928
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
24929
24929
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
24930
24930
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
24931
24931
|
let resolved = null;
|
|
@@ -24958,7 +24958,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
24958
24958
|
return meta;
|
|
24959
24959
|
}
|
|
24960
24960
|
|
|
24961
|
-
// bazel-out/
|
|
24961
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
24962
24962
|
function compileNgFactoryDefField(metadata) {
|
|
24963
24963
|
const res = compileFactoryFunction(metadata);
|
|
24964
24964
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -24968,7 +24968,7 @@ function compileDeclareFactory(metadata) {
|
|
|
24968
24968
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
24969
24969
|
}
|
|
24970
24970
|
|
|
24971
|
-
// bazel-out/
|
|
24971
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
24972
24972
|
var InjectableClassRegistry = class {
|
|
24973
24973
|
constructor(host, isCore) {
|
|
24974
24974
|
this.host = host;
|
|
@@ -24994,7 +24994,7 @@ var InjectableClassRegistry = class {
|
|
|
24994
24994
|
}
|
|
24995
24995
|
};
|
|
24996
24996
|
|
|
24997
|
-
// bazel-out/
|
|
24997
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
24998
24998
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
24999
24999
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
25000
25000
|
if (!reflection.isClass(clazz)) {
|
|
@@ -25080,13 +25080,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
25080
25080
|
return result.transformed[0];
|
|
25081
25081
|
}
|
|
25082
25082
|
|
|
25083
|
-
// bazel-out/
|
|
25083
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
25084
25084
|
var NoopReferencesRegistry = class {
|
|
25085
25085
|
add(source, ...references) {
|
|
25086
25086
|
}
|
|
25087
25087
|
};
|
|
25088
25088
|
|
|
25089
|
-
// bazel-out/
|
|
25089
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
25090
25090
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
25091
25091
|
const schemas = [];
|
|
25092
25092
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -25115,7 +25115,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
25115
25115
|
return schemas;
|
|
25116
25116
|
}
|
|
25117
25117
|
|
|
25118
|
-
// bazel-out/
|
|
25118
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
25119
25119
|
function compileInputTransformFields(inputs) {
|
|
25120
25120
|
const extraFields = [];
|
|
25121
25121
|
for (const input of inputs) {
|
|
@@ -25131,10 +25131,10 @@ function compileInputTransformFields(inputs) {
|
|
|
25131
25131
|
return extraFields;
|
|
25132
25132
|
}
|
|
25133
25133
|
|
|
25134
|
-
// bazel-out/
|
|
25134
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
25135
25135
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
25136
25136
|
|
|
25137
|
-
// bazel-out/
|
|
25137
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
25138
25138
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
25139
25139
|
var SemanticSymbol = class {
|
|
25140
25140
|
constructor(decl) {
|
|
@@ -25150,7 +25150,7 @@ function getSymbolIdentifier(decl) {
|
|
|
25150
25150
|
return decl.name.text;
|
|
25151
25151
|
}
|
|
25152
25152
|
|
|
25153
|
-
// bazel-out/
|
|
25153
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
25154
25154
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
25155
25155
|
isPublicApiAffected() {
|
|
25156
25156
|
return false;
|
|
@@ -25292,10 +25292,10 @@ function getImportPath(expr) {
|
|
|
25292
25292
|
}
|
|
25293
25293
|
}
|
|
25294
25294
|
|
|
25295
|
-
// bazel-out/
|
|
25295
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
25296
25296
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
25297
25297
|
|
|
25298
|
-
// bazel-out/
|
|
25298
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
25299
25299
|
function isSymbolEqual(a, b) {
|
|
25300
25300
|
if (a.decl === b.decl) {
|
|
25301
25301
|
return true;
|
|
@@ -25345,7 +25345,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
25345
25345
|
return true;
|
|
25346
25346
|
}
|
|
25347
25347
|
|
|
25348
|
-
// bazel-out/
|
|
25348
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
25349
25349
|
function extractSemanticTypeParameters(node) {
|
|
25350
25350
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
25351
25351
|
return null;
|
|
@@ -25365,7 +25365,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
25365
25365
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
25366
25366
|
}
|
|
25367
25367
|
|
|
25368
|
-
// bazel-out/
|
|
25368
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
25369
25369
|
var PerfPhase;
|
|
25370
25370
|
(function(PerfPhase2) {
|
|
25371
25371
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -25432,7 +25432,7 @@ var PerfCheckpoint;
|
|
|
25432
25432
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
25433
25433
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
25434
25434
|
|
|
25435
|
-
// bazel-out/
|
|
25435
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
25436
25436
|
var NoopPerfRecorder = class {
|
|
25437
25437
|
eventCount() {
|
|
25438
25438
|
}
|
|
@@ -25449,7 +25449,7 @@ var NoopPerfRecorder = class {
|
|
|
25449
25449
|
};
|
|
25450
25450
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
25451
25451
|
|
|
25452
|
-
// bazel-out/
|
|
25452
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
25453
25453
|
function mark() {
|
|
25454
25454
|
return process.hrtime();
|
|
25455
25455
|
}
|
|
@@ -25458,7 +25458,7 @@ function timeSinceInMicros(mark2) {
|
|
|
25458
25458
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
25459
25459
|
}
|
|
25460
25460
|
|
|
25461
|
-
// bazel-out/
|
|
25461
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
25462
25462
|
var ActivePerfRecorder = class {
|
|
25463
25463
|
static zeroedToNow() {
|
|
25464
25464
|
return new ActivePerfRecorder(mark());
|
|
@@ -25552,14 +25552,14 @@ var DelegatingPerfRecorder = class {
|
|
|
25552
25552
|
}
|
|
25553
25553
|
};
|
|
25554
25554
|
|
|
25555
|
-
// bazel-out/
|
|
25555
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
25556
25556
|
var ComponentScopeKind;
|
|
25557
25557
|
(function(ComponentScopeKind2) {
|
|
25558
25558
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
25559
25559
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
25560
25560
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
25561
25561
|
|
|
25562
|
-
// bazel-out/
|
|
25562
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
25563
25563
|
var CompoundComponentScopeReader = class {
|
|
25564
25564
|
constructor(readers) {
|
|
25565
25565
|
this.readers = readers;
|
|
@@ -25584,7 +25584,7 @@ var CompoundComponentScopeReader = class {
|
|
|
25584
25584
|
}
|
|
25585
25585
|
};
|
|
25586
25586
|
|
|
25587
|
-
// bazel-out/
|
|
25587
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
25588
25588
|
var MetadataDtsModuleScopeResolver = class {
|
|
25589
25589
|
constructor(dtsMetaReader, aliasingHost) {
|
|
25590
25590
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -25659,10 +25659,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
25659
25659
|
}
|
|
25660
25660
|
};
|
|
25661
25661
|
|
|
25662
|
-
// bazel-out/
|
|
25662
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
25663
25663
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
25664
25664
|
|
|
25665
|
-
// bazel-out/
|
|
25665
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
25666
25666
|
function getDiagnosticNode(ref, rawExpr) {
|
|
25667
25667
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
25668
25668
|
}
|
|
@@ -25685,7 +25685,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
25685
25685
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
25686
25686
|
}
|
|
25687
25687
|
|
|
25688
|
-
// bazel-out/
|
|
25688
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
25689
25689
|
var LocalModuleScopeRegistry = class {
|
|
25690
25690
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
25691
25691
|
this.localReader = localReader;
|
|
@@ -26024,7 +26024,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
26024
26024
|
]);
|
|
26025
26025
|
}
|
|
26026
26026
|
|
|
26027
|
-
// bazel-out/
|
|
26027
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
26028
26028
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
26029
26029
|
var TypeCheckScopeRegistry = class {
|
|
26030
26030
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -26092,7 +26092,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
26092
26092
|
}
|
|
26093
26093
|
};
|
|
26094
26094
|
|
|
26095
|
-
// bazel-out/
|
|
26095
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
26096
26096
|
var CompilationMode;
|
|
26097
26097
|
(function(CompilationMode2) {
|
|
26098
26098
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -26106,7 +26106,7 @@ var HandlerPrecedence;
|
|
|
26106
26106
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
26107
26107
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
26108
26108
|
|
|
26109
|
-
// bazel-out/
|
|
26109
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
26110
26110
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
26111
26111
|
function aliasTransformFactory(exportStatements) {
|
|
26112
26112
|
return () => {
|
|
@@ -26129,10 +26129,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
26129
26129
|
};
|
|
26130
26130
|
}
|
|
26131
26131
|
|
|
26132
|
-
// bazel-out/
|
|
26132
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
26133
26133
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
26134
26134
|
|
|
26135
|
-
// bazel-out/
|
|
26135
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
26136
26136
|
var TraitState;
|
|
26137
26137
|
(function(TraitState2) {
|
|
26138
26138
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -26189,7 +26189,7 @@ var TraitImpl = class {
|
|
|
26189
26189
|
}
|
|
26190
26190
|
};
|
|
26191
26191
|
|
|
26192
|
-
// bazel-out/
|
|
26192
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
26193
26193
|
var TraitCompiler = class {
|
|
26194
26194
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
26195
26195
|
this.handlers = handlers;
|
|
@@ -26624,10 +26624,10 @@ function containsErrors(diagnostics) {
|
|
|
26624
26624
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
26625
26625
|
}
|
|
26626
26626
|
|
|
26627
|
-
// bazel-out/
|
|
26627
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
26628
26628
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
26629
26629
|
|
|
26630
|
-
// bazel-out/
|
|
26630
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
26631
26631
|
var Context = class {
|
|
26632
26632
|
constructor(isStatement) {
|
|
26633
26633
|
this.isStatement = isStatement;
|
|
@@ -26640,7 +26640,7 @@ var Context = class {
|
|
|
26640
26640
|
}
|
|
26641
26641
|
};
|
|
26642
26642
|
|
|
26643
|
-
// bazel-out/
|
|
26643
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
26644
26644
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
26645
26645
|
var ImportManager = class {
|
|
26646
26646
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -26676,7 +26676,7 @@ var ImportManager = class {
|
|
|
26676
26676
|
}
|
|
26677
26677
|
};
|
|
26678
26678
|
|
|
26679
|
-
// bazel-out/
|
|
26679
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
26680
26680
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
26681
26681
|
[UnaryOperator.Minus, "-"],
|
|
26682
26682
|
[UnaryOperator.Plus, "+"]
|
|
@@ -26907,7 +26907,7 @@ function createRange(span) {
|
|
|
26907
26907
|
};
|
|
26908
26908
|
}
|
|
26909
26909
|
|
|
26910
|
-
// bazel-out/
|
|
26910
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
26911
26911
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
26912
26912
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
26913
26913
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
@@ -27123,7 +27123,7 @@ var TypeTranslatorVisitor = class {
|
|
|
27123
27123
|
}
|
|
27124
27124
|
};
|
|
27125
27125
|
|
|
27126
|
-
// bazel-out/
|
|
27126
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
27127
27127
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
27128
27128
|
var PureAnnotation;
|
|
27129
27129
|
(function(PureAnnotation2) {
|
|
@@ -27306,7 +27306,7 @@ function attachComments(statement, leadingComments) {
|
|
|
27306
27306
|
}
|
|
27307
27307
|
}
|
|
27308
27308
|
|
|
27309
|
-
// bazel-out/
|
|
27309
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
27310
27310
|
function translateExpression(expression, imports, options = {}) {
|
|
27311
27311
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
27312
27312
|
}
|
|
@@ -27314,7 +27314,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
27314
27314
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
27315
27315
|
}
|
|
27316
27316
|
|
|
27317
|
-
// bazel-out/
|
|
27317
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
27318
27318
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
27319
27319
|
function addImports(importManager, sf, extraStatements = []) {
|
|
27320
27320
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -27350,7 +27350,7 @@ function isImportStatement(stmt) {
|
|
|
27350
27350
|
return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
|
|
27351
27351
|
}
|
|
27352
27352
|
|
|
27353
|
-
// bazel-out/
|
|
27353
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
27354
27354
|
var DtsTransformRegistry = class {
|
|
27355
27355
|
constructor() {
|
|
27356
27356
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -27497,10 +27497,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
27497
27497
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
27498
27498
|
}
|
|
27499
27499
|
|
|
27500
|
-
// bazel-out/
|
|
27500
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
27501
27501
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
27502
27502
|
|
|
27503
|
-
// bazel-out/
|
|
27503
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
27504
27504
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
27505
27505
|
function visit(node, visitor, context) {
|
|
27506
27506
|
return visitor._visit(node, context);
|
|
@@ -27561,7 +27561,7 @@ var Visitor = class {
|
|
|
27561
27561
|
}
|
|
27562
27562
|
};
|
|
27563
27563
|
|
|
27564
|
-
// bazel-out/
|
|
27564
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
27565
27565
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
27566
27566
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
27567
27567
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -27772,7 +27772,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
27772
27772
|
return array;
|
|
27773
27773
|
}
|
|
27774
27774
|
|
|
27775
|
-
// bazel-out/
|
|
27775
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
27776
27776
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
27777
27777
|
var EMPTY_OBJECT = {};
|
|
27778
27778
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -28335,7 +28335,7 @@ function toR3InputMetadata(mapping) {
|
|
|
28335
28335
|
};
|
|
28336
28336
|
}
|
|
28337
28337
|
|
|
28338
|
-
// bazel-out/
|
|
28338
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
28339
28339
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
28340
28340
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
28341
28341
|
super(decl);
|
|
@@ -28415,7 +28415,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
28415
28415
|
return isSymbolEqual(current, previous);
|
|
28416
28416
|
}
|
|
28417
28417
|
|
|
28418
|
-
// bazel-out/
|
|
28418
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
28419
28419
|
var FIELD_DECORATORS = [
|
|
28420
28420
|
"Input",
|
|
28421
28421
|
"Output",
|
|
@@ -28579,10 +28579,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
28579
28579
|
}
|
|
28580
28580
|
};
|
|
28581
28581
|
|
|
28582
|
-
// bazel-out/
|
|
28582
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
28583
28583
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
28584
28584
|
|
|
28585
|
-
// bazel-out/
|
|
28585
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
28586
28586
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
28587
28587
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
28588
28588
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -28649,7 +28649,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
28649
28649
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
28650
28650
|
}
|
|
28651
28651
|
|
|
28652
|
-
// bazel-out/
|
|
28652
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
28653
28653
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
28654
28654
|
constructor(decl, hasProviders) {
|
|
28655
28655
|
super(decl);
|
|
@@ -29186,7 +29186,7 @@ function isSyntheticReference(ref) {
|
|
|
29186
29186
|
return ref.synthetic;
|
|
29187
29187
|
}
|
|
29188
29188
|
|
|
29189
|
-
// bazel-out/
|
|
29189
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
29190
29190
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
29191
29191
|
const name = ref.debugName || "(unknown)";
|
|
29192
29192
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -29209,7 +29209,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
29209
29209
|
return null;
|
|
29210
29210
|
}
|
|
29211
29211
|
|
|
29212
|
-
// bazel-out/
|
|
29212
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
29213
29213
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
29214
29214
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
29215
29215
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -29519,7 +29519,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
29519
29519
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
29520
29520
|
}
|
|
29521
29521
|
|
|
29522
|
-
// bazel-out/
|
|
29522
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
29523
29523
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
29524
29524
|
constructor() {
|
|
29525
29525
|
super(...arguments);
|
|
@@ -29554,7 +29554,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
29554
29554
|
}
|
|
29555
29555
|
};
|
|
29556
29556
|
|
|
29557
|
-
// bazel-out/
|
|
29557
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
29558
29558
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
29559
29559
|
if (value instanceof Map) {
|
|
29560
29560
|
const name = value.get("name");
|
|
@@ -29630,7 +29630,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
29630
29630
|
return false;
|
|
29631
29631
|
}
|
|
29632
29632
|
|
|
29633
|
-
// bazel-out/
|
|
29633
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
29634
29634
|
var EMPTY_ARRAY2 = [];
|
|
29635
29635
|
var ComponentDecoratorHandler = class {
|
|
29636
29636
|
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 +30282,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
30282
30282
|
return diagnostics;
|
|
30283
30283
|
}
|
|
30284
30284
|
|
|
30285
|
-
// bazel-out/
|
|
30285
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
30286
30286
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
30287
30287
|
var InjectableDecoratorHandler = class {
|
|
30288
30288
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, errorOnDuplicateProv = true) {
|
|
@@ -30497,7 +30497,7 @@ function getDep(dep, reflector) {
|
|
|
30497
30497
|
return meta;
|
|
30498
30498
|
}
|
|
30499
30499
|
|
|
30500
|
-
// bazel-out/
|
|
30500
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
30501
30501
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
30502
30502
|
var PipeSymbol = class extends SemanticSymbol {
|
|
30503
30503
|
constructor(decl, name) {
|
|
@@ -30641,7 +30641,7 @@ var PipeDecoratorHandler = class {
|
|
|
30641
30641
|
}
|
|
30642
30642
|
};
|
|
30643
30643
|
|
|
30644
|
-
// bazel-out/
|
|
30644
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
30645
30645
|
var CycleAnalyzer = class {
|
|
30646
30646
|
constructor(importGraph) {
|
|
30647
30647
|
this.importGraph = importGraph;
|
|
@@ -30712,7 +30712,7 @@ var Cycle = class {
|
|
|
30712
30712
|
}
|
|
30713
30713
|
};
|
|
30714
30714
|
|
|
30715
|
-
// bazel-out/
|
|
30715
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
30716
30716
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
30717
30717
|
var ImportGraph = class {
|
|
30718
30718
|
constructor(checker, perf) {
|
|
@@ -30804,7 +30804,7 @@ var Found = class {
|
|
|
30804
30804
|
}
|
|
30805
30805
|
};
|
|
30806
30806
|
|
|
30807
|
-
// bazel-out/
|
|
30807
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
30808
30808
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
30809
30809
|
var FlatIndexGenerator = class {
|
|
30810
30810
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -30829,7 +30829,7 @@ export * from '${relativeEntryPoint}';
|
|
|
30829
30829
|
}
|
|
30830
30830
|
};
|
|
30831
30831
|
|
|
30832
|
-
// bazel-out/
|
|
30832
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
30833
30833
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
30834
30834
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
30835
30835
|
let resolvedEntryPoint = null;
|
|
@@ -30845,7 +30845,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
30845
30845
|
return resolvedEntryPoint;
|
|
30846
30846
|
}
|
|
30847
30847
|
|
|
30848
|
-
// bazel-out/
|
|
30848
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
30849
30849
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
30850
30850
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
30851
30851
|
const diagnostics = [];
|
|
@@ -30925,7 +30925,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
30925
30925
|
}
|
|
30926
30926
|
}
|
|
30927
30927
|
|
|
30928
|
-
// bazel-out/
|
|
30928
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
30929
30929
|
var ReferenceGraph = class {
|
|
30930
30930
|
constructor() {
|
|
30931
30931
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -30979,7 +30979,7 @@ var ReferenceGraph = class {
|
|
|
30979
30979
|
}
|
|
30980
30980
|
};
|
|
30981
30981
|
|
|
30982
|
-
// bazel-out/
|
|
30982
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
30983
30983
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
30984
30984
|
var UpdateMode;
|
|
30985
30985
|
(function(UpdateMode2) {
|
|
@@ -30987,13 +30987,13 @@ var UpdateMode;
|
|
|
30987
30987
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
30988
30988
|
})(UpdateMode || (UpdateMode = {}));
|
|
30989
30989
|
|
|
30990
|
-
// bazel-out/
|
|
30990
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
30991
30991
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
30992
30992
|
|
|
30993
|
-
// bazel-out/
|
|
30993
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
30994
30994
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
30995
30995
|
|
|
30996
|
-
// bazel-out/
|
|
30996
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
30997
30997
|
var NgExtension = Symbol("NgExtension");
|
|
30998
30998
|
function isExtended(sf) {
|
|
30999
30999
|
return sf[NgExtension] !== void 0;
|
|
@@ -31053,13 +31053,13 @@ function retagTsFile(sf) {
|
|
|
31053
31053
|
}
|
|
31054
31054
|
}
|
|
31055
31055
|
|
|
31056
|
-
// bazel-out/
|
|
31056
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
31057
31057
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
31058
31058
|
function makeShimFileName(fileName, suffix) {
|
|
31059
31059
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
31060
31060
|
}
|
|
31061
31061
|
|
|
31062
|
-
// bazel-out/
|
|
31062
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
31063
31063
|
var ShimAdapter = class {
|
|
31064
31064
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
31065
31065
|
this.delegate = delegate;
|
|
@@ -31154,7 +31154,7 @@ var ShimAdapter = class {
|
|
|
31154
31154
|
}
|
|
31155
31155
|
};
|
|
31156
31156
|
|
|
31157
|
-
// bazel-out/
|
|
31157
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
31158
31158
|
var ShimReferenceTagger = class {
|
|
31159
31159
|
constructor(shimExtensions) {
|
|
31160
31160
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -31188,7 +31188,7 @@ var ShimReferenceTagger = class {
|
|
|
31188
31188
|
}
|
|
31189
31189
|
};
|
|
31190
31190
|
|
|
31191
|
-
// bazel-out/
|
|
31191
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
31192
31192
|
var DelegatingCompilerHost = class {
|
|
31193
31193
|
constructor(delegate) {
|
|
31194
31194
|
this.delegate = delegate;
|
|
@@ -31301,7 +31301,7 @@ var TsCreateProgramDriver = class {
|
|
|
31301
31301
|
}
|
|
31302
31302
|
};
|
|
31303
31303
|
|
|
31304
|
-
// bazel-out/
|
|
31304
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
31305
31305
|
var FileDependencyGraph = class {
|
|
31306
31306
|
constructor() {
|
|
31307
31307
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -31368,7 +31368,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
31368
31368
|
return false;
|
|
31369
31369
|
}
|
|
31370
31370
|
|
|
31371
|
-
// bazel-out/
|
|
31371
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
31372
31372
|
var IncrementalStateKind;
|
|
31373
31373
|
(function(IncrementalStateKind2) {
|
|
31374
31374
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -31376,7 +31376,7 @@ var IncrementalStateKind;
|
|
|
31376
31376
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
31377
31377
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
31378
31378
|
|
|
31379
|
-
// bazel-out/
|
|
31379
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
31380
31380
|
var PhaseKind;
|
|
31381
31381
|
(function(PhaseKind2) {
|
|
31382
31382
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -31577,7 +31577,7 @@ function toOriginalSourceFile(sf) {
|
|
|
31577
31577
|
}
|
|
31578
31578
|
}
|
|
31579
31579
|
|
|
31580
|
-
// bazel-out/
|
|
31580
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
31581
31581
|
var TrackedIncrementalBuildStrategy = class {
|
|
31582
31582
|
constructor() {
|
|
31583
31583
|
this.state = null;
|
|
@@ -31598,7 +31598,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
31598
31598
|
};
|
|
31599
31599
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
31600
31600
|
|
|
31601
|
-
// bazel-out/
|
|
31601
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
31602
31602
|
var IdentifierKind;
|
|
31603
31603
|
(function(IdentifierKind2) {
|
|
31604
31604
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -31616,7 +31616,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
31616
31616
|
}
|
|
31617
31617
|
};
|
|
31618
31618
|
|
|
31619
|
-
// bazel-out/
|
|
31619
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
31620
31620
|
var IndexingContext = class {
|
|
31621
31621
|
constructor() {
|
|
31622
31622
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -31626,7 +31626,7 @@ var IndexingContext = class {
|
|
|
31626
31626
|
}
|
|
31627
31627
|
};
|
|
31628
31628
|
|
|
31629
|
-
// bazel-out/
|
|
31629
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
31630
31630
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
31631
31631
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
31632
31632
|
super();
|
|
@@ -31862,7 +31862,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
31862
31862
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
31863
31863
|
}
|
|
31864
31864
|
|
|
31865
|
-
// bazel-out/
|
|
31865
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
31866
31866
|
function generateAnalysis(context) {
|
|
31867
31867
|
const analysis = /* @__PURE__ */ new Map();
|
|
31868
31868
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -31898,7 +31898,7 @@ function generateAnalysis(context) {
|
|
|
31898
31898
|
return analysis;
|
|
31899
31899
|
}
|
|
31900
31900
|
|
|
31901
|
-
// bazel-out/
|
|
31901
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
31902
31902
|
var NgModuleIndexImpl = class {
|
|
31903
31903
|
constructor(metaReader, localReader) {
|
|
31904
31904
|
this.metaReader = metaReader;
|
|
@@ -31987,7 +31987,7 @@ var NgModuleIndexImpl = class {
|
|
|
31987
31987
|
}
|
|
31988
31988
|
};
|
|
31989
31989
|
|
|
31990
|
-
// bazel-out/
|
|
31990
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
31991
31991
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
31992
31992
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
31993
31993
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -32135,7 +32135,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
32135
32135
|
};
|
|
32136
32136
|
}
|
|
32137
32137
|
|
|
32138
|
-
// bazel-out/
|
|
32138
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
32139
32139
|
var StandaloneComponentScopeReader = class {
|
|
32140
32140
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
32141
32141
|
this.metaReader = metaReader;
|
|
@@ -32213,21 +32213,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
32213
32213
|
}
|
|
32214
32214
|
};
|
|
32215
32215
|
|
|
32216
|
-
// bazel-out/
|
|
32216
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
32217
32217
|
var OptimizeFor;
|
|
32218
32218
|
(function(OptimizeFor2) {
|
|
32219
32219
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
32220
32220
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
32221
32221
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
32222
32222
|
|
|
32223
|
-
// bazel-out/
|
|
32223
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
32224
32224
|
var CompletionKind;
|
|
32225
32225
|
(function(CompletionKind2) {
|
|
32226
32226
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
32227
32227
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
32228
32228
|
})(CompletionKind || (CompletionKind = {}));
|
|
32229
32229
|
|
|
32230
|
-
// bazel-out/
|
|
32230
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
32231
32231
|
var PotentialImportKind;
|
|
32232
32232
|
(function(PotentialImportKind2) {
|
|
32233
32233
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -32239,7 +32239,7 @@ var PotentialImportMode;
|
|
|
32239
32239
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
32240
32240
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
32241
32241
|
|
|
32242
|
-
// bazel-out/
|
|
32242
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
32243
32243
|
var SymbolKind;
|
|
32244
32244
|
(function(SymbolKind2) {
|
|
32245
32245
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -32255,7 +32255,7 @@ var SymbolKind;
|
|
|
32255
32255
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
32256
32256
|
})(SymbolKind || (SymbolKind = {}));
|
|
32257
32257
|
|
|
32258
|
-
// bazel-out/
|
|
32258
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
32259
32259
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
32260
32260
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
32261
32261
|
var _a2;
|
|
@@ -32362,7 +32362,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
32362
32362
|
return import_typescript66.default.createSourceFile(fileName, template2, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
|
|
32363
32363
|
}
|
|
32364
32364
|
|
|
32365
|
-
// bazel-out/
|
|
32365
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
32366
32366
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
32367
32367
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
32368
32368
|
function getTemplateId(clazz) {
|
|
@@ -32379,10 +32379,10 @@ function allocateTemplateId(sf) {
|
|
|
32379
32379
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
32380
32380
|
}
|
|
32381
32381
|
|
|
32382
|
-
// bazel-out/
|
|
32382
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
32383
32383
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
32384
32384
|
|
|
32385
|
-
// bazel-out/
|
|
32385
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
32386
32386
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
32387
32387
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
32388
32388
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -32511,7 +32511,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
32511
32511
|
}) || false;
|
|
32512
32512
|
}
|
|
32513
32513
|
|
|
32514
|
-
// bazel-out/
|
|
32514
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
32515
32515
|
var CompletionEngine = class {
|
|
32516
32516
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
32517
32517
|
this.tcb = tcb;
|
|
@@ -32668,10 +32668,10 @@ var CompletionEngine = class {
|
|
|
32668
32668
|
}
|
|
32669
32669
|
};
|
|
32670
32670
|
|
|
32671
|
-
// bazel-out/
|
|
32671
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
32672
32672
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
32673
32673
|
|
|
32674
|
-
// bazel-out/
|
|
32674
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
32675
32675
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
32676
32676
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
32677
32677
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -32723,10 +32723,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
32723
32723
|
}
|
|
32724
32724
|
};
|
|
32725
32725
|
|
|
32726
|
-
// bazel-out/
|
|
32726
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
32727
32727
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
32728
32728
|
|
|
32729
|
-
// bazel-out/
|
|
32729
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
32730
32730
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
32731
32731
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
32732
32732
|
import_typescript70.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -32800,16 +32800,16 @@ function isAccessExpression(node) {
|
|
|
32800
32800
|
return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
|
|
32801
32801
|
}
|
|
32802
32802
|
|
|
32803
|
-
// bazel-out/
|
|
32803
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
32804
32804
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
32805
32805
|
|
|
32806
|
-
// bazel-out/
|
|
32806
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
32807
32807
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
32808
32808
|
|
|
32809
|
-
// bazel-out/
|
|
32809
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
32810
32810
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
32811
32811
|
|
|
32812
|
-
// bazel-out/
|
|
32812
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
32813
32813
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
32814
32814
|
var INELIGIBLE = {};
|
|
32815
32815
|
function canEmitType(type, canEmit) {
|
|
@@ -32884,7 +32884,7 @@ var TypeEmitter = class {
|
|
|
32884
32884
|
}
|
|
32885
32885
|
};
|
|
32886
32886
|
|
|
32887
|
-
// bazel-out/
|
|
32887
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
32888
32888
|
var TypeParameterEmitter = class {
|
|
32889
32889
|
constructor(typeParameters, reflector) {
|
|
32890
32890
|
this.typeParameters = typeParameters;
|
|
@@ -32961,7 +32961,7 @@ var TypeParameterEmitter = class {
|
|
|
32961
32961
|
}
|
|
32962
32962
|
};
|
|
32963
32963
|
|
|
32964
|
-
// bazel-out/
|
|
32964
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
32965
32965
|
var TcbInliningRequirement;
|
|
32966
32966
|
(function(TcbInliningRequirement2) {
|
|
32967
32967
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -33041,7 +33041,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
33041
33041
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
33042
33042
|
}
|
|
33043
33043
|
|
|
33044
|
-
// bazel-out/
|
|
33044
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
33045
33045
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
33046
33046
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
33047
33047
|
const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -33152,7 +33152,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
33152
33152
|
});
|
|
33153
33153
|
}
|
|
33154
33154
|
|
|
33155
|
-
// bazel-out/
|
|
33155
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
33156
33156
|
var Environment = class {
|
|
33157
33157
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
33158
33158
|
this.config = config;
|
|
@@ -33246,7 +33246,7 @@ var Environment = class {
|
|
|
33246
33246
|
}
|
|
33247
33247
|
};
|
|
33248
33248
|
|
|
33249
|
-
// bazel-out/
|
|
33249
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
33250
33250
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
33251
33251
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
33252
33252
|
constructor(resolver) {
|
|
@@ -33381,7 +33381,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
33381
33381
|
});
|
|
33382
33382
|
}
|
|
33383
33383
|
|
|
33384
|
-
// bazel-out/
|
|
33384
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
33385
33385
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
33386
33386
|
var TypeCheckShimGenerator = class {
|
|
33387
33387
|
constructor() {
|
|
@@ -33399,10 +33399,10 @@ var TypeCheckShimGenerator = class {
|
|
|
33399
33399
|
}
|
|
33400
33400
|
};
|
|
33401
33401
|
|
|
33402
|
-
// bazel-out/
|
|
33402
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
33403
33403
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
33404
33404
|
|
|
33405
|
-
// bazel-out/
|
|
33405
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
33406
33406
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
33407
33407
|
function wrapForDiagnostics(expr) {
|
|
33408
33408
|
return import_typescript79.default.factory.createParenthesizedExpression(expr);
|
|
@@ -33447,7 +33447,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
33447
33447
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
33448
33448
|
}
|
|
33449
33449
|
|
|
33450
|
-
// bazel-out/
|
|
33450
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
33451
33451
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
33452
33452
|
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
33453
|
var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
|
|
@@ -33779,7 +33779,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
33779
33779
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
33780
33780
|
})();
|
|
33781
33781
|
|
|
33782
|
-
// bazel-out/
|
|
33782
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
33783
33783
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
33784
33784
|
constructor(templateId, boundTarget, oob) {
|
|
33785
33785
|
super();
|
|
@@ -33802,7 +33802,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
|
33802
33802
|
}
|
|
33803
33803
|
};
|
|
33804
33804
|
|
|
33805
|
-
// bazel-out/
|
|
33805
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
33806
33806
|
var TcbGenericContextBehavior;
|
|
33807
33807
|
(function(TcbGenericContextBehavior2) {
|
|
33808
33808
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -34929,7 +34929,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
34929
34929
|
}
|
|
34930
34930
|
};
|
|
34931
34931
|
|
|
34932
|
-
// bazel-out/
|
|
34932
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
34933
34933
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
34934
34934
|
var TypeCheckFile = class extends Environment {
|
|
34935
34935
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -34965,7 +34965,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
34965
34965
|
}
|
|
34966
34966
|
};
|
|
34967
34967
|
|
|
34968
|
-
// bazel-out/
|
|
34968
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
34969
34969
|
var InliningMode;
|
|
34970
34970
|
(function(InliningMode2) {
|
|
34971
34971
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -35202,7 +35202,7 @@ function splitStringAtPoints(str, points) {
|
|
|
35202
35202
|
return splits;
|
|
35203
35203
|
}
|
|
35204
35204
|
|
|
35205
|
-
// bazel-out/
|
|
35205
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
35206
35206
|
var LF_CHAR = 10;
|
|
35207
35207
|
var CR_CHAR = 13;
|
|
35208
35208
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -35243,7 +35243,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
35243
35243
|
return low - 1;
|
|
35244
35244
|
}
|
|
35245
35245
|
|
|
35246
|
-
// bazel-out/
|
|
35246
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
35247
35247
|
var TemplateSource = class {
|
|
35248
35248
|
constructor(mapping, file) {
|
|
35249
35249
|
this.mapping = mapping;
|
|
@@ -35294,7 +35294,7 @@ var TemplateSourceManager = class {
|
|
|
35294
35294
|
}
|
|
35295
35295
|
};
|
|
35296
35296
|
|
|
35297
|
-
// bazel-out/
|
|
35297
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
35298
35298
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
35299
35299
|
var SymbolBuilder = class {
|
|
35300
35300
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -35771,7 +35771,7 @@ function sourceSpanEqual(a, b) {
|
|
|
35771
35771
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
35772
35772
|
}
|
|
35773
35773
|
|
|
35774
|
-
// bazel-out/
|
|
35774
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
35775
35775
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
35776
35776
|
var TemplateTypeCheckerImpl = class {
|
|
35777
35777
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -36467,7 +36467,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
36467
36467
|
}
|
|
36468
36468
|
};
|
|
36469
36469
|
|
|
36470
|
-
// bazel-out/
|
|
36470
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
36471
36471
|
var TemplateCheckWithVisitor = class {
|
|
36472
36472
|
run(ctx, component, template2) {
|
|
36473
36473
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -36543,7 +36543,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
36543
36543
|
}
|
|
36544
36544
|
};
|
|
36545
36545
|
|
|
36546
|
-
// bazel-out/
|
|
36546
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
36547
36547
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
36548
36548
|
constructor() {
|
|
36549
36549
|
super(...arguments);
|
|
@@ -36568,7 +36568,7 @@ var factory = {
|
|
|
36568
36568
|
create: () => new InvalidBananaInBoxCheck()
|
|
36569
36569
|
};
|
|
36570
36570
|
|
|
36571
|
-
// bazel-out/
|
|
36571
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
36572
36572
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
36573
36573
|
["ngIf", "NgIf"],
|
|
36574
36574
|
["ngFor", "NgFor"],
|
|
@@ -36612,7 +36612,7 @@ var factory2 = {
|
|
|
36612
36612
|
}
|
|
36613
36613
|
};
|
|
36614
36614
|
|
|
36615
|
-
// bazel-out/
|
|
36615
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
36616
36616
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
36617
36617
|
constructor() {
|
|
36618
36618
|
super(...arguments);
|
|
@@ -36644,7 +36644,7 @@ var factory3 = {
|
|
|
36644
36644
|
create: () => new MissingNgForOfLetCheck()
|
|
36645
36645
|
};
|
|
36646
36646
|
|
|
36647
|
-
// bazel-out/
|
|
36647
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
36648
36648
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
36649
36649
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
36650
36650
|
constructor() {
|
|
@@ -36688,7 +36688,7 @@ var factory4 = {
|
|
|
36688
36688
|
}
|
|
36689
36689
|
};
|
|
36690
36690
|
|
|
36691
|
-
// bazel-out/
|
|
36691
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
36692
36692
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
36693
36693
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
36694
36694
|
constructor() {
|
|
@@ -36733,7 +36733,7 @@ var factory5 = {
|
|
|
36733
36733
|
}
|
|
36734
36734
|
};
|
|
36735
36735
|
|
|
36736
|
-
// bazel-out/
|
|
36736
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
36737
36737
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
36738
36738
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
36739
36739
|
constructor() {
|
|
@@ -36756,7 +36756,7 @@ var factory6 = {
|
|
|
36756
36756
|
create: () => new SuffixNotSupportedCheck()
|
|
36757
36757
|
};
|
|
36758
36758
|
|
|
36759
|
-
// bazel-out/
|
|
36759
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
36760
36760
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
36761
36761
|
constructor() {
|
|
36762
36762
|
super(...arguments);
|
|
@@ -36794,10 +36794,10 @@ var factory7 = {
|
|
|
36794
36794
|
create: () => new TextAttributeNotBindingSpec()
|
|
36795
36795
|
};
|
|
36796
36796
|
|
|
36797
|
-
// bazel-out/
|
|
36797
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
36798
36798
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
36799
36799
|
|
|
36800
|
-
// bazel-out/
|
|
36800
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
36801
36801
|
var DiagnosticCategoryLabel;
|
|
36802
36802
|
(function(DiagnosticCategoryLabel2) {
|
|
36803
36803
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -36805,7 +36805,7 @@ var DiagnosticCategoryLabel;
|
|
|
36805
36805
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
36806
36806
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
36807
36807
|
|
|
36808
|
-
// bazel-out/
|
|
36808
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
36809
36809
|
var ExtendedTemplateCheckerImpl = class {
|
|
36810
36810
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
36811
36811
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -36857,7 +36857,7 @@ function assertNever(value) {
|
|
|
36857
36857
|
${value}`);
|
|
36858
36858
|
}
|
|
36859
36859
|
|
|
36860
|
-
// bazel-out/
|
|
36860
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
36861
36861
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
36862
36862
|
factory,
|
|
36863
36863
|
factory4,
|
|
@@ -36868,7 +36868,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
36868
36868
|
factory6
|
|
36869
36869
|
];
|
|
36870
36870
|
|
|
36871
|
-
// bazel-out/
|
|
36871
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
36872
36872
|
var CompilationTicketKind;
|
|
36873
36873
|
(function(CompilationTicketKind2) {
|
|
36874
36874
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -37591,7 +37591,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
37591
37591
|
return versions;
|
|
37592
37592
|
}
|
|
37593
37593
|
|
|
37594
|
-
// bazel-out/
|
|
37594
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
37595
37595
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
37596
37596
|
var DelegatingCompilerHost2 = class {
|
|
37597
37597
|
constructor(delegate) {
|
|
@@ -37724,7 +37724,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
37724
37724
|
}
|
|
37725
37725
|
};
|
|
37726
37726
|
|
|
37727
|
-
// bazel-out/
|
|
37727
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
37728
37728
|
var NgtscProgram = class {
|
|
37729
37729
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
37730
37730
|
this.options = options;
|
|
@@ -37942,21 +37942,21 @@ function mergeEmitResults(emitResults) {
|
|
|
37942
37942
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
37943
37943
|
}
|
|
37944
37944
|
|
|
37945
|
-
// bazel-out/
|
|
37945
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
37946
37946
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
37947
37947
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
37948
37948
|
}
|
|
37949
37949
|
|
|
37950
|
-
// bazel-out/
|
|
37950
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
37951
37951
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
37952
37952
|
|
|
37953
|
-
// bazel-out/
|
|
37953
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
37954
37954
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
37955
37955
|
|
|
37956
|
-
// bazel-out/
|
|
37956
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
37957
37957
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
37958
37958
|
|
|
37959
|
-
// bazel-out/
|
|
37959
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
37960
37960
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
37961
37961
|
ngDevMode: false,
|
|
37962
37962
|
ngI18nClosureMode: false
|
|
@@ -37965,7 +37965,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
37965
37965
|
ngJitMode: false
|
|
37966
37966
|
});
|
|
37967
37967
|
|
|
37968
|
-
// bazel-out/
|
|
37968
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
37969
37969
|
var LogLevel;
|
|
37970
37970
|
(function(LogLevel2) {
|
|
37971
37971
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -37974,7 +37974,7 @@ var LogLevel;
|
|
|
37974
37974
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
37975
37975
|
})(LogLevel || (LogLevel = {}));
|
|
37976
37976
|
|
|
37977
|
-
// bazel-out/
|
|
37977
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
37978
37978
|
var RESET = "\x1B[0m";
|
|
37979
37979
|
var RED = "\x1B[31m";
|
|
37980
37980
|
var YELLOW = "\x1B[33m";
|
|
@@ -37983,18 +37983,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
37983
37983
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
37984
37984
|
var ERROR = `${RED}Error:${RESET}`;
|
|
37985
37985
|
|
|
37986
|
-
// bazel-out/
|
|
37986
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
37987
37987
|
setFileSystem(new NodeJSFileSystem());
|
|
37988
37988
|
|
|
37989
|
-
// bazel-out/
|
|
37989
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
37990
37990
|
var import_fs2 = require("fs");
|
|
37991
37991
|
var import_path8 = require("path");
|
|
37992
37992
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
37993
37993
|
|
|
37994
|
-
// bazel-out/
|
|
37994
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
37995
37995
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
37996
37996
|
|
|
37997
|
-
// bazel-out/
|
|
37997
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
37998
37998
|
var import_path4 = require("path");
|
|
37999
37999
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
38000
38000
|
var ImportManager2 = class {
|
|
@@ -38178,7 +38178,7 @@ ${text2}`;
|
|
|
38178
38178
|
}
|
|
38179
38179
|
};
|
|
38180
38180
|
|
|
38181
|
-
// bazel-out/
|
|
38181
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
38182
38182
|
var ChangeTracker = class {
|
|
38183
38183
|
constructor(_printer, _importRemapper) {
|
|
38184
38184
|
__publicField(this, "_printer");
|
|
@@ -38234,7 +38234,7 @@ function normalizePath(path3) {
|
|
|
38234
38234
|
return path3.replace(/\\/g, "/");
|
|
38235
38235
|
}
|
|
38236
38236
|
|
|
38237
|
-
// bazel-out/
|
|
38237
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
38238
38238
|
var import_core13 = require("@angular-devkit/core");
|
|
38239
38239
|
function getProjectTsConfigPaths(tree) {
|
|
38240
38240
|
return __async(this, null, function* () {
|
|
@@ -38314,11 +38314,11 @@ function getWorkspace(tree) {
|
|
|
38314
38314
|
});
|
|
38315
38315
|
}
|
|
38316
38316
|
|
|
38317
|
-
// bazel-out/
|
|
38317
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
38318
38318
|
var import_path5 = require("path");
|
|
38319
38319
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
38320
38320
|
|
|
38321
|
-
// bazel-out/
|
|
38321
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
38322
38322
|
var path2 = __toESM(require("path"), 1);
|
|
38323
38323
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
38324
38324
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -38335,7 +38335,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
38335
38335
|
return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
38336
38336
|
}
|
|
38337
38337
|
|
|
38338
|
-
// bazel-out/
|
|
38338
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
38339
38339
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
38340
38340
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
38341
38341
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -38364,13 +38364,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
38364
38364
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
38365
38365
|
}
|
|
38366
38366
|
|
|
38367
|
-
// bazel-out/
|
|
38367
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
38368
38368
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
38369
38369
|
|
|
38370
|
-
// bazel-out/
|
|
38370
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
38371
38371
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
38372
38372
|
|
|
38373
|
-
// bazel-out/
|
|
38373
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
38374
38374
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
38375
38375
|
function getImportOfIdentifier(typeChecker, node) {
|
|
38376
38376
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -38421,7 +38421,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
38421
38421
|
});
|
|
38422
38422
|
}
|
|
38423
38423
|
|
|
38424
|
-
// bazel-out/
|
|
38424
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
38425
38425
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
38426
38426
|
if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
|
|
38427
38427
|
return null;
|
|
@@ -38430,7 +38430,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
38430
38430
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
38431
38431
|
}
|
|
38432
38432
|
|
|
38433
|
-
// bazel-out/
|
|
38433
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
38434
38434
|
function getAngularDecorators(typeChecker, decorators) {
|
|
38435
38435
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
38436
38436
|
node,
|
|
@@ -38440,7 +38440,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
38440
38440
|
}));
|
|
38441
38441
|
}
|
|
38442
38442
|
|
|
38443
|
-
// bazel-out/
|
|
38443
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
38444
38444
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
38445
38445
|
function closestNode(node, predicate) {
|
|
38446
38446
|
let current = node.parent;
|
|
@@ -38453,7 +38453,7 @@ function closestNode(node, predicate) {
|
|
|
38453
38453
|
return null;
|
|
38454
38454
|
}
|
|
38455
38455
|
|
|
38456
|
-
// bazel-out/
|
|
38456
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
38457
38457
|
var import_path6 = require("path");
|
|
38458
38458
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
38459
38459
|
var UniqueItemTracker = class {
|
|
@@ -38629,7 +38629,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
38629
38629
|
}));
|
|
38630
38630
|
}
|
|
38631
38631
|
|
|
38632
|
-
// bazel-out/
|
|
38632
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
38633
38633
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
38634
38634
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
38635
38635
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -38828,14 +38828,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
38828
38828
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
38829
38829
|
}
|
|
38830
38830
|
|
|
38831
|
-
// bazel-out/
|
|
38831
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
38832
38832
|
var import_path7 = require("path");
|
|
38833
38833
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
38834
38834
|
|
|
38835
|
-
// bazel-out/
|
|
38835
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
38836
38836
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
38837
38837
|
|
|
38838
|
-
// bazel-out/
|
|
38838
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
38839
38839
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
38840
38840
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
38841
38841
|
var _a2, _b2;
|
|
@@ -38844,7 +38844,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
38844
38844
|
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
38845
|
}
|
|
38846
38846
|
|
|
38847
|
-
// bazel-out/
|
|
38847
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
38848
38848
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
38849
38849
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
38850
38850
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -39207,7 +39207,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
39207
39207
|
return metadata != null && metadata.isStandalone;
|
|
39208
39208
|
}
|
|
39209
39209
|
|
|
39210
|
-
// bazel-out/
|
|
39210
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
39211
39211
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
39212
39212
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
39213
39213
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -39584,7 +39584,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
39584
39584
|
return false;
|
|
39585
39585
|
}
|
|
39586
39586
|
|
|
39587
|
-
// bazel-out/
|
|
39587
|
+
// bazel-out/darwin-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
39588
39588
|
var MigrationMode;
|
|
39589
39589
|
(function(MigrationMode2) {
|
|
39590
39590
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|