@angular/core 16.2.4 → 16.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/render3/after_render_hooks.mjs +83 -49
- package/esm2022/src/render3/reactive_lview_consumer.mjs +1 -1
- package/esm2022/src/signals/src/api.mjs +2 -2
- package/esm2022/src/signals/src/computed.mjs +50 -45
- package/esm2022/src/signals/src/graph.mjs +7 -2
- package/esm2022/src/signals/src/signal.mjs +11 -6
- package/esm2022/src/signals/src/watch.mjs +16 -11
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +223 -171
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +82 -62
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +223 -171
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +6 -20
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
- package/schematics/migrations/remove-module-id/bundle.js +14 -14
- package/schematics/ng-generate/standalone-migration/bundle.js +376 -376
- package/schematics/ng-generate/standalone-migration/bundle.js.map +1 -1
- 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/output/output_ast.mjs
|
|
748
748
|
var output_ast_exports = {};
|
|
749
749
|
__export(output_ast_exports, {
|
|
750
750
|
ArrayType: () => ArrayType,
|
|
@@ -830,7 +830,7 @@ __export(output_ast_exports, {
|
|
|
830
830
|
variable: () => variable
|
|
831
831
|
});
|
|
832
832
|
|
|
833
|
-
// bazel-out/
|
|
833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/big_integer.mjs
|
|
834
834
|
var BigInteger = class {
|
|
835
835
|
static zero() {
|
|
836
836
|
return new BigInteger([0]);
|
|
@@ -922,7 +922,7 @@ var BigIntExponentiation = class {
|
|
|
922
922
|
}
|
|
923
923
|
};
|
|
924
924
|
|
|
925
|
-
// bazel-out/
|
|
925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
926
926
|
var textEncoder;
|
|
927
927
|
function digest(message) {
|
|
928
928
|
return message.id || computeDigest(message);
|
|
@@ -1185,7 +1185,7 @@ function wordsToDecimalString(hi, lo) {
|
|
|
1185
1185
|
return decimal.toString();
|
|
1186
1186
|
}
|
|
1187
1187
|
|
|
1188
|
-
// bazel-out/
|
|
1188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1189
1189
|
var TypeModifier;
|
|
1190
1190
|
(function(TypeModifier2) {
|
|
1191
1191
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -2334,7 +2334,7 @@ function serializeTags(tags) {
|
|
|
2334
2334
|
return out;
|
|
2335
2335
|
}
|
|
2336
2336
|
|
|
2337
|
-
// bazel-out/
|
|
2337
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
2338
2338
|
var CONSTANT_PREFIX = "_c";
|
|
2339
2339
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
2340
2340
|
var KEY_CONTEXT = {};
|
|
@@ -2502,7 +2502,7 @@ function isLongStringLiteral(expr) {
|
|
|
2502
2502
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2503
2503
|
}
|
|
2504
2504
|
|
|
2505
|
-
// bazel-out/
|
|
2505
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2506
2506
|
var CORE = "@angular/core";
|
|
2507
2507
|
var _Identifiers = class {
|
|
2508
2508
|
};
|
|
@@ -3063,7 +3063,7 @@ var Identifiers = _Identifiers;
|
|
|
3063
3063
|
_Identifiers.validateIframeAttribute = { name: "\u0275\u0275validateIframeAttribute", moduleName: CORE };
|
|
3064
3064
|
})();
|
|
3065
3065
|
|
|
3066
|
-
// bazel-out/
|
|
3066
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
3067
3067
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
3068
3068
|
function dashCaseToCamelCase(input) {
|
|
3069
3069
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -3151,7 +3151,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
3151
3151
|
return [truthy, falsy];
|
|
3152
3152
|
}
|
|
3153
3153
|
|
|
3154
|
-
// bazel-out/
|
|
3154
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
3155
3155
|
var VERSION = 3;
|
|
3156
3156
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
3157
3157
|
var SourceMapGenerator = class {
|
|
@@ -3280,7 +3280,7 @@ function toBase64Digit(value) {
|
|
|
3280
3280
|
return B64_DIGITS[value];
|
|
3281
3281
|
}
|
|
3282
3282
|
|
|
3283
|
-
// bazel-out/
|
|
3283
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
3284
3284
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
3285
3285
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
3286
3286
|
var _INDENT_WITH = " ";
|
|
@@ -3758,7 +3758,7 @@ function _createIndent(count) {
|
|
|
3758
3758
|
return res;
|
|
3759
3759
|
}
|
|
3760
3760
|
|
|
3761
|
-
// bazel-out/
|
|
3761
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3762
3762
|
function typeWithParameters(type, numParams) {
|
|
3763
3763
|
if (numParams === 0) {
|
|
3764
3764
|
return expressionType(type);
|
|
@@ -3826,7 +3826,7 @@ function generateForwardRef(expr) {
|
|
|
3826
3826
|
return importExpr(Identifiers.forwardRef).callFn([fn([], [new ReturnStatement(expr)])]);
|
|
3827
3827
|
}
|
|
3828
3828
|
|
|
3829
|
-
// bazel-out/
|
|
3829
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3830
3830
|
var R3FactoryDelegateType;
|
|
3831
3831
|
(function(R3FactoryDelegateType2) {
|
|
3832
3832
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3971,7 +3971,7 @@ function getInjectFn(target) {
|
|
|
3971
3971
|
}
|
|
3972
3972
|
}
|
|
3973
3973
|
|
|
3974
|
-
// bazel-out/
|
|
3974
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3975
3975
|
var Comment = class {
|
|
3976
3976
|
constructor(value, sourceSpan) {
|
|
3977
3977
|
this.value = value;
|
|
@@ -4303,7 +4303,7 @@ function visitAll(visitor, nodes) {
|
|
|
4303
4303
|
return result;
|
|
4304
4304
|
}
|
|
4305
4305
|
|
|
4306
|
-
// bazel-out/
|
|
4306
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
4307
4307
|
var Message = class {
|
|
4308
4308
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
4309
4309
|
this.nodes = nodes;
|
|
@@ -4466,7 +4466,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4466
4466
|
}
|
|
4467
4467
|
};
|
|
4468
4468
|
|
|
4469
|
-
// bazel-out/
|
|
4469
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
4470
4470
|
var Serializer = class {
|
|
4471
4471
|
createNameMapper(message) {
|
|
4472
4472
|
return null;
|
|
@@ -4518,7 +4518,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
4518
4518
|
}
|
|
4519
4519
|
};
|
|
4520
4520
|
|
|
4521
|
-
// bazel-out/
|
|
4521
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4522
4522
|
var _Visitor = class {
|
|
4523
4523
|
visitTag(tag) {
|
|
4524
4524
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4606,7 +4606,7 @@ function escapeXml(text2) {
|
|
|
4606
4606
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
4607
4607
|
}
|
|
4608
4608
|
|
|
4609
|
-
// bazel-out/
|
|
4609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4610
4610
|
var _MESSAGES_TAG = "messagebundle";
|
|
4611
4611
|
var _MESSAGE_TAG = "msg";
|
|
4612
4612
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -4749,7 +4749,7 @@ function toPublicName(internalName) {
|
|
|
4749
4749
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4750
4750
|
}
|
|
4751
4751
|
|
|
4752
|
-
// bazel-out/
|
|
4752
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4753
4753
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
4754
4754
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
4755
4755
|
var I18N_ATTR = "i18n";
|
|
@@ -4851,7 +4851,7 @@ function declareI18nVariable(variable2) {
|
|
|
4851
4851
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
4852
4852
|
}
|
|
4853
4853
|
|
|
4854
|
-
// bazel-out/
|
|
4854
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4855
4855
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4856
4856
|
var TEMPORARY_NAME = "_t";
|
|
4857
4857
|
var CONTEXT_NAME = "ctx";
|
|
@@ -5067,7 +5067,7 @@ function getInstructionStatements(instructions) {
|
|
|
5067
5067
|
return statements;
|
|
5068
5068
|
}
|
|
5069
5069
|
|
|
5070
|
-
// bazel-out/
|
|
5070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
5071
5071
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
5072
5072
|
let result = null;
|
|
5073
5073
|
const factoryMeta = {
|
|
@@ -5155,7 +5155,7 @@ function createFactoryFunction(type) {
|
|
|
5155
5155
|
return fn([new FnParam("t", DYNAMIC_TYPE)], [new ReturnStatement(type.prop("\u0275fac").callFn([variable("t")]))]);
|
|
5156
5156
|
}
|
|
5157
5157
|
|
|
5158
|
-
// bazel-out/
|
|
5158
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
5159
5159
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
5160
5160
|
/^\s*$/,
|
|
5161
5161
|
/[<>]/,
|
|
@@ -5177,7 +5177,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
5177
5177
|
}
|
|
5178
5178
|
}
|
|
5179
5179
|
|
|
5180
|
-
// bazel-out/
|
|
5180
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/interpolation_config.mjs
|
|
5181
5181
|
var InterpolationConfig = class {
|
|
5182
5182
|
static fromArray(markers) {
|
|
5183
5183
|
if (!markers) {
|
|
@@ -5193,7 +5193,7 @@ var InterpolationConfig = class {
|
|
|
5193
5193
|
};
|
|
5194
5194
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
5195
5195
|
|
|
5196
|
-
// bazel-out/
|
|
5196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
5197
5197
|
var $EOF = 0;
|
|
5198
5198
|
var $BSPACE = 8;
|
|
5199
5199
|
var $TAB = 9;
|
|
@@ -5274,7 +5274,7 @@ function isQuote(code) {
|
|
|
5274
5274
|
return code === $SQ || code === $DQ || code === $BT;
|
|
5275
5275
|
}
|
|
5276
5276
|
|
|
5277
|
-
// bazel-out/
|
|
5277
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
5278
5278
|
var ParseLocation = class {
|
|
5279
5279
|
constructor(file, offset, line, col) {
|
|
5280
5280
|
this.file = file;
|
|
@@ -5421,7 +5421,7 @@ function sanitizeIdentifier(name) {
|
|
|
5421
5421
|
return name.replace(/\W/g, "_");
|
|
5422
5422
|
}
|
|
5423
5423
|
|
|
5424
|
-
// bazel-out/
|
|
5424
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5425
5425
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5426
5426
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5427
5427
|
constructor() {
|
|
@@ -5492,7 +5492,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5492
5492
|
}
|
|
5493
5493
|
};
|
|
5494
5494
|
|
|
5495
|
-
// bazel-out/
|
|
5495
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5496
5496
|
var policy;
|
|
5497
5497
|
function getPolicy() {
|
|
5498
5498
|
if (policy === void 0) {
|
|
@@ -5529,7 +5529,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5529
5529
|
return fn2.bind(_global);
|
|
5530
5530
|
}
|
|
5531
5531
|
|
|
5532
|
-
// bazel-out/
|
|
5532
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5533
5533
|
var JitEvaluator = class {
|
|
5534
5534
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5535
5535
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5620,7 +5620,7 @@ function isUseStrictStatement(statement) {
|
|
|
5620
5620
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5621
5621
|
}
|
|
5622
5622
|
|
|
5623
|
-
// bazel-out/
|
|
5623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5624
5624
|
function compileInjector(meta) {
|
|
5625
5625
|
const definitionMap = new DefinitionMap();
|
|
5626
5626
|
if (meta.providers !== null) {
|
|
@@ -5637,7 +5637,7 @@ function createInjectorType(meta) {
|
|
|
5637
5637
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5638
5638
|
}
|
|
5639
5639
|
|
|
5640
|
-
// bazel-out/
|
|
5640
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5641
5641
|
var R3JitReflector = class {
|
|
5642
5642
|
constructor(context) {
|
|
5643
5643
|
this.context = context;
|
|
@@ -5653,7 +5653,7 @@ var R3JitReflector = class {
|
|
|
5653
5653
|
}
|
|
5654
5654
|
};
|
|
5655
5655
|
|
|
5656
|
-
// bazel-out/
|
|
5656
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5657
5657
|
var R3SelectorScopeMode;
|
|
5658
5658
|
(function(R3SelectorScopeMode2) {
|
|
5659
5659
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5797,7 +5797,7 @@ function tupleOfTypes(types) {
|
|
|
5797
5797
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5798
5798
|
}
|
|
5799
5799
|
|
|
5800
|
-
// bazel-out/
|
|
5800
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5801
5801
|
function compilePipeFromMetadata(metadata) {
|
|
5802
5802
|
const definitionMapValues = [];
|
|
5803
5803
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5818,7 +5818,7 @@ function createPipeType(metadata) {
|
|
|
5818
5818
|
]));
|
|
5819
5819
|
}
|
|
5820
5820
|
|
|
5821
|
-
// bazel-out/
|
|
5821
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5822
5822
|
var R3TemplateDependencyKind;
|
|
5823
5823
|
(function(R3TemplateDependencyKind2) {
|
|
5824
5824
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5826,7 +5826,7 @@ var R3TemplateDependencyKind;
|
|
|
5826
5826
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5827
5827
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5828
5828
|
|
|
5829
|
-
// bazel-out/
|
|
5829
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
5830
5830
|
var ParserError = class {
|
|
5831
5831
|
constructor(message, input, errLocation, ctxLocation) {
|
|
5832
5832
|
this.input = input;
|
|
@@ -6492,7 +6492,7 @@ var BoundElementProperty = class {
|
|
|
6492
6492
|
}
|
|
6493
6493
|
};
|
|
6494
6494
|
|
|
6495
|
-
// bazel-out/
|
|
6495
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
6496
6496
|
var _EventHandlerVars = class {
|
|
6497
6497
|
};
|
|
6498
6498
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -7114,7 +7114,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
7114
7114
|
}
|
|
7115
7115
|
};
|
|
7116
7116
|
|
|
7117
|
-
// bazel-out/
|
|
7117
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
7118
7118
|
var _SECURITY_SCHEMA;
|
|
7119
7119
|
function SECURITY_SCHEMA() {
|
|
7120
7120
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -7172,7 +7172,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
7172
7172
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
7173
7173
|
}
|
|
7174
7174
|
|
|
7175
|
-
// bazel-out/
|
|
7175
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
7176
7176
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
7177
7177
|
"inherit",
|
|
7178
7178
|
"initial",
|
|
@@ -7639,7 +7639,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7639
7639
|
}
|
|
7640
7640
|
}
|
|
7641
7641
|
|
|
7642
|
-
// bazel-out/
|
|
7642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
7643
7643
|
var TagContentType;
|
|
7644
7644
|
(function(TagContentType2) {
|
|
7645
7645
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -7672,7 +7672,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
7672
7672
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
7673
7673
|
}
|
|
7674
7674
|
|
|
7675
|
-
// bazel-out/
|
|
7675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/element.mjs
|
|
7676
7676
|
var BindingKind;
|
|
7677
7677
|
(function(BindingKind2) {
|
|
7678
7678
|
BindingKind2[BindingKind2["Attribute"] = 0] = "Attribute";
|
|
@@ -7753,7 +7753,7 @@ function assertIsElementAttributes(attrs) {
|
|
|
7753
7753
|
}
|
|
7754
7754
|
}
|
|
7755
7755
|
|
|
7756
|
-
// bazel-out/
|
|
7756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7757
7757
|
var OpKind;
|
|
7758
7758
|
(function(OpKind2) {
|
|
7759
7759
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -7827,7 +7827,7 @@ var SanitizerFn;
|
|
|
7827
7827
|
SanitizerFn2[SanitizerFn2["IframeAttribute"] = 5] = "IframeAttribute";
|
|
7828
7828
|
})(SanitizerFn || (SanitizerFn = {}));
|
|
7829
7829
|
|
|
7830
|
-
// bazel-out/
|
|
7830
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7831
7831
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7832
7832
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7833
7833
|
var UsesSlotIndex = Symbol("UsesSlotIndex");
|
|
@@ -7868,7 +7868,7 @@ function hasUsesSlotIndexTrait(value) {
|
|
|
7868
7868
|
return value[UsesSlotIndex] === true;
|
|
7869
7869
|
}
|
|
7870
7870
|
|
|
7871
|
-
// bazel-out/
|
|
7871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
7872
7872
|
function createStatementOp(statement) {
|
|
7873
7873
|
return __spreadValues({
|
|
7874
7874
|
kind: OpKind.Statement,
|
|
@@ -7889,7 +7889,7 @@ var NEW_OP = {
|
|
|
7889
7889
|
next: null
|
|
7890
7890
|
};
|
|
7891
7891
|
|
|
7892
|
-
// bazel-out/
|
|
7892
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
7893
7893
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
7894
7894
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
7895
7895
|
kind: OpKind.InterpolateText,
|
|
@@ -7985,7 +7985,7 @@ function createAdvanceOp(delta, sourceSpan) {
|
|
|
7985
7985
|
}, NEW_OP);
|
|
7986
7986
|
}
|
|
7987
7987
|
|
|
7988
|
-
// bazel-out/
|
|
7988
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7989
7989
|
var _a;
|
|
7990
7990
|
var _b;
|
|
7991
7991
|
var _c;
|
|
@@ -8658,7 +8658,7 @@ function transformExpressionsInStatement(stmt, transform, flags) {
|
|
|
8658
8658
|
}
|
|
8659
8659
|
}
|
|
8660
8660
|
|
|
8661
|
-
// bazel-out/
|
|
8661
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
8662
8662
|
var _OpList = class {
|
|
8663
8663
|
constructor() {
|
|
8664
8664
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -8837,7 +8837,7 @@ var OpList = _OpList;
|
|
|
8837
8837
|
_OpList.nextListId = 0;
|
|
8838
8838
|
})();
|
|
8839
8839
|
|
|
8840
|
-
// bazel-out/
|
|
8840
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
8841
8841
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
8842
8842
|
OpKind.Element,
|
|
8843
8843
|
OpKind.ElementStart,
|
|
@@ -8947,7 +8947,7 @@ function createNamespaceOp(namespace) {
|
|
|
8947
8947
|
}, NEW_OP);
|
|
8948
8948
|
}
|
|
8949
8949
|
|
|
8950
|
-
// bazel-out/
|
|
8950
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
8951
8951
|
function createHostPropertyOp(name, expression, sourceSpan) {
|
|
8952
8952
|
return __spreadValues(__spreadValues({
|
|
8953
8953
|
kind: OpKind.HostProperty,
|
|
@@ -8957,7 +8957,7 @@ function createHostPropertyOp(name, expression, sourceSpan) {
|
|
|
8957
8957
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
8958
8958
|
}
|
|
8959
8959
|
|
|
8960
|
-
// bazel-out/
|
|
8960
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
8961
8961
|
var CompilationUnit = class {
|
|
8962
8962
|
constructor(xref) {
|
|
8963
8963
|
this.xref = xref;
|
|
@@ -9048,7 +9048,7 @@ var ViewCompilationUnit = class extends CompilationUnit {
|
|
|
9048
9048
|
}
|
|
9049
9049
|
};
|
|
9050
9050
|
|
|
9051
|
-
// bazel-out/
|
|
9051
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
9052
9052
|
function phaseVarCounting(job) {
|
|
9053
9053
|
for (const unit of job.units) {
|
|
9054
9054
|
let varCount = 0;
|
|
@@ -9121,7 +9121,7 @@ function varsUsedByIrExpression(expr) {
|
|
|
9121
9121
|
}
|
|
9122
9122
|
}
|
|
9123
9123
|
|
|
9124
|
-
// bazel-out/
|
|
9124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/align_pipe_variadic_var_offset.mjs
|
|
9125
9125
|
function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
9126
9126
|
for (const view of cpl.views.values()) {
|
|
9127
9127
|
for (const op of view.update) {
|
|
@@ -9142,7 +9142,7 @@ function phaseAlignPipeVariadicVarOffset(cpl) {
|
|
|
9142
9142
|
}
|
|
9143
9143
|
}
|
|
9144
9144
|
|
|
9145
|
-
// bazel-out/
|
|
9145
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
9146
9146
|
function phaseFindAnyCasts(cpl) {
|
|
9147
9147
|
for (const [_, view] of cpl.views) {
|
|
9148
9148
|
for (const op of view.ops()) {
|
|
@@ -9160,7 +9160,7 @@ function removeAnys(e) {
|
|
|
9160
9160
|
return e;
|
|
9161
9161
|
}
|
|
9162
9162
|
|
|
9163
|
-
// bazel-out/
|
|
9163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
9164
9164
|
function parse(value) {
|
|
9165
9165
|
const styles = [];
|
|
9166
9166
|
let i = 0;
|
|
@@ -9221,7 +9221,7 @@ function hyphenate(value) {
|
|
|
9221
9221
|
}).toLowerCase();
|
|
9222
9222
|
}
|
|
9223
9223
|
|
|
9224
|
-
// bazel-out/
|
|
9224
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
9225
9225
|
function getElementsByXrefId(view) {
|
|
9226
9226
|
const elements = /* @__PURE__ */ new Map();
|
|
9227
9227
|
for (const op of view.create) {
|
|
@@ -9233,7 +9233,7 @@ function getElementsByXrefId(view) {
|
|
|
9233
9233
|
return elements;
|
|
9234
9234
|
}
|
|
9235
9235
|
|
|
9236
|
-
// bazel-out/
|
|
9236
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
9237
9237
|
function phaseAttributeExtraction(cpl) {
|
|
9238
9238
|
for (const [_, view] of cpl.views) {
|
|
9239
9239
|
populateElementAttributes(view);
|
|
@@ -9308,7 +9308,7 @@ function extractAttributeOp(view, op, elements) {
|
|
|
9308
9308
|
}
|
|
9309
9309
|
}
|
|
9310
9310
|
|
|
9311
|
-
// bazel-out/
|
|
9311
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
9312
9312
|
function lookupElement2(elements, xref) {
|
|
9313
9313
|
const el = elements.get(xref);
|
|
9314
9314
|
if (el === void 0) {
|
|
@@ -9358,7 +9358,7 @@ function phaseBindingSpecialization(job) {
|
|
|
9358
9358
|
}
|
|
9359
9359
|
}
|
|
9360
9360
|
|
|
9361
|
-
// bazel-out/
|
|
9361
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9362
9362
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9363
9363
|
Identifiers.elementStart,
|
|
9364
9364
|
Identifiers.elementEnd,
|
|
@@ -9420,7 +9420,7 @@ function chainOperationsInList(opList) {
|
|
|
9420
9420
|
}
|
|
9421
9421
|
}
|
|
9422
9422
|
|
|
9423
|
-
// bazel-out/
|
|
9423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
9424
9424
|
function phaseConstCollection(cpl) {
|
|
9425
9425
|
for (const [_, view] of cpl.views) {
|
|
9426
9426
|
for (const op of view.create) {
|
|
@@ -9461,7 +9461,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n, projectAs, s
|
|
|
9461
9461
|
return literalArr(attrArray);
|
|
9462
9462
|
}
|
|
9463
9463
|
|
|
9464
|
-
// bazel-out/
|
|
9464
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
9465
9465
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
9466
9466
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
9467
9467
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]]
|
|
@@ -9482,7 +9482,7 @@ function phaseEmptyElements(cpl) {
|
|
|
9482
9482
|
}
|
|
9483
9483
|
}
|
|
9484
9484
|
|
|
9485
|
-
// bazel-out/
|
|
9485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
9486
9486
|
function phaseExpandSafeReads(job) {
|
|
9487
9487
|
for (const unit of job.units) {
|
|
9488
9488
|
for (const op of unit.ops()) {
|
|
@@ -9618,7 +9618,7 @@ function ternaryTransform(e) {
|
|
|
9618
9618
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
9619
9619
|
}
|
|
9620
9620
|
|
|
9621
|
-
// bazel-out/
|
|
9621
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
9622
9622
|
function phaseGenerateAdvance(cpl) {
|
|
9623
9623
|
for (const [_, view] of cpl.views) {
|
|
9624
9624
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -9650,7 +9650,7 @@ function phaseGenerateAdvance(cpl) {
|
|
|
9650
9650
|
}
|
|
9651
9651
|
}
|
|
9652
9652
|
|
|
9653
|
-
// bazel-out/
|
|
9653
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
9654
9654
|
function phaseGenerateVariables(cpl) {
|
|
9655
9655
|
recursivelyProcessView(cpl.root, null);
|
|
9656
9656
|
}
|
|
@@ -9730,7 +9730,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
9730
9730
|
return newOps;
|
|
9731
9731
|
}
|
|
9732
9732
|
|
|
9733
|
-
// bazel-out/
|
|
9733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
9734
9734
|
var STYLE_DOT = "style.";
|
|
9735
9735
|
var CLASS_DOT = "class.";
|
|
9736
9736
|
function phaseHostStylePropertyParsing(job) {
|
|
@@ -9778,7 +9778,7 @@ function parseProperty(name) {
|
|
|
9778
9778
|
return { property: property2, suffix };
|
|
9779
9779
|
}
|
|
9780
9780
|
|
|
9781
|
-
// bazel-out/
|
|
9781
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
9782
9782
|
function phaseLocalRefs(cpl) {
|
|
9783
9783
|
for (const view of cpl.views.values()) {
|
|
9784
9784
|
for (const op of view.create) {
|
|
@@ -9809,7 +9809,7 @@ function serializeLocalRefs(refs) {
|
|
|
9809
9809
|
return literalArr(constRefs);
|
|
9810
9810
|
}
|
|
9811
9811
|
|
|
9812
|
-
// bazel-out/
|
|
9812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
9813
9813
|
function phaseNamespace(job) {
|
|
9814
9814
|
for (const [_, view] of job.views) {
|
|
9815
9815
|
let activeNamespace = Namespace.HTML;
|
|
@@ -9825,7 +9825,7 @@ function phaseNamespace(job) {
|
|
|
9825
9825
|
}
|
|
9826
9826
|
}
|
|
9827
9827
|
|
|
9828
|
-
// bazel-out/
|
|
9828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9829
9829
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9830
9830
|
["&&", BinaryOperator.And],
|
|
9831
9831
|
[">", BinaryOperator.Bigger],
|
|
@@ -9868,7 +9868,7 @@ function prefixWithNamespace(strippedTag, namespace) {
|
|
|
9868
9868
|
return `:${keyForNamespace(namespace)}:${strippedTag}`;
|
|
9869
9869
|
}
|
|
9870
9870
|
|
|
9871
|
-
// bazel-out/
|
|
9871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
9872
9872
|
function phaseNaming(cpl) {
|
|
9873
9873
|
addNamesToView(cpl.root, cpl.componentName, { index: 0 }, cpl.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
9874
9874
|
}
|
|
@@ -9963,7 +9963,7 @@ function stripImportant(name) {
|
|
|
9963
9963
|
return name;
|
|
9964
9964
|
}
|
|
9965
9965
|
|
|
9966
|
-
// bazel-out/
|
|
9966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
9967
9967
|
function phaseMergeNextContext(cpl) {
|
|
9968
9968
|
for (const view of cpl.views.values()) {
|
|
9969
9969
|
for (const op of view.create) {
|
|
@@ -10008,7 +10008,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
10008
10008
|
}
|
|
10009
10009
|
}
|
|
10010
10010
|
|
|
10011
|
-
// bazel-out/
|
|
10011
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
10012
10012
|
var CONTAINER_TAG = "ng-container";
|
|
10013
10013
|
function phaseNgContainer(cpl) {
|
|
10014
10014
|
for (const [_, view] of cpl.views) {
|
|
@@ -10025,7 +10025,7 @@ function phaseNgContainer(cpl) {
|
|
|
10025
10025
|
}
|
|
10026
10026
|
}
|
|
10027
10027
|
|
|
10028
|
-
// bazel-out/
|
|
10028
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/no_listeners_on_templates.mjs
|
|
10029
10029
|
function phaseNoListenersOnTemplates(job) {
|
|
10030
10030
|
for (const unit of job.units) {
|
|
10031
10031
|
let inTemplate = false;
|
|
@@ -10050,7 +10050,7 @@ function phaseNoListenersOnTemplates(job) {
|
|
|
10050
10050
|
}
|
|
10051
10051
|
}
|
|
10052
10052
|
|
|
10053
|
-
// bazel-out/
|
|
10053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
10054
10054
|
function lookupElement3(elements, xref) {
|
|
10055
10055
|
const el = elements.get(xref);
|
|
10056
10056
|
if (el === void 0) {
|
|
@@ -10080,7 +10080,7 @@ function phaseNonbindable(job) {
|
|
|
10080
10080
|
}
|
|
10081
10081
|
}
|
|
10082
10082
|
|
|
10083
|
-
// bazel-out/
|
|
10083
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
10084
10084
|
function phaseNullishCoalescing(job) {
|
|
10085
10085
|
for (const unit of job.units) {
|
|
10086
10086
|
for (const op of unit.ops()) {
|
|
@@ -10096,7 +10096,7 @@ function phaseNullishCoalescing(job) {
|
|
|
10096
10096
|
}
|
|
10097
10097
|
}
|
|
10098
10098
|
|
|
10099
|
-
// bazel-out/
|
|
10099
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
10100
10100
|
function phasePipeCreation(cpl) {
|
|
10101
10101
|
for (const view of cpl.views.values()) {
|
|
10102
10102
|
processPipeBindingsInView(view);
|
|
@@ -10139,7 +10139,7 @@ function addPipeToCreationBlock(view, afterTargetXref, binding) {
|
|
|
10139
10139
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
10140
10140
|
}
|
|
10141
10141
|
|
|
10142
|
-
// bazel-out/
|
|
10142
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
10143
10143
|
function phasePipeVariadic(cpl) {
|
|
10144
10144
|
for (const view of cpl.views.values()) {
|
|
10145
10145
|
for (const op of view.update) {
|
|
@@ -10156,7 +10156,7 @@ function phasePipeVariadic(cpl) {
|
|
|
10156
10156
|
}
|
|
10157
10157
|
}
|
|
10158
10158
|
|
|
10159
|
-
// bazel-out/
|
|
10159
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/property_ordering.mjs
|
|
10160
10160
|
function kindTest(kind) {
|
|
10161
10161
|
return (op) => op.kind === kind;
|
|
10162
10162
|
}
|
|
@@ -10216,7 +10216,7 @@ function keepLast(ops) {
|
|
|
10216
10216
|
return ops.slice(ops.length - 1);
|
|
10217
10217
|
}
|
|
10218
10218
|
|
|
10219
|
-
// bazel-out/
|
|
10219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
10220
10220
|
function phasePureFunctionExtraction(job) {
|
|
10221
10221
|
for (const view of job.units) {
|
|
10222
10222
|
for (const op of view.ops()) {
|
|
@@ -10258,7 +10258,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
10258
10258
|
}
|
|
10259
10259
|
};
|
|
10260
10260
|
|
|
10261
|
-
// bazel-out/
|
|
10261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
10262
10262
|
function phasePureLiteralStructures(job) {
|
|
10263
10263
|
for (const view of job.units) {
|
|
10264
10264
|
for (const op of view.update) {
|
|
@@ -10305,7 +10305,7 @@ function transformLiteralMap(expr) {
|
|
|
10305
10305
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
10306
10306
|
}
|
|
10307
10307
|
|
|
10308
|
-
// bazel-out/
|
|
10308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
10309
10309
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
10310
10310
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
10311
10311
|
}
|
|
@@ -10689,7 +10689,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
10689
10689
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
10690
10690
|
}
|
|
10691
10691
|
|
|
10692
|
-
// bazel-out/
|
|
10692
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
10693
10693
|
var sanitizerIdentifierMap = /* @__PURE__ */ new Map([
|
|
10694
10694
|
[SanitizerFn.Html, Identifiers.sanitizeHtml],
|
|
10695
10695
|
[SanitizerFn.IframeAttribute, Identifiers.validateIframeAttribute],
|
|
@@ -10911,7 +10911,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
10911
10911
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
10912
10912
|
}
|
|
10913
10913
|
|
|
10914
|
-
// bazel-out/
|
|
10914
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
10915
10915
|
function phaseRemoveEmptyBindings(job) {
|
|
10916
10916
|
for (const unit of job.units) {
|
|
10917
10917
|
for (const op of unit.update) {
|
|
@@ -10932,7 +10932,7 @@ function phaseRemoveEmptyBindings(job) {
|
|
|
10932
10932
|
}
|
|
10933
10933
|
}
|
|
10934
10934
|
|
|
10935
|
-
// bazel-out/
|
|
10935
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
10936
10936
|
function phaseResolveContexts(cpl) {
|
|
10937
10937
|
for (const unit of cpl.units) {
|
|
10938
10938
|
processLexicalScope(unit, unit.create);
|
|
@@ -10970,7 +10970,7 @@ function processLexicalScope(view, ops) {
|
|
|
10970
10970
|
}
|
|
10971
10971
|
}
|
|
10972
10972
|
|
|
10973
|
-
// bazel-out/
|
|
10973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
10974
10974
|
function phaseResolveDollarEvent(cpl) {
|
|
10975
10975
|
for (const [_, view] of cpl.views) {
|
|
10976
10976
|
resolveDollarEvent(view, view.create);
|
|
@@ -10991,7 +10991,7 @@ function resolveDollarEvent(view, ops) {
|
|
|
10991
10991
|
}
|
|
10992
10992
|
}
|
|
10993
10993
|
|
|
10994
|
-
// bazel-out/
|
|
10994
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
10995
10995
|
function phaseResolveNames(cpl) {
|
|
10996
10996
|
for (const unit of cpl.units) {
|
|
10997
10997
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -11054,7 +11054,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
11054
11054
|
}
|
|
11055
11055
|
}
|
|
11056
11056
|
|
|
11057
|
-
// bazel-out/
|
|
11057
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
11058
11058
|
var sanitizers = /* @__PURE__ */ new Map([
|
|
11059
11059
|
[SecurityContext.HTML, SanitizerFn.Html],
|
|
11060
11060
|
[SecurityContext.SCRIPT, SanitizerFn.Script],
|
|
@@ -11090,7 +11090,7 @@ function isIframeElement(op) {
|
|
|
11090
11090
|
return (op.kind === OpKind.Element || op.kind === OpKind.ElementStart) && op.tag.toLowerCase() === "iframe";
|
|
11091
11091
|
}
|
|
11092
11092
|
|
|
11093
|
-
// bazel-out/
|
|
11093
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
11094
11094
|
function phaseSaveRestoreView(cpl) {
|
|
11095
11095
|
for (const view of cpl.views.values()) {
|
|
11096
11096
|
view.create.prepend([
|
|
@@ -11135,7 +11135,7 @@ function addSaveRestoreViewOperationToListener(view, op) {
|
|
|
11135
11135
|
}
|
|
11136
11136
|
}
|
|
11137
11137
|
|
|
11138
|
-
// bazel-out/
|
|
11138
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
11139
11139
|
function phaseSlotAllocation(cpl) {
|
|
11140
11140
|
const slotMap = /* @__PURE__ */ new Map();
|
|
11141
11141
|
for (const [_, view] of cpl.views) {
|
|
@@ -11178,7 +11178,7 @@ function phaseSlotAllocation(cpl) {
|
|
|
11178
11178
|
}
|
|
11179
11179
|
}
|
|
11180
11180
|
|
|
11181
|
-
// bazel-out/
|
|
11181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
11182
11182
|
function phaseStyleBindingSpecialization(cpl) {
|
|
11183
11183
|
for (const unit of cpl.units) {
|
|
11184
11184
|
for (const op of unit.update) {
|
|
@@ -11208,7 +11208,7 @@ function phaseStyleBindingSpecialization(cpl) {
|
|
|
11208
11208
|
}
|
|
11209
11209
|
}
|
|
11210
11210
|
|
|
11211
|
-
// bazel-out/
|
|
11211
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
11212
11212
|
function phaseTemporaryVariables(cpl) {
|
|
11213
11213
|
for (const unit of cpl.units) {
|
|
11214
11214
|
let opCount = 0;
|
|
@@ -11253,7 +11253,7 @@ function assignName(names, expr) {
|
|
|
11253
11253
|
expr.name = name;
|
|
11254
11254
|
}
|
|
11255
11255
|
|
|
11256
|
-
// bazel-out/
|
|
11256
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
11257
11257
|
function phaseVariableOptimization(job) {
|
|
11258
11258
|
for (const unit of job.units) {
|
|
11259
11259
|
optimizeVariablesInOpList(unit.create, job.compatibility);
|
|
@@ -11463,7 +11463,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
11463
11463
|
}
|
|
11464
11464
|
}
|
|
11465
11465
|
|
|
11466
|
-
// bazel-out/
|
|
11466
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
11467
11467
|
function transformTemplate(job) {
|
|
11468
11468
|
phaseNamespace(job);
|
|
11469
11469
|
phaseStyleBindingSpecialization(job);
|
|
@@ -11614,7 +11614,7 @@ function emitHostBindingFunction(job) {
|
|
|
11614
11614
|
);
|
|
11615
11615
|
}
|
|
11616
11616
|
|
|
11617
|
-
// bazel-out/
|
|
11617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
11618
11618
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
11619
11619
|
function ingestComponent(componentName, template2, constantPool) {
|
|
11620
11620
|
const cpl = new ComponentCompilationJob(componentName, constantPool, compatibilityMode);
|
|
@@ -11857,10 +11857,10 @@ function assertIsArray(value) {
|
|
|
11857
11857
|
}
|
|
11858
11858
|
}
|
|
11859
11859
|
|
|
11860
|
-
// bazel-out/
|
|
11860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
11861
11861
|
var USE_TEMPLATE_PIPELINE = false;
|
|
11862
11862
|
|
|
11863
|
-
// bazel-out/
|
|
11863
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
11864
11864
|
var IMPORTANT_FLAG = "!important";
|
|
11865
11865
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
11866
11866
|
var StylingBuilder = class {
|
|
@@ -12193,7 +12193,7 @@ function isEmptyExpression(ast) {
|
|
|
12193
12193
|
return ast instanceof EmptyExpr;
|
|
12194
12194
|
}
|
|
12195
12195
|
|
|
12196
|
-
// bazel-out/
|
|
12196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
12197
12197
|
var TokenType;
|
|
12198
12198
|
(function(TokenType2) {
|
|
12199
12199
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -12554,7 +12554,7 @@ function parseIntAutoRadix(text2) {
|
|
|
12554
12554
|
return result;
|
|
12555
12555
|
}
|
|
12556
12556
|
|
|
12557
|
-
// bazel-out/
|
|
12557
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
12558
12558
|
var SplitInterpolation = class {
|
|
12559
12559
|
constructor(strings, expressions, offsets) {
|
|
12560
12560
|
this.strings = strings;
|
|
@@ -13448,7 +13448,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
13448
13448
|
return offsetMap;
|
|
13449
13449
|
}
|
|
13450
13450
|
|
|
13451
|
-
// bazel-out/
|
|
13451
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
13452
13452
|
var NodeWithI18n = class {
|
|
13453
13453
|
constructor(sourceSpan, i18n) {
|
|
13454
13454
|
this.sourceSpan = sourceSpan;
|
|
@@ -13569,11 +13569,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
13569
13569
|
return result;
|
|
13570
13570
|
}
|
|
13571
13571
|
|
|
13572
|
-
// bazel-out/
|
|
13572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
13573
13573
|
var ElementSchemaRegistry = class {
|
|
13574
13574
|
};
|
|
13575
13575
|
|
|
13576
|
-
// bazel-out/
|
|
13576
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
13577
13577
|
var BOOLEAN = "boolean";
|
|
13578
13578
|
var NUMBER = "number";
|
|
13579
13579
|
var STRING = "string";
|
|
@@ -13926,7 +13926,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
13926
13926
|
}
|
|
13927
13927
|
}
|
|
13928
13928
|
|
|
13929
|
-
// bazel-out/
|
|
13929
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
13930
13930
|
var HtmlTagDefinition = class {
|
|
13931
13931
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
13932
13932
|
this.closedByChildren = {};
|
|
@@ -14044,7 +14044,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
14044
14044
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
14045
14045
|
}
|
|
14046
14046
|
|
|
14047
|
-
// bazel-out/
|
|
14047
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
14048
14048
|
var NAMED_ENTITIES = {
|
|
14049
14049
|
"AElig": "\xC6",
|
|
14050
14050
|
"AMP": "&",
|
|
@@ -16175,7 +16175,7 @@ var NAMED_ENTITIES = {
|
|
|
16175
16175
|
var NGSP_UNICODE = "\uE500";
|
|
16176
16176
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
16177
16177
|
|
|
16178
|
-
// bazel-out/
|
|
16178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
16179
16179
|
var TokenError = class extends ParseError {
|
|
16180
16180
|
constructor(errorMsg, tokenType, span) {
|
|
16181
16181
|
super(span, errorMsg);
|
|
@@ -17094,7 +17094,7 @@ var CursorError = class {
|
|
|
17094
17094
|
}
|
|
17095
17095
|
};
|
|
17096
17096
|
|
|
17097
|
-
// bazel-out/
|
|
17097
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
17098
17098
|
var TreeError = class extends ParseError {
|
|
17099
17099
|
static create(elementName, span, msg) {
|
|
17100
17100
|
return new TreeError(elementName, span, msg);
|
|
@@ -17496,7 +17496,7 @@ function decodeEntity(match, entity) {
|
|
|
17496
17496
|
return match;
|
|
17497
17497
|
}
|
|
17498
17498
|
|
|
17499
|
-
// bazel-out/
|
|
17499
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
17500
17500
|
var HtmlParser = class extends Parser2 {
|
|
17501
17501
|
constructor() {
|
|
17502
17502
|
super(getHtmlTagDefinition);
|
|
@@ -17506,7 +17506,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
17506
17506
|
}
|
|
17507
17507
|
};
|
|
17508
17508
|
|
|
17509
|
-
// bazel-out/
|
|
17509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
17510
17510
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
17511
17511
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
17512
17512
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -17575,7 +17575,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
17575
17575
|
return result;
|
|
17576
17576
|
}
|
|
17577
17577
|
|
|
17578
|
-
// bazel-out/
|
|
17578
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
17579
17579
|
function mapLiteral(obj, quoted = false) {
|
|
17580
17580
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
17581
17581
|
key,
|
|
@@ -17584,7 +17584,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
17584
17584
|
})));
|
|
17585
17585
|
}
|
|
17586
17586
|
|
|
17587
|
-
// bazel-out/
|
|
17587
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
17588
17588
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
17589
17589
|
"iframe|srcdoc",
|
|
17590
17590
|
"*|innerhtml",
|
|
@@ -17599,7 +17599,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
17599
17599
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
17600
17600
|
}
|
|
17601
17601
|
|
|
17602
|
-
// bazel-out/
|
|
17602
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
17603
17603
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
17604
17604
|
var ATTRIBUTE_PREFIX = "attr";
|
|
17605
17605
|
var CLASS_PREFIX = "class";
|
|
@@ -17919,7 +17919,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
17919
17919
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
17920
17920
|
}
|
|
17921
17921
|
|
|
17922
|
-
// bazel-out/
|
|
17922
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
17923
17923
|
function isStyleUrlResolvable(url) {
|
|
17924
17924
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
17925
17925
|
return false;
|
|
@@ -17928,7 +17928,7 @@ function isStyleUrlResolvable(url) {
|
|
|
17928
17928
|
}
|
|
17929
17929
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
17930
17930
|
|
|
17931
|
-
// bazel-out/
|
|
17931
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
17932
17932
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
17933
17933
|
var LINK_ELEMENT = "link";
|
|
17934
17934
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -17998,7 +17998,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
17998
17998
|
return selectAttr;
|
|
17999
17999
|
}
|
|
18000
18000
|
|
|
18001
|
-
// bazel-out/
|
|
18001
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
18002
18002
|
var TIME_PATTERN = /^\d+(ms|s)?$/;
|
|
18003
18003
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
18004
18004
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -18227,7 +18227,7 @@ function parseDeferredTime(value) {
|
|
|
18227
18227
|
return parseInt(time) * (units === "s" ? 1e3 : 1);
|
|
18228
18228
|
}
|
|
18229
18229
|
|
|
18230
|
-
// bazel-out/
|
|
18230
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
18231
18231
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
18232
18232
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
18233
18233
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -18352,7 +18352,7 @@ function parsePrimaryTriggers(params, bindingParser, errors) {
|
|
|
18352
18352
|
return { triggers, prefetchTriggers };
|
|
18353
18353
|
}
|
|
18354
18354
|
|
|
18355
|
-
// bazel-out/
|
|
18355
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
18356
18356
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
18357
18357
|
var KW_BIND_IDX = 1;
|
|
18358
18358
|
var KW_LET_IDX = 2;
|
|
@@ -18739,7 +18739,7 @@ function textContents(node) {
|
|
|
18739
18739
|
}
|
|
18740
18740
|
}
|
|
18741
18741
|
|
|
18742
|
-
// bazel-out/
|
|
18742
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
18743
18743
|
var TagType;
|
|
18744
18744
|
(function(TagType2) {
|
|
18745
18745
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -18874,7 +18874,7 @@ function serializePlaceholderValue(value) {
|
|
|
18874
18874
|
}
|
|
18875
18875
|
}
|
|
18876
18876
|
|
|
18877
|
-
// bazel-out/
|
|
18877
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
18878
18878
|
var IcuSerializerVisitor = class {
|
|
18879
18879
|
visitText(text2) {
|
|
18880
18880
|
return text2.value;
|
|
@@ -18905,7 +18905,7 @@ function serializeIcuNode(icu) {
|
|
|
18905
18905
|
return icu.visit(serializer);
|
|
18906
18906
|
}
|
|
18907
18907
|
|
|
18908
|
-
// bazel-out/
|
|
18908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
18909
18909
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
18910
18910
|
"A": "LINK",
|
|
18911
18911
|
"B": "BOLD_TEXT",
|
|
@@ -18999,7 +18999,7 @@ var PlaceholderRegistry = class {
|
|
|
18999
18999
|
}
|
|
19000
19000
|
};
|
|
19001
19001
|
|
|
19002
|
-
// bazel-out/
|
|
19002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
19003
19003
|
var _expParser = new Parser(new Lexer());
|
|
19004
19004
|
function createI18nMessageFactory(interpolationConfig) {
|
|
19005
19005
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig);
|
|
@@ -19166,14 +19166,14 @@ function extractPlaceholderName(input) {
|
|
|
19166
19166
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
19167
19167
|
}
|
|
19168
19168
|
|
|
19169
|
-
// bazel-out/
|
|
19169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
19170
19170
|
var I18nError = class extends ParseError {
|
|
19171
19171
|
constructor(span, msg) {
|
|
19172
19172
|
super(span, msg);
|
|
19173
19173
|
}
|
|
19174
19174
|
};
|
|
19175
19175
|
|
|
19176
|
-
// bazel-out/
|
|
19176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
19177
19177
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
19178
19178
|
if (htmlNode instanceof NodeWithI18n) {
|
|
19179
19179
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -19333,7 +19333,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
19333
19333
|
return jsDocComment(tags);
|
|
19334
19334
|
}
|
|
19335
19335
|
|
|
19336
|
-
// bazel-out/
|
|
19336
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
19337
19337
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
19338
19338
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
19339
19339
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -19381,7 +19381,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
19381
19381
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
19382
19382
|
}
|
|
19383
19383
|
|
|
19384
|
-
// bazel-out/
|
|
19384
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
19385
19385
|
function createLocalizeStatements(variable2, message, params) {
|
|
19386
19386
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
19387
19387
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -19464,7 +19464,7 @@ function createEmptyMessagePart(location) {
|
|
|
19464
19464
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
19465
19465
|
}
|
|
19466
19466
|
|
|
19467
|
-
// bazel-out/
|
|
19467
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
19468
19468
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
19469
19469
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
19470
19470
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -20813,7 +20813,7 @@ function createClosureModeGuard() {
|
|
|
20813
20813
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE));
|
|
20814
20814
|
}
|
|
20815
20815
|
|
|
20816
|
-
// bazel-out/
|
|
20816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
20817
20817
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
20818
20818
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
20819
20819
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -21386,11 +21386,11 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
21386
21386
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
21387
21387
|
}
|
|
21388
21388
|
|
|
21389
|
-
// bazel-out/
|
|
21389
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
21390
21390
|
var ResourceLoader = class {
|
|
21391
21391
|
};
|
|
21392
21392
|
|
|
21393
|
-
// bazel-out/
|
|
21393
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
21394
21394
|
var enabledBlockTypes;
|
|
21395
21395
|
var CompilerFacadeImpl = class {
|
|
21396
21396
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
@@ -21919,10 +21919,10 @@ function publishFacade(global) {
|
|
|
21919
21919
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
21920
21920
|
}
|
|
21921
21921
|
|
|
21922
|
-
// bazel-out/
|
|
21923
|
-
var VERSION2 = new Version("16.2.
|
|
21922
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
21923
|
+
var VERSION2 = new Version("16.2.6");
|
|
21924
21924
|
|
|
21925
|
-
// bazel-out/
|
|
21925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
21926
21926
|
var _I18N_ATTR = "i18n";
|
|
21927
21927
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
21928
21928
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -22234,7 +22234,7 @@ function _parseMessageMeta(i18n) {
|
|
|
22234
22234
|
return { meaning, description, id: id.trim() };
|
|
22235
22235
|
}
|
|
22236
22236
|
|
|
22237
|
-
// bazel-out/
|
|
22237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
22238
22238
|
var XmlTagDefinition = class {
|
|
22239
22239
|
constructor() {
|
|
22240
22240
|
this.closedByParent = false;
|
|
@@ -22259,7 +22259,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
22259
22259
|
return _TAG_DEFINITION;
|
|
22260
22260
|
}
|
|
22261
22261
|
|
|
22262
|
-
// bazel-out/
|
|
22262
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
22263
22263
|
var XmlParser = class extends Parser2 {
|
|
22264
22264
|
constructor() {
|
|
22265
22265
|
super(getXmlTagDefinition);
|
|
@@ -22269,7 +22269,7 @@ var XmlParser = class extends Parser2 {
|
|
|
22269
22269
|
}
|
|
22270
22270
|
};
|
|
22271
22271
|
|
|
22272
|
-
// bazel-out/
|
|
22272
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
22273
22273
|
var _VERSION = "1.2";
|
|
22274
22274
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
22275
22275
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -22521,7 +22521,7 @@ function getCtypeForTag(tag) {
|
|
|
22521
22521
|
}
|
|
22522
22522
|
}
|
|
22523
22523
|
|
|
22524
|
-
// bazel-out/
|
|
22524
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
22525
22525
|
var _VERSION2 = "2.0";
|
|
22526
22526
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
22527
22527
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -22824,7 +22824,7 @@ function getTypeForTag(tag) {
|
|
|
22824
22824
|
}
|
|
22825
22825
|
}
|
|
22826
22826
|
|
|
22827
|
-
// bazel-out/
|
|
22827
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
22828
22828
|
var MessageBundle = class {
|
|
22829
22829
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
22830
22830
|
this._htmlParser = _htmlParser;
|
|
@@ -22891,7 +22891,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
22891
22891
|
}
|
|
22892
22892
|
};
|
|
22893
22893
|
|
|
22894
|
-
// bazel-out/
|
|
22894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
22895
22895
|
var FactoryTarget2;
|
|
22896
22896
|
(function(FactoryTarget3) {
|
|
22897
22897
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -22901,7 +22901,7 @@ var FactoryTarget2;
|
|
|
22901
22901
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
22902
22902
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
22903
22903
|
|
|
22904
|
-
// bazel-out/
|
|
22904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
22905
22905
|
var R3TargetBinder = class {
|
|
22906
22906
|
constructor(directiveMatcher) {
|
|
22907
22907
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -23344,7 +23344,7 @@ function extractTemplateEntities(rootScope) {
|
|
|
23344
23344
|
return templateEntities;
|
|
23345
23345
|
}
|
|
23346
23346
|
|
|
23347
|
-
// bazel-out/
|
|
23347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
23348
23348
|
function compileClassMetadata(metadata) {
|
|
23349
23349
|
var _a2, _b2;
|
|
23350
23350
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -23357,12 +23357,12 @@ function compileClassMetadata(metadata) {
|
|
|
23357
23357
|
return iife.callFn([]);
|
|
23358
23358
|
}
|
|
23359
23359
|
|
|
23360
|
-
// bazel-out/
|
|
23360
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
23361
23361
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
23362
23362
|
function compileDeclareClassMetadata(metadata) {
|
|
23363
23363
|
const definitionMap = new DefinitionMap();
|
|
23364
23364
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
23365
|
-
definitionMap.set("version", literal("16.2.
|
|
23365
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23366
23366
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23367
23367
|
definitionMap.set("type", metadata.type);
|
|
23368
23368
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -23371,7 +23371,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
23371
23371
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
23372
23372
|
}
|
|
23373
23373
|
|
|
23374
|
-
// bazel-out/
|
|
23374
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
23375
23375
|
function toOptionalLiteralArray(values, mapper) {
|
|
23376
23376
|
if (values === null || values.length === 0) {
|
|
23377
23377
|
return null;
|
|
@@ -23419,7 +23419,7 @@ function compileDependency(dep) {
|
|
|
23419
23419
|
return depMeta.toLiteralMap();
|
|
23420
23420
|
}
|
|
23421
23421
|
|
|
23422
|
-
// bazel-out/
|
|
23422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
23423
23423
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "16.1.0";
|
|
23424
23424
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
23425
23425
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
@@ -23433,7 +23433,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
23433
23433
|
const hasTransformFunctions = Object.values(meta.inputs).some((input) => input.transformFunction !== null);
|
|
23434
23434
|
const minVersion = hasTransformFunctions ? MINIMUM_PARTIAL_LINKER_VERSION2 : "14.0.0";
|
|
23435
23435
|
definitionMap.set("minVersion", literal(minVersion));
|
|
23436
|
-
definitionMap.set("version", literal("16.2.
|
|
23436
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23437
23437
|
definitionMap.set("type", meta.type.value);
|
|
23438
23438
|
if (meta.isStandalone) {
|
|
23439
23439
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -23526,7 +23526,7 @@ function createHostDirectives(hostDirectives) {
|
|
|
23526
23526
|
return literalArr(expressions);
|
|
23527
23527
|
}
|
|
23528
23528
|
|
|
23529
|
-
// bazel-out/
|
|
23529
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
23530
23530
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
23531
23531
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
23532
23532
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -23613,12 +23613,12 @@ function compileUsedDependenciesMetadata(meta) {
|
|
|
23613
23613
|
});
|
|
23614
23614
|
}
|
|
23615
23615
|
|
|
23616
|
-
// bazel-out/
|
|
23616
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
23617
23617
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
23618
23618
|
function compileDeclareFactoryFunction(meta) {
|
|
23619
23619
|
const definitionMap = new DefinitionMap();
|
|
23620
23620
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
23621
|
-
definitionMap.set("version", literal("16.2.
|
|
23621
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23622
23622
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23623
23623
|
definitionMap.set("type", meta.type.value);
|
|
23624
23624
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -23630,7 +23630,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
23630
23630
|
};
|
|
23631
23631
|
}
|
|
23632
23632
|
|
|
23633
|
-
// bazel-out/
|
|
23633
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
23634
23634
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
23635
23635
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
23636
23636
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -23641,7 +23641,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
23641
23641
|
function createInjectableDefinitionMap(meta) {
|
|
23642
23642
|
const definitionMap = new DefinitionMap();
|
|
23643
23643
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
23644
|
-
definitionMap.set("version", literal("16.2.
|
|
23644
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23645
23645
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23646
23646
|
definitionMap.set("type", meta.type.value);
|
|
23647
23647
|
if (meta.providedIn !== void 0) {
|
|
@@ -23668,7 +23668,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
23668
23668
|
return definitionMap;
|
|
23669
23669
|
}
|
|
23670
23670
|
|
|
23671
|
-
// bazel-out/
|
|
23671
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
23672
23672
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "12.0.0";
|
|
23673
23673
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
23674
23674
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -23679,7 +23679,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
23679
23679
|
function createInjectorDefinitionMap(meta) {
|
|
23680
23680
|
const definitionMap = new DefinitionMap();
|
|
23681
23681
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
23682
|
-
definitionMap.set("version", literal("16.2.
|
|
23682
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23683
23683
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23684
23684
|
definitionMap.set("type", meta.type.value);
|
|
23685
23685
|
definitionMap.set("providers", meta.providers);
|
|
@@ -23689,7 +23689,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
23689
23689
|
return definitionMap;
|
|
23690
23690
|
}
|
|
23691
23691
|
|
|
23692
|
-
// bazel-out/
|
|
23692
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
23693
23693
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
23694
23694
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
23695
23695
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -23703,7 +23703,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
23703
23703
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
23704
23704
|
}
|
|
23705
23705
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
23706
|
-
definitionMap.set("version", literal("16.2.
|
|
23706
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23707
23707
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23708
23708
|
definitionMap.set("type", meta.type.value);
|
|
23709
23709
|
if (meta.bootstrap.length > 0) {
|
|
@@ -23727,7 +23727,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
23727
23727
|
return definitionMap;
|
|
23728
23728
|
}
|
|
23729
23729
|
|
|
23730
|
-
// bazel-out/
|
|
23730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
23731
23731
|
var MINIMUM_PARTIAL_LINKER_VERSION7 = "14.0.0";
|
|
23732
23732
|
function compileDeclarePipeFromMetadata(meta) {
|
|
23733
23733
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -23738,7 +23738,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
23738
23738
|
function createPipeDefinitionMap(meta) {
|
|
23739
23739
|
const definitionMap = new DefinitionMap();
|
|
23740
23740
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION7));
|
|
23741
|
-
definitionMap.set("version", literal("16.2.
|
|
23741
|
+
definitionMap.set("version", literal("16.2.6"));
|
|
23742
23742
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
23743
23743
|
definitionMap.set("type", meta.type.value);
|
|
23744
23744
|
if (meta.isStandalone) {
|
|
@@ -23751,13 +23751,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
23751
23751
|
return definitionMap;
|
|
23752
23752
|
}
|
|
23753
23753
|
|
|
23754
|
-
// bazel-out/
|
|
23754
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
23755
23755
|
publishFacade(_global);
|
|
23756
23756
|
|
|
23757
|
-
// bazel-out/
|
|
23758
|
-
var VERSION3 = new Version("16.2.
|
|
23757
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
23758
|
+
var VERSION3 = new Version("16.2.6");
|
|
23759
23759
|
|
|
23760
|
-
// bazel-out/
|
|
23760
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
23761
23761
|
var EmitFlags;
|
|
23762
23762
|
(function(EmitFlags2) {
|
|
23763
23763
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -23769,13 +23769,13 @@ var EmitFlags;
|
|
|
23769
23769
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
23770
23770
|
})(EmitFlags || (EmitFlags = {}));
|
|
23771
23771
|
|
|
23772
|
-
// bazel-out/
|
|
23772
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
23773
23773
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
23774
23774
|
|
|
23775
|
-
// bazel-out/
|
|
23775
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
23776
23776
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
23777
23777
|
|
|
23778
|
-
// bazel-out/
|
|
23778
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
23779
23779
|
var path = __toESM(require("path"), 1);
|
|
23780
23780
|
function i18nGetExtension(formatName) {
|
|
23781
23781
|
const format = formatName.toLowerCase();
|
|
@@ -23825,10 +23825,10 @@ function getPathNormalizer(basePath) {
|
|
|
23825
23825
|
};
|
|
23826
23826
|
}
|
|
23827
23827
|
|
|
23828
|
-
// bazel-out/
|
|
23828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
23829
23829
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
23830
23830
|
|
|
23831
|
-
// bazel-out/
|
|
23831
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
23832
23832
|
function toNumbers(value) {
|
|
23833
23833
|
const suffixIndex = value.lastIndexOf("-");
|
|
23834
23834
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -23863,7 +23863,7 @@ function compareVersions(v1, v2) {
|
|
|
23863
23863
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
23864
23864
|
}
|
|
23865
23865
|
|
|
23866
|
-
// bazel-out/
|
|
23866
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
23867
23867
|
var MIN_TS_VERSION = "4.9.3";
|
|
23868
23868
|
var MAX_TS_VERSION = "5.2.0";
|
|
23869
23869
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -23876,13 +23876,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
23876
23876
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
23877
23877
|
}
|
|
23878
23878
|
|
|
23879
|
-
// bazel-out/
|
|
23879
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
23880
23880
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
23881
23881
|
|
|
23882
|
-
// bazel-out/
|
|
23882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
23883
23883
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
23884
23884
|
|
|
23885
|
-
// bazel-out/
|
|
23885
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
23886
23886
|
var ErrorCode;
|
|
23887
23887
|
(function(ErrorCode2) {
|
|
23888
23888
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -23956,7 +23956,7 @@ var ErrorCode;
|
|
|
23956
23956
|
ErrorCode2[ErrorCode2["SUGGEST_SUBOPTIMAL_TYPE_INFERENCE"] = 10002] = "SUGGEST_SUBOPTIMAL_TYPE_INFERENCE";
|
|
23957
23957
|
})(ErrorCode || (ErrorCode = {}));
|
|
23958
23958
|
|
|
23959
|
-
// bazel-out/
|
|
23959
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
23960
23960
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
23961
23961
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
23962
23962
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -23968,15 +23968,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
23968
23968
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
23969
23969
|
]);
|
|
23970
23970
|
|
|
23971
|
-
// bazel-out/
|
|
23971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
23972
23972
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
23973
23973
|
|
|
23974
|
-
// bazel-out/
|
|
23974
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
23975
23975
|
function ngErrorCode(code) {
|
|
23976
23976
|
return parseInt("-99" + code);
|
|
23977
23977
|
}
|
|
23978
23978
|
|
|
23979
|
-
// bazel-out/
|
|
23979
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
23980
23980
|
var FatalDiagnosticError = class {
|
|
23981
23981
|
constructor(code, node, message, relatedInformation) {
|
|
23982
23982
|
this.code = code;
|
|
@@ -24032,10 +24032,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
24032
24032
|
return messageText;
|
|
24033
24033
|
}
|
|
24034
24034
|
|
|
24035
|
-
// bazel-out/
|
|
24035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
24036
24036
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
24037
24037
|
|
|
24038
|
-
// bazel-out/
|
|
24038
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
24039
24039
|
var ExtendedTemplateDiagnosticName;
|
|
24040
24040
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
24041
24041
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -24048,13 +24048,13 @@ var ExtendedTemplateDiagnosticName;
|
|
|
24048
24048
|
ExtendedTemplateDiagnosticName2["SKIP_HYDRATION_NOT_STATIC"] = "skipHydrationNotStatic";
|
|
24049
24049
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
24050
24050
|
|
|
24051
|
-
// bazel-out/
|
|
24051
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
24052
24052
|
var import_typescript19 = __toESM(require("typescript"), 1);
|
|
24053
24053
|
|
|
24054
|
-
// bazel-out/
|
|
24054
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
24055
24055
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
24056
24056
|
|
|
24057
|
-
// bazel-out/
|
|
24057
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
24058
24058
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
24059
24059
|
var TS = /\.tsx?$/i;
|
|
24060
24060
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -24155,7 +24155,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
24155
24155
|
return redirectInfo.unredirected;
|
|
24156
24156
|
}
|
|
24157
24157
|
|
|
24158
|
-
// bazel-out/
|
|
24158
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
24159
24159
|
function findExportedNameOfNode(target, file, reflector) {
|
|
24160
24160
|
const exports = reflector.getExportsOfModule(file);
|
|
24161
24161
|
if (exports === null) {
|
|
@@ -24175,7 +24175,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
24175
24175
|
return foundExportName;
|
|
24176
24176
|
}
|
|
24177
24177
|
|
|
24178
|
-
// bazel-out/
|
|
24178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
24179
24179
|
var ImportFlags;
|
|
24180
24180
|
(function(ImportFlags2) {
|
|
24181
24181
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -24391,7 +24391,7 @@ var UnifiedModulesStrategy = class {
|
|
|
24391
24391
|
}
|
|
24392
24392
|
};
|
|
24393
24393
|
|
|
24394
|
-
// bazel-out/
|
|
24394
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
24395
24395
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
24396
24396
|
var UnifiedModulesAliasingHost = class {
|
|
24397
24397
|
constructor(unifiedModulesHost) {
|
|
@@ -24458,7 +24458,7 @@ var AliasStrategy = class {
|
|
|
24458
24458
|
}
|
|
24459
24459
|
};
|
|
24460
24460
|
|
|
24461
|
-
// bazel-out/
|
|
24461
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
24462
24462
|
function relativePathBetween(from, to) {
|
|
24463
24463
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
24464
24464
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -24467,7 +24467,7 @@ function normalizeSeparators2(path3) {
|
|
|
24467
24467
|
return path3.replace(/\\/g, "/");
|
|
24468
24468
|
}
|
|
24469
24469
|
|
|
24470
|
-
// bazel-out/
|
|
24470
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
24471
24471
|
var NoopImportRewriter = class {
|
|
24472
24472
|
shouldImportSymbol(symbol, specifier) {
|
|
24473
24473
|
return true;
|
|
@@ -24525,7 +24525,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
24525
24525
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
24526
24526
|
}
|
|
24527
24527
|
|
|
24528
|
-
// bazel-out/
|
|
24528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
24529
24529
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
24530
24530
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
24531
24531
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -24560,7 +24560,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
24560
24560
|
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.");
|
|
24561
24561
|
}
|
|
24562
24562
|
|
|
24563
|
-
// bazel-out/
|
|
24563
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
24564
24564
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
24565
24565
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
24566
24566
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -24601,13 +24601,13 @@ var DefaultImportTracker = class {
|
|
|
24601
24601
|
}
|
|
24602
24602
|
};
|
|
24603
24603
|
|
|
24604
|
-
// bazel-out/
|
|
24604
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
24605
24605
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
24606
24606
|
|
|
24607
|
-
// bazel-out/
|
|
24607
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
24608
24608
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
24609
24609
|
|
|
24610
|
-
// bazel-out/
|
|
24610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
24611
24611
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
24612
24612
|
function isDecoratorIdentifier(exp) {
|
|
24613
24613
|
return import_typescript11.default.isIdentifier(exp) || import_typescript11.default.isPropertyAccessExpression(exp) && import_typescript11.default.isIdentifier(exp.expression) && import_typescript11.default.isIdentifier(exp.name);
|
|
@@ -24621,7 +24621,7 @@ var ClassMemberKind;
|
|
|
24621
24621
|
ClassMemberKind2[ClassMemberKind2["Method"] = 4] = "Method";
|
|
24622
24622
|
})(ClassMemberKind || (ClassMemberKind = {}));
|
|
24623
24623
|
|
|
24624
|
-
// bazel-out/
|
|
24624
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
24625
24625
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
24626
24626
|
function typeToValue(typeNode, checker) {
|
|
24627
24627
|
if (typeNode === null) {
|
|
@@ -24787,7 +24787,7 @@ function extractModuleName(node) {
|
|
|
24787
24787
|
return node.moduleSpecifier.text;
|
|
24788
24788
|
}
|
|
24789
24789
|
|
|
24790
|
-
// bazel-out/
|
|
24790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
24791
24791
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
24792
24792
|
function isNamedClassDeclaration(node) {
|
|
24793
24793
|
return import_typescript13.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -24796,7 +24796,7 @@ function isIdentifier(node) {
|
|
|
24796
24796
|
return node !== void 0 && import_typescript13.default.isIdentifier(node);
|
|
24797
24797
|
}
|
|
24798
24798
|
|
|
24799
|
-
// bazel-out/
|
|
24799
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
24800
24800
|
var TypeScriptReflectionHost = class {
|
|
24801
24801
|
constructor(checker) {
|
|
24802
24802
|
this.checker = checker;
|
|
@@ -25230,7 +25230,7 @@ function getExportedName(decl, originalId) {
|
|
|
25230
25230
|
}
|
|
25231
25231
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
25232
25232
|
|
|
25233
|
-
// bazel-out/
|
|
25233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
25234
25234
|
var AssumeEager = "AssumeEager";
|
|
25235
25235
|
var DeferredSymbolTracker = class {
|
|
25236
25236
|
constructor(typeChecker) {
|
|
@@ -25322,7 +25322,7 @@ var DeferredSymbolTracker = class {
|
|
|
25322
25322
|
}
|
|
25323
25323
|
};
|
|
25324
25324
|
|
|
25325
|
-
// bazel-out/
|
|
25325
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
25326
25326
|
var Reference2 = class {
|
|
25327
25327
|
constructor(node, bestGuessOwningModule = null) {
|
|
25328
25328
|
this.node = node;
|
|
@@ -25385,7 +25385,7 @@ var Reference2 = class {
|
|
|
25385
25385
|
}
|
|
25386
25386
|
};
|
|
25387
25387
|
|
|
25388
|
-
// bazel-out/
|
|
25388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
25389
25389
|
var ModuleResolver = class {
|
|
25390
25390
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
25391
25391
|
this.program = program;
|
|
@@ -25402,7 +25402,7 @@ var ModuleResolver = class {
|
|
|
25402
25402
|
}
|
|
25403
25403
|
};
|
|
25404
25404
|
|
|
25405
|
-
// bazel-out/
|
|
25405
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
25406
25406
|
function valueReferenceToExpression(valueRef) {
|
|
25407
25407
|
if (valueRef.kind === 2) {
|
|
25408
25408
|
return null;
|
|
@@ -25642,7 +25642,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
25642
25642
|
return import_typescript19.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript19.default.SyntaxKind.AbstractKeyword) : false;
|
|
25643
25643
|
}
|
|
25644
25644
|
|
|
25645
|
-
// bazel-out/
|
|
25645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
25646
25646
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
25647
25647
|
const deps = [];
|
|
25648
25648
|
const errors = [];
|
|
@@ -25784,10 +25784,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
25784
25784
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain, hints);
|
|
25785
25785
|
}
|
|
25786
25786
|
|
|
25787
|
-
// bazel-out/
|
|
25787
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
25788
25788
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
25789
25789
|
|
|
25790
|
-
// bazel-out/
|
|
25790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
25791
25791
|
var MetaKind;
|
|
25792
25792
|
(function(MetaKind2) {
|
|
25793
25793
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -25800,10 +25800,10 @@ var MatchSource;
|
|
|
25800
25800
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
25801
25801
|
})(MatchSource || (MatchSource = {}));
|
|
25802
25802
|
|
|
25803
|
-
// bazel-out/
|
|
25803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
25804
25804
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
25805
25805
|
|
|
25806
|
-
// bazel-out/
|
|
25806
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
25807
25807
|
var ClassPropertyMapping = class {
|
|
25808
25808
|
constructor(forwardMap) {
|
|
25809
25809
|
this.forwardMap = forwardMap;
|
|
@@ -25881,7 +25881,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
25881
25881
|
return reverseMap;
|
|
25882
25882
|
}
|
|
25883
25883
|
|
|
25884
|
-
// bazel-out/
|
|
25884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
25885
25885
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
25886
25886
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
25887
25887
|
if (!import_typescript22.default.isTupleTypeNode(def)) {
|
|
@@ -26066,7 +26066,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
26066
26066
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
26067
26067
|
}
|
|
26068
26068
|
|
|
26069
|
-
// bazel-out/
|
|
26069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
26070
26070
|
var DtsMetadataReader = class {
|
|
26071
26071
|
constructor(checker, reflector) {
|
|
26072
26072
|
this.checker = checker;
|
|
@@ -26241,7 +26241,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
26241
26241
|
return result.length > 0 ? result : null;
|
|
26242
26242
|
}
|
|
26243
26243
|
|
|
26244
|
-
// bazel-out/
|
|
26244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
26245
26245
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
26246
26246
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
26247
26247
|
if (topMeta === null) {
|
|
@@ -26298,7 +26298,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
26298
26298
|
});
|
|
26299
26299
|
}
|
|
26300
26300
|
|
|
26301
|
-
// bazel-out/
|
|
26301
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
26302
26302
|
var LocalMetadataRegistry = class {
|
|
26303
26303
|
constructor() {
|
|
26304
26304
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -26355,7 +26355,7 @@ var CompoundMetadataRegistry = class {
|
|
|
26355
26355
|
}
|
|
26356
26356
|
};
|
|
26357
26357
|
|
|
26358
|
-
// bazel-out/
|
|
26358
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
26359
26359
|
var ResourceRegistry = class {
|
|
26360
26360
|
constructor() {
|
|
26361
26361
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -26420,7 +26420,7 @@ var ResourceRegistry = class {
|
|
|
26420
26420
|
}
|
|
26421
26421
|
};
|
|
26422
26422
|
|
|
26423
|
-
// bazel-out/
|
|
26423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
26424
26424
|
var ExportedProviderStatusResolver = class {
|
|
26425
26425
|
constructor(metaReader) {
|
|
26426
26426
|
this.metaReader = metaReader;
|
|
@@ -26464,7 +26464,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
26464
26464
|
}
|
|
26465
26465
|
};
|
|
26466
26466
|
|
|
26467
|
-
// bazel-out/
|
|
26467
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
26468
26468
|
var EMPTY_ARRAY = [];
|
|
26469
26469
|
var HostDirectivesResolver = class {
|
|
26470
26470
|
constructor(metaReader) {
|
|
@@ -26525,10 +26525,10 @@ function resolveOutput(bindingName) {
|
|
|
26525
26525
|
return bindingName;
|
|
26526
26526
|
}
|
|
26527
26527
|
|
|
26528
|
-
// bazel-out/
|
|
26528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
26529
26529
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
26530
26530
|
|
|
26531
|
-
// bazel-out/
|
|
26531
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
26532
26532
|
var DynamicValue = class {
|
|
26533
26533
|
constructor(node, reason, code) {
|
|
26534
26534
|
this.node = node;
|
|
@@ -26618,7 +26618,7 @@ var DynamicValue = class {
|
|
|
26618
26618
|
}
|
|
26619
26619
|
};
|
|
26620
26620
|
|
|
26621
|
-
// bazel-out/
|
|
26621
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
26622
26622
|
var ResolvedModule = class {
|
|
26623
26623
|
constructor(exports, evaluate) {
|
|
26624
26624
|
this.exports = exports;
|
|
@@ -26648,7 +26648,7 @@ var EnumValue = class {
|
|
|
26648
26648
|
var KnownFn = class {
|
|
26649
26649
|
};
|
|
26650
26650
|
|
|
26651
|
-
// bazel-out/
|
|
26651
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
26652
26652
|
function describeResolvedType(value, maxDepth = 1) {
|
|
26653
26653
|
var _a2, _b2;
|
|
26654
26654
|
if (value === null) {
|
|
@@ -26777,10 +26777,10 @@ function getContainerNode(node) {
|
|
|
26777
26777
|
return node.getSourceFile();
|
|
26778
26778
|
}
|
|
26779
26779
|
|
|
26780
|
-
// bazel-out/
|
|
26780
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
26781
26781
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
26782
26782
|
|
|
26783
|
-
// bazel-out/
|
|
26783
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
26784
26784
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
26785
26785
|
constructor(lhs) {
|
|
26786
26786
|
super();
|
|
@@ -26832,14 +26832,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
26832
26832
|
}
|
|
26833
26833
|
};
|
|
26834
26834
|
|
|
26835
|
-
// bazel-out/
|
|
26835
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
26836
26836
|
var SyntheticValue = class {
|
|
26837
26837
|
constructor(value) {
|
|
26838
26838
|
this.value = value;
|
|
26839
26839
|
}
|
|
26840
26840
|
};
|
|
26841
26841
|
|
|
26842
|
-
// bazel-out/
|
|
26842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
26843
26843
|
function literalBinaryOp(op) {
|
|
26844
26844
|
return { op, literal: true };
|
|
26845
26845
|
}
|
|
@@ -27417,7 +27417,7 @@ function getOriginalKeywordKind(identifier) {
|
|
|
27417
27417
|
return typeof import_typescript27.default.identifierToKeywordKind === "function" ? import_typescript27.default.identifierToKeywordKind(identifier) : identifier.originalKeywordKind;
|
|
27418
27418
|
}
|
|
27419
27419
|
|
|
27420
|
-
// bazel-out/
|
|
27420
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
27421
27421
|
var PartialEvaluator = class {
|
|
27422
27422
|
constructor(host, checker, dependencyTracker) {
|
|
27423
27423
|
this.host = host;
|
|
@@ -27437,7 +27437,7 @@ var PartialEvaluator = class {
|
|
|
27437
27437
|
}
|
|
27438
27438
|
};
|
|
27439
27439
|
|
|
27440
|
-
// bazel-out/
|
|
27440
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
27441
27441
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
27442
27442
|
const context = [];
|
|
27443
27443
|
for (const decl of data) {
|
|
@@ -27633,7 +27633,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
27633
27633
|
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}.`);
|
|
27634
27634
|
}
|
|
27635
27635
|
|
|
27636
|
-
// bazel-out/
|
|
27636
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
27637
27637
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
27638
27638
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
27639
27639
|
let resolved = null;
|
|
@@ -27666,7 +27666,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
27666
27666
|
return meta;
|
|
27667
27667
|
}
|
|
27668
27668
|
|
|
27669
|
-
// bazel-out/
|
|
27669
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
27670
27670
|
function compileNgFactoryDefField(metadata) {
|
|
27671
27671
|
const res = compileFactoryFunction(metadata);
|
|
27672
27672
|
return {
|
|
@@ -27688,7 +27688,7 @@ function compileDeclareFactory(metadata) {
|
|
|
27688
27688
|
};
|
|
27689
27689
|
}
|
|
27690
27690
|
|
|
27691
|
-
// bazel-out/
|
|
27691
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
27692
27692
|
var InjectableClassRegistry = class {
|
|
27693
27693
|
constructor(host, isCore) {
|
|
27694
27694
|
this.host = host;
|
|
@@ -27714,7 +27714,7 @@ var InjectableClassRegistry = class {
|
|
|
27714
27714
|
}
|
|
27715
27715
|
};
|
|
27716
27716
|
|
|
27717
|
-
// bazel-out/
|
|
27717
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
27718
27718
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
27719
27719
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
27720
27720
|
if (!reflection.isClass(clazz)) {
|
|
@@ -27800,13 +27800,13 @@ function removeIdentifierReferences(node, name) {
|
|
|
27800
27800
|
return result.transformed[0];
|
|
27801
27801
|
}
|
|
27802
27802
|
|
|
27803
|
-
// bazel-out/
|
|
27803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
27804
27804
|
var NoopReferencesRegistry = class {
|
|
27805
27805
|
add(source, ...references) {
|
|
27806
27806
|
}
|
|
27807
27807
|
};
|
|
27808
27808
|
|
|
27809
|
-
// bazel-out/
|
|
27809
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
27810
27810
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
27811
27811
|
const schemas = [];
|
|
27812
27812
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -27835,7 +27835,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
27835
27835
|
return schemas;
|
|
27836
27836
|
}
|
|
27837
27837
|
|
|
27838
|
-
// bazel-out/
|
|
27838
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
27839
27839
|
function compileInputTransformFields(inputs) {
|
|
27840
27840
|
const extraFields = [];
|
|
27841
27841
|
for (const input of inputs) {
|
|
@@ -27852,10 +27852,10 @@ function compileInputTransformFields(inputs) {
|
|
|
27852
27852
|
return extraFields;
|
|
27853
27853
|
}
|
|
27854
27854
|
|
|
27855
|
-
// bazel-out/
|
|
27855
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
27856
27856
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
27857
27857
|
|
|
27858
|
-
// bazel-out/
|
|
27858
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
27859
27859
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
27860
27860
|
var SemanticSymbol = class {
|
|
27861
27861
|
constructor(decl) {
|
|
@@ -27871,7 +27871,7 @@ function getSymbolIdentifier(decl) {
|
|
|
27871
27871
|
return decl.name.text;
|
|
27872
27872
|
}
|
|
27873
27873
|
|
|
27874
|
-
// bazel-out/
|
|
27874
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
27875
27875
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
27876
27876
|
isPublicApiAffected() {
|
|
27877
27877
|
return false;
|
|
@@ -28013,10 +28013,10 @@ function getImportPath(expr) {
|
|
|
28013
28013
|
}
|
|
28014
28014
|
}
|
|
28015
28015
|
|
|
28016
|
-
// bazel-out/
|
|
28016
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
28017
28017
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
28018
28018
|
|
|
28019
|
-
// bazel-out/
|
|
28019
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
28020
28020
|
function isSymbolEqual(a, b) {
|
|
28021
28021
|
if (a.decl === b.decl) {
|
|
28022
28022
|
return true;
|
|
@@ -28066,7 +28066,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
28066
28066
|
return true;
|
|
28067
28067
|
}
|
|
28068
28068
|
|
|
28069
|
-
// bazel-out/
|
|
28069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
28070
28070
|
function extractSemanticTypeParameters(node) {
|
|
28071
28071
|
if (!import_typescript34.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
28072
28072
|
return null;
|
|
@@ -28086,7 +28086,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
28086
28086
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
28087
28087
|
}
|
|
28088
28088
|
|
|
28089
|
-
// bazel-out/
|
|
28089
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
28090
28090
|
var PerfPhase;
|
|
28091
28091
|
(function(PerfPhase2) {
|
|
28092
28092
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -28153,7 +28153,7 @@ var PerfCheckpoint;
|
|
|
28153
28153
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
28154
28154
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
28155
28155
|
|
|
28156
|
-
// bazel-out/
|
|
28156
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
28157
28157
|
var NoopPerfRecorder = class {
|
|
28158
28158
|
eventCount() {
|
|
28159
28159
|
}
|
|
@@ -28170,7 +28170,7 @@ var NoopPerfRecorder = class {
|
|
|
28170
28170
|
};
|
|
28171
28171
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
28172
28172
|
|
|
28173
|
-
// bazel-out/
|
|
28173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
28174
28174
|
function mark() {
|
|
28175
28175
|
return process.hrtime();
|
|
28176
28176
|
}
|
|
@@ -28179,7 +28179,7 @@ function timeSinceInMicros(mark2) {
|
|
|
28179
28179
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
28180
28180
|
}
|
|
28181
28181
|
|
|
28182
|
-
// bazel-out/
|
|
28182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
28183
28183
|
var ActivePerfRecorder = class {
|
|
28184
28184
|
static zeroedToNow() {
|
|
28185
28185
|
return new ActivePerfRecorder(mark());
|
|
@@ -28273,14 +28273,14 @@ var DelegatingPerfRecorder = class {
|
|
|
28273
28273
|
}
|
|
28274
28274
|
};
|
|
28275
28275
|
|
|
28276
|
-
// bazel-out/
|
|
28276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
28277
28277
|
var ComponentScopeKind;
|
|
28278
28278
|
(function(ComponentScopeKind2) {
|
|
28279
28279
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
28280
28280
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
28281
28281
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
28282
28282
|
|
|
28283
|
-
// bazel-out/
|
|
28283
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
28284
28284
|
var CompoundComponentScopeReader = class {
|
|
28285
28285
|
constructor(readers) {
|
|
28286
28286
|
this.readers = readers;
|
|
@@ -28305,7 +28305,7 @@ var CompoundComponentScopeReader = class {
|
|
|
28305
28305
|
}
|
|
28306
28306
|
};
|
|
28307
28307
|
|
|
28308
|
-
// bazel-out/
|
|
28308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
28309
28309
|
var MetadataDtsModuleScopeResolver = class {
|
|
28310
28310
|
constructor(dtsMetaReader, aliasingHost) {
|
|
28311
28311
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -28380,10 +28380,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
28380
28380
|
}
|
|
28381
28381
|
};
|
|
28382
28382
|
|
|
28383
|
-
// bazel-out/
|
|
28383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
28384
28384
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
28385
28385
|
|
|
28386
|
-
// bazel-out/
|
|
28386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
28387
28387
|
function getDiagnosticNode(ref, rawExpr) {
|
|
28388
28388
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
28389
28389
|
}
|
|
@@ -28406,7 +28406,7 @@ function makeUnknownComponentImportDiagnostic(ref, rawExpr) {
|
|
|
28406
28406
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_IMPORT, getDiagnosticNode(ref, rawExpr), `Component imports must be standalone components, directives, pipes, or must be NgModules.`);
|
|
28407
28407
|
}
|
|
28408
28408
|
|
|
28409
|
-
// bazel-out/
|
|
28409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
28410
28410
|
var LocalModuleScopeRegistry = class {
|
|
28411
28411
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
28412
28412
|
this.localReader = localReader;
|
|
@@ -28745,7 +28745,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
28745
28745
|
]);
|
|
28746
28746
|
}
|
|
28747
28747
|
|
|
28748
|
-
// bazel-out/
|
|
28748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
28749
28749
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
28750
28750
|
var TypeCheckScopeRegistry = class {
|
|
28751
28751
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -28813,7 +28813,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
28813
28813
|
}
|
|
28814
28814
|
};
|
|
28815
28815
|
|
|
28816
|
-
// bazel-out/
|
|
28816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
28817
28817
|
var CompilationMode;
|
|
28818
28818
|
(function(CompilationMode2) {
|
|
28819
28819
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -28827,7 +28827,7 @@ var HandlerPrecedence;
|
|
|
28827
28827
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
28828
28828
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
28829
28829
|
|
|
28830
|
-
// bazel-out/
|
|
28830
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
28831
28831
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
28832
28832
|
function aliasTransformFactory(exportStatements) {
|
|
28833
28833
|
return () => {
|
|
@@ -28850,10 +28850,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
28850
28850
|
};
|
|
28851
28851
|
}
|
|
28852
28852
|
|
|
28853
|
-
// bazel-out/
|
|
28853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
28854
28854
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
28855
28855
|
|
|
28856
|
-
// bazel-out/
|
|
28856
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
28857
28857
|
var TraitState;
|
|
28858
28858
|
(function(TraitState2) {
|
|
28859
28859
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -28910,7 +28910,7 @@ var TraitImpl = class {
|
|
|
28910
28910
|
}
|
|
28911
28911
|
};
|
|
28912
28912
|
|
|
28913
|
-
// bazel-out/
|
|
28913
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
28914
28914
|
var TraitCompiler = class {
|
|
28915
28915
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
28916
28916
|
this.handlers = handlers;
|
|
@@ -29358,10 +29358,10 @@ function containsErrors(diagnostics) {
|
|
|
29358
29358
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript39.default.DiagnosticCategory.Error);
|
|
29359
29359
|
}
|
|
29360
29360
|
|
|
29361
|
-
// bazel-out/
|
|
29361
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
29362
29362
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
29363
29363
|
|
|
29364
|
-
// bazel-out/
|
|
29364
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
29365
29365
|
var Context = class {
|
|
29366
29366
|
constructor(isStatement) {
|
|
29367
29367
|
this.isStatement = isStatement;
|
|
@@ -29374,7 +29374,7 @@ var Context = class {
|
|
|
29374
29374
|
}
|
|
29375
29375
|
};
|
|
29376
29376
|
|
|
29377
|
-
// bazel-out/
|
|
29377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
29378
29378
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
29379
29379
|
var ImportManager = class {
|
|
29380
29380
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -29410,7 +29410,7 @@ var ImportManager = class {
|
|
|
29410
29410
|
}
|
|
29411
29411
|
};
|
|
29412
29412
|
|
|
29413
|
-
// bazel-out/
|
|
29413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
29414
29414
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
29415
29415
|
[UnaryOperator.Minus, "-"],
|
|
29416
29416
|
[UnaryOperator.Plus, "+"]
|
|
@@ -29644,7 +29644,7 @@ function createRange(span) {
|
|
|
29644
29644
|
};
|
|
29645
29645
|
}
|
|
29646
29646
|
|
|
29647
|
-
// bazel-out/
|
|
29647
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
29648
29648
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
29649
29649
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
29650
29650
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
@@ -29863,7 +29863,7 @@ var TypeTranslatorVisitor = class {
|
|
|
29863
29863
|
}
|
|
29864
29864
|
};
|
|
29865
29865
|
|
|
29866
|
-
// bazel-out/
|
|
29866
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
29867
29867
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
29868
29868
|
var PureAnnotation;
|
|
29869
29869
|
(function(PureAnnotation2) {
|
|
@@ -30053,7 +30053,7 @@ function attachComments(statement, leadingComments) {
|
|
|
30053
30053
|
}
|
|
30054
30054
|
}
|
|
30055
30055
|
|
|
30056
|
-
// bazel-out/
|
|
30056
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
30057
30057
|
function translateExpression(expression, imports, options = {}) {
|
|
30058
30058
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
30059
30059
|
}
|
|
@@ -30061,7 +30061,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
30061
30061
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
30062
30062
|
}
|
|
30063
30063
|
|
|
30064
|
-
// bazel-out/
|
|
30064
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
30065
30065
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
30066
30066
|
function addImports(importManager, sf, extraStatements = []) {
|
|
30067
30067
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -30097,7 +30097,7 @@ function isImportStatement(stmt) {
|
|
|
30097
30097
|
return import_typescript44.default.isImportDeclaration(stmt) || import_typescript44.default.isImportEqualsDeclaration(stmt) || import_typescript44.default.isNamespaceImport(stmt);
|
|
30098
30098
|
}
|
|
30099
30099
|
|
|
30100
|
-
// bazel-out/
|
|
30100
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
30101
30101
|
var DtsTransformRegistry = class {
|
|
30102
30102
|
constructor() {
|
|
30103
30103
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -30244,10 +30244,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
30244
30244
|
import_typescript45.default.forEachChild(node, markForEmitAsSingleLine);
|
|
30245
30245
|
}
|
|
30246
30246
|
|
|
30247
|
-
// bazel-out/
|
|
30247
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
30248
30248
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
30249
30249
|
|
|
30250
|
-
// bazel-out/
|
|
30250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
30251
30251
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
30252
30252
|
function visit(node, visitor, context) {
|
|
30253
30253
|
return visitor._visit(node, context);
|
|
@@ -30308,7 +30308,7 @@ var Visitor = class {
|
|
|
30308
30308
|
}
|
|
30309
30309
|
};
|
|
30310
30310
|
|
|
30311
|
-
// bazel-out/
|
|
30311
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
30312
30312
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
30313
30313
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
30314
30314
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -30532,7 +30532,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
30532
30532
|
return array;
|
|
30533
30533
|
}
|
|
30534
30534
|
|
|
30535
|
-
// bazel-out/
|
|
30535
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
30536
30536
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
30537
30537
|
var EMPTY_OBJECT = {};
|
|
30538
30538
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -31095,7 +31095,7 @@ function toR3InputMetadata(mapping) {
|
|
|
31095
31095
|
};
|
|
31096
31096
|
}
|
|
31097
31097
|
|
|
31098
|
-
// bazel-out/
|
|
31098
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
31099
31099
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
31100
31100
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
31101
31101
|
super(decl);
|
|
@@ -31175,7 +31175,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
31175
31175
|
return isSymbolEqual(current, previous);
|
|
31176
31176
|
}
|
|
31177
31177
|
|
|
31178
|
-
// bazel-out/
|
|
31178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
31179
31179
|
var FIELD_DECORATORS = [
|
|
31180
31180
|
"Input",
|
|
31181
31181
|
"Output",
|
|
@@ -31346,10 +31346,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
31346
31346
|
}
|
|
31347
31347
|
};
|
|
31348
31348
|
|
|
31349
|
-
// bazel-out/
|
|
31349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
31350
31350
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
31351
31351
|
|
|
31352
|
-
// bazel-out/
|
|
31352
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
31353
31353
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
31354
31354
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
31355
31355
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -31416,7 +31416,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
31416
31416
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
31417
31417
|
}
|
|
31418
31418
|
|
|
31419
|
-
// bazel-out/
|
|
31419
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
31420
31420
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
31421
31421
|
constructor(decl, hasProviders) {
|
|
31422
31422
|
super(decl);
|
|
@@ -31968,7 +31968,7 @@ function isSyntheticReference(ref) {
|
|
|
31968
31968
|
return ref.synthetic;
|
|
31969
31969
|
}
|
|
31970
31970
|
|
|
31971
|
-
// bazel-out/
|
|
31971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
31972
31972
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
31973
31973
|
const name = ref.debugName || "(unknown)";
|
|
31974
31974
|
const path3 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -31991,7 +31991,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
31991
31991
|
return null;
|
|
31992
31992
|
}
|
|
31993
31993
|
|
|
31994
|
-
// bazel-out/
|
|
31994
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
31995
31995
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
31996
31996
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
31997
31997
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -32302,7 +32302,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
32302
32302
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
32303
32303
|
}
|
|
32304
32304
|
|
|
32305
|
-
// bazel-out/
|
|
32305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
32306
32306
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
32307
32307
|
constructor() {
|
|
32308
32308
|
super(...arguments);
|
|
@@ -32337,7 +32337,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
32337
32337
|
}
|
|
32338
32338
|
};
|
|
32339
32339
|
|
|
32340
|
-
// bazel-out/
|
|
32340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
32341
32341
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
32342
32342
|
if (value instanceof Map) {
|
|
32343
32343
|
const name = value.get("name");
|
|
@@ -32413,7 +32413,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
32413
32413
|
return false;
|
|
32414
32414
|
}
|
|
32415
32415
|
|
|
32416
|
-
// bazel-out/
|
|
32416
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
32417
32417
|
var EMPTY_ARRAY2 = [];
|
|
32418
32418
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
32419
32419
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -33182,7 +33182,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
33182
33182
|
return diagnostics;
|
|
33183
33183
|
}
|
|
33184
33184
|
|
|
33185
|
-
// bazel-out/
|
|
33185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
33186
33186
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
33187
33187
|
var InjectableDecoratorHandler = class {
|
|
33188
33188
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, errorOnDuplicateProv = true) {
|
|
@@ -33406,7 +33406,7 @@ function getDep(dep, reflector) {
|
|
|
33406
33406
|
return meta;
|
|
33407
33407
|
}
|
|
33408
33408
|
|
|
33409
|
-
// bazel-out/
|
|
33409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
33410
33410
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
33411
33411
|
var PipeSymbol = class extends SemanticSymbol {
|
|
33412
33412
|
constructor(decl, name) {
|
|
@@ -33556,7 +33556,7 @@ var PipeDecoratorHandler = class {
|
|
|
33556
33556
|
}
|
|
33557
33557
|
};
|
|
33558
33558
|
|
|
33559
|
-
// bazel-out/
|
|
33559
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
33560
33560
|
var CycleAnalyzer = class {
|
|
33561
33561
|
constructor(importGraph) {
|
|
33562
33562
|
this.importGraph = importGraph;
|
|
@@ -33627,7 +33627,7 @@ var Cycle = class {
|
|
|
33627
33627
|
}
|
|
33628
33628
|
};
|
|
33629
33629
|
|
|
33630
|
-
// bazel-out/
|
|
33630
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
33631
33631
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
33632
33632
|
var ImportGraph = class {
|
|
33633
33633
|
constructor(checker, perf) {
|
|
@@ -33719,7 +33719,7 @@ var Found = class {
|
|
|
33719
33719
|
}
|
|
33720
33720
|
};
|
|
33721
33721
|
|
|
33722
|
-
// bazel-out/
|
|
33722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
33723
33723
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
33724
33724
|
var FlatIndexGenerator = class {
|
|
33725
33725
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -33744,7 +33744,7 @@ export * from '${relativeEntryPoint}';
|
|
|
33744
33744
|
}
|
|
33745
33745
|
};
|
|
33746
33746
|
|
|
33747
|
-
// bazel-out/
|
|
33747
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
33748
33748
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
33749
33749
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
33750
33750
|
let resolvedEntryPoint = null;
|
|
@@ -33760,7 +33760,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
33760
33760
|
return resolvedEntryPoint;
|
|
33761
33761
|
}
|
|
33762
33762
|
|
|
33763
|
-
// bazel-out/
|
|
33763
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
33764
33764
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
33765
33765
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
33766
33766
|
const diagnostics = [];
|
|
@@ -33840,7 +33840,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
33840
33840
|
}
|
|
33841
33841
|
}
|
|
33842
33842
|
|
|
33843
|
-
// bazel-out/
|
|
33843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
33844
33844
|
var ReferenceGraph = class {
|
|
33845
33845
|
constructor() {
|
|
33846
33846
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -33894,7 +33894,7 @@ var ReferenceGraph = class {
|
|
|
33894
33894
|
}
|
|
33895
33895
|
};
|
|
33896
33896
|
|
|
33897
|
-
// bazel-out/
|
|
33897
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
33898
33898
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
33899
33899
|
var UpdateMode;
|
|
33900
33900
|
(function(UpdateMode2) {
|
|
@@ -33902,13 +33902,13 @@ var UpdateMode;
|
|
|
33902
33902
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
33903
33903
|
})(UpdateMode || (UpdateMode = {}));
|
|
33904
33904
|
|
|
33905
|
-
// bazel-out/
|
|
33905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
33906
33906
|
var import_typescript64 = __toESM(require("typescript"), 1);
|
|
33907
33907
|
|
|
33908
|
-
// bazel-out/
|
|
33908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
33909
33909
|
var import_typescript61 = __toESM(require("typescript"), 1);
|
|
33910
33910
|
|
|
33911
|
-
// bazel-out/
|
|
33911
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
33912
33912
|
var NgExtension = Symbol("NgExtension");
|
|
33913
33913
|
function isExtended(sf) {
|
|
33914
33914
|
return sf[NgExtension] !== void 0;
|
|
@@ -33968,13 +33968,13 @@ function retagTsFile(sf) {
|
|
|
33968
33968
|
}
|
|
33969
33969
|
}
|
|
33970
33970
|
|
|
33971
|
-
// bazel-out/
|
|
33971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
33972
33972
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
33973
33973
|
function makeShimFileName(fileName, suffix) {
|
|
33974
33974
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
33975
33975
|
}
|
|
33976
33976
|
|
|
33977
|
-
// bazel-out/
|
|
33977
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
33978
33978
|
var ShimAdapter = class {
|
|
33979
33979
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
33980
33980
|
this.delegate = delegate;
|
|
@@ -34069,7 +34069,7 @@ var ShimAdapter = class {
|
|
|
34069
34069
|
}
|
|
34070
34070
|
};
|
|
34071
34071
|
|
|
34072
|
-
// bazel-out/
|
|
34072
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
34073
34073
|
var ShimReferenceTagger = class {
|
|
34074
34074
|
constructor(shimExtensions) {
|
|
34075
34075
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -34103,7 +34103,7 @@ var ShimReferenceTagger = class {
|
|
|
34103
34103
|
}
|
|
34104
34104
|
};
|
|
34105
34105
|
|
|
34106
|
-
// bazel-out/
|
|
34106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
34107
34107
|
var DelegatingCompilerHost = class {
|
|
34108
34108
|
constructor(delegate) {
|
|
34109
34109
|
this.delegate = delegate;
|
|
@@ -34216,7 +34216,7 @@ var TsCreateProgramDriver = class {
|
|
|
34216
34216
|
}
|
|
34217
34217
|
};
|
|
34218
34218
|
|
|
34219
|
-
// bazel-out/
|
|
34219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
34220
34220
|
var FileDependencyGraph = class {
|
|
34221
34221
|
constructor() {
|
|
34222
34222
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -34283,7 +34283,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
34283
34283
|
return false;
|
|
34284
34284
|
}
|
|
34285
34285
|
|
|
34286
|
-
// bazel-out/
|
|
34286
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
34287
34287
|
var IncrementalStateKind;
|
|
34288
34288
|
(function(IncrementalStateKind2) {
|
|
34289
34289
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -34291,7 +34291,7 @@ var IncrementalStateKind;
|
|
|
34291
34291
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
34292
34292
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
34293
34293
|
|
|
34294
|
-
// bazel-out/
|
|
34294
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
34295
34295
|
var PhaseKind;
|
|
34296
34296
|
(function(PhaseKind2) {
|
|
34297
34297
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -34492,7 +34492,7 @@ function toOriginalSourceFile(sf) {
|
|
|
34492
34492
|
}
|
|
34493
34493
|
}
|
|
34494
34494
|
|
|
34495
|
-
// bazel-out/
|
|
34495
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
34496
34496
|
var TrackedIncrementalBuildStrategy = class {
|
|
34497
34497
|
constructor() {
|
|
34498
34498
|
this.state = null;
|
|
@@ -34513,7 +34513,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
34513
34513
|
};
|
|
34514
34514
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
34515
34515
|
|
|
34516
|
-
// bazel-out/
|
|
34516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
34517
34517
|
var IdentifierKind;
|
|
34518
34518
|
(function(IdentifierKind2) {
|
|
34519
34519
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -34531,7 +34531,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
34531
34531
|
}
|
|
34532
34532
|
};
|
|
34533
34533
|
|
|
34534
|
-
// bazel-out/
|
|
34534
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
34535
34535
|
var IndexingContext = class {
|
|
34536
34536
|
constructor() {
|
|
34537
34537
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -34541,7 +34541,7 @@ var IndexingContext = class {
|
|
|
34541
34541
|
}
|
|
34542
34542
|
};
|
|
34543
34543
|
|
|
34544
|
-
// bazel-out/
|
|
34544
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
34545
34545
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
34546
34546
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
34547
34547
|
super();
|
|
@@ -34793,7 +34793,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
34793
34793
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
34794
34794
|
}
|
|
34795
34795
|
|
|
34796
|
-
// bazel-out/
|
|
34796
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
34797
34797
|
function generateAnalysis(context) {
|
|
34798
34798
|
const analysis = /* @__PURE__ */ new Map();
|
|
34799
34799
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -34829,7 +34829,7 @@ function generateAnalysis(context) {
|
|
|
34829
34829
|
return analysis;
|
|
34830
34830
|
}
|
|
34831
34831
|
|
|
34832
|
-
// bazel-out/
|
|
34832
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
34833
34833
|
var NgModuleIndexImpl = class {
|
|
34834
34834
|
constructor(metaReader, localReader) {
|
|
34835
34835
|
this.metaReader = metaReader;
|
|
@@ -34918,7 +34918,7 @@ var NgModuleIndexImpl = class {
|
|
|
34918
34918
|
}
|
|
34919
34919
|
};
|
|
34920
34920
|
|
|
34921
|
-
// bazel-out/
|
|
34921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
34922
34922
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
34923
34923
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
34924
34924
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -35066,7 +35066,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
35066
35066
|
};
|
|
35067
35067
|
}
|
|
35068
35068
|
|
|
35069
|
-
// bazel-out/
|
|
35069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
35070
35070
|
var StandaloneComponentScopeReader = class {
|
|
35071
35071
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
35072
35072
|
this.metaReader = metaReader;
|
|
@@ -35144,21 +35144,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
35144
35144
|
}
|
|
35145
35145
|
};
|
|
35146
35146
|
|
|
35147
|
-
// bazel-out/
|
|
35147
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
35148
35148
|
var OptimizeFor;
|
|
35149
35149
|
(function(OptimizeFor2) {
|
|
35150
35150
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
35151
35151
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
35152
35152
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
35153
35153
|
|
|
35154
|
-
// bazel-out/
|
|
35154
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
35155
35155
|
var CompletionKind;
|
|
35156
35156
|
(function(CompletionKind2) {
|
|
35157
35157
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
35158
35158
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
35159
35159
|
})(CompletionKind || (CompletionKind = {}));
|
|
35160
35160
|
|
|
35161
|
-
// bazel-out/
|
|
35161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
35162
35162
|
var PotentialImportKind;
|
|
35163
35163
|
(function(PotentialImportKind2) {
|
|
35164
35164
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -35170,7 +35170,7 @@ var PotentialImportMode;
|
|
|
35170
35170
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
35171
35171
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
35172
35172
|
|
|
35173
|
-
// bazel-out/
|
|
35173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
35174
35174
|
var SymbolKind;
|
|
35175
35175
|
(function(SymbolKind2) {
|
|
35176
35176
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -35186,7 +35186,7 @@ var SymbolKind;
|
|
|
35186
35186
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
35187
35187
|
})(SymbolKind || (SymbolKind = {}));
|
|
35188
35188
|
|
|
35189
|
-
// bazel-out/
|
|
35189
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
35190
35190
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
35191
35191
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
35192
35192
|
var _a2;
|
|
@@ -35293,7 +35293,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
35293
35293
|
return import_typescript68.default.createSourceFile(fileName, template2, import_typescript68.default.ScriptTarget.Latest, false, import_typescript68.default.ScriptKind.JSX);
|
|
35294
35294
|
}
|
|
35295
35295
|
|
|
35296
|
-
// bazel-out/
|
|
35296
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
35297
35297
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
35298
35298
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
35299
35299
|
function getTemplateId(clazz) {
|
|
@@ -35310,10 +35310,10 @@ function allocateTemplateId(sf) {
|
|
|
35310
35310
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
35311
35311
|
}
|
|
35312
35312
|
|
|
35313
|
-
// bazel-out/
|
|
35313
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
35314
35314
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
35315
35315
|
|
|
35316
|
-
// bazel-out/
|
|
35316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
35317
35317
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
35318
35318
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
35319
35319
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -35442,7 +35442,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
35442
35442
|
}) || false;
|
|
35443
35443
|
}
|
|
35444
35444
|
|
|
35445
|
-
// bazel-out/
|
|
35445
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
35446
35446
|
var CompletionEngine = class {
|
|
35447
35447
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
35448
35448
|
this.tcb = tcb;
|
|
@@ -35599,10 +35599,10 @@ var CompletionEngine = class {
|
|
|
35599
35599
|
}
|
|
35600
35600
|
};
|
|
35601
35601
|
|
|
35602
|
-
// bazel-out/
|
|
35602
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
35603
35603
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
35604
35604
|
|
|
35605
|
-
// bazel-out/
|
|
35605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
35606
35606
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
35607
35607
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
35608
35608
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -35654,10 +35654,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
35654
35654
|
}
|
|
35655
35655
|
};
|
|
35656
35656
|
|
|
35657
|
-
// bazel-out/
|
|
35657
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
35658
35658
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
35659
35659
|
|
|
35660
|
-
// bazel-out/
|
|
35660
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
35661
35661
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
35662
35662
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
35663
35663
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -35731,16 +35731,16 @@ function isAccessExpression2(node) {
|
|
|
35731
35731
|
return import_typescript72.default.isPropertyAccessExpression(node) || import_typescript72.default.isElementAccessExpression(node);
|
|
35732
35732
|
}
|
|
35733
35733
|
|
|
35734
|
-
// bazel-out/
|
|
35734
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
35735
35735
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
35736
35736
|
|
|
35737
|
-
// bazel-out/
|
|
35737
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
35738
35738
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
35739
35739
|
|
|
35740
|
-
// bazel-out/
|
|
35740
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
35741
35741
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
35742
35742
|
|
|
35743
|
-
// bazel-out/
|
|
35743
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_emitter.mjs
|
|
35744
35744
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
35745
35745
|
var INELIGIBLE = {};
|
|
35746
35746
|
function canEmitType(type, canEmit) {
|
|
@@ -35815,7 +35815,7 @@ var TypeEmitter = class {
|
|
|
35815
35815
|
}
|
|
35816
35816
|
};
|
|
35817
35817
|
|
|
35818
|
-
// bazel-out/
|
|
35818
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
35819
35819
|
var TypeParameterEmitter = class {
|
|
35820
35820
|
constructor(typeParameters, reflector) {
|
|
35821
35821
|
this.typeParameters = typeParameters;
|
|
@@ -35892,7 +35892,7 @@ var TypeParameterEmitter = class {
|
|
|
35892
35892
|
}
|
|
35893
35893
|
};
|
|
35894
35894
|
|
|
35895
|
-
// bazel-out/
|
|
35895
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
35896
35896
|
var TcbInliningRequirement;
|
|
35897
35897
|
(function(TcbInliningRequirement2) {
|
|
35898
35898
|
TcbInliningRequirement2[TcbInliningRequirement2["MustInline"] = 0] = "MustInline";
|
|
@@ -35972,7 +35972,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
35972
35972
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
35973
35973
|
}
|
|
35974
35974
|
|
|
35975
|
-
// bazel-out/
|
|
35975
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
35976
35976
|
function generateTypeCtorDeclarationFn(node, meta, nodeTypeRef, typeParams) {
|
|
35977
35977
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
35978
35978
|
const rawType = import_typescript77.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -36083,7 +36083,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
36083
36083
|
});
|
|
36084
36084
|
}
|
|
36085
36085
|
|
|
36086
|
-
// bazel-out/
|
|
36086
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
36087
36087
|
var Environment = class {
|
|
36088
36088
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
36089
36089
|
this.config = config;
|
|
@@ -36177,7 +36177,7 @@ var Environment = class {
|
|
|
36177
36177
|
}
|
|
36178
36178
|
};
|
|
36179
36179
|
|
|
36180
|
-
// bazel-out/
|
|
36180
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
36181
36181
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
36182
36182
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
36183
36183
|
constructor(resolver) {
|
|
@@ -36312,7 +36312,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
36312
36312
|
});
|
|
36313
36313
|
}
|
|
36314
36314
|
|
|
36315
|
-
// bazel-out/
|
|
36315
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
36316
36316
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
36317
36317
|
var TypeCheckShimGenerator = class {
|
|
36318
36318
|
constructor() {
|
|
@@ -36330,10 +36330,10 @@ var TypeCheckShimGenerator = class {
|
|
|
36330
36330
|
}
|
|
36331
36331
|
};
|
|
36332
36332
|
|
|
36333
|
-
// bazel-out/
|
|
36333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
36334
36334
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
36335
36335
|
|
|
36336
|
-
// bazel-out/
|
|
36336
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
36337
36337
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
36338
36338
|
function wrapForDiagnostics(expr) {
|
|
36339
36339
|
return import_typescript81.default.factory.createParenthesizedExpression(expr);
|
|
@@ -36378,7 +36378,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
36378
36378
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
36379
36379
|
}
|
|
36380
36380
|
|
|
36381
|
-
// bazel-out/
|
|
36381
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
36382
36382
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
36383
36383
|
var NULL_AS_ANY = import_typescript82.default.factory.createAsExpression(import_typescript82.default.factory.createNull(), import_typescript82.default.factory.createKeywordTypeNode(import_typescript82.default.SyntaxKind.AnyKeyword));
|
|
36384
36384
|
var UNDEFINED = import_typescript82.default.factory.createIdentifier("undefined");
|
|
@@ -36710,7 +36710,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
36710
36710
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
36711
36711
|
})();
|
|
36712
36712
|
|
|
36713
|
-
// bazel-out/
|
|
36713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
36714
36714
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
36715
36715
|
constructor(templateId, boundTarget, oob) {
|
|
36716
36716
|
super();
|
|
@@ -36733,7 +36733,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
|
36733
36733
|
}
|
|
36734
36734
|
};
|
|
36735
36735
|
|
|
36736
|
-
// bazel-out/
|
|
36736
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
36737
36737
|
var TcbGenericContextBehavior;
|
|
36738
36738
|
(function(TcbGenericContextBehavior2) {
|
|
36739
36739
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -37860,7 +37860,7 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
37860
37860
|
}
|
|
37861
37861
|
};
|
|
37862
37862
|
|
|
37863
|
-
// bazel-out/
|
|
37863
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
37864
37864
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
37865
37865
|
var TypeCheckFile = class extends Environment {
|
|
37866
37866
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -37896,7 +37896,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
37896
37896
|
}
|
|
37897
37897
|
};
|
|
37898
37898
|
|
|
37899
|
-
// bazel-out/
|
|
37899
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
37900
37900
|
var InliningMode;
|
|
37901
37901
|
(function(InliningMode2) {
|
|
37902
37902
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -38133,7 +38133,7 @@ function splitStringAtPoints(str, points) {
|
|
|
38133
38133
|
return splits;
|
|
38134
38134
|
}
|
|
38135
38135
|
|
|
38136
|
-
// bazel-out/
|
|
38136
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
38137
38137
|
var LF_CHAR = 10;
|
|
38138
38138
|
var CR_CHAR = 13;
|
|
38139
38139
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -38174,7 +38174,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
38174
38174
|
return low - 1;
|
|
38175
38175
|
}
|
|
38176
38176
|
|
|
38177
|
-
// bazel-out/
|
|
38177
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
38178
38178
|
var TemplateSource = class {
|
|
38179
38179
|
constructor(mapping, file) {
|
|
38180
38180
|
this.mapping = mapping;
|
|
@@ -38225,7 +38225,7 @@ var TemplateSourceManager = class {
|
|
|
38225
38225
|
}
|
|
38226
38226
|
};
|
|
38227
38227
|
|
|
38228
|
-
// bazel-out/
|
|
38228
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
38229
38229
|
var import_typescript86 = __toESM(require("typescript"), 1);
|
|
38230
38230
|
var SymbolBuilder = class {
|
|
38231
38231
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -38702,7 +38702,7 @@ function sourceSpanEqual(a, b) {
|
|
|
38702
38702
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
38703
38703
|
}
|
|
38704
38704
|
|
|
38705
|
-
// bazel-out/
|
|
38705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
38706
38706
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
38707
38707
|
var TemplateTypeCheckerImpl = class {
|
|
38708
38708
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -39398,7 +39398,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
39398
39398
|
}
|
|
39399
39399
|
};
|
|
39400
39400
|
|
|
39401
|
-
// bazel-out/
|
|
39401
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
39402
39402
|
var TemplateCheckWithVisitor = class {
|
|
39403
39403
|
run(ctx, component, template2) {
|
|
39404
39404
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -39496,7 +39496,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
39496
39496
|
}
|
|
39497
39497
|
};
|
|
39498
39498
|
|
|
39499
|
-
// bazel-out/
|
|
39499
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
39500
39500
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
39501
39501
|
constructor() {
|
|
39502
39502
|
super(...arguments);
|
|
@@ -39521,7 +39521,7 @@ var factory = {
|
|
|
39521
39521
|
create: () => new InvalidBananaInBoxCheck()
|
|
39522
39522
|
};
|
|
39523
39523
|
|
|
39524
|
-
// bazel-out/
|
|
39524
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
39525
39525
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
39526
39526
|
["ngIf", "NgIf"],
|
|
39527
39527
|
["ngFor", "NgFor"],
|
|
@@ -39565,7 +39565,7 @@ var factory2 = {
|
|
|
39565
39565
|
}
|
|
39566
39566
|
};
|
|
39567
39567
|
|
|
39568
|
-
// bazel-out/
|
|
39568
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
39569
39569
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
39570
39570
|
constructor() {
|
|
39571
39571
|
super(...arguments);
|
|
@@ -39597,7 +39597,7 @@ var factory3 = {
|
|
|
39597
39597
|
create: () => new MissingNgForOfLetCheck()
|
|
39598
39598
|
};
|
|
39599
39599
|
|
|
39600
|
-
// bazel-out/
|
|
39600
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
39601
39601
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
39602
39602
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
39603
39603
|
constructor() {
|
|
@@ -39641,7 +39641,7 @@ var factory4 = {
|
|
|
39641
39641
|
}
|
|
39642
39642
|
};
|
|
39643
39643
|
|
|
39644
|
-
// bazel-out/
|
|
39644
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
39645
39645
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
39646
39646
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
39647
39647
|
constructor() {
|
|
@@ -39686,7 +39686,7 @@ var factory5 = {
|
|
|
39686
39686
|
}
|
|
39687
39687
|
};
|
|
39688
39688
|
|
|
39689
|
-
// bazel-out/
|
|
39689
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
39690
39690
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
39691
39691
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
39692
39692
|
constructor() {
|
|
@@ -39709,7 +39709,7 @@ var factory6 = {
|
|
|
39709
39709
|
create: () => new SuffixNotSupportedCheck()
|
|
39710
39710
|
};
|
|
39711
39711
|
|
|
39712
|
-
// bazel-out/
|
|
39712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
39713
39713
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
39714
39714
|
constructor() {
|
|
39715
39715
|
super(...arguments);
|
|
@@ -39747,10 +39747,10 @@ var factory7 = {
|
|
|
39747
39747
|
create: () => new TextAttributeNotBindingSpec()
|
|
39748
39748
|
};
|
|
39749
39749
|
|
|
39750
|
-
// bazel-out/
|
|
39750
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
39751
39751
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
39752
39752
|
|
|
39753
|
-
// bazel-out/
|
|
39753
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
39754
39754
|
var DiagnosticCategoryLabel;
|
|
39755
39755
|
(function(DiagnosticCategoryLabel2) {
|
|
39756
39756
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -39758,7 +39758,7 @@ var DiagnosticCategoryLabel;
|
|
|
39758
39758
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
39759
39759
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
39760
39760
|
|
|
39761
|
-
// bazel-out/
|
|
39761
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
39762
39762
|
var ExtendedTemplateCheckerImpl = class {
|
|
39763
39763
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
39764
39764
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -39810,7 +39810,7 @@ function assertNever(value) {
|
|
|
39810
39810
|
${value}`);
|
|
39811
39811
|
}
|
|
39812
39812
|
|
|
39813
|
-
// bazel-out/
|
|
39813
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
39814
39814
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
39815
39815
|
factory,
|
|
39816
39816
|
factory4,
|
|
@@ -39821,7 +39821,7 @@ var ALL_DIAGNOSTIC_FACTORIES = [
|
|
|
39821
39821
|
factory6
|
|
39822
39822
|
];
|
|
39823
39823
|
|
|
39824
|
-
// bazel-out/
|
|
39824
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
39825
39825
|
var CompilationTicketKind;
|
|
39826
39826
|
(function(CompilationTicketKind2) {
|
|
39827
39827
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -40550,7 +40550,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
40550
40550
|
return versions;
|
|
40551
40551
|
}
|
|
40552
40552
|
|
|
40553
|
-
// bazel-out/
|
|
40553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
40554
40554
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
40555
40555
|
var DelegatingCompilerHost2 = class {
|
|
40556
40556
|
constructor(delegate) {
|
|
@@ -40683,7 +40683,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
40683
40683
|
}
|
|
40684
40684
|
};
|
|
40685
40685
|
|
|
40686
|
-
// bazel-out/
|
|
40686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
40687
40687
|
var NgtscProgram = class {
|
|
40688
40688
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
40689
40689
|
this.options = options;
|
|
@@ -40901,21 +40901,21 @@ function mergeEmitResults(emitResults) {
|
|
|
40901
40901
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
40902
40902
|
}
|
|
40903
40903
|
|
|
40904
|
-
// bazel-out/
|
|
40904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
40905
40905
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
40906
40906
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
40907
40907
|
}
|
|
40908
40908
|
|
|
40909
|
-
// bazel-out/
|
|
40909
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
40910
40910
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
40911
40911
|
|
|
40912
|
-
// bazel-out/
|
|
40912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
40913
40913
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
40914
40914
|
|
|
40915
|
-
// bazel-out/
|
|
40915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/downlevel_decorators_transform/downlevel_decorators_transform.mjs
|
|
40916
40916
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
40917
40917
|
|
|
40918
|
-
// bazel-out/
|
|
40918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
40919
40919
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
40920
40920
|
ngDevMode: false,
|
|
40921
40921
|
ngI18nClosureMode: false
|
|
@@ -40924,7 +40924,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
40924
40924
|
ngJitMode: false
|
|
40925
40925
|
});
|
|
40926
40926
|
|
|
40927
|
-
// bazel-out/
|
|
40927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
40928
40928
|
var LogLevel;
|
|
40929
40929
|
(function(LogLevel2) {
|
|
40930
40930
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -40933,7 +40933,7 @@ var LogLevel;
|
|
|
40933
40933
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
40934
40934
|
})(LogLevel || (LogLevel = {}));
|
|
40935
40935
|
|
|
40936
|
-
// bazel-out/
|
|
40936
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
40937
40937
|
var RESET = "\x1B[0m";
|
|
40938
40938
|
var RED = "\x1B[31m";
|
|
40939
40939
|
var YELLOW = "\x1B[33m";
|
|
@@ -40942,18 +40942,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
40942
40942
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
40943
40943
|
var ERROR = `${RED}Error:${RESET}`;
|
|
40944
40944
|
|
|
40945
|
-
// bazel-out/
|
|
40945
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
40946
40946
|
setFileSystem(new NodeJSFileSystem());
|
|
40947
40947
|
|
|
40948
|
-
// bazel-out/
|
|
40948
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
40949
40949
|
var import_fs2 = require("fs");
|
|
40950
40950
|
var import_path8 = require("path");
|
|
40951
40951
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
40952
40952
|
|
|
40953
|
-
// bazel-out/
|
|
40953
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
40954
40954
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
40955
40955
|
|
|
40956
|
-
// bazel-out/
|
|
40956
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
40957
40957
|
var import_path4 = require("path");
|
|
40958
40958
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
40959
40959
|
var ImportManager2 = class {
|
|
@@ -41137,7 +41137,7 @@ ${text2}`;
|
|
|
41137
41137
|
}
|
|
41138
41138
|
};
|
|
41139
41139
|
|
|
41140
|
-
// bazel-out/
|
|
41140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
41141
41141
|
var ChangeTracker = class {
|
|
41142
41142
|
constructor(_printer, _importRemapper) {
|
|
41143
41143
|
__publicField(this, "_printer");
|
|
@@ -41193,7 +41193,7 @@ function normalizePath(path3) {
|
|
|
41193
41193
|
return path3.replace(/\\/g, "/");
|
|
41194
41194
|
}
|
|
41195
41195
|
|
|
41196
|
-
// bazel-out/
|
|
41196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
41197
41197
|
var import_core16 = require("@angular-devkit/core");
|
|
41198
41198
|
function getProjectTsConfigPaths(tree) {
|
|
41199
41199
|
return __async(this, null, function* () {
|
|
@@ -41273,11 +41273,11 @@ function getWorkspace(tree) {
|
|
|
41273
41273
|
});
|
|
41274
41274
|
}
|
|
41275
41275
|
|
|
41276
|
-
// bazel-out/
|
|
41276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
41277
41277
|
var import_path5 = require("path");
|
|
41278
41278
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
41279
41279
|
|
|
41280
|
-
// bazel-out/
|
|
41280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
41281
41281
|
var path2 = __toESM(require("path"), 1);
|
|
41282
41282
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
41283
41283
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -41294,7 +41294,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
41294
41294
|
return import_typescript102.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
41295
41295
|
}
|
|
41296
41296
|
|
|
41297
|
-
// bazel-out/
|
|
41297
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
41298
41298
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
41299
41299
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
41300
41300
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -41323,13 +41323,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
41323
41323
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
41324
41324
|
}
|
|
41325
41325
|
|
|
41326
|
-
// bazel-out/
|
|
41326
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
41327
41327
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
41328
41328
|
|
|
41329
|
-
// bazel-out/
|
|
41329
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
41330
41330
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
41331
41331
|
|
|
41332
|
-
// bazel-out/
|
|
41332
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
41333
41333
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
41334
41334
|
function getImportOfIdentifier(typeChecker, node) {
|
|
41335
41335
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -41380,7 +41380,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
41380
41380
|
});
|
|
41381
41381
|
}
|
|
41382
41382
|
|
|
41383
|
-
// bazel-out/
|
|
41383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
41384
41384
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
41385
41385
|
if (!import_typescript105.default.isCallExpression(decorator.expression) || !import_typescript105.default.isIdentifier(decorator.expression.expression)) {
|
|
41386
41386
|
return null;
|
|
@@ -41389,7 +41389,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
41389
41389
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
41390
41390
|
}
|
|
41391
41391
|
|
|
41392
|
-
// bazel-out/
|
|
41392
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
41393
41393
|
function getAngularDecorators(typeChecker, decorators) {
|
|
41394
41394
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
41395
41395
|
node,
|
|
@@ -41399,7 +41399,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
41399
41399
|
}));
|
|
41400
41400
|
}
|
|
41401
41401
|
|
|
41402
|
-
// bazel-out/
|
|
41402
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
41403
41403
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
41404
41404
|
function closestNode(node, predicate) {
|
|
41405
41405
|
let current = node.parent;
|
|
@@ -41412,7 +41412,7 @@ function closestNode(node, predicate) {
|
|
|
41412
41412
|
return null;
|
|
41413
41413
|
}
|
|
41414
41414
|
|
|
41415
|
-
// bazel-out/
|
|
41415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
41416
41416
|
var import_path6 = require("path");
|
|
41417
41417
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
41418
41418
|
var UniqueItemTracker = class {
|
|
@@ -41588,7 +41588,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
41588
41588
|
}));
|
|
41589
41589
|
}
|
|
41590
41590
|
|
|
41591
|
-
// bazel-out/
|
|
41591
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
41592
41592
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
41593
41593
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
41594
41594
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -41787,14 +41787,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
41787
41787
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
41788
41788
|
}
|
|
41789
41789
|
|
|
41790
|
-
// bazel-out/
|
|
41790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
41791
41791
|
var import_path7 = require("path");
|
|
41792
41792
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
41793
41793
|
|
|
41794
|
-
// bazel-out/
|
|
41794
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
41795
41795
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
41796
41796
|
|
|
41797
|
-
// bazel-out/
|
|
41797
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
41798
41798
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
41799
41799
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
41800
41800
|
var _a2, _b2;
|
|
@@ -41803,7 +41803,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
41803
41803
|
return !!(((_a2 = nodeSymbol == null ? void 0 : nodeSymbol.declarations) == null ? void 0 : _a2[0]) && ((_b2 = importSymbol == null ? void 0 : importSymbol.declarations) == null ? void 0 : _b2[0])) && nodeSymbol.declarations[0] === importSymbol.declarations[0];
|
|
41804
41804
|
}
|
|
41805
41805
|
|
|
41806
|
-
// bazel-out/
|
|
41806
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
41807
41807
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
41808
41808
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
41809
41809
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -42166,7 +42166,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
42166
42166
|
return metadata != null && metadata.isStandalone;
|
|
42167
42167
|
}
|
|
42168
42168
|
|
|
42169
|
-
// bazel-out/
|
|
42169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
42170
42170
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
42171
42171
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
42172
42172
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -42543,7 +42543,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
42543
42543
|
return false;
|
|
42544
42544
|
}
|
|
42545
42545
|
|
|
42546
|
-
// bazel-out/
|
|
42546
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
42547
42547
|
var MigrationMode;
|
|
42548
42548
|
(function(MigrationMode2) {
|
|
42549
42549
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|