@angular/core 16.0.0-rc.3 → 16.0.0
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/index.mjs +1 -1
- package/esm2022/rxjs-interop/src/to_observable.mjs +2 -2
- package/esm2022/rxjs-interop/src/to_signal.mjs +6 -5
- package/esm2022/src/di/injectable.mjs +1 -2
- package/esm2022/src/di/metadata.mjs +5 -6
- package/esm2022/src/di/metadata_attr.mjs +1 -2
- package/esm2022/src/metadata/di.mjs +4 -5
- package/esm2022/src/metadata/directives.mjs +7 -7
- package/esm2022/src/metadata/ng_module.mjs +1 -2
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +15 -20
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +7 -6
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +6 -9
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +14 -28
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +111 -20
- 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 +356 -349
- 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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-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_arm64-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
|
|
748
748
|
var BigInteger = class {
|
|
749
749
|
static zero() {
|
|
750
750
|
return new BigInteger([0]);
|
|
@@ -836,7 +836,7 @@ var BigIntExponentiation = class {
|
|
|
836
836
|
}
|
|
837
837
|
};
|
|
838
838
|
|
|
839
|
-
// bazel-out/
|
|
839
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
840
840
|
var textEncoder;
|
|
841
841
|
function digest(message) {
|
|
842
842
|
return message.id || computeDigest(message);
|
|
@@ -1099,7 +1099,7 @@ function wordsToDecimalString(hi, lo) {
|
|
|
1099
1099
|
return decimal.toString();
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
-
// bazel-out/
|
|
1102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1103
1103
|
var TypeModifier;
|
|
1104
1104
|
(function(TypeModifier2) {
|
|
1105
1105
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -2084,7 +2084,7 @@ function serializeTags(tags) {
|
|
|
2084
2084
|
return out;
|
|
2085
2085
|
}
|
|
2086
2086
|
|
|
2087
|
-
// bazel-out/
|
|
2087
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
2088
2088
|
var CONSTANT_PREFIX = "_c";
|
|
2089
2089
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
2090
2090
|
var KEY_CONTEXT = {};
|
|
@@ -2253,7 +2253,7 @@ function isLongStringLiteral(expr) {
|
|
|
2253
2253
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2254
2254
|
}
|
|
2255
2255
|
|
|
2256
|
-
// bazel-out/
|
|
2256
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2257
2257
|
var CORE = "@angular/core";
|
|
2258
2258
|
var _Identifiers = class {
|
|
2259
2259
|
};
|
|
@@ -2808,7 +2808,7 @@ var Identifiers = _Identifiers;
|
|
|
2808
2808
|
_Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
|
|
2809
2809
|
})();
|
|
2810
2810
|
|
|
2811
|
-
// bazel-out/
|
|
2811
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2812
2812
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2813
2813
|
function dashCaseToCamelCase(input) {
|
|
2814
2814
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2896,7 +2896,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
2896
2896
|
return [truthy, falsy];
|
|
2897
2897
|
}
|
|
2898
2898
|
|
|
2899
|
-
// bazel-out/
|
|
2899
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2900
2900
|
var VERSION = 3;
|
|
2901
2901
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2902
2902
|
var SourceMapGenerator = class {
|
|
@@ -3025,7 +3025,7 @@ function toBase64Digit(value) {
|
|
|
3025
3025
|
return B64_DIGITS[value];
|
|
3026
3026
|
}
|
|
3027
3027
|
|
|
3028
|
-
// bazel-out/
|
|
3028
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
3029
3029
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
3030
3030
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
3031
3031
|
var _INDENT_WITH = " ";
|
|
@@ -3500,7 +3500,7 @@ function _createIndent(count) {
|
|
|
3500
3500
|
return res;
|
|
3501
3501
|
}
|
|
3502
3502
|
|
|
3503
|
-
// bazel-out/
|
|
3503
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3504
3504
|
function typeWithParameters(type, numParams) {
|
|
3505
3505
|
if (numParams === 0) {
|
|
3506
3506
|
return expressionType(type);
|
|
@@ -3568,7 +3568,7 @@ function generateForwardRef(expr) {
|
|
|
3568
3568
|
return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
|
|
3569
3569
|
}
|
|
3570
3570
|
|
|
3571
|
-
// bazel-out/
|
|
3571
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3572
3572
|
var R3FactoryDelegateType;
|
|
3573
3573
|
(function(R3FactoryDelegateType2) {
|
|
3574
3574
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3713,7 +3713,7 @@ function getInjectFn(target) {
|
|
|
3713
3713
|
}
|
|
3714
3714
|
}
|
|
3715
3715
|
|
|
3716
|
-
// bazel-out/
|
|
3716
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3717
3717
|
var Comment = class {
|
|
3718
3718
|
constructor(value, sourceSpan) {
|
|
3719
3719
|
this.value = value;
|
|
@@ -3935,7 +3935,7 @@ function visitAll(visitor, nodes) {
|
|
|
3935
3935
|
return result;
|
|
3936
3936
|
}
|
|
3937
3937
|
|
|
3938
|
-
// bazel-out/
|
|
3938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
3939
3939
|
var Message = class {
|
|
3940
3940
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
3941
3941
|
this.nodes = nodes;
|
|
@@ -4098,7 +4098,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4098
4098
|
}
|
|
4099
4099
|
};
|
|
4100
4100
|
|
|
4101
|
-
// bazel-out/
|
|
4101
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
4102
4102
|
var Serializer = class {
|
|
4103
4103
|
createNameMapper(message) {
|
|
4104
4104
|
return null;
|
|
@@ -4150,7 +4150,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
4150
4150
|
}
|
|
4151
4151
|
};
|
|
4152
4152
|
|
|
4153
|
-
// bazel-out/
|
|
4153
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4154
4154
|
var _Visitor = class {
|
|
4155
4155
|
visitTag(tag) {
|
|
4156
4156
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4238,7 +4238,7 @@ function escapeXml(text2) {
|
|
|
4238
4238
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
4239
4239
|
}
|
|
4240
4240
|
|
|
4241
|
-
// bazel-out/
|
|
4241
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4242
4242
|
var _MESSAGES_TAG = "messagebundle";
|
|
4243
4243
|
var _MESSAGE_TAG = "msg";
|
|
4244
4244
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -4381,7 +4381,7 @@ function toPublicName(internalName) {
|
|
|
4381
4381
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4382
4382
|
}
|
|
4383
4383
|
|
|
4384
|
-
// bazel-out/
|
|
4384
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4385
4385
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
4386
4386
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
4387
4387
|
var I18N_ATTR = "i18n";
|
|
@@ -4483,7 +4483,7 @@ function declareI18nVariable(variable2) {
|
|
|
4483
4483
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
4484
4484
|
}
|
|
4485
4485
|
|
|
4486
|
-
// bazel-out/
|
|
4486
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4487
4487
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4488
4488
|
var TEMPORARY_NAME = "_t";
|
|
4489
4489
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4691,7 +4691,7 @@ function getInstructionStatements(instructions) {
|
|
|
4691
4691
|
return statements;
|
|
4692
4692
|
}
|
|
4693
4693
|
|
|
4694
|
-
// bazel-out/
|
|
4694
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4695
4695
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4696
4696
|
let result = null;
|
|
4697
4697
|
const factoryMeta = {
|
|
@@ -4779,7 +4779,7 @@ function createFactoryFunction(type) {
|
|
|
4779
4779
|
return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
|
|
4780
4780
|
}
|
|
4781
4781
|
|
|
4782
|
-
// bazel-out/
|
|
4782
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4783
4783
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4784
4784
|
/^\s*$/,
|
|
4785
4785
|
/[<>]/,
|
|
@@ -4801,7 +4801,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4801
4801
|
}
|
|
4802
4802
|
}
|
|
4803
4803
|
|
|
4804
|
-
// bazel-out/
|
|
4804
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
|
|
4805
4805
|
var InterpolationConfig = class {
|
|
4806
4806
|
static fromArray(markers) {
|
|
4807
4807
|
if (!markers) {
|
|
@@ -4817,7 +4817,7 @@ var InterpolationConfig = class {
|
|
|
4817
4817
|
};
|
|
4818
4818
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4819
4819
|
|
|
4820
|
-
// bazel-out/
|
|
4820
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4821
4821
|
var $EOF = 0;
|
|
4822
4822
|
var $BSPACE = 8;
|
|
4823
4823
|
var $TAB = 9;
|
|
@@ -4898,7 +4898,7 @@ function isQuote(code) {
|
|
|
4898
4898
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4899
4899
|
}
|
|
4900
4900
|
|
|
4901
|
-
// bazel-out/
|
|
4901
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4902
4902
|
var ParseLocation = class {
|
|
4903
4903
|
constructor(file, offset, line, col) {
|
|
4904
4904
|
this.file = file;
|
|
@@ -5045,7 +5045,7 @@ function sanitizeIdentifier(name) {
|
|
|
5045
5045
|
return name.replace(/\W/g, "_");
|
|
5046
5046
|
}
|
|
5047
5047
|
|
|
5048
|
-
// bazel-out/
|
|
5048
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5049
5049
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5050
5050
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5051
5051
|
constructor() {
|
|
@@ -5116,7 +5116,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5116
5116
|
}
|
|
5117
5117
|
};
|
|
5118
5118
|
|
|
5119
|
-
// bazel-out/
|
|
5119
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5120
5120
|
var policy;
|
|
5121
5121
|
function getPolicy() {
|
|
5122
5122
|
if (policy === void 0) {
|
|
@@ -5153,7 +5153,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5153
5153
|
return fn2.bind(_global);
|
|
5154
5154
|
}
|
|
5155
5155
|
|
|
5156
|
-
// bazel-out/
|
|
5156
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5157
5157
|
var JitEvaluator = class {
|
|
5158
5158
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5159
5159
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5244,7 +5244,7 @@ function isUseStrictStatement(statement) {
|
|
|
5244
5244
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5245
5245
|
}
|
|
5246
5246
|
|
|
5247
|
-
// bazel-out/
|
|
5247
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5248
5248
|
function compileInjector(meta) {
|
|
5249
5249
|
const definitionMap = new DefinitionMap();
|
|
5250
5250
|
if (meta.providers !== null) {
|
|
@@ -5261,7 +5261,7 @@ function createInjectorType(meta) {
|
|
|
5261
5261
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5262
5262
|
}
|
|
5263
5263
|
|
|
5264
|
-
// bazel-out/
|
|
5264
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5265
5265
|
var R3JitReflector = class {
|
|
5266
5266
|
constructor(context) {
|
|
5267
5267
|
this.context = context;
|
|
@@ -5277,7 +5277,7 @@ var R3JitReflector = class {
|
|
|
5277
5277
|
}
|
|
5278
5278
|
};
|
|
5279
5279
|
|
|
5280
|
-
// bazel-out/
|
|
5280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5281
5281
|
var R3SelectorScopeMode;
|
|
5282
5282
|
(function(R3SelectorScopeMode2) {
|
|
5283
5283
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5390,7 +5390,7 @@ function tupleOfTypes(types) {
|
|
|
5390
5390
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5391
5391
|
}
|
|
5392
5392
|
|
|
5393
|
-
// bazel-out/
|
|
5393
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5394
5394
|
function compilePipeFromMetadata(metadata) {
|
|
5395
5395
|
const definitionMapValues = [];
|
|
5396
5396
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5411,7 +5411,7 @@ function createPipeType(metadata) {
|
|
|
5411
5411
|
]));
|
|
5412
5412
|
}
|
|
5413
5413
|
|
|
5414
|
-
// bazel-out/
|
|
5414
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5415
5415
|
var R3TemplateDependencyKind;
|
|
5416
5416
|
(function(R3TemplateDependencyKind2) {
|
|
5417
5417
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5419,7 +5419,7 @@ var R3TemplateDependencyKind;
|
|
|
5419
5419
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5420
5420
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5421
5421
|
|
|
5422
|
-
// bazel-out/
|
|
5422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
5423
5423
|
var ParserError = class {
|
|
5424
5424
|
constructor(message, input, errLocation, ctxLocation) {
|
|
5425
5425
|
this.input = input;
|
|
@@ -6085,7 +6085,7 @@ var BoundElementProperty = class {
|
|
|
6085
6085
|
}
|
|
6086
6086
|
};
|
|
6087
6087
|
|
|
6088
|
-
// bazel-out/
|
|
6088
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
6089
6089
|
var _EventHandlerVars = class {
|
|
6090
6090
|
};
|
|
6091
6091
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -6706,7 +6706,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6706
6706
|
}
|
|
6707
6707
|
};
|
|
6708
6708
|
|
|
6709
|
-
// bazel-out/
|
|
6709
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6710
6710
|
var _SECURITY_SCHEMA;
|
|
6711
6711
|
function SECURITY_SCHEMA() {
|
|
6712
6712
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6764,7 +6764,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6764
6764
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6765
6765
|
}
|
|
6766
6766
|
|
|
6767
|
-
// bazel-out/
|
|
6767
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6768
6768
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6769
6769
|
"inherit",
|
|
6770
6770
|
"initial",
|
|
@@ -7224,7 +7224,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7224
7224
|
}
|
|
7225
7225
|
}
|
|
7226
7226
|
|
|
7227
|
-
// bazel-out/
|
|
7227
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
7228
7228
|
var TagContentType;
|
|
7229
7229
|
(function(TagContentType2) {
|
|
7230
7230
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -7257,7 +7257,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
7257
7257
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
7258
7258
|
}
|
|
7259
7259
|
|
|
7260
|
-
// bazel-out/
|
|
7260
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/element.mjs
|
|
7261
7261
|
var ElementAttributeKind;
|
|
7262
7262
|
(function(ElementAttributeKind2) {
|
|
7263
7263
|
ElementAttributeKind2[ElementAttributeKind2["Attribute"] = 0] = "Attribute";
|
|
@@ -7334,7 +7334,7 @@ function assertIsElementAttributes(attrs) {
|
|
|
7334
7334
|
}
|
|
7335
7335
|
}
|
|
7336
7336
|
|
|
7337
|
-
// bazel-out/
|
|
7337
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7338
7338
|
var OpKind;
|
|
7339
7339
|
(function(OpKind2) {
|
|
7340
7340
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -7368,7 +7368,7 @@ var SemanticVariableKind;
|
|
|
7368
7368
|
SemanticVariableKind2[SemanticVariableKind2["SavedView"] = 2] = "SavedView";
|
|
7369
7369
|
})(SemanticVariableKind || (SemanticVariableKind = {}));
|
|
7370
7370
|
|
|
7371
|
-
// bazel-out/
|
|
7371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7372
7372
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7373
7373
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7374
7374
|
var UsesSlotIndex = Symbol("UsesSlotIndex");
|
|
@@ -7401,7 +7401,7 @@ function hasUsesSlotIndexTrait(value) {
|
|
|
7401
7401
|
return value[UsesSlotIndex] === true;
|
|
7402
7402
|
}
|
|
7403
7403
|
|
|
7404
|
-
// bazel-out/
|
|
7404
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7405
7405
|
var _a;
|
|
7406
7406
|
var ExpressionBase = class extends Expression {
|
|
7407
7407
|
constructor(sourceSpan = null) {
|
|
@@ -7639,7 +7639,7 @@ function transformExpressionsInStatement(stmt, transform, flags) {
|
|
|
7639
7639
|
}
|
|
7640
7640
|
}
|
|
7641
7641
|
|
|
7642
|
-
// bazel-out/
|
|
7642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
7643
7643
|
var _OpList = class {
|
|
7644
7644
|
constructor() {
|
|
7645
7645
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -7803,7 +7803,7 @@ var OpList = _OpList;
|
|
|
7803
7803
|
_OpList.nextListId = 0;
|
|
7804
7804
|
})();
|
|
7805
7805
|
|
|
7806
|
-
// bazel-out/
|
|
7806
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
7807
7807
|
function createStatementOp(statement) {
|
|
7808
7808
|
return __spreadValues({
|
|
7809
7809
|
kind: OpKind.Statement,
|
|
@@ -7824,7 +7824,7 @@ var NEW_OP = {
|
|
|
7824
7824
|
next: null
|
|
7825
7825
|
};
|
|
7826
7826
|
|
|
7827
|
-
// bazel-out/
|
|
7827
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
7828
7828
|
function createElementStartOp(tag, xref) {
|
|
7829
7829
|
return __spreadValues(__spreadValues({
|
|
7830
7830
|
kind: OpKind.ElementStart,
|
|
@@ -7869,7 +7869,7 @@ function createListenerOp(target, name, tag) {
|
|
|
7869
7869
|
}, NEW_OP), TRAIT_USES_SLOT_INDEX);
|
|
7870
7870
|
}
|
|
7871
7871
|
|
|
7872
|
-
// bazel-out/
|
|
7872
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
7873
7873
|
function createInterpolateTextOp(xref, strings, expressions) {
|
|
7874
7874
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
7875
7875
|
kind: OpKind.InterpolateText,
|
|
@@ -7893,7 +7893,7 @@ function createAdvanceOp(delta) {
|
|
|
7893
7893
|
}, NEW_OP);
|
|
7894
7894
|
}
|
|
7895
7895
|
|
|
7896
|
-
// bazel-out/
|
|
7896
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
7897
7897
|
function phaseConstCollection(cpl) {
|
|
7898
7898
|
for (const [_, view] of cpl.views) {
|
|
7899
7899
|
for (const op of view.create) {
|
|
@@ -7934,7 +7934,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n, projectAs, s
|
|
|
7934
7934
|
return literalArr(attrArray);
|
|
7935
7935
|
}
|
|
7936
7936
|
|
|
7937
|
-
// bazel-out/
|
|
7937
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
7938
7938
|
function phaseEmptyElements(cpl) {
|
|
7939
7939
|
for (const [_, view] of cpl.views) {
|
|
7940
7940
|
for (const op of view.create) {
|
|
@@ -7946,7 +7946,7 @@ function phaseEmptyElements(cpl) {
|
|
|
7946
7946
|
}
|
|
7947
7947
|
}
|
|
7948
7948
|
|
|
7949
|
-
// bazel-out/
|
|
7949
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
7950
7950
|
function phaseGenerateAdvance(cpl) {
|
|
7951
7951
|
for (const [_, view] of cpl.views) {
|
|
7952
7952
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -7978,7 +7978,7 @@ function phaseGenerateAdvance(cpl) {
|
|
|
7978
7978
|
}
|
|
7979
7979
|
}
|
|
7980
7980
|
|
|
7981
|
-
// bazel-out/
|
|
7981
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
7982
7982
|
function element(slot, tag, constIndex, localRefIndex) {
|
|
7983
7983
|
return elementStartBase(Identifiers.element, slot, tag, constIndex, localRefIndex);
|
|
7984
7984
|
}
|
|
@@ -8103,7 +8103,7 @@ function callInterpolation(config, baseArgs, interpolationArgs) {
|
|
|
8103
8103
|
}
|
|
8104
8104
|
}
|
|
8105
8105
|
|
|
8106
|
-
// bazel-out/
|
|
8106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
8107
8107
|
function phaseReify(cpl) {
|
|
8108
8108
|
for (const [_, view] of cpl.views) {
|
|
8109
8109
|
reifyCreateOperations(view, view.create);
|
|
@@ -8228,7 +8228,7 @@ var LookForEventVisitor = class extends RecursiveAstVisitor {
|
|
|
8228
8228
|
}
|
|
8229
8229
|
};
|
|
8230
8230
|
|
|
8231
|
-
// bazel-out/
|
|
8231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
8232
8232
|
function phaseSlotAllocation(cpl) {
|
|
8233
8233
|
const slotMap = /* @__PURE__ */ new Map();
|
|
8234
8234
|
for (const [_, view] of cpl.views) {
|
|
@@ -8268,7 +8268,7 @@ function phaseSlotAllocation(cpl) {
|
|
|
8268
8268
|
}
|
|
8269
8269
|
}
|
|
8270
8270
|
|
|
8271
|
-
// bazel-out/
|
|
8271
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
8272
8272
|
function phaseVarCounting(cpl) {
|
|
8273
8273
|
for (const [_, view] of cpl.views) {
|
|
8274
8274
|
let varCount = 0;
|
|
@@ -8308,7 +8308,7 @@ function varsUsedByIrExpression(expr) {
|
|
|
8308
8308
|
return 0;
|
|
8309
8309
|
}
|
|
8310
8310
|
|
|
8311
|
-
// bazel-out/
|
|
8311
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
8312
8312
|
function phaseNaming(cpl) {
|
|
8313
8313
|
addNamesToView(cpl.root, cpl.componentName, { index: 0 });
|
|
8314
8314
|
}
|
|
@@ -8366,7 +8366,7 @@ function getVariableName(variable2, state) {
|
|
|
8366
8366
|
return variable2.name;
|
|
8367
8367
|
}
|
|
8368
8368
|
|
|
8369
|
-
// bazel-out/
|
|
8369
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
8370
8370
|
function phaseLocalRefs(cpl) {
|
|
8371
8371
|
for (const view of cpl.views.values()) {
|
|
8372
8372
|
for (const op of view.create) {
|
|
@@ -8397,7 +8397,7 @@ function serializeLocalRefs(refs) {
|
|
|
8397
8397
|
return literalArr(constRefs);
|
|
8398
8398
|
}
|
|
8399
8399
|
|
|
8400
|
-
// bazel-out/
|
|
8400
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
8401
8401
|
function phaseGenerateVariables(cpl) {
|
|
8402
8402
|
recursivelyProcessView(cpl.root, null);
|
|
8403
8403
|
}
|
|
@@ -8494,7 +8494,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
8494
8494
|
return newOps;
|
|
8495
8495
|
}
|
|
8496
8496
|
|
|
8497
|
-
// bazel-out/
|
|
8497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
8498
8498
|
function phaseResolveNames(cpl) {
|
|
8499
8499
|
for (const [_, view] of cpl.views) {
|
|
8500
8500
|
processLexicalScope(view, view.create, null);
|
|
@@ -8547,7 +8547,7 @@ function processLexicalScope(view, ops, savedView) {
|
|
|
8547
8547
|
}
|
|
8548
8548
|
}
|
|
8549
8549
|
|
|
8550
|
-
// bazel-out/
|
|
8550
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
8551
8551
|
function phaseResolveContexts(cpl) {
|
|
8552
8552
|
for (const view of cpl.views.values()) {
|
|
8553
8553
|
processLexicalScope2(view, view.create);
|
|
@@ -8585,7 +8585,7 @@ function processLexicalScope2(view, ops) {
|
|
|
8585
8585
|
}
|
|
8586
8586
|
}
|
|
8587
8587
|
|
|
8588
|
-
// bazel-out/
|
|
8588
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
8589
8589
|
function phaseVariableOptimization(cpl, options) {
|
|
8590
8590
|
for (const [_, view] of cpl.views) {
|
|
8591
8591
|
optimizeVariablesInOpList(view.create, options);
|
|
@@ -8783,7 +8783,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
8783
8783
|
}
|
|
8784
8784
|
}
|
|
8785
8785
|
|
|
8786
|
-
// bazel-out/
|
|
8786
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
8787
8787
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
8788
8788
|
Identifiers.elementStart,
|
|
8789
8789
|
Identifiers.elementEnd,
|
|
@@ -8826,7 +8826,7 @@ function chainOperationsInList(opList) {
|
|
|
8826
8826
|
}
|
|
8827
8827
|
}
|
|
8828
8828
|
|
|
8829
|
-
// bazel-out/
|
|
8829
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
8830
8830
|
function phaseMergeNextContext(cpl) {
|
|
8831
8831
|
for (const view of cpl.views.values()) {
|
|
8832
8832
|
for (const op of view.create) {
|
|
@@ -8868,7 +8868,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
8868
8868
|
}
|
|
8869
8869
|
}
|
|
8870
8870
|
|
|
8871
|
-
// bazel-out/
|
|
8871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
8872
8872
|
function transformTemplate(cpl) {
|
|
8873
8873
|
phaseGenerateVariables(cpl);
|
|
8874
8874
|
phaseResolveNames(cpl);
|
|
@@ -8943,7 +8943,7 @@ function maybeGenerateRfBlock(flag, statements) {
|
|
|
8943
8943
|
];
|
|
8944
8944
|
}
|
|
8945
8945
|
|
|
8946
|
-
// bazel-out/
|
|
8946
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
8947
8947
|
var ComponentCompilation = class {
|
|
8948
8948
|
constructor(componentName) {
|
|
8949
8949
|
this.componentName = componentName;
|
|
@@ -9000,7 +9000,7 @@ var ViewCompilation = class {
|
|
|
9000
9000
|
}
|
|
9001
9001
|
};
|
|
9002
9002
|
|
|
9003
|
-
// bazel-out/
|
|
9003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
9004
9004
|
function ingest(componentName, template2) {
|
|
9005
9005
|
const cpl = new ComponentCompilation(componentName);
|
|
9006
9006
|
ingestNodes(cpl.root, template2);
|
|
@@ -9137,10 +9137,10 @@ function assertIsArray(value) {
|
|
|
9137
9137
|
}
|
|
9138
9138
|
}
|
|
9139
9139
|
|
|
9140
|
-
// bazel-out/
|
|
9140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
9141
9141
|
var USE_TEMPLATE_PIPELINE = false;
|
|
9142
9142
|
|
|
9143
|
-
// bazel-out/
|
|
9143
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
9144
9144
|
function parse(value) {
|
|
9145
9145
|
const styles = [];
|
|
9146
9146
|
let i = 0;
|
|
@@ -9201,7 +9201,7 @@ function hyphenate(value) {
|
|
|
9201
9201
|
}).toLowerCase();
|
|
9202
9202
|
}
|
|
9203
9203
|
|
|
9204
|
-
// bazel-out/
|
|
9204
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
9205
9205
|
var IMPORTANT_FLAG = "!important";
|
|
9206
9206
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
9207
9207
|
var StylingBuilder = class {
|
|
@@ -9534,7 +9534,7 @@ function isEmptyExpression(ast) {
|
|
|
9534
9534
|
return ast instanceof EmptyExpr;
|
|
9535
9535
|
}
|
|
9536
9536
|
|
|
9537
|
-
// bazel-out/
|
|
9537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
9538
9538
|
var TokenType;
|
|
9539
9539
|
(function(TokenType2) {
|
|
9540
9540
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -9895,7 +9895,7 @@ function parseIntAutoRadix(text2) {
|
|
|
9895
9895
|
return result;
|
|
9896
9896
|
}
|
|
9897
9897
|
|
|
9898
|
-
// bazel-out/
|
|
9898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
9899
9899
|
var SplitInterpolation = class {
|
|
9900
9900
|
constructor(strings, expressions, offsets) {
|
|
9901
9901
|
this.strings = strings;
|
|
@@ -10789,7 +10789,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
10789
10789
|
return offsetMap;
|
|
10790
10790
|
}
|
|
10791
10791
|
|
|
10792
|
-
// bazel-out/
|
|
10792
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
10793
10793
|
var NodeWithI18n = class {
|
|
10794
10794
|
constructor(sourceSpan, i18n) {
|
|
10795
10795
|
this.sourceSpan = sourceSpan;
|
|
@@ -10877,11 +10877,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
10877
10877
|
return result;
|
|
10878
10878
|
}
|
|
10879
10879
|
|
|
10880
|
-
// bazel-out/
|
|
10880
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
10881
10881
|
var ElementSchemaRegistry = class {
|
|
10882
10882
|
};
|
|
10883
10883
|
|
|
10884
|
-
// bazel-out/
|
|
10884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
10885
10885
|
var BOOLEAN = "boolean";
|
|
10886
10886
|
var NUMBER = "number";
|
|
10887
10887
|
var STRING = "string";
|
|
@@ -11234,7 +11234,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
11234
11234
|
}
|
|
11235
11235
|
}
|
|
11236
11236
|
|
|
11237
|
-
// bazel-out/
|
|
11237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
11238
11238
|
var HtmlTagDefinition = class {
|
|
11239
11239
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
11240
11240
|
this.closedByChildren = {};
|
|
@@ -11352,7 +11352,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
11352
11352
|
return (_b = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b : DEFAULT_TAG_DEFINITION;
|
|
11353
11353
|
}
|
|
11354
11354
|
|
|
11355
|
-
// bazel-out/
|
|
11355
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
11356
11356
|
var NAMED_ENTITIES = {
|
|
11357
11357
|
"AElig": "\xC6",
|
|
11358
11358
|
"AMP": "&",
|
|
@@ -13483,7 +13483,7 @@ var NAMED_ENTITIES = {
|
|
|
13483
13483
|
var NGSP_UNICODE = "\uE500";
|
|
13484
13484
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
13485
13485
|
|
|
13486
|
-
// bazel-out/
|
|
13486
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
13487
13487
|
var TokenError = class extends ParseError {
|
|
13488
13488
|
constructor(errorMsg, tokenType, span) {
|
|
13489
13489
|
super(span, errorMsg);
|
|
@@ -14318,7 +14318,7 @@ var CursorError = class {
|
|
|
14318
14318
|
}
|
|
14319
14319
|
};
|
|
14320
14320
|
|
|
14321
|
-
// bazel-out/
|
|
14321
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
14322
14322
|
var TreeError = class extends ParseError {
|
|
14323
14323
|
static create(elementName, span, msg) {
|
|
14324
14324
|
return new TreeError(elementName, span, msg);
|
|
@@ -14645,7 +14645,7 @@ function decodeEntity(match, entity) {
|
|
|
14645
14645
|
return match;
|
|
14646
14646
|
}
|
|
14647
14647
|
|
|
14648
|
-
// bazel-out/
|
|
14648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
14649
14649
|
var HtmlParser = class extends Parser2 {
|
|
14650
14650
|
constructor() {
|
|
14651
14651
|
super(getHtmlTagDefinition);
|
|
@@ -14655,7 +14655,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
14655
14655
|
}
|
|
14656
14656
|
};
|
|
14657
14657
|
|
|
14658
|
-
// bazel-out/
|
|
14658
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
14659
14659
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
14660
14660
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
14661
14661
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -14715,7 +14715,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
14715
14715
|
return result;
|
|
14716
14716
|
}
|
|
14717
14717
|
|
|
14718
|
-
// bazel-out/
|
|
14718
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
14719
14719
|
function mapLiteral(obj, quoted = false) {
|
|
14720
14720
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
14721
14721
|
key,
|
|
@@ -14724,7 +14724,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
14724
14724
|
})));
|
|
14725
14725
|
}
|
|
14726
14726
|
|
|
14727
|
-
// bazel-out/
|
|
14727
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
14728
14728
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
14729
14729
|
"iframe|srcdoc",
|
|
14730
14730
|
"*|innerhtml",
|
|
@@ -14739,7 +14739,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
14739
14739
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
14740
14740
|
}
|
|
14741
14741
|
|
|
14742
|
-
// bazel-out/
|
|
14742
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
14743
14743
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
14744
14744
|
var ATTRIBUTE_PREFIX = "attr";
|
|
14745
14745
|
var CLASS_PREFIX = "class";
|
|
@@ -15059,7 +15059,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
15059
15059
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
15060
15060
|
}
|
|
15061
15061
|
|
|
15062
|
-
// bazel-out/
|
|
15062
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
15063
15063
|
function isStyleUrlResolvable(url) {
|
|
15064
15064
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
15065
15065
|
return false;
|
|
@@ -15068,7 +15068,7 @@ function isStyleUrlResolvable(url) {
|
|
|
15068
15068
|
}
|
|
15069
15069
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
15070
15070
|
|
|
15071
|
-
// bazel-out/
|
|
15071
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
15072
15072
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
15073
15073
|
var LINK_ELEMENT = "link";
|
|
15074
15074
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -15138,7 +15138,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
15138
15138
|
return selectAttr;
|
|
15139
15139
|
}
|
|
15140
15140
|
|
|
15141
|
-
// bazel-out/
|
|
15141
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
15142
15142
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
15143
15143
|
var KW_BIND_IDX = 1;
|
|
15144
15144
|
var KW_LET_IDX = 2;
|
|
@@ -15486,7 +15486,7 @@ function textContents(node) {
|
|
|
15486
15486
|
}
|
|
15487
15487
|
}
|
|
15488
15488
|
|
|
15489
|
-
// bazel-out/
|
|
15489
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
15490
15490
|
var TagType;
|
|
15491
15491
|
(function(TagType2) {
|
|
15492
15492
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -15621,7 +15621,7 @@ function serializePlaceholderValue(value) {
|
|
|
15621
15621
|
}
|
|
15622
15622
|
}
|
|
15623
15623
|
|
|
15624
|
-
// bazel-out/
|
|
15624
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
15625
15625
|
var IcuSerializerVisitor = class {
|
|
15626
15626
|
visitText(text2) {
|
|
15627
15627
|
return text2.value;
|
|
@@ -15652,7 +15652,7 @@ function serializeIcuNode(icu) {
|
|
|
15652
15652
|
return icu.visit(serializer);
|
|
15653
15653
|
}
|
|
15654
15654
|
|
|
15655
|
-
// bazel-out/
|
|
15655
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
15656
15656
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
15657
15657
|
"A": "LINK",
|
|
15658
15658
|
"B": "BOLD_TEXT",
|
|
@@ -15746,7 +15746,7 @@ var PlaceholderRegistry = class {
|
|
|
15746
15746
|
}
|
|
15747
15747
|
};
|
|
15748
15748
|
|
|
15749
|
-
// bazel-out/
|
|
15749
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
15750
15750
|
var _expParser = new Parser(new Lexer());
|
|
15751
15751
|
function createI18nMessageFactory(interpolationConfig) {
|
|
15752
15752
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -15901,14 +15901,14 @@ function extractPlaceholderName(input) {
|
|
|
15901
15901
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
15902
15902
|
}
|
|
15903
15903
|
|
|
15904
|
-
// bazel-out/
|
|
15904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
15905
15905
|
var I18nError = class extends ParseError {
|
|
15906
15906
|
constructor(span, msg) {
|
|
15907
15907
|
super(span, msg);
|
|
15908
15908
|
}
|
|
15909
15909
|
};
|
|
15910
15910
|
|
|
15911
|
-
// bazel-out/
|
|
15911
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
15912
15912
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
15913
15913
|
if (htmlNode instanceof NodeWithI18n) {
|
|
15914
15914
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16057,7 +16057,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16057
16057
|
return jsDocComment(tags);
|
|
16058
16058
|
}
|
|
16059
16059
|
|
|
16060
|
-
// bazel-out/
|
|
16060
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16061
16061
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16062
16062
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16063
16063
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16105,7 +16105,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16105
16105
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16106
16106
|
}
|
|
16107
16107
|
|
|
16108
|
-
// bazel-out/
|
|
16108
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16109
16109
|
function createLocalizeStatements(variable2, message, params) {
|
|
16110
16110
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16111
16111
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -16188,7 +16188,7 @@ function createEmptyMessagePart(location) {
|
|
|
16188
16188
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
16189
16189
|
}
|
|
16190
16190
|
|
|
16191
|
-
// bazel-out/
|
|
16191
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
16192
16192
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
16193
16193
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
16194
16194
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -17490,7 +17490,7 @@ function createClosureModeGuard() {
|
|
|
17490
17490
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
17491
17491
|
}
|
|
17492
17492
|
|
|
17493
|
-
// bazel-out/
|
|
17493
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
17494
17494
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
17495
17495
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
17496
17496
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -18034,11 +18034,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
18034
18034
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
18035
18035
|
}
|
|
18036
18036
|
|
|
18037
|
-
// bazel-out/
|
|
18037
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
18038
18038
|
var ResourceLoader = class {
|
|
18039
18039
|
};
|
|
18040
18040
|
|
|
18041
|
-
// bazel-out/
|
|
18041
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
18042
18042
|
var CompilerFacadeImpl = class {
|
|
18043
18043
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
18044
18044
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -18539,10 +18539,10 @@ function publishFacade(global2) {
|
|
|
18539
18539
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
18540
18540
|
}
|
|
18541
18541
|
|
|
18542
|
-
// bazel-out/
|
|
18543
|
-
var VERSION2 = new Version("16.0.0
|
|
18542
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
18543
|
+
var VERSION2 = new Version("16.0.0");
|
|
18544
18544
|
|
|
18545
|
-
// bazel-out/
|
|
18545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
18546
18546
|
var _I18N_ATTR = "i18n";
|
|
18547
18547
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
18548
18548
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -18846,7 +18846,7 @@ function _parseMessageMeta(i18n) {
|
|
|
18846
18846
|
return { meaning, description, id: id.trim() };
|
|
18847
18847
|
}
|
|
18848
18848
|
|
|
18849
|
-
// bazel-out/
|
|
18849
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
18850
18850
|
var XmlTagDefinition = class {
|
|
18851
18851
|
constructor() {
|
|
18852
18852
|
this.closedByParent = false;
|
|
@@ -18871,7 +18871,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
18871
18871
|
return _TAG_DEFINITION;
|
|
18872
18872
|
}
|
|
18873
18873
|
|
|
18874
|
-
// bazel-out/
|
|
18874
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
18875
18875
|
var XmlParser = class extends Parser2 {
|
|
18876
18876
|
constructor() {
|
|
18877
18877
|
super(getXmlTagDefinition);
|
|
@@ -18881,7 +18881,7 @@ var XmlParser = class extends Parser2 {
|
|
|
18881
18881
|
}
|
|
18882
18882
|
};
|
|
18883
18883
|
|
|
18884
|
-
// bazel-out/
|
|
18884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
18885
18885
|
var _VERSION = "1.2";
|
|
18886
18886
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
18887
18887
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -19121,7 +19121,7 @@ function getCtypeForTag(tag) {
|
|
|
19121
19121
|
}
|
|
19122
19122
|
}
|
|
19123
19123
|
|
|
19124
|
-
// bazel-out/
|
|
19124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
19125
19125
|
var _VERSION2 = "2.0";
|
|
19126
19126
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
19127
19127
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -19412,7 +19412,7 @@ function getTypeForTag(tag) {
|
|
|
19412
19412
|
}
|
|
19413
19413
|
}
|
|
19414
19414
|
|
|
19415
|
-
// bazel-out/
|
|
19415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
19416
19416
|
var MessageBundle = class {
|
|
19417
19417
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
19418
19418
|
this._htmlParser = _htmlParser;
|
|
@@ -19479,7 +19479,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
19479
19479
|
}
|
|
19480
19480
|
};
|
|
19481
19481
|
|
|
19482
|
-
// bazel-out/
|
|
19482
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
19483
19483
|
var FactoryTarget2;
|
|
19484
19484
|
(function(FactoryTarget3) {
|
|
19485
19485
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -19489,7 +19489,7 @@ var FactoryTarget2;
|
|
|
19489
19489
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
19490
19490
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
19491
19491
|
|
|
19492
|
-
// bazel-out/
|
|
19492
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
19493
19493
|
var R3TargetBinder = class {
|
|
19494
19494
|
constructor(directiveMatcher) {
|
|
19495
19495
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -19841,7 +19841,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
19841
19841
|
return templateEntities;
|
|
19842
19842
|
}
|
|
19843
19843
|
|
|
19844
|
-
// bazel-out/
|
|
19844
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
19845
19845
|
function compileClassMetadata(metadata) {
|
|
19846
19846
|
var _a2, _b;
|
|
19847
19847
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -19854,12 +19854,12 @@ function compileClassMetadata(metadata) {
|
|
|
19854
19854
|
return iife.callFn([]);
|
|
19855
19855
|
}
|
|
19856
19856
|
|
|
19857
|
-
// bazel-out/
|
|
19857
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
19858
19858
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
19859
19859
|
function compileDeclareClassMetadata(metadata) {
|
|
19860
19860
|
const definitionMap = new DefinitionMap();
|
|
19861
19861
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
19862
|
-
definitionMap.set("version", literal("16.0.0
|
|
19862
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
19863
19863
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
19864
19864
|
definitionMap.set("type", metadata.type);
|
|
19865
19865
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -19868,7 +19868,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
19868
19868
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
19869
19869
|
}
|
|
19870
19870
|
|
|
19871
|
-
// bazel-out/
|
|
19871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
19872
19872
|
function toOptionalLiteralArray(values, mapper) {
|
|
19873
19873
|
if (values === null || values.length === 0) {
|
|
19874
19874
|
return null;
|
|
@@ -19916,7 +19916,7 @@ function compileDependency(dep) {
|
|
|
19916
19916
|
return depMeta.toLiteralMap();
|
|
19917
19917
|
}
|
|
19918
19918
|
|
|
19919
|
-
// bazel-out/
|
|
19919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
19920
19920
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "14.0.0";
|
|
19921
19921
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
19922
19922
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -19928,7 +19928,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
19928
19928
|
var _a2;
|
|
19929
19929
|
const definitionMap = new DefinitionMap();
|
|
19930
19930
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
19931
|
-
definitionMap.set("version", literal("16.0.0
|
|
19931
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
19932
19932
|
definitionMap.set("type", meta.type.value);
|
|
19933
19933
|
if (meta.isStandalone) {
|
|
19934
19934
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -20018,7 +20018,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
20018
20018
|
return literalArr(expressions);
|
|
20019
20019
|
}
|
|
20020
20020
|
|
|
20021
|
-
// bazel-out/
|
|
20021
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
20022
20022
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
20023
20023
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
20024
20024
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -20105,12 +20105,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
20105
20105
|
});
|
|
20106
20106
|
}
|
|
20107
20107
|
|
|
20108
|
-
// bazel-out/
|
|
20108
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
20109
20109
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
20110
20110
|
function compileDeclareFactoryFunction(meta) {
|
|
20111
20111
|
const definitionMap = new DefinitionMap();
|
|
20112
20112
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
20113
|
-
definitionMap.set("version", literal("16.0.0
|
|
20113
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
20114
20114
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20115
20115
|
definitionMap.set("type", meta.type.value);
|
|
20116
20116
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -20122,7 +20122,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
20122
20122
|
};
|
|
20123
20123
|
}
|
|
20124
20124
|
|
|
20125
|
-
// bazel-out/
|
|
20125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
20126
20126
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
20127
20127
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
20128
20128
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -20133,7 +20133,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
20133
20133
|
function createInjectableDefinitionMap(meta) {
|
|
20134
20134
|
const definitionMap = new DefinitionMap();
|
|
20135
20135
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
20136
|
-
definitionMap.set("version", literal("16.0.0
|
|
20136
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
20137
20137
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20138
20138
|
definitionMap.set("type", meta.type.value);
|
|
20139
20139
|
if (meta.providedIn !== void 0) {
|
|
@@ -20160,7 +20160,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
20160
20160
|
return definitionMap;
|
|
20161
20161
|
}
|
|
20162
20162
|
|
|
20163
|
-
// bazel-out/
|
|
20163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
20164
20164
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
20165
20165
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
20166
20166
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -20171,7 +20171,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
20171
20171
|
function createInjectorDefinitionMap(meta) {
|
|
20172
20172
|
const definitionMap = new DefinitionMap();
|
|
20173
20173
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
20174
|
-
definitionMap.set("version", literal("16.0.0
|
|
20174
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
20175
20175
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20176
20176
|
definitionMap.set("type", meta.type.value);
|
|
20177
20177
|
definitionMap.set("providers", meta.providers);
|
|
@@ -20181,7 +20181,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
20181
20181
|
return definitionMap;
|
|
20182
20182
|
}
|
|
20183
20183
|
|
|
20184
|
-
// bazel-out/
|
|
20184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
20185
20185
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
20186
20186
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
20187
20187
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -20192,7 +20192,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
20192
20192
|
function createNgModuleDefinitionMap(meta) {
|
|
20193
20193
|
const definitionMap = new DefinitionMap();
|
|
20194
20194
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
20195
|
-
definitionMap.set("version", literal("16.0.0
|
|
20195
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
20196
20196
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20197
20197
|
definitionMap.set("type", meta.type.value);
|
|
20198
20198
|
if (meta.bootstrap.length > 0) {
|
|
@@ -20216,7 +20216,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
20216
20216
|
return definitionMap;
|
|
20217
20217
|
}
|
|
20218
20218
|
|
|
20219
|
-
// bazel-out/
|
|
20219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
20220
20220
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
20221
20221
|
function compileDeclarePipeFromMetadata(meta) {
|
|
20222
20222
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -20227,7 +20227,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
20227
20227
|
function createPipeDefinitionMap(meta) {
|
|
20228
20228
|
const definitionMap = new DefinitionMap();
|
|
20229
20229
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
20230
|
-
definitionMap.set("version", literal("16.0.0
|
|
20230
|
+
definitionMap.set("version", literal("16.0.0"));
|
|
20231
20231
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
20232
20232
|
definitionMap.set("type", meta.type.value);
|
|
20233
20233
|
if (meta.isStandalone) {
|
|
@@ -20240,13 +20240,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
20240
20240
|
return definitionMap;
|
|
20241
20241
|
}
|
|
20242
20242
|
|
|
20243
|
-
// bazel-out/
|
|
20243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
20244
20244
|
publishFacade(_global);
|
|
20245
20245
|
|
|
20246
|
-
// bazel-out/
|
|
20247
|
-
var VERSION3 = new Version("16.0.0
|
|
20246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
20247
|
+
var VERSION3 = new Version("16.0.0");
|
|
20248
20248
|
|
|
20249
|
-
// bazel-out/
|
|
20249
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
20250
20250
|
var EmitFlags;
|
|
20251
20251
|
(function(EmitFlags2) {
|
|
20252
20252
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -20258,13 +20258,13 @@ var EmitFlags;
|
|
|
20258
20258
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
20259
20259
|
})(EmitFlags || (EmitFlags = {}));
|
|
20260
20260
|
|
|
20261
|
-
// bazel-out/
|
|
20261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
20262
20262
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
20263
20263
|
|
|
20264
|
-
// bazel-out/
|
|
20264
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
20265
20265
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
20266
20266
|
|
|
20267
|
-
// bazel-out/
|
|
20267
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
20268
20268
|
var path = __toESM(require("path"), 1);
|
|
20269
20269
|
function i18nGetExtension(formatName) {
|
|
20270
20270
|
const format = formatName.toLowerCase();
|
|
@@ -20314,10 +20314,10 @@ function getPathNormalizer(basePath) {
|
|
|
20314
20314
|
};
|
|
20315
20315
|
}
|
|
20316
20316
|
|
|
20317
|
-
// bazel-out/
|
|
20317
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
20318
20318
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
20319
20319
|
|
|
20320
|
-
// bazel-out/
|
|
20320
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
20321
20321
|
function toNumbers(value) {
|
|
20322
20322
|
const suffixIndex = value.lastIndexOf("-");
|
|
20323
20323
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -20352,7 +20352,7 @@ function compareVersions(v1, v2) {
|
|
|
20352
20352
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
20353
20353
|
}
|
|
20354
20354
|
|
|
20355
|
-
// bazel-out/
|
|
20355
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
20356
20356
|
var MIN_TS_VERSION = "4.9.3";
|
|
20357
20357
|
var MAX_TS_VERSION = "5.1.0";
|
|
20358
20358
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -20365,13 +20365,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
20365
20365
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
20366
20366
|
}
|
|
20367
20367
|
|
|
20368
|
-
// bazel-out/
|
|
20368
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
20369
20369
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
20370
20370
|
|
|
20371
|
-
// bazel-out/
|
|
20371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
20372
20372
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
20373
20373
|
|
|
20374
|
-
// bazel-out/
|
|
20374
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
20375
20375
|
var ErrorCode;
|
|
20376
20376
|
(function(ErrorCode2) {
|
|
20377
20377
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -20444,7 +20444,7 @@ var ErrorCode;
|
|
|
20444
20444
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
20445
20445
|
})(ErrorCode || (ErrorCode = {}));
|
|
20446
20446
|
|
|
20447
|
-
// bazel-out/
|
|
20447
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
20448
20448
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
20449
20449
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
20450
20450
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -20456,15 +20456,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
20456
20456
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
20457
20457
|
]);
|
|
20458
20458
|
|
|
20459
|
-
// bazel-out/
|
|
20459
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
20460
20460
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
20461
20461
|
|
|
20462
|
-
// bazel-out/
|
|
20462
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
20463
20463
|
function ngErrorCode(code) {
|
|
20464
20464
|
return parseInt("-99" + code);
|
|
20465
20465
|
}
|
|
20466
20466
|
|
|
20467
|
-
// bazel-out/
|
|
20467
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
20468
20468
|
var FatalDiagnosticError = class {
|
|
20469
20469
|
constructor(code, node, message, relatedInformation) {
|
|
20470
20470
|
this.code = code;
|
|
@@ -20520,10 +20520,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
20520
20520
|
return messageText;
|
|
20521
20521
|
}
|
|
20522
20522
|
|
|
20523
|
-
// bazel-out/
|
|
20523
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
20524
20524
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
20525
20525
|
|
|
20526
|
-
// bazel-out/
|
|
20526
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
20527
20527
|
var ExtendedTemplateDiagnosticName;
|
|
20528
20528
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
20529
20529
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -20536,13 +20536,13 @@ var ExtendedTemplateDiagnosticName;
|
|
|
20536
20536
|
ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
|
|
20537
20537
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
20538
20538
|
|
|
20539
|
-
// bazel-out/
|
|
20539
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
20540
20540
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
20541
20541
|
|
|
20542
|
-
// bazel-out/
|
|
20542
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
20543
20543
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
20544
20544
|
|
|
20545
|
-
// bazel-out/
|
|
20545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
20546
20546
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
20547
20547
|
var TS = /\.tsx?$/i;
|
|
20548
20548
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -20643,7 +20643,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
20643
20643
|
return redirectInfo.unredirected;
|
|
20644
20644
|
}
|
|
20645
20645
|
|
|
20646
|
-
// bazel-out/
|
|
20646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
20647
20647
|
function findExportedNameOfNode(target, file, reflector) {
|
|
20648
20648
|
const exports = reflector.getExportsOfModule(file);
|
|
20649
20649
|
if (exports === null) {
|
|
@@ -20663,7 +20663,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
20663
20663
|
return foundExportName;
|
|
20664
20664
|
}
|
|
20665
20665
|
|
|
20666
|
-
// bazel-out/
|
|
20666
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
20667
20667
|
var ImportFlags;
|
|
20668
20668
|
(function(ImportFlags2) {
|
|
20669
20669
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -20879,7 +20879,7 @@ var UnifiedModulesStrategy = class {
|
|
|
20879
20879
|
}
|
|
20880
20880
|
};
|
|
20881
20881
|
|
|
20882
|
-
// bazel-out/
|
|
20882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
20883
20883
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
20884
20884
|
var UnifiedModulesAliasingHost = class {
|
|
20885
20885
|
constructor(unifiedModulesHost) {
|
|
@@ -20946,7 +20946,7 @@ var AliasStrategy = class {
|
|
|
20946
20946
|
}
|
|
20947
20947
|
};
|
|
20948
20948
|
|
|
20949
|
-
// bazel-out/
|
|
20949
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
20950
20950
|
function relativePathBetween(from, to) {
|
|
20951
20951
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
20952
20952
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -20955,7 +20955,7 @@ function normalizeSeparators2(path3) {
|
|
|
20955
20955
|
return path3.replace(/\\/g, "/");
|
|
20956
20956
|
}
|
|
20957
20957
|
|
|
20958
|
-
// bazel-out/
|
|
20958
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
20959
20959
|
var NoopImportRewriter = class {
|
|
20960
20960
|
shouldImportSymbol(symbol, specifier) {
|
|
20961
20961
|
return true;
|
|
@@ -21013,7 +21013,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
21013
21013
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
21014
21014
|
}
|
|
21015
21015
|
|
|
21016
|
-
// bazel-out/
|
|
21016
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
21017
21017
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
21018
21018
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
21019
21019
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -21048,7 +21048,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
21048
21048
|
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.");
|
|
21049
21049
|
}
|
|
21050
21050
|
|
|
21051
|
-
// bazel-out/
|
|
21051
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
21052
21052
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
21053
21053
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
21054
21054
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -21089,7 +21089,7 @@ var DefaultImportTracker = class {
|
|
|
21089
21089
|
}
|
|
21090
21090
|
};
|
|
21091
21091
|
|
|
21092
|
-
// bazel-out/
|
|
21092
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
21093
21093
|
var Reference2 = class {
|
|
21094
21094
|
constructor(node, bestGuessOwningModule = null) {
|
|
21095
21095
|
this.node = node;
|
|
@@ -21152,7 +21152,7 @@ var Reference2 = class {
|
|
|
21152
21152
|
}
|
|
21153
21153
|
};
|
|
21154
21154
|
|
|
21155
|
-
// bazel-out/
|
|
21155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
21156
21156
|
var ModuleResolver = class {
|
|
21157
21157
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
21158
21158
|
this.program = program;
|
|
@@ -21169,7 +21169,7 @@ var ModuleResolver = class {
|
|
|
21169
21169
|
}
|
|
21170
21170
|
};
|
|
21171
21171
|
|
|
21172
|
-
// bazel-out/
|
|
21172
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
21173
21173
|
function valueReferenceToExpression(valueRef) {
|
|
21174
21174
|
if (valueRef.kind === 2) {
|
|
21175
21175
|
return null;
|
|
@@ -21404,7 +21404,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
21404
21404
|
return import_typescript13.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript13.default.SyntaxKind.AbstractKeyword) : false;
|
|
21405
21405
|
}
|
|
21406
21406
|
|
|
21407
|
-
// bazel-out/
|
|
21407
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
21408
21408
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
21409
21409
|
const deps = [];
|
|
21410
21410
|
const errors = [];
|
|
@@ -21546,10 +21546,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
21546
21546
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
21547
21547
|
}
|
|
21548
21548
|
|
|
21549
|
-
// bazel-out/
|
|
21549
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
21550
21550
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
21551
21551
|
|
|
21552
|
-
// bazel-out/
|
|
21552
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
21553
21553
|
var MetaKind;
|
|
21554
21554
|
(function(MetaKind2) {
|
|
21555
21555
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -21562,10 +21562,10 @@ var MatchSource;
|
|
|
21562
21562
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
21563
21563
|
})(MatchSource || (MatchSource = {}));
|
|
21564
21564
|
|
|
21565
|
-
// bazel-out/
|
|
21565
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
21566
21566
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
21567
21567
|
|
|
21568
|
-
// bazel-out/
|
|
21568
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
21569
21569
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
21570
21570
|
function isDecoratorIdentifier(exp) {
|
|
21571
21571
|
return import_typescript15.default.isIdentifier(exp) || import_typescript15.default.isPropertyAccessExpression(exp) && import_typescript15.default.isIdentifier(exp.expression) && import_typescript15.default.isIdentifier(exp.name);
|
|
@@ -21579,7 +21579,7 @@ var ClassMemberKind;
|
|
|
21579
21579
|
ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
|
|
21580
21580
|
})(ClassMemberKind || (ClassMemberKind = {}));
|
|
21581
21581
|
|
|
21582
|
-
// bazel-out/
|
|
21582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
21583
21583
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
21584
21584
|
function typeToValue(typeNode, checker) {
|
|
21585
21585
|
if (typeNode === null) {
|
|
@@ -21745,10 +21745,10 @@ function extractModuleName(node) {
|
|
|
21745
21745
|
return node.moduleSpecifier.text;
|
|
21746
21746
|
}
|
|
21747
21747
|
|
|
21748
|
-
// bazel-out/
|
|
21748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
21749
21749
|
var import_typescript18 = __toESM(require("typescript"), 1);
|
|
21750
21750
|
|
|
21751
|
-
// bazel-out/
|
|
21751
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
21752
21752
|
var import_typescript17 = __toESM(require("typescript"), 1);
|
|
21753
21753
|
function isNamedClassDeclaration(node) {
|
|
21754
21754
|
return import_typescript17.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -21757,7 +21757,7 @@ function isIdentifier(node) {
|
|
|
21757
21757
|
return node !== void 0 && import_typescript17.default.isIdentifier(node);
|
|
21758
21758
|
}
|
|
21759
21759
|
|
|
21760
|
-
// bazel-out/
|
|
21760
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
21761
21761
|
var TypeScriptReflectionHost = class {
|
|
21762
21762
|
constructor(checker) {
|
|
21763
21763
|
this.checker = checker;
|
|
@@ -22178,7 +22178,7 @@ function getExportedName(decl, originalId) {
|
|
|
22178
22178
|
}
|
|
22179
22179
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
22180
22180
|
|
|
22181
|
-
// bazel-out/
|
|
22181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
22182
22182
|
var ClassPropertyMapping = class {
|
|
22183
22183
|
constructor(forwardMap) {
|
|
22184
22184
|
this.forwardMap = forwardMap;
|
|
@@ -22256,7 +22256,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
22256
22256
|
return reverseMap;
|
|
22257
22257
|
}
|
|
22258
22258
|
|
|
22259
|
-
// bazel-out/
|
|
22259
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
22260
22260
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
22261
22261
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
22262
22262
|
if (!import_typescript20.default.isTupleTypeNode(def)) {
|
|
@@ -22438,7 +22438,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
22438
22438
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
22439
22439
|
}
|
|
22440
22440
|
|
|
22441
|
-
// bazel-out/
|
|
22441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
22442
22442
|
var DtsMetadataReader = class {
|
|
22443
22443
|
constructor(checker, reflector) {
|
|
22444
22444
|
this.checker = checker;
|
|
@@ -22608,7 +22608,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
22608
22608
|
return result.length > 0 ? result : null;
|
|
22609
22609
|
}
|
|
22610
22610
|
|
|
22611
|
-
// bazel-out/
|
|
22611
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
22612
22612
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
22613
22613
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
22614
22614
|
if (topMeta === null) {
|
|
@@ -22665,7 +22665,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
22665
22665
|
});
|
|
22666
22666
|
}
|
|
22667
22667
|
|
|
22668
|
-
// bazel-out/
|
|
22668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
22669
22669
|
var LocalMetadataRegistry = class {
|
|
22670
22670
|
constructor() {
|
|
22671
22671
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -22722,7 +22722,7 @@ var CompoundMetadataRegistry = class {
|
|
|
22722
22722
|
}
|
|
22723
22723
|
};
|
|
22724
22724
|
|
|
22725
|
-
// bazel-out/
|
|
22725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
22726
22726
|
var ResourceRegistry = class {
|
|
22727
22727
|
constructor() {
|
|
22728
22728
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -22787,7 +22787,7 @@ var ResourceRegistry = class {
|
|
|
22787
22787
|
}
|
|
22788
22788
|
};
|
|
22789
22789
|
|
|
22790
|
-
// bazel-out/
|
|
22790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
22791
22791
|
var ExportedProviderStatusResolver = class {
|
|
22792
22792
|
constructor(metaReader) {
|
|
22793
22793
|
this.metaReader = metaReader;
|
|
@@ -22831,7 +22831,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
22831
22831
|
}
|
|
22832
22832
|
};
|
|
22833
22833
|
|
|
22834
|
-
// bazel-out/
|
|
22834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
22835
22835
|
var EMPTY_ARRAY = [];
|
|
22836
22836
|
var HostDirectivesResolver = class {
|
|
22837
22837
|
constructor(metaReader) {
|
|
@@ -22891,10 +22891,10 @@ function resolveOutput(bindingName) {
|
|
|
22891
22891
|
return bindingName;
|
|
22892
22892
|
}
|
|
22893
22893
|
|
|
22894
|
-
// bazel-out/
|
|
22894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
22895
22895
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
22896
22896
|
|
|
22897
|
-
// bazel-out/
|
|
22897
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
22898
22898
|
var DynamicValue = class {
|
|
22899
22899
|
constructor(node, reason, code) {
|
|
22900
22900
|
this.node = node;
|
|
@@ -22984,7 +22984,7 @@ var DynamicValue = class {
|
|
|
22984
22984
|
}
|
|
22985
22985
|
};
|
|
22986
22986
|
|
|
22987
|
-
// bazel-out/
|
|
22987
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
22988
22988
|
var ResolvedModule = class {
|
|
22989
22989
|
constructor(exports, evaluate) {
|
|
22990
22990
|
this.exports = exports;
|
|
@@ -23014,7 +23014,7 @@ var EnumValue = class {
|
|
|
23014
23014
|
var KnownFn = class {
|
|
23015
23015
|
};
|
|
23016
23016
|
|
|
23017
|
-
// bazel-out/
|
|
23017
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
23018
23018
|
function describeResolvedType(value, maxDepth = 1) {
|
|
23019
23019
|
var _a2, _b;
|
|
23020
23020
|
if (value === null) {
|
|
@@ -23143,10 +23143,10 @@ function getContainerNode(node) {
|
|
|
23143
23143
|
return node.getSourceFile();
|
|
23144
23144
|
}
|
|
23145
23145
|
|
|
23146
|
-
// bazel-out/
|
|
23146
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
23147
23147
|
var import_typescript25 = __toESM(require("typescript"), 1);
|
|
23148
23148
|
|
|
23149
|
-
// bazel-out/
|
|
23149
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
23150
23150
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
23151
23151
|
constructor(lhs) {
|
|
23152
23152
|
super();
|
|
@@ -23198,14 +23198,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
23198
23198
|
}
|
|
23199
23199
|
};
|
|
23200
23200
|
|
|
23201
|
-
// bazel-out/
|
|
23201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
23202
23202
|
var SyntheticValue = class {
|
|
23203
23203
|
constructor(value) {
|
|
23204
23204
|
this.value = value;
|
|
23205
23205
|
}
|
|
23206
23206
|
};
|
|
23207
23207
|
|
|
23208
|
-
// bazel-out/
|
|
23208
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
23209
23209
|
function literalBinaryOp(op) {
|
|
23210
23210
|
return { op, literal: true };
|
|
23211
23211
|
}
|
|
@@ -23780,7 +23780,7 @@ function owningModule(context, override = null) {
|
|
|
23780
23780
|
}
|
|
23781
23781
|
}
|
|
23782
23782
|
|
|
23783
|
-
// bazel-out/
|
|
23783
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
23784
23784
|
var PartialEvaluator = class {
|
|
23785
23785
|
constructor(host, checker, dependencyTracker) {
|
|
23786
23786
|
this.host = host;
|
|
@@ -23800,7 +23800,7 @@ var PartialEvaluator = class {
|
|
|
23800
23800
|
}
|
|
23801
23801
|
};
|
|
23802
23802
|
|
|
23803
|
-
// bazel-out/
|
|
23803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
23804
23804
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
23805
23805
|
const context = [];
|
|
23806
23806
|
for (const decl of data) {
|
|
@@ -23996,7 +23996,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
23996
23996
|
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}.`);
|
|
23997
23997
|
}
|
|
23998
23998
|
|
|
23999
|
-
// bazel-out/
|
|
23999
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
24000
24000
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
24001
24001
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
24002
24002
|
let resolved = null;
|
|
@@ -24029,7 +24029,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
24029
24029
|
return meta;
|
|
24030
24030
|
}
|
|
24031
24031
|
|
|
24032
|
-
// bazel-out/
|
|
24032
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
24033
24033
|
function compileNgFactoryDefField(metadata) {
|
|
24034
24034
|
const res = compileFactoryFunction(metadata);
|
|
24035
24035
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
@@ -24039,7 +24039,7 @@ function compileDeclareFactory(metadata) {
|
|
|
24039
24039
|
return { name: "\u0275fac", initializer: res.expression, statements: res.statements, type: res.type };
|
|
24040
24040
|
}
|
|
24041
24041
|
|
|
24042
|
-
// bazel-out/
|
|
24042
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
24043
24043
|
var InjectableClassRegistry = class {
|
|
24044
24044
|
constructor(host, isCore) {
|
|
24045
24045
|
this.host = host;
|
|
@@ -24065,7 +24065,7 @@ var InjectableClassRegistry = class {
|
|
|
24065
24065
|
}
|
|
24066
24066
|
};
|
|
24067
24067
|
|
|
24068
|
-
// bazel-out/
|
|
24068
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
24069
24069
|
var import_typescript30 = __toESM(require("typescript"), 1);
|
|
24070
24070
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
24071
24071
|
if (!reflection.isClass(clazz)) {
|
|
@@ -24151,13 +24151,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
24151
24151
|
return result.transformed[0];
|
|
24152
24152
|
}
|
|
24153
24153
|
|
|
24154
|
-
// bazel-out/
|
|
24154
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
24155
24155
|
var NoopReferencesRegistry = class {
|
|
24156
24156
|
add(source, ...references) {
|
|
24157
24157
|
}
|
|
24158
24158
|
};
|
|
24159
24159
|
|
|
24160
|
-
// bazel-out/
|
|
24160
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
24161
24161
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
24162
24162
|
const schemas = [];
|
|
24163
24163
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -24186,10 +24186,10 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
24186
24186
|
return schemas;
|
|
24187
24187
|
}
|
|
24188
24188
|
|
|
24189
|
-
// bazel-out/
|
|
24189
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
24190
24190
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
24191
24191
|
|
|
24192
|
-
// bazel-out/
|
|
24192
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
24193
24193
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
24194
24194
|
var SemanticSymbol = class {
|
|
24195
24195
|
constructor(decl) {
|
|
@@ -24205,7 +24205,7 @@ function getSymbolIdentifier(decl) {
|
|
|
24205
24205
|
return decl.name.text;
|
|
24206
24206
|
}
|
|
24207
24207
|
|
|
24208
|
-
// bazel-out/
|
|
24208
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
24209
24209
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
24210
24210
|
isPublicApiAffected() {
|
|
24211
24211
|
return false;
|
|
@@ -24347,10 +24347,10 @@ function getImportPath(expr) {
|
|
|
24347
24347
|
}
|
|
24348
24348
|
}
|
|
24349
24349
|
|
|
24350
|
-
// bazel-out/
|
|
24350
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
24351
24351
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
24352
24352
|
|
|
24353
|
-
// bazel-out/
|
|
24353
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
24354
24354
|
function isSymbolEqual(a, b) {
|
|
24355
24355
|
if (a.decl === b.decl) {
|
|
24356
24356
|
return true;
|
|
@@ -24400,7 +24400,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
24400
24400
|
return true;
|
|
24401
24401
|
}
|
|
24402
24402
|
|
|
24403
|
-
// bazel-out/
|
|
24403
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
24404
24404
|
function extractSemanticTypeParameters(node) {
|
|
24405
24405
|
if (!import_typescript32.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
24406
24406
|
return null;
|
|
@@ -24420,7 +24420,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
24420
24420
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
24421
24421
|
}
|
|
24422
24422
|
|
|
24423
|
-
// bazel-out/
|
|
24423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
24424
24424
|
var PerfPhase;
|
|
24425
24425
|
(function(PerfPhase2) {
|
|
24426
24426
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -24487,7 +24487,7 @@ var PerfCheckpoint;
|
|
|
24487
24487
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
24488
24488
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
24489
24489
|
|
|
24490
|
-
// bazel-out/
|
|
24490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
24491
24491
|
var NoopPerfRecorder = class {
|
|
24492
24492
|
eventCount() {
|
|
24493
24493
|
}
|
|
@@ -24504,7 +24504,7 @@ var NoopPerfRecorder = class {
|
|
|
24504
24504
|
};
|
|
24505
24505
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
24506
24506
|
|
|
24507
|
-
// bazel-out/
|
|
24507
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
24508
24508
|
function mark() {
|
|
24509
24509
|
return process.hrtime();
|
|
24510
24510
|
}
|
|
@@ -24513,7 +24513,7 @@ function timeSinceInMicros(mark2) {
|
|
|
24513
24513
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
24514
24514
|
}
|
|
24515
24515
|
|
|
24516
|
-
// bazel-out/
|
|
24516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
24517
24517
|
var ActivePerfRecorder = class {
|
|
24518
24518
|
static zeroedToNow() {
|
|
24519
24519
|
return new ActivePerfRecorder(mark());
|
|
@@ -24607,14 +24607,14 @@ var DelegatingPerfRecorder = class {
|
|
|
24607
24607
|
}
|
|
24608
24608
|
};
|
|
24609
24609
|
|
|
24610
|
-
// bazel-out/
|
|
24610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
24611
24611
|
var ComponentScopeKind;
|
|
24612
24612
|
(function(ComponentScopeKind2) {
|
|
24613
24613
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
24614
24614
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
24615
24615
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
24616
24616
|
|
|
24617
|
-
// bazel-out/
|
|
24617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
24618
24618
|
var CompoundComponentScopeReader = class {
|
|
24619
24619
|
constructor(readers) {
|
|
24620
24620
|
this.readers = readers;
|
|
@@ -24639,7 +24639,7 @@ var CompoundComponentScopeReader = class {
|
|
|
24639
24639
|
}
|
|
24640
24640
|
};
|
|
24641
24641
|
|
|
24642
|
-
// bazel-out/
|
|
24642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
24643
24643
|
var MetadataDtsModuleScopeResolver = class {
|
|
24644
24644
|
constructor(dtsMetaReader, aliasingHost) {
|
|
24645
24645
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -24714,10 +24714,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
24714
24714
|
}
|
|
24715
24715
|
};
|
|
24716
24716
|
|
|
24717
|
-
// bazel-out/
|
|
24717
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
24718
24718
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
24719
24719
|
|
|
24720
|
-
// bazel-out/
|
|
24720
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
24721
24721
|
function getDiagnosticNode(ref, rawExpr) {
|
|
24722
24722
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
24723
24723
|
}
|
|
@@ -24740,7 +24740,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
24740
24740
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
24741
24741
|
}
|
|
24742
24742
|
|
|
24743
|
-
// bazel-out/
|
|
24743
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
24744
24744
|
var LocalModuleScopeRegistry = class {
|
|
24745
24745
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
24746
24746
|
this.localReader = localReader;
|
|
@@ -25079,7 +25079,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
25079
25079
|
]);
|
|
25080
25080
|
}
|
|
25081
25081
|
|
|
25082
|
-
// bazel-out/
|
|
25082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
25083
25083
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
25084
25084
|
var TypeCheckScopeRegistry = class {
|
|
25085
25085
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -25147,7 +25147,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
25147
25147
|
}
|
|
25148
25148
|
};
|
|
25149
25149
|
|
|
25150
|
-
// bazel-out/
|
|
25150
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
25151
25151
|
var CompilationMode;
|
|
25152
25152
|
(function(CompilationMode2) {
|
|
25153
25153
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -25166,7 +25166,7 @@ var HandlerFlags;
|
|
|
25166
25166
|
HandlerFlags2[HandlerFlags2["FULL_INHERITANCE"] = 1] = "FULL_INHERITANCE";
|
|
25167
25167
|
})(HandlerFlags || (HandlerFlags = {}));
|
|
25168
25168
|
|
|
25169
|
-
// bazel-out/
|
|
25169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
25170
25170
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
25171
25171
|
function aliasTransformFactory(exportStatements) {
|
|
25172
25172
|
return () => {
|
|
@@ -25189,10 +25189,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
25189
25189
|
};
|
|
25190
25190
|
}
|
|
25191
25191
|
|
|
25192
|
-
// bazel-out/
|
|
25192
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
25193
25193
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
25194
25194
|
|
|
25195
|
-
// bazel-out/
|
|
25195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
25196
25196
|
var TraitState;
|
|
25197
25197
|
(function(TraitState2) {
|
|
25198
25198
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -25249,7 +25249,7 @@ var TraitImpl = class {
|
|
|
25249
25249
|
}
|
|
25250
25250
|
};
|
|
25251
25251
|
|
|
25252
|
-
// bazel-out/
|
|
25252
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
25253
25253
|
var TraitCompiler = class {
|
|
25254
25254
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
25255
25255
|
this.handlers = handlers;
|
|
@@ -25684,10 +25684,10 @@ function containsErrors(diagnostics) {
|
|
|
25684
25684
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript37.default.DiagnosticCategory.Error);
|
|
25685
25685
|
}
|
|
25686
25686
|
|
|
25687
|
-
// bazel-out/
|
|
25687
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
25688
25688
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
25689
25689
|
|
|
25690
|
-
// bazel-out/
|
|
25690
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
25691
25691
|
var Context = class {
|
|
25692
25692
|
constructor(isStatement) {
|
|
25693
25693
|
this.isStatement = isStatement;
|
|
@@ -25700,7 +25700,7 @@ var Context = class {
|
|
|
25700
25700
|
}
|
|
25701
25701
|
};
|
|
25702
25702
|
|
|
25703
|
-
// bazel-out/
|
|
25703
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
25704
25704
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
25705
25705
|
var ImportManager = class {
|
|
25706
25706
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -25736,7 +25736,7 @@ var ImportManager = class {
|
|
|
25736
25736
|
}
|
|
25737
25737
|
};
|
|
25738
25738
|
|
|
25739
|
-
// bazel-out/
|
|
25739
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
25740
25740
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
25741
25741
|
[UnaryOperator.Minus, "-"],
|
|
25742
25742
|
[UnaryOperator.Plus, "+"]
|
|
@@ -25967,7 +25967,7 @@ function createRange(span) {
|
|
|
25967
25967
|
};
|
|
25968
25968
|
}
|
|
25969
25969
|
|
|
25970
|
-
// bazel-out/
|
|
25970
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
25971
25971
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
25972
25972
|
function translateType(type, imports) {
|
|
25973
25973
|
return type.visitType(new TypeTranslatorVisitor(imports), new Context(false));
|
|
@@ -26142,7 +26142,7 @@ var TypeTranslatorVisitor = class {
|
|
|
26142
26142
|
}
|
|
26143
26143
|
};
|
|
26144
26144
|
|
|
26145
|
-
// bazel-out/
|
|
26145
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
26146
26146
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
26147
26147
|
var PureAnnotation;
|
|
26148
26148
|
(function(PureAnnotation2) {
|
|
@@ -26325,7 +26325,7 @@ function attachComments(statement, leadingComments) {
|
|
|
26325
26325
|
}
|
|
26326
26326
|
}
|
|
26327
26327
|
|
|
26328
|
-
// bazel-out/
|
|
26328
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
26329
26329
|
function translateExpression(expression, imports, options = {}) {
|
|
26330
26330
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
26331
26331
|
}
|
|
@@ -26333,7 +26333,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
26333
26333
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
26334
26334
|
}
|
|
26335
26335
|
|
|
26336
|
-
// bazel-out/
|
|
26336
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
26337
26337
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
26338
26338
|
function addImports(importManager, sf, extraStatements = []) {
|
|
26339
26339
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -26369,7 +26369,7 @@ function isImportStatement(stmt) {
|
|
|
26369
26369
|
return import_typescript42.default.isImportDeclaration(stmt) || import_typescript42.default.isImportEqualsDeclaration(stmt) || import_typescript42.default.isNamespaceImport(stmt);
|
|
26370
26370
|
}
|
|
26371
26371
|
|
|
26372
|
-
// bazel-out/
|
|
26372
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
26373
26373
|
var DtsTransformRegistry = class {
|
|
26374
26374
|
constructor() {
|
|
26375
26375
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -26514,10 +26514,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
26514
26514
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
26515
26515
|
}
|
|
26516
26516
|
|
|
26517
|
-
// bazel-out/
|
|
26517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
26518
26518
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
26519
26519
|
|
|
26520
|
-
// bazel-out/
|
|
26520
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
26521
26521
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
26522
26522
|
function visit(node, visitor, context) {
|
|
26523
26523
|
return visitor._visit(node, context);
|
|
@@ -26578,7 +26578,7 @@ var Visitor = class {
|
|
|
26578
26578
|
}
|
|
26579
26579
|
};
|
|
26580
26580
|
|
|
26581
|
-
// bazel-out/
|
|
26581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
26582
26582
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
26583
26583
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
26584
26584
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -26786,7 +26786,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
26786
26786
|
return array;
|
|
26787
26787
|
}
|
|
26788
26788
|
|
|
26789
|
-
// bazel-out/
|
|
26789
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
26790
26790
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
26791
26791
|
var EMPTY_OBJECT = {};
|
|
26792
26792
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -27257,7 +27257,7 @@ function toHostDirectiveMetadata(hostDirective, context, refEmitter) {
|
|
|
27257
27257
|
};
|
|
27258
27258
|
}
|
|
27259
27259
|
|
|
27260
|
-
// bazel-out/
|
|
27260
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
27261
27261
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
27262
27262
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
27263
27263
|
super(decl);
|
|
@@ -27337,7 +27337,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
27337
27337
|
return isSymbolEqual(current, previous);
|
|
27338
27338
|
}
|
|
27339
27339
|
|
|
27340
|
-
// bazel-out/
|
|
27340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
27341
27341
|
var FIELD_DECORATORS = [
|
|
27342
27342
|
"Input",
|
|
27343
27343
|
"Output",
|
|
@@ -27497,10 +27497,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
27497
27497
|
}
|
|
27498
27498
|
};
|
|
27499
27499
|
|
|
27500
|
-
// bazel-out/
|
|
27500
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
27501
27501
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
27502
27502
|
|
|
27503
|
-
// bazel-out/
|
|
27503
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
27504
27504
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
27505
27505
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
27506
27506
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -27567,7 +27567,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
27567
27567
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
27568
27568
|
}
|
|
27569
27569
|
|
|
27570
|
-
// bazel-out/
|
|
27570
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
27571
27571
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
27572
27572
|
constructor(decl, hasProviders) {
|
|
27573
27573
|
super(decl);
|
|
@@ -28089,7 +28089,7 @@ function isSyntheticReference(ref) {
|
|
|
28089
28089
|
return ref.synthetic;
|
|
28090
28090
|
}
|
|
28091
28091
|
|
|
28092
|
-
// bazel-out/
|
|
28092
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
28093
28093
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
28094
28094
|
const name = ref.debugName || "(unknown)";
|
|
28095
28095
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -28112,7 +28112,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
28112
28112
|
return null;
|
|
28113
28113
|
}
|
|
28114
28114
|
|
|
28115
|
-
// bazel-out/
|
|
28115
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
28116
28116
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
28117
28117
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
28118
28118
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -28422,7 +28422,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
28422
28422
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
28423
28423
|
}
|
|
28424
28424
|
|
|
28425
|
-
// bazel-out/
|
|
28425
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
28426
28426
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
28427
28427
|
constructor() {
|
|
28428
28428
|
super(...arguments);
|
|
@@ -28457,7 +28457,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
28457
28457
|
}
|
|
28458
28458
|
};
|
|
28459
28459
|
|
|
28460
|
-
// bazel-out/
|
|
28460
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
28461
28461
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
28462
28462
|
if (value instanceof Map) {
|
|
28463
28463
|
const name = value.get("name");
|
|
@@ -28533,7 +28533,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
28533
28533
|
return false;
|
|
28534
28534
|
}
|
|
28535
28535
|
|
|
28536
|
-
// bazel-out/
|
|
28536
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
28537
28537
|
var EMPTY_ARRAY2 = [];
|
|
28538
28538
|
var ComponentDecoratorHandler = class {
|
|
28539
28539
|
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) {
|
|
@@ -29181,7 +29181,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
29181
29181
|
return diagnostics;
|
|
29182
29182
|
}
|
|
29183
29183
|
|
|
29184
|
-
// bazel-out/
|
|
29184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
29185
29185
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
29186
29186
|
var InjectableDecoratorHandler = class {
|
|
29187
29187
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, errorOnDuplicateProv = true) {
|
|
@@ -29395,7 +29395,7 @@ function getDep(dep, reflector) {
|
|
|
29395
29395
|
return meta;
|
|
29396
29396
|
}
|
|
29397
29397
|
|
|
29398
|
-
// bazel-out/
|
|
29398
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
29399
29399
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
29400
29400
|
var PipeSymbol = class extends SemanticSymbol {
|
|
29401
29401
|
constructor(decl, name) {
|
|
@@ -29538,7 +29538,7 @@ var PipeDecoratorHandler = class {
|
|
|
29538
29538
|
}
|
|
29539
29539
|
};
|
|
29540
29540
|
|
|
29541
|
-
// bazel-out/
|
|
29541
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
29542
29542
|
var CycleAnalyzer = class {
|
|
29543
29543
|
constructor(importGraph) {
|
|
29544
29544
|
this.importGraph = importGraph;
|
|
@@ -29609,7 +29609,7 @@ var Cycle = class {
|
|
|
29609
29609
|
}
|
|
29610
29610
|
};
|
|
29611
29611
|
|
|
29612
|
-
// bazel-out/
|
|
29612
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
29613
29613
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
29614
29614
|
var ImportGraph = class {
|
|
29615
29615
|
constructor(checker, perf) {
|
|
@@ -29701,7 +29701,7 @@ var Found = class {
|
|
|
29701
29701
|
}
|
|
29702
29702
|
};
|
|
29703
29703
|
|
|
29704
|
-
// bazel-out/
|
|
29704
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
29705
29705
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
29706
29706
|
var FlatIndexGenerator = class {
|
|
29707
29707
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -29726,7 +29726,7 @@ export * from '${relativeEntryPoint}';
|
|
|
29726
29726
|
}
|
|
29727
29727
|
};
|
|
29728
29728
|
|
|
29729
|
-
// bazel-out/
|
|
29729
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
29730
29730
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
29731
29731
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
29732
29732
|
let resolvedEntryPoint = null;
|
|
@@ -29742,7 +29742,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
29742
29742
|
return resolvedEntryPoint;
|
|
29743
29743
|
}
|
|
29744
29744
|
|
|
29745
|
-
// bazel-out/
|
|
29745
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
29746
29746
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
29747
29747
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
29748
29748
|
const diagnostics = [];
|
|
@@ -29822,7 +29822,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
29822
29822
|
}
|
|
29823
29823
|
}
|
|
29824
29824
|
|
|
29825
|
-
// bazel-out/
|
|
29825
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
29826
29826
|
var ReferenceGraph = class {
|
|
29827
29827
|
constructor() {
|
|
29828
29828
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -29876,7 +29876,7 @@ var ReferenceGraph = class {
|
|
|
29876
29876
|
}
|
|
29877
29877
|
};
|
|
29878
29878
|
|
|
29879
|
-
// bazel-out/
|
|
29879
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
29880
29880
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
29881
29881
|
var UpdateMode;
|
|
29882
29882
|
(function(UpdateMode2) {
|
|
@@ -29884,13 +29884,13 @@ var UpdateMode;
|
|
|
29884
29884
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
29885
29885
|
})(UpdateMode || (UpdateMode = {}));
|
|
29886
29886
|
|
|
29887
|
-
// bazel-out/
|
|
29887
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
29888
29888
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
29889
29889
|
|
|
29890
|
-
// bazel-out/
|
|
29890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
29891
29891
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
29892
29892
|
|
|
29893
|
-
// bazel-out/
|
|
29893
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
29894
29894
|
var NgExtension = Symbol("NgExtension");
|
|
29895
29895
|
function isExtended(sf) {
|
|
29896
29896
|
return sf[NgExtension] !== void 0;
|
|
@@ -29950,13 +29950,13 @@ function retagTsFile(sf) {
|
|
|
29950
29950
|
}
|
|
29951
29951
|
}
|
|
29952
29952
|
|
|
29953
|
-
// bazel-out/
|
|
29953
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
29954
29954
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
29955
29955
|
function makeShimFileName(fileName, suffix) {
|
|
29956
29956
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
29957
29957
|
}
|
|
29958
29958
|
|
|
29959
|
-
// bazel-out/
|
|
29959
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
29960
29960
|
var ShimAdapter = class {
|
|
29961
29961
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
29962
29962
|
this.delegate = delegate;
|
|
@@ -30051,7 +30051,7 @@ var ShimAdapter = class {
|
|
|
30051
30051
|
}
|
|
30052
30052
|
};
|
|
30053
30053
|
|
|
30054
|
-
// bazel-out/
|
|
30054
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
30055
30055
|
var ShimReferenceTagger = class {
|
|
30056
30056
|
constructor(shimExtensions) {
|
|
30057
30057
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -30085,7 +30085,7 @@ var ShimReferenceTagger = class {
|
|
|
30085
30085
|
}
|
|
30086
30086
|
};
|
|
30087
30087
|
|
|
30088
|
-
// bazel-out/
|
|
30088
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
30089
30089
|
var DelegatingCompilerHost = class {
|
|
30090
30090
|
constructor(delegate) {
|
|
30091
30091
|
this.delegate = delegate;
|
|
@@ -30198,7 +30198,7 @@ var TsCreateProgramDriver = class {
|
|
|
30198
30198
|
}
|
|
30199
30199
|
};
|
|
30200
30200
|
|
|
30201
|
-
// bazel-out/
|
|
30201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
30202
30202
|
var FileDependencyGraph = class {
|
|
30203
30203
|
constructor() {
|
|
30204
30204
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -30265,7 +30265,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
30265
30265
|
return false;
|
|
30266
30266
|
}
|
|
30267
30267
|
|
|
30268
|
-
// bazel-out/
|
|
30268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
30269
30269
|
var IncrementalStateKind;
|
|
30270
30270
|
(function(IncrementalStateKind2) {
|
|
30271
30271
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -30273,7 +30273,7 @@ var IncrementalStateKind;
|
|
|
30273
30273
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
30274
30274
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
30275
30275
|
|
|
30276
|
-
// bazel-out/
|
|
30276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
30277
30277
|
var PhaseKind;
|
|
30278
30278
|
(function(PhaseKind2) {
|
|
30279
30279
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -30474,7 +30474,7 @@ function toOriginalSourceFile(sf) {
|
|
|
30474
30474
|
}
|
|
30475
30475
|
}
|
|
30476
30476
|
|
|
30477
|
-
// bazel-out/
|
|
30477
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
30478
30478
|
var TrackedIncrementalBuildStrategy = class {
|
|
30479
30479
|
constructor() {
|
|
30480
30480
|
this.state = null;
|
|
@@ -30495,7 +30495,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
30495
30495
|
};
|
|
30496
30496
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
30497
30497
|
|
|
30498
|
-
// bazel-out/
|
|
30498
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
30499
30499
|
var IdentifierKind;
|
|
30500
30500
|
(function(IdentifierKind2) {
|
|
30501
30501
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -30513,7 +30513,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
30513
30513
|
}
|
|
30514
30514
|
};
|
|
30515
30515
|
|
|
30516
|
-
// bazel-out/
|
|
30516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
30517
30517
|
var IndexingContext = class {
|
|
30518
30518
|
constructor() {
|
|
30519
30519
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -30523,7 +30523,7 @@ var IndexingContext = class {
|
|
|
30523
30523
|
}
|
|
30524
30524
|
};
|
|
30525
30525
|
|
|
30526
|
-
// bazel-out/
|
|
30526
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
30527
30527
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
30528
30528
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
30529
30529
|
super();
|
|
@@ -30759,7 +30759,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
30759
30759
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
30760
30760
|
}
|
|
30761
30761
|
|
|
30762
|
-
// bazel-out/
|
|
30762
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
30763
30763
|
function generateAnalysis(context) {
|
|
30764
30764
|
const analysis = /* @__PURE__ */ new Map();
|
|
30765
30765
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -30795,7 +30795,7 @@ function generateAnalysis(context) {
|
|
|
30795
30795
|
return analysis;
|
|
30796
30796
|
}
|
|
30797
30797
|
|
|
30798
|
-
// bazel-out/
|
|
30798
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
30799
30799
|
var NgModuleIndexImpl = class {
|
|
30800
30800
|
constructor(metaReader, localReader) {
|
|
30801
30801
|
this.metaReader = metaReader;
|
|
@@ -30884,7 +30884,7 @@ var NgModuleIndexImpl = class {
|
|
|
30884
30884
|
}
|
|
30885
30885
|
};
|
|
30886
30886
|
|
|
30887
|
-
// bazel-out/
|
|
30887
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
30888
30888
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
30889
30889
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
30890
30890
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -31032,7 +31032,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
31032
31032
|
};
|
|
31033
31033
|
}
|
|
31034
31034
|
|
|
31035
|
-
// bazel-out/
|
|
31035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
31036
31036
|
var StandaloneComponentScopeReader = class {
|
|
31037
31037
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
31038
31038
|
this.metaReader = metaReader;
|
|
@@ -31110,21 +31110,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
31110
31110
|
}
|
|
31111
31111
|
};
|
|
31112
31112
|
|
|
31113
|
-
// bazel-out/
|
|
31113
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
31114
31114
|
var OptimizeFor;
|
|
31115
31115
|
(function(OptimizeFor2) {
|
|
31116
31116
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
31117
31117
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
31118
31118
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
31119
31119
|
|
|
31120
|
-
// bazel-out/
|
|
31120
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
31121
31121
|
var CompletionKind;
|
|
31122
31122
|
(function(CompletionKind2) {
|
|
31123
31123
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
31124
31124
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
31125
31125
|
})(CompletionKind || (CompletionKind = {}));
|
|
31126
31126
|
|
|
31127
|
-
// bazel-out/
|
|
31127
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
31128
31128
|
var PotentialImportKind;
|
|
31129
31129
|
(function(PotentialImportKind2) {
|
|
31130
31130
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -31136,7 +31136,7 @@ var PotentialImportMode;
|
|
|
31136
31136
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
31137
31137
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
31138
31138
|
|
|
31139
|
-
// bazel-out/
|
|
31139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
31140
31140
|
var SymbolKind;
|
|
31141
31141
|
(function(SymbolKind2) {
|
|
31142
31142
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -31152,7 +31152,7 @@ var SymbolKind;
|
|
|
31152
31152
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
31153
31153
|
})(SymbolKind || (SymbolKind = {}));
|
|
31154
31154
|
|
|
31155
|
-
// bazel-out/
|
|
31155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
31156
31156
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
31157
31157
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
31158
31158
|
var _a2;
|
|
@@ -31259,7 +31259,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
31259
31259
|
return import_typescript66.default.createSourceFile(fileName, template2, import_typescript66.default.ScriptTarget.Latest, false, import_typescript66.default.ScriptKind.JSX);
|
|
31260
31260
|
}
|
|
31261
31261
|
|
|
31262
|
-
// bazel-out/
|
|
31262
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
31263
31263
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
31264
31264
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
31265
31265
|
function getTemplateId(clazz) {
|
|
@@ -31276,10 +31276,10 @@ function allocateTemplateId(sf) {
|
|
|
31276
31276
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
31277
31277
|
}
|
|
31278
31278
|
|
|
31279
|
-
// bazel-out/
|
|
31279
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
31280
31280
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
31281
31281
|
|
|
31282
|
-
// bazel-out/
|
|
31282
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
31283
31283
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
31284
31284
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
31285
31285
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -31408,7 +31408,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
31408
31408
|
}) || false;
|
|
31409
31409
|
}
|
|
31410
31410
|
|
|
31411
|
-
// bazel-out/
|
|
31411
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
31412
31412
|
var CompletionEngine = class {
|
|
31413
31413
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
31414
31414
|
this.tcb = tcb;
|
|
@@ -31565,10 +31565,10 @@ var CompletionEngine = class {
|
|
|
31565
31565
|
}
|
|
31566
31566
|
};
|
|
31567
31567
|
|
|
31568
|
-
// bazel-out/
|
|
31568
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
31569
31569
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
31570
31570
|
|
|
31571
|
-
// bazel-out/
|
|
31571
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
31572
31572
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
31573
31573
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
31574
31574
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -31620,10 +31620,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
31620
31620
|
}
|
|
31621
31621
|
};
|
|
31622
31622
|
|
|
31623
|
-
// bazel-out/
|
|
31623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
31624
31624
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
31625
31625
|
|
|
31626
|
-
// bazel-out/
|
|
31626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
31627
31627
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
31628
31628
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
31629
31629
|
import_typescript70.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -31697,16 +31697,16 @@ function isAccessExpression(node) {
|
|
|
31697
31697
|
return import_typescript70.default.isPropertyAccessExpression(node) || import_typescript70.default.isElementAccessExpression(node);
|
|
31698
31698
|
}
|
|
31699
31699
|
|
|
31700
|
-
// bazel-out/
|
|
31700
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
31701
31701
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
31702
31702
|
|
|
31703
|
-
// bazel-out/
|
|
31703
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
31704
31704
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
31705
31705
|
|
|
31706
|
-
// bazel-out/
|
|
31706
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
31707
31707
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
31708
31708
|
|
|
31709
|
-
// bazel-out/
|
|
31709
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
31710
31710
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
31711
31711
|
var INELIGIBLE = {};
|
|
31712
31712
|
function canEmitType(type, canEmit) {
|
|
@@ -31781,7 +31781,7 @@ var TypeEmitter = class {
|
|
|
31781
31781
|
}
|
|
31782
31782
|
};
|
|
31783
31783
|
|
|
31784
|
-
// bazel-out/
|
|
31784
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
31785
31785
|
var TypeParameterEmitter = class {
|
|
31786
31786
|
constructor(typeParameters, reflector) {
|
|
31787
31787
|
this.typeParameters = typeParameters;
|
|
@@ -31858,7 +31858,7 @@ var TypeParameterEmitter = class {
|
|
|
31858
31858
|
}
|
|
31859
31859
|
};
|
|
31860
31860
|
|
|
31861
|
-
// bazel-out/
|
|
31861
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
31862
31862
|
var TcbInliningRequirement;
|
|
31863
31863
|
(function(TcbInliningRequirement2) {
|
|
31864
31864
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -31938,7 +31938,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
31938
31938
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
31939
31939
|
}
|
|
31940
31940
|
|
|
31941
|
-
// bazel-out/
|
|
31941
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
31942
31942
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
31943
31943
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
31944
31944
|
const rawType = import_typescript75.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -32050,7 +32050,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
32050
32050
|
});
|
|
32051
32051
|
}
|
|
32052
32052
|
|
|
32053
|
-
// bazel-out/
|
|
32053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
32054
32054
|
var Environment = class {
|
|
32055
32055
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
32056
32056
|
this.config = config;
|
|
@@ -32142,7 +32142,7 @@ var Environment = class {
|
|
|
32142
32142
|
}
|
|
32143
32143
|
};
|
|
32144
32144
|
|
|
32145
|
-
// bazel-out/
|
|
32145
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
32146
32146
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
32147
32147
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
32148
32148
|
constructor(resolver) {
|
|
@@ -32277,7 +32277,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
32277
32277
|
});
|
|
32278
32278
|
}
|
|
32279
32279
|
|
|
32280
|
-
// bazel-out/
|
|
32280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
32281
32281
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
32282
32282
|
var TypeCheckShimGenerator = class {
|
|
32283
32283
|
constructor() {
|
|
@@ -32295,10 +32295,10 @@ var TypeCheckShimGenerator = class {
|
|
|
32295
32295
|
}
|
|
32296
32296
|
};
|
|
32297
32297
|
|
|
32298
|
-
// bazel-out/
|
|
32298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
32299
32299
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
32300
32300
|
|
|
32301
|
-
// bazel-out/
|
|
32301
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
32302
32302
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
32303
32303
|
function wrapForDiagnostics(expr) {
|
|
32304
32304
|
return import_typescript79.default.factory.createParenthesizedExpression(expr);
|
|
@@ -32343,7 +32343,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
32343
32343
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
32344
32344
|
}
|
|
32345
32345
|
|
|
32346
|
-
// bazel-out/
|
|
32346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
32347
32347
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
32348
32348
|
var NULL_AS_ANY = import_typescript80.default.factory.createAsExpression(import_typescript80.default.factory.createNull(), import_typescript80.default.factory.createKeywordTypeNode(import_typescript80.default.SyntaxKind.AnyKeyword));
|
|
32349
32349
|
var UNDEFINED = import_typescript80.default.factory.createIdentifier("undefined");
|
|
@@ -32675,7 +32675,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
32675
32675
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
32676
32676
|
})();
|
|
32677
32677
|
|
|
32678
|
-
// bazel-out/
|
|
32678
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
32679
32679
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
32680
32680
|
constructor(templateId, boundTarget, oob) {
|
|
32681
32681
|
super();
|
|
@@ -32698,7 +32698,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
|
32698
32698
|
}
|
|
32699
32699
|
};
|
|
32700
32700
|
|
|
32701
|
-
// bazel-out/
|
|
32701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
32702
32702
|
var TcbGenericContextBehavior;
|
|
32703
32703
|
(function(TcbGenericContextBehavior2) {
|
|
32704
32704
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -33813,7 +33813,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
33813
33813
|
}
|
|
33814
33814
|
};
|
|
33815
33815
|
|
|
33816
|
-
// bazel-out/
|
|
33816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
33817
33817
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
33818
33818
|
var TypeCheckFile = class extends Environment {
|
|
33819
33819
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -33849,7 +33849,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
33849
33849
|
}
|
|
33850
33850
|
};
|
|
33851
33851
|
|
|
33852
|
-
// bazel-out/
|
|
33852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
33853
33853
|
var InliningMode;
|
|
33854
33854
|
(function(InliningMode2) {
|
|
33855
33855
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -34087,7 +34087,7 @@ function splitStringAtPoints(str, points) {
|
|
|
34087
34087
|
return splits;
|
|
34088
34088
|
}
|
|
34089
34089
|
|
|
34090
|
-
// bazel-out/
|
|
34090
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
34091
34091
|
var LF_CHAR = 10;
|
|
34092
34092
|
var CR_CHAR = 13;
|
|
34093
34093
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -34128,7 +34128,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
34128
34128
|
return low - 1;
|
|
34129
34129
|
}
|
|
34130
34130
|
|
|
34131
|
-
// bazel-out/
|
|
34131
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
34132
34132
|
var TemplateSource = class {
|
|
34133
34133
|
constructor(mapping, file) {
|
|
34134
34134
|
this.mapping = mapping;
|
|
@@ -34179,7 +34179,7 @@ var TemplateSourceManager = class {
|
|
|
34179
34179
|
}
|
|
34180
34180
|
};
|
|
34181
34181
|
|
|
34182
|
-
// bazel-out/
|
|
34182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
34183
34183
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
34184
34184
|
var SymbolBuilder = class {
|
|
34185
34185
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -34656,7 +34656,7 @@ function sourceSpanEqual(a, b) {
|
|
|
34656
34656
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
34657
34657
|
}
|
|
34658
34658
|
|
|
34659
|
-
// bazel-out/
|
|
34659
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
34660
34660
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
34661
34661
|
var TemplateTypeCheckerImpl = class {
|
|
34662
34662
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -35349,7 +35349,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
35349
35349
|
}
|
|
35350
35350
|
};
|
|
35351
35351
|
|
|
35352
|
-
// bazel-out/
|
|
35352
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
35353
35353
|
var TemplateCheckWithVisitor = class {
|
|
35354
35354
|
run(ctx, component, template2) {
|
|
35355
35355
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -35425,7 +35425,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
35425
35425
|
}
|
|
35426
35426
|
};
|
|
35427
35427
|
|
|
35428
|
-
// bazel-out/
|
|
35428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
35429
35429
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
35430
35430
|
constructor() {
|
|
35431
35431
|
super(...arguments);
|
|
@@ -35450,7 +35450,7 @@ var factory = {
|
|
|
35450
35450
|
create: () => new InvalidBananaInBoxCheck()
|
|
35451
35451
|
};
|
|
35452
35452
|
|
|
35453
|
-
// bazel-out/
|
|
35453
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
35454
35454
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
35455
35455
|
["ngIf", "NgIf"],
|
|
35456
35456
|
["ngFor", "NgFor"],
|
|
@@ -35494,7 +35494,7 @@ var factory2 = {
|
|
|
35494
35494
|
}
|
|
35495
35495
|
};
|
|
35496
35496
|
|
|
35497
|
-
// bazel-out/
|
|
35497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
35498
35498
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
35499
35499
|
constructor() {
|
|
35500
35500
|
super(...arguments);
|
|
@@ -35526,7 +35526,7 @@ var factory3 = {
|
|
|
35526
35526
|
create: () => new MissingNgForOfLetCheck()
|
|
35527
35527
|
};
|
|
35528
35528
|
|
|
35529
|
-
// bazel-out/
|
|
35529
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
35530
35530
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
35531
35531
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
35532
35532
|
constructor() {
|
|
@@ -35570,7 +35570,7 @@ var factory4 = {
|
|
|
35570
35570
|
}
|
|
35571
35571
|
};
|
|
35572
35572
|
|
|
35573
|
-
// bazel-out/
|
|
35573
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
35574
35574
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
35575
35575
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
35576
35576
|
constructor() {
|
|
@@ -35615,7 +35615,7 @@ var factory5 = {
|
|
|
35615
35615
|
}
|
|
35616
35616
|
};
|
|
35617
35617
|
|
|
35618
|
-
// bazel-out/
|
|
35618
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
35619
35619
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
35620
35620
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
35621
35621
|
constructor() {
|
|
@@ -35638,7 +35638,7 @@ var factory6 = {
|
|
|
35638
35638
|
create: () => new SuffixNotSupportedCheck()
|
|
35639
35639
|
};
|
|
35640
35640
|
|
|
35641
|
-
// bazel-out/
|
|
35641
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
35642
35642
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
35643
35643
|
constructor() {
|
|
35644
35644
|
super(...arguments);
|
|
@@ -35676,10 +35676,10 @@ var factory7 = {
|
|
|
35676
35676
|
create: () => new TextAttributeNotBindingSpec()
|
|
35677
35677
|
};
|
|
35678
35678
|
|
|
35679
|
-
// bazel-out/
|
|
35679
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
35680
35680
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
35681
35681
|
|
|
35682
|
-
// bazel-out/
|
|
35682
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
35683
35683
|
var DiagnosticCategoryLabel;
|
|
35684
35684
|
(function(DiagnosticCategoryLabel2) {
|
|
35685
35685
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -35687,7 +35687,7 @@ var DiagnosticCategoryLabel;
|
|
|
35687
35687
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
35688
35688
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
35689
35689
|
|
|
35690
|
-
// bazel-out/
|
|
35690
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
35691
35691
|
var ExtendedTemplateCheckerImpl = class {
|
|
35692
35692
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
35693
35693
|
var _a2, _b, _c, _d, _e;
|
|
@@ -35739,7 +35739,7 @@ function assertNever(value) {
|
|
|
35739
35739
|
${value}`);
|
|
35740
35740
|
}
|
|
35741
35741
|
|
|
35742
|
-
// bazel-out/
|
|
35742
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
35743
35743
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
35744
35744
|
factory,
|
|
35745
35745
|
factory4,
|
|
@@ -35750,7 +35750,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
35750
35750
|
factory6
|
|
35751
35751
|
];
|
|
35752
35752
|
|
|
35753
|
-
// bazel-out/
|
|
35753
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
35754
35754
|
var CompilationTicketKind;
|
|
35755
35755
|
(function(CompilationTicketKind2) {
|
|
35756
35756
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -35898,10 +35898,17 @@ var NgCompiler = class {
|
|
|
35898
35898
|
const compilation = this.ensureAnalyzed();
|
|
35899
35899
|
const ttc = compilation.templateTypeChecker;
|
|
35900
35900
|
const diagnostics = [];
|
|
35901
|
-
|
|
35902
|
-
|
|
35903
|
-
|
|
35904
|
-
|
|
35901
|
+
try {
|
|
35902
|
+
diagnostics.push(...ttc.getDiagnosticsForComponent(component));
|
|
35903
|
+
const extendedTemplateChecker = compilation.extendedTemplateChecker;
|
|
35904
|
+
if (this.options.strictTemplates && extendedTemplateChecker) {
|
|
35905
|
+
diagnostics.push(...extendedTemplateChecker.getDiagnosticsForComponent(component));
|
|
35906
|
+
}
|
|
35907
|
+
} catch (err) {
|
|
35908
|
+
if (!(err instanceof FatalDiagnosticError)) {
|
|
35909
|
+
throw err;
|
|
35910
|
+
}
|
|
35911
|
+
diagnostics.push(err.toDiagnostic());
|
|
35905
35912
|
}
|
|
35906
35913
|
return this.addMessageTextDetails(diagnostics);
|
|
35907
35914
|
}
|
|
@@ -36462,7 +36469,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
36462
36469
|
return versions;
|
|
36463
36470
|
}
|
|
36464
36471
|
|
|
36465
|
-
// bazel-out/
|
|
36472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
36466
36473
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
36467
36474
|
var DelegatingCompilerHost2 = class {
|
|
36468
36475
|
constructor(delegate) {
|
|
@@ -36595,7 +36602,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
36595
36602
|
}
|
|
36596
36603
|
};
|
|
36597
36604
|
|
|
36598
|
-
// bazel-out/
|
|
36605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
36599
36606
|
var NgtscProgram = class {
|
|
36600
36607
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
36601
36608
|
this.options = options;
|
|
@@ -36813,21 +36820,21 @@ function mergeEmitResults(emitResults) {
|
|
|
36813
36820
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
36814
36821
|
}
|
|
36815
36822
|
|
|
36816
|
-
// bazel-out/
|
|
36823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
36817
36824
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
36818
36825
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
36819
36826
|
}
|
|
36820
36827
|
|
|
36821
|
-
// bazel-out/
|
|
36828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
36822
36829
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
36823
36830
|
|
|
36824
|
-
// bazel-out/
|
|
36831
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
36825
36832
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
36826
36833
|
|
|
36827
|
-
// bazel-out/
|
|
36834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
36828
36835
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
36829
36836
|
|
|
36830
|
-
// bazel-out/
|
|
36837
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
36831
36838
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
36832
36839
|
ngDevMode: false,
|
|
36833
36840
|
ngI18nClosureMode: false
|
|
@@ -36836,7 +36843,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
36836
36843
|
ngJitMode: false
|
|
36837
36844
|
});
|
|
36838
36845
|
|
|
36839
|
-
// bazel-out/
|
|
36846
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
36840
36847
|
var LogLevel;
|
|
36841
36848
|
(function(LogLevel2) {
|
|
36842
36849
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -36845,7 +36852,7 @@ var LogLevel;
|
|
|
36845
36852
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
36846
36853
|
})(LogLevel || (LogLevel = {}));
|
|
36847
36854
|
|
|
36848
|
-
// bazel-out/
|
|
36855
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
36849
36856
|
var RESET = "\x1B[0m";
|
|
36850
36857
|
var RED = "\x1B[31m";
|
|
36851
36858
|
var YELLOW = "\x1B[33m";
|
|
@@ -36854,18 +36861,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
36854
36861
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
36855
36862
|
var ERROR = `${RED}Error:${RESET}`;
|
|
36856
36863
|
|
|
36857
|
-
// bazel-out/
|
|
36864
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
36858
36865
|
setFileSystem(new NodeJSFileSystem());
|
|
36859
36866
|
|
|
36860
|
-
// bazel-out/
|
|
36867
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
36861
36868
|
var import_fs2 = require("fs");
|
|
36862
36869
|
var import_path8 = require("path");
|
|
36863
36870
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
36864
36871
|
|
|
36865
|
-
// bazel-out/
|
|
36872
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
36866
36873
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
36867
36874
|
|
|
36868
|
-
// bazel-out/
|
|
36875
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
36869
36876
|
var import_path4 = require("path");
|
|
36870
36877
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
36871
36878
|
var ImportManager2 = class {
|
|
@@ -37049,7 +37056,7 @@ ${text2}`;
|
|
|
37049
37056
|
}
|
|
37050
37057
|
};
|
|
37051
37058
|
|
|
37052
|
-
// bazel-out/
|
|
37059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
37053
37060
|
var ChangeTracker = class {
|
|
37054
37061
|
constructor(_printer, _importRemapper) {
|
|
37055
37062
|
__publicField(this, "_printer");
|
|
@@ -37105,7 +37112,7 @@ function normalizePath(path3) {
|
|
|
37105
37112
|
return path3.replace(/\\/g, "/");
|
|
37106
37113
|
}
|
|
37107
37114
|
|
|
37108
|
-
// bazel-out/
|
|
37115
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
37109
37116
|
var import_core13 = require("@angular-devkit/core");
|
|
37110
37117
|
function getProjectTsConfigPaths(tree) {
|
|
37111
37118
|
return __async(this, null, function* () {
|
|
@@ -37185,11 +37192,11 @@ function getWorkspace(tree) {
|
|
|
37185
37192
|
});
|
|
37186
37193
|
}
|
|
37187
37194
|
|
|
37188
|
-
// bazel-out/
|
|
37195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
37189
37196
|
var import_path5 = require("path");
|
|
37190
37197
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
37191
37198
|
|
|
37192
|
-
// bazel-out/
|
|
37199
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
37193
37200
|
var path2 = __toESM(require("path"), 1);
|
|
37194
37201
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
37195
37202
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -37206,7 +37213,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
37206
37213
|
return import_typescript100.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
37207
37214
|
}
|
|
37208
37215
|
|
|
37209
|
-
// bazel-out/
|
|
37216
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
37210
37217
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
37211
37218
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
37212
37219
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -37235,13 +37242,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
37235
37242
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
37236
37243
|
}
|
|
37237
37244
|
|
|
37238
|
-
// bazel-out/
|
|
37245
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
37239
37246
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
37240
37247
|
|
|
37241
|
-
// bazel-out/
|
|
37248
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
37242
37249
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
37243
37250
|
|
|
37244
|
-
// bazel-out/
|
|
37251
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
37245
37252
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
37246
37253
|
function getImportOfIdentifier(typeChecker, node) {
|
|
37247
37254
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -37292,7 +37299,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
37292
37299
|
});
|
|
37293
37300
|
}
|
|
37294
37301
|
|
|
37295
|
-
// bazel-out/
|
|
37302
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
37296
37303
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
37297
37304
|
if (!import_typescript103.default.isCallExpression(decorator.expression) || !import_typescript103.default.isIdentifier(decorator.expression.expression)) {
|
|
37298
37305
|
return null;
|
|
@@ -37301,7 +37308,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
37301
37308
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
37302
37309
|
}
|
|
37303
37310
|
|
|
37304
|
-
// bazel-out/
|
|
37311
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
37305
37312
|
function getAngularDecorators(typeChecker, decorators) {
|
|
37306
37313
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
37307
37314
|
node,
|
|
@@ -37311,7 +37318,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
37311
37318
|
}));
|
|
37312
37319
|
}
|
|
37313
37320
|
|
|
37314
|
-
// bazel-out/
|
|
37321
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
37315
37322
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
37316
37323
|
function closestNode(node, predicate) {
|
|
37317
37324
|
let current = node.parent;
|
|
@@ -37324,7 +37331,7 @@ function closestNode(node, predicate) {
|
|
|
37324
37331
|
return null;
|
|
37325
37332
|
}
|
|
37326
37333
|
|
|
37327
|
-
// bazel-out/
|
|
37334
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
37328
37335
|
var import_path6 = require("path");
|
|
37329
37336
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
37330
37337
|
var UniqueItemTracker = class {
|
|
@@ -37500,7 +37507,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
37500
37507
|
}));
|
|
37501
37508
|
}
|
|
37502
37509
|
|
|
37503
|
-
// bazel-out/
|
|
37510
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
37504
37511
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
37505
37512
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
37506
37513
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -37699,14 +37706,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
37699
37706
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
37700
37707
|
}
|
|
37701
37708
|
|
|
37702
|
-
// bazel-out/
|
|
37709
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
37703
37710
|
var import_path7 = require("path");
|
|
37704
37711
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
37705
37712
|
|
|
37706
|
-
// bazel-out/
|
|
37713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
37707
37714
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
37708
37715
|
|
|
37709
|
-
// bazel-out/
|
|
37716
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
37710
37717
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
37711
37718
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
37712
37719
|
var _a2, _b;
|
|
@@ -37715,7 +37722,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
37715
37722
|
return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
|
|
37716
37723
|
}
|
|
37717
37724
|
|
|
37718
|
-
// bazel-out/
|
|
37725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
37719
37726
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
37720
37727
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
37721
37728
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -38078,7 +38085,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
38078
38085
|
return metadata != null && metadata.isStandalone;
|
|
38079
38086
|
}
|
|
38080
38087
|
|
|
38081
|
-
// bazel-out/
|
|
38088
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
38082
38089
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
38083
38090
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
38084
38091
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -38455,7 +38462,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
38455
38462
|
return false;
|
|
38456
38463
|
}
|
|
38457
38464
|
|
|
38458
|
-
// bazel-out/
|
|
38465
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
38459
38466
|
var MigrationMode;
|
|
38460
38467
|
(function(MigrationMode2) {
|
|
38461
38468
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|