@angular/core 17.1.0 → 17.1.1
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/linker/compiler.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/node_manipulation.mjs +2 -5
- package/esm2022/src/render3/util/global_utils.mjs +3 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +4 -6
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +2 -4
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +161 -161
- package/schematics/migrations/block-template-entities/bundle.js.map +1 -1
- package/schematics/migrations/compiler-options/bundle.js +13 -13
- package/schematics/migrations/transfer-state/bundle.js +13 -13
- package/schematics/ng-generate/control-flow-migration/bundle.js +170 -170
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +1 -1
- package/schematics/ng-generate/standalone-migration/bundle.js +425 -425
- 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(path4) {
|
|
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(path4) {
|
|
168
168
|
return path4.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, path4) {
|
|
|
265
265
|
return isLocalRelativePath(relative(base, path4));
|
|
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) {
|
|
@@ -750,7 +750,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
750
750
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
751
751
|
}
|
|
752
752
|
|
|
753
|
-
// bazel-out/
|
|
753
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
754
754
|
var output_ast_exports = {};
|
|
755
755
|
__export(output_ast_exports, {
|
|
756
756
|
ArrayType: () => ArrayType,
|
|
@@ -838,7 +838,7 @@ __export(output_ast_exports, {
|
|
|
838
838
|
variable: () => variable
|
|
839
839
|
});
|
|
840
840
|
|
|
841
|
-
// bazel-out/
|
|
841
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
842
842
|
var textEncoder;
|
|
843
843
|
function digest(message) {
|
|
844
844
|
return message.id || computeDigest(message);
|
|
@@ -1081,7 +1081,7 @@ function wordAt(bytes, index, endian) {
|
|
|
1081
1081
|
return word;
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
-
// bazel-out/
|
|
1084
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
1085
1085
|
var TypeModifier;
|
|
1086
1086
|
(function(TypeModifier2) {
|
|
1087
1087
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -2276,7 +2276,7 @@ function serializeTags(tags) {
|
|
|
2276
2276
|
return out;
|
|
2277
2277
|
}
|
|
2278
2278
|
|
|
2279
|
-
// bazel-out/
|
|
2279
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
2280
2280
|
var CONSTANT_PREFIX = "_c";
|
|
2281
2281
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
2282
2282
|
var KEY_CONTEXT = {};
|
|
@@ -2459,7 +2459,7 @@ function isLongStringLiteral(expr) {
|
|
|
2459
2459
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
2460
2460
|
}
|
|
2461
2461
|
|
|
2462
|
-
// bazel-out/
|
|
2462
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
2463
2463
|
var CORE = "@angular/core";
|
|
2464
2464
|
var _Identifiers = class {
|
|
2465
2465
|
};
|
|
@@ -3104,7 +3104,7 @@ var Identifiers = _Identifiers;
|
|
|
3104
3104
|
_Identifiers.UnwrapDirectiveSignalInputs = { name: "\u0275UnwrapDirectiveSignalInputs", moduleName: CORE };
|
|
3105
3105
|
})();
|
|
3106
3106
|
|
|
3107
|
-
// bazel-out/
|
|
3107
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
3108
3108
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
3109
3109
|
function dashCaseToCamelCase(input) {
|
|
3110
3110
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -3192,7 +3192,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
3192
3192
|
return [truthy, falsy];
|
|
3193
3193
|
}
|
|
3194
3194
|
|
|
3195
|
-
// bazel-out/
|
|
3195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
3196
3196
|
var VERSION = 3;
|
|
3197
3197
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
3198
3198
|
var SourceMapGenerator = class {
|
|
@@ -3321,7 +3321,7 @@ function toBase64Digit(value) {
|
|
|
3321
3321
|
return B64_DIGITS[value];
|
|
3322
3322
|
}
|
|
3323
3323
|
|
|
3324
|
-
// bazel-out/
|
|
3324
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
3325
3325
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
3326
3326
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
3327
3327
|
var _INDENT_WITH = " ";
|
|
@@ -3809,7 +3809,7 @@ function _createIndent(count) {
|
|
|
3809
3809
|
return res;
|
|
3810
3810
|
}
|
|
3811
3811
|
|
|
3812
|
-
// bazel-out/
|
|
3812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3813
3813
|
function typeWithParameters(type, numParams) {
|
|
3814
3814
|
if (numParams === 0) {
|
|
3815
3815
|
return expressionType(type);
|
|
@@ -3877,7 +3877,7 @@ function generateForwardRef(expr) {
|
|
|
3877
3877
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
3878
3878
|
}
|
|
3879
3879
|
|
|
3880
|
-
// bazel-out/
|
|
3880
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3881
3881
|
var R3FactoryDelegateType;
|
|
3882
3882
|
(function(R3FactoryDelegateType2) {
|
|
3883
3883
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -4022,7 +4022,7 @@ function getInjectFn(target) {
|
|
|
4022
4022
|
}
|
|
4023
4023
|
}
|
|
4024
4024
|
|
|
4025
|
-
// bazel-out/
|
|
4025
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
4026
4026
|
var TagContentType;
|
|
4027
4027
|
(function(TagContentType2) {
|
|
4028
4028
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -4059,7 +4059,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
4059
4059
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
4060
4060
|
}
|
|
4061
4061
|
|
|
4062
|
-
// bazel-out/
|
|
4062
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
4063
4063
|
var Comment = class {
|
|
4064
4064
|
constructor(value, sourceSpan) {
|
|
4065
4065
|
this.value = value;
|
|
@@ -4513,7 +4513,7 @@ function visitAll(visitor, nodes) {
|
|
|
4513
4513
|
return result;
|
|
4514
4514
|
}
|
|
4515
4515
|
|
|
4516
|
-
// bazel-out/
|
|
4516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
4517
4517
|
var Message = class {
|
|
4518
4518
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
4519
4519
|
this.nodes = nodes;
|
|
@@ -4702,7 +4702,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4702
4702
|
}
|
|
4703
4703
|
};
|
|
4704
4704
|
|
|
4705
|
-
// bazel-out/
|
|
4705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
4706
4706
|
var Serializer = class {
|
|
4707
4707
|
createNameMapper(message) {
|
|
4708
4708
|
return null;
|
|
@@ -4759,7 +4759,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
4759
4759
|
}
|
|
4760
4760
|
};
|
|
4761
4761
|
|
|
4762
|
-
// bazel-out/
|
|
4762
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4763
4763
|
var _Visitor = class {
|
|
4764
4764
|
visitTag(tag) {
|
|
4765
4765
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4847,7 +4847,7 @@ function escapeXml(text2) {
|
|
|
4847
4847
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
4848
4848
|
}
|
|
4849
4849
|
|
|
4850
|
-
// bazel-out/
|
|
4850
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4851
4851
|
var _MESSAGES_TAG = "messagebundle";
|
|
4852
4852
|
var _MESSAGE_TAG = "msg";
|
|
4853
4853
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -4999,7 +4999,7 @@ function toPublicName(internalName) {
|
|
|
4999
4999
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
5000
5000
|
}
|
|
5001
5001
|
|
|
5002
|
-
// bazel-out/
|
|
5002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
5003
5003
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
5004
5004
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
5005
5005
|
var I18N_ATTR = "i18n";
|
|
@@ -5101,7 +5101,7 @@ function declareI18nVariable(variable2) {
|
|
|
5101
5101
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
5102
5102
|
}
|
|
5103
5103
|
|
|
5104
|
-
// bazel-out/
|
|
5104
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
5105
5105
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
5106
5106
|
var TEMPORARY_NAME = "_t";
|
|
5107
5107
|
var CONTEXT_NAME = "ctx";
|
|
@@ -5363,7 +5363,7 @@ function getInstructionStatements(instructions) {
|
|
|
5363
5363
|
return statements;
|
|
5364
5364
|
}
|
|
5365
5365
|
|
|
5366
|
-
// bazel-out/
|
|
5366
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
5367
5367
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
5368
5368
|
let result = null;
|
|
5369
5369
|
const factoryMeta = {
|
|
@@ -5448,7 +5448,7 @@ function createFactoryFunction(type) {
|
|
|
5448
5448
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
5449
5449
|
}
|
|
5450
5450
|
|
|
5451
|
-
// bazel-out/
|
|
5451
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
5452
5452
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
5453
5453
|
/^\s*$/,
|
|
5454
5454
|
/[<>]/,
|
|
@@ -5470,7 +5470,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
5470
5470
|
}
|
|
5471
5471
|
}
|
|
5472
5472
|
|
|
5473
|
-
// bazel-out/
|
|
5473
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
5474
5474
|
var InterpolationConfig = class {
|
|
5475
5475
|
static fromArray(markers) {
|
|
5476
5476
|
if (!markers) {
|
|
@@ -5487,7 +5487,7 @@ var InterpolationConfig = class {
|
|
|
5487
5487
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
5488
5488
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
5489
5489
|
|
|
5490
|
-
// bazel-out/
|
|
5490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
5491
5491
|
var $EOF = 0;
|
|
5492
5492
|
var $BSPACE = 8;
|
|
5493
5493
|
var $TAB = 9;
|
|
@@ -5569,7 +5569,7 @@ function isQuote(code) {
|
|
|
5569
5569
|
return code === $SQ || code === $DQ || code === $BT;
|
|
5570
5570
|
}
|
|
5571
5571
|
|
|
5572
|
-
// bazel-out/
|
|
5572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
5573
5573
|
var ParseLocation = class {
|
|
5574
5574
|
constructor(file, offset, line, col) {
|
|
5575
5575
|
this.file = file;
|
|
@@ -5716,7 +5716,7 @@ function sanitizeIdentifier(name) {
|
|
|
5716
5716
|
return name.replace(/\W/g, "_");
|
|
5717
5717
|
}
|
|
5718
5718
|
|
|
5719
|
-
// bazel-out/
|
|
5719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5720
5720
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5721
5721
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5722
5722
|
constructor() {
|
|
@@ -5809,7 +5809,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5809
5809
|
}
|
|
5810
5810
|
};
|
|
5811
5811
|
|
|
5812
|
-
// bazel-out/
|
|
5812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5813
5813
|
var policy;
|
|
5814
5814
|
function getPolicy() {
|
|
5815
5815
|
if (policy === void 0) {
|
|
@@ -5847,7 +5847,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5847
5847
|
return fn2.bind(_global);
|
|
5848
5848
|
}
|
|
5849
5849
|
|
|
5850
|
-
// bazel-out/
|
|
5850
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5851
5851
|
var JitEvaluator = class {
|
|
5852
5852
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5853
5853
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5938,7 +5938,7 @@ function isUseStrictStatement(statement) {
|
|
|
5938
5938
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5939
5939
|
}
|
|
5940
5940
|
|
|
5941
|
-
// bazel-out/
|
|
5941
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5942
5942
|
function compileInjector(meta) {
|
|
5943
5943
|
const definitionMap = new DefinitionMap();
|
|
5944
5944
|
if (meta.providers !== null) {
|
|
@@ -5955,7 +5955,7 @@ function createInjectorType(meta) {
|
|
|
5955
5955
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5956
5956
|
}
|
|
5957
5957
|
|
|
5958
|
-
// bazel-out/
|
|
5958
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5959
5959
|
var R3JitReflector = class {
|
|
5960
5960
|
constructor(context) {
|
|
5961
5961
|
this.context = context;
|
|
@@ -5971,7 +5971,7 @@ var R3JitReflector = class {
|
|
|
5971
5971
|
}
|
|
5972
5972
|
};
|
|
5973
5973
|
|
|
5974
|
-
// bazel-out/
|
|
5974
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5975
5975
|
var R3SelectorScopeMode;
|
|
5976
5976
|
(function(R3SelectorScopeMode2) {
|
|
5977
5977
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -6112,7 +6112,7 @@ function tupleOfTypes(types) {
|
|
|
6112
6112
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
6113
6113
|
}
|
|
6114
6114
|
|
|
6115
|
-
// bazel-out/
|
|
6115
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
6116
6116
|
function compilePipeFromMetadata(metadata) {
|
|
6117
6117
|
const definitionMapValues = [];
|
|
6118
6118
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -6133,7 +6133,7 @@ function createPipeType(metadata) {
|
|
|
6133
6133
|
]));
|
|
6134
6134
|
}
|
|
6135
6135
|
|
|
6136
|
-
// bazel-out/
|
|
6136
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
6137
6137
|
var R3TemplateDependencyKind;
|
|
6138
6138
|
(function(R3TemplateDependencyKind2) {
|
|
6139
6139
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -6141,7 +6141,7 @@ var R3TemplateDependencyKind;
|
|
|
6141
6141
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
6142
6142
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
6143
6143
|
|
|
6144
|
-
// bazel-out/
|
|
6144
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
6145
6145
|
var ParserError = class {
|
|
6146
6146
|
constructor(message, input, errLocation, ctxLocation) {
|
|
6147
6147
|
this.input = input;
|
|
@@ -6807,7 +6807,7 @@ var BoundElementProperty = class {
|
|
|
6807
6807
|
}
|
|
6808
6808
|
};
|
|
6809
6809
|
|
|
6810
|
-
// bazel-out/
|
|
6810
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
6811
6811
|
var _EventHandlerVars = class {
|
|
6812
6812
|
};
|
|
6813
6813
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -7448,7 +7448,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
7448
7448
|
}
|
|
7449
7449
|
};
|
|
7450
7450
|
|
|
7451
|
-
// bazel-out/
|
|
7451
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
7452
7452
|
var _SECURITY_SCHEMA;
|
|
7453
7453
|
function SECURITY_SCHEMA() {
|
|
7454
7454
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -7506,7 +7506,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
7506
7506
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
7507
7507
|
}
|
|
7508
7508
|
|
|
7509
|
-
// bazel-out/
|
|
7509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
7510
7510
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
7511
7511
|
"inherit",
|
|
7512
7512
|
"initial",
|
|
@@ -7977,7 +7977,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7977
7977
|
}
|
|
7978
7978
|
}
|
|
7979
7979
|
|
|
7980
|
-
// bazel-out/
|
|
7980
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7981
7981
|
var OpKind;
|
|
7982
7982
|
(function(OpKind2) {
|
|
7983
7983
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -8136,7 +8136,7 @@ var TemplateKind;
|
|
|
8136
8136
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
8137
8137
|
})(TemplateKind || (TemplateKind = {}));
|
|
8138
8138
|
|
|
8139
|
-
// bazel-out/
|
|
8139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
8140
8140
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
8141
8141
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
8142
8142
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -8168,7 +8168,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
8168
8168
|
return expr[UsesVarOffset] === true;
|
|
8169
8169
|
}
|
|
8170
8170
|
|
|
8171
|
-
// bazel-out/
|
|
8171
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
8172
8172
|
function createStatementOp(statement) {
|
|
8173
8173
|
return __spreadValues({
|
|
8174
8174
|
kind: OpKind.Statement,
|
|
@@ -8190,7 +8190,7 @@ var NEW_OP = {
|
|
|
8190
8190
|
next: null
|
|
8191
8191
|
};
|
|
8192
8192
|
|
|
8193
|
-
// bazel-out/
|
|
8193
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
8194
8194
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
8195
8195
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
8196
8196
|
kind: OpKind.InterpolateText,
|
|
@@ -8356,7 +8356,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
8356
8356
|
}, NEW_OP);
|
|
8357
8357
|
}
|
|
8358
8358
|
|
|
8359
|
-
// bazel-out/
|
|
8359
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
8360
8360
|
var _a;
|
|
8361
8361
|
var _b;
|
|
8362
8362
|
var _c;
|
|
@@ -9188,7 +9188,7 @@ function isStringLiteral(expr) {
|
|
|
9188
9188
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
9189
9189
|
}
|
|
9190
9190
|
|
|
9191
|
-
// bazel-out/
|
|
9191
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
9192
9192
|
var _OpList = class {
|
|
9193
9193
|
constructor() {
|
|
9194
9194
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -9379,14 +9379,14 @@ var OpList = _OpList;
|
|
|
9379
9379
|
_OpList.nextListId = 0;
|
|
9380
9380
|
})();
|
|
9381
9381
|
|
|
9382
|
-
// bazel-out/
|
|
9382
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
9383
9383
|
var SlotHandle = class {
|
|
9384
9384
|
constructor() {
|
|
9385
9385
|
this.slot = null;
|
|
9386
9386
|
}
|
|
9387
9387
|
};
|
|
9388
9388
|
|
|
9389
|
-
// bazel-out/
|
|
9389
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
9390
9390
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
9391
9391
|
OpKind.Element,
|
|
9392
9392
|
OpKind.ElementStart,
|
|
@@ -9673,7 +9673,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
9673
9673
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
9674
9674
|
}
|
|
9675
9675
|
|
|
9676
|
-
// bazel-out/
|
|
9676
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
9677
9677
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
9678
9678
|
return __spreadValues(__spreadValues({
|
|
9679
9679
|
kind: OpKind.HostProperty,
|
|
@@ -9687,10 +9687,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
9687
9687
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
9688
9688
|
}
|
|
9689
9689
|
|
|
9690
|
-
// bazel-out/
|
|
9690
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
9691
9691
|
var CTX_REF = "CTX_REF_MARKER";
|
|
9692
9692
|
|
|
9693
|
-
// bazel-out/
|
|
9693
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
9694
9694
|
var CompilationJobKind;
|
|
9695
9695
|
(function(CompilationJobKind2) {
|
|
9696
9696
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -9797,7 +9797,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
9797
9797
|
}
|
|
9798
9798
|
};
|
|
9799
9799
|
|
|
9800
|
-
// bazel-out/
|
|
9800
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
9801
9801
|
function deleteAnyCasts(job) {
|
|
9802
9802
|
for (const unit of job.units) {
|
|
9803
9803
|
for (const op of unit.ops()) {
|
|
@@ -9815,7 +9815,7 @@ function removeAnys(e) {
|
|
|
9815
9815
|
return e;
|
|
9816
9816
|
}
|
|
9817
9817
|
|
|
9818
|
-
// bazel-out/
|
|
9818
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
9819
9819
|
function applyI18nExpressions(job) {
|
|
9820
9820
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
9821
9821
|
for (const unit of job.units) {
|
|
@@ -9858,7 +9858,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
9858
9858
|
return false;
|
|
9859
9859
|
}
|
|
9860
9860
|
|
|
9861
|
-
// bazel-out/
|
|
9861
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
9862
9862
|
function assignI18nSlotDependencies(job) {
|
|
9863
9863
|
for (const unit of job.units) {
|
|
9864
9864
|
let updateOp = unit.update.head;
|
|
@@ -9903,7 +9903,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
9903
9903
|
}
|
|
9904
9904
|
}
|
|
9905
9905
|
|
|
9906
|
-
// bazel-out/
|
|
9906
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
9907
9907
|
function createOpXrefMap(unit) {
|
|
9908
9908
|
const map = /* @__PURE__ */ new Map();
|
|
9909
9909
|
for (const op of unit.create) {
|
|
@@ -9918,7 +9918,7 @@ function createOpXrefMap(unit) {
|
|
|
9918
9918
|
return map;
|
|
9919
9919
|
}
|
|
9920
9920
|
|
|
9921
|
-
// bazel-out/
|
|
9921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
9922
9922
|
function extractAttributes(job) {
|
|
9923
9923
|
for (const unit of job.units) {
|
|
9924
9924
|
const elements = createOpXrefMap(unit);
|
|
@@ -10020,7 +10020,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
10020
10020
|
}
|
|
10021
10021
|
}
|
|
10022
10022
|
|
|
10023
|
-
// bazel-out/
|
|
10023
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
10024
10024
|
function lookupElement2(elements, xref) {
|
|
10025
10025
|
const el = elements.get(xref);
|
|
10026
10026
|
if (el === void 0) {
|
|
@@ -10071,7 +10071,7 @@ function specializeBindings(job) {
|
|
|
10071
10071
|
}
|
|
10072
10072
|
}
|
|
10073
10073
|
|
|
10074
|
-
// bazel-out/
|
|
10074
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
10075
10075
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
10076
10076
|
Identifiers.attribute,
|
|
10077
10077
|
Identifiers.classProp,
|
|
@@ -10137,7 +10137,7 @@ function chainOperationsInList(opList) {
|
|
|
10137
10137
|
}
|
|
10138
10138
|
}
|
|
10139
10139
|
|
|
10140
|
-
// bazel-out/
|
|
10140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
10141
10141
|
function collapseSingletonInterpolations(job) {
|
|
10142
10142
|
for (const unit of job.units) {
|
|
10143
10143
|
for (const op of unit.update) {
|
|
@@ -10149,7 +10149,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
10149
10149
|
}
|
|
10150
10150
|
}
|
|
10151
10151
|
|
|
10152
|
-
// bazel-out/
|
|
10152
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
10153
10153
|
function generateConditionalExpressions(job) {
|
|
10154
10154
|
for (const unit of job.units) {
|
|
10155
10155
|
for (const op of unit.ops()) {
|
|
@@ -10186,7 +10186,7 @@ function generateConditionalExpressions(job) {
|
|
|
10186
10186
|
}
|
|
10187
10187
|
}
|
|
10188
10188
|
|
|
10189
|
-
// bazel-out/
|
|
10189
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
10190
10190
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
10191
10191
|
["&&", BinaryOperator.And],
|
|
10192
10192
|
[">", BinaryOperator.Bigger],
|
|
@@ -10237,7 +10237,7 @@ function literalOrArrayLiteral(value) {
|
|
|
10237
10237
|
return literal(value);
|
|
10238
10238
|
}
|
|
10239
10239
|
|
|
10240
|
-
// bazel-out/
|
|
10240
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
10241
10241
|
function collectElementConsts(job) {
|
|
10242
10242
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
10243
10243
|
for (const unit of job.units) {
|
|
@@ -10399,7 +10399,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
10399
10399
|
return literalArr(attrArray);
|
|
10400
10400
|
}
|
|
10401
10401
|
|
|
10402
|
-
// bazel-out/
|
|
10402
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
10403
10403
|
function convertI18nBindings(job) {
|
|
10404
10404
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
10405
10405
|
for (const unit of job.units) {
|
|
@@ -10440,7 +10440,7 @@ function convertI18nBindings(job) {
|
|
|
10440
10440
|
}
|
|
10441
10441
|
}
|
|
10442
10442
|
|
|
10443
|
-
// bazel-out/
|
|
10443
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
|
|
10444
10444
|
function createDeferDepsFns(job) {
|
|
10445
10445
|
for (const unit of job.units) {
|
|
10446
10446
|
for (const op of unit.create) {
|
|
@@ -10472,7 +10472,7 @@ function createDeferDepsFns(job) {
|
|
|
10472
10472
|
}
|
|
10473
10473
|
}
|
|
10474
10474
|
|
|
10475
|
-
// bazel-out/
|
|
10475
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
10476
10476
|
function createI18nContexts(job) {
|
|
10477
10477
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
10478
10478
|
for (const unit of job.units) {
|
|
@@ -10537,7 +10537,7 @@ function createI18nContexts(job) {
|
|
|
10537
10537
|
throw Error("AssertionError: Unexpected ICU outside of an i18n block.");
|
|
10538
10538
|
}
|
|
10539
10539
|
if (op.message.id !== currentI18nOp.message.id) {
|
|
10540
|
-
const contextOp = createI18nContextOp(I18nContextKind.Icu, job.allocateXrefId(), currentI18nOp.
|
|
10540
|
+
const contextOp = createI18nContextOp(I18nContextKind.Icu, job.allocateXrefId(), currentI18nOp.root, op.message, null);
|
|
10541
10541
|
unit.create.push(contextOp);
|
|
10542
10542
|
op.context = contextOp.xref;
|
|
10543
10543
|
} else {
|
|
@@ -10550,7 +10550,7 @@ function createI18nContexts(job) {
|
|
|
10550
10550
|
}
|
|
10551
10551
|
}
|
|
10552
10552
|
|
|
10553
|
-
// bazel-out/
|
|
10553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
10554
10554
|
function deduplicateTextBindings(job) {
|
|
10555
10555
|
const seen = /* @__PURE__ */ new Map();
|
|
10556
10556
|
for (const unit of job.units) {
|
|
@@ -10572,7 +10572,7 @@ function deduplicateTextBindings(job) {
|
|
|
10572
10572
|
}
|
|
10573
10573
|
}
|
|
10574
10574
|
|
|
10575
|
-
// bazel-out/
|
|
10575
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
10576
10576
|
function configureDeferInstructions(job) {
|
|
10577
10577
|
for (const unit of job.units) {
|
|
10578
10578
|
for (const op of unit.create) {
|
|
@@ -10589,7 +10589,7 @@ function configureDeferInstructions(job) {
|
|
|
10589
10589
|
}
|
|
10590
10590
|
}
|
|
10591
10591
|
|
|
10592
|
-
// bazel-out/
|
|
10592
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
10593
10593
|
function resolveDeferTargetNames(job) {
|
|
10594
10594
|
const scopes = /* @__PURE__ */ new Map();
|
|
10595
10595
|
function getScopeForView2(view) {
|
|
@@ -10683,7 +10683,7 @@ var Scope = class {
|
|
|
10683
10683
|
}
|
|
10684
10684
|
};
|
|
10685
10685
|
|
|
10686
|
-
// bazel-out/
|
|
10686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
10687
10687
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
10688
10688
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
10689
10689
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -10710,7 +10710,7 @@ function collapseEmptyInstructions(job) {
|
|
|
10710
10710
|
}
|
|
10711
10711
|
}
|
|
10712
10712
|
|
|
10713
|
-
// bazel-out/
|
|
10713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
10714
10714
|
function expandSafeReads(job) {
|
|
10715
10715
|
for (const unit of job.units) {
|
|
10716
10716
|
for (const op of unit.ops()) {
|
|
@@ -10846,7 +10846,7 @@ function ternaryTransform(e) {
|
|
|
10846
10846
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
10847
10847
|
}
|
|
10848
10848
|
|
|
10849
|
-
// bazel-out/
|
|
10849
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
10850
10850
|
var ESCAPE = "\uFFFD";
|
|
10851
10851
|
var ELEMENT_MARKER = "#";
|
|
10852
10852
|
var TEMPLATE_MARKER = "*";
|
|
@@ -10982,7 +10982,7 @@ function formatValue(value) {
|
|
|
10982
10982
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
10983
10983
|
}
|
|
10984
10984
|
|
|
10985
|
-
// bazel-out/
|
|
10985
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
10986
10986
|
function generateAdvance(job) {
|
|
10987
10987
|
for (const unit of job.units) {
|
|
10988
10988
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -11014,7 +11014,7 @@ function generateAdvance(job) {
|
|
|
11014
11014
|
}
|
|
11015
11015
|
}
|
|
11016
11016
|
|
|
11017
|
-
// bazel-out/
|
|
11017
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
11018
11018
|
function generateProjectionDefs(job) {
|
|
11019
11019
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
11020
11020
|
const selectors = [];
|
|
@@ -11038,7 +11038,7 @@ function generateProjectionDefs(job) {
|
|
|
11038
11038
|
}
|
|
11039
11039
|
}
|
|
11040
11040
|
|
|
11041
|
-
// bazel-out/
|
|
11041
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
11042
11042
|
function generateVariables(job) {
|
|
11043
11043
|
recursivelyProcessView(job.root, null);
|
|
11044
11044
|
}
|
|
@@ -11131,7 +11131,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
11131
11131
|
return newOps;
|
|
11132
11132
|
}
|
|
11133
11133
|
|
|
11134
|
-
// bazel-out/
|
|
11134
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
11135
11135
|
function collectConstExpressions(job) {
|
|
11136
11136
|
for (const unit of job.units) {
|
|
11137
11137
|
for (const op of unit.ops()) {
|
|
@@ -11145,7 +11145,7 @@ function collectConstExpressions(job) {
|
|
|
11145
11145
|
}
|
|
11146
11146
|
}
|
|
11147
11147
|
|
|
11148
|
-
// bazel-out/
|
|
11148
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
11149
11149
|
var STYLE_DOT = "style.";
|
|
11150
11150
|
var CLASS_DOT = "class.";
|
|
11151
11151
|
var STYLE_BANG = "style!";
|
|
@@ -11203,7 +11203,7 @@ function parseProperty(name) {
|
|
|
11203
11203
|
return { property: property2, suffix };
|
|
11204
11204
|
}
|
|
11205
11205
|
|
|
11206
|
-
// bazel-out/
|
|
11206
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
11207
11207
|
function mapLiteral(obj, quoted = false) {
|
|
11208
11208
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
11209
11209
|
key,
|
|
@@ -11212,7 +11212,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
11212
11212
|
})));
|
|
11213
11213
|
}
|
|
11214
11214
|
|
|
11215
|
-
// bazel-out/
|
|
11215
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
11216
11216
|
var IcuSerializerVisitor = class {
|
|
11217
11217
|
visitText(text2) {
|
|
11218
11218
|
return text2.value;
|
|
@@ -11246,7 +11246,7 @@ function serializeIcuNode(icu) {
|
|
|
11246
11246
|
return icu.visit(serializer);
|
|
11247
11247
|
}
|
|
11248
11248
|
|
|
11249
|
-
// bazel-out/
|
|
11249
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
11250
11250
|
var TokenType;
|
|
11251
11251
|
(function(TokenType2) {
|
|
11252
11252
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -11607,7 +11607,7 @@ function parseIntAutoRadix(text2) {
|
|
|
11607
11607
|
return result;
|
|
11608
11608
|
}
|
|
11609
11609
|
|
|
11610
|
-
// bazel-out/
|
|
11610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
11611
11611
|
var SplitInterpolation = class {
|
|
11612
11612
|
constructor(strings, expressions, offsets) {
|
|
11613
11613
|
this.strings = strings;
|
|
@@ -12501,7 +12501,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
12501
12501
|
return offsetMap;
|
|
12502
12502
|
}
|
|
12503
12503
|
|
|
12504
|
-
// bazel-out/
|
|
12504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
12505
12505
|
var NodeWithI18n = class {
|
|
12506
12506
|
constructor(sourceSpan, i18n2) {
|
|
12507
12507
|
this.sourceSpan = sourceSpan;
|
|
@@ -12612,11 +12612,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
12612
12612
|
return result;
|
|
12613
12613
|
}
|
|
12614
12614
|
|
|
12615
|
-
// bazel-out/
|
|
12615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
12616
12616
|
var ElementSchemaRegistry = class {
|
|
12617
12617
|
};
|
|
12618
12618
|
|
|
12619
|
-
// bazel-out/
|
|
12619
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
12620
12620
|
var BOOLEAN = "boolean";
|
|
12621
12621
|
var NUMBER = "number";
|
|
12622
12622
|
var STRING = "string";
|
|
@@ -12969,7 +12969,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12969
12969
|
}
|
|
12970
12970
|
}
|
|
12971
12971
|
|
|
12972
|
-
// bazel-out/
|
|
12972
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12973
12973
|
var HtmlTagDefinition = class {
|
|
12974
12974
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12975
12975
|
this.closedByChildren = {};
|
|
@@ -13087,7 +13087,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
13087
13087
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
13088
13088
|
}
|
|
13089
13089
|
|
|
13090
|
-
// bazel-out/
|
|
13090
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
13091
13091
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
13092
13092
|
"A": "LINK",
|
|
13093
13093
|
"B": "BOLD_TEXT",
|
|
@@ -13209,7 +13209,7 @@ var PlaceholderRegistry = class {
|
|
|
13209
13209
|
}
|
|
13210
13210
|
};
|
|
13211
13211
|
|
|
13212
|
-
// bazel-out/
|
|
13212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
13213
13213
|
var _expParser = new Parser(new Lexer());
|
|
13214
13214
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
13215
13215
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -13388,14 +13388,14 @@ function extractPlaceholderName(input) {
|
|
|
13388
13388
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
13389
13389
|
}
|
|
13390
13390
|
|
|
13391
|
-
// bazel-out/
|
|
13391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
13392
13392
|
var I18nError = class extends ParseError {
|
|
13393
13393
|
constructor(span, msg) {
|
|
13394
13394
|
super(span, msg);
|
|
13395
13395
|
}
|
|
13396
13396
|
};
|
|
13397
13397
|
|
|
13398
|
-
// bazel-out/
|
|
13398
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
13399
13399
|
var NAMED_ENTITIES = {
|
|
13400
13400
|
"AElig": "\xC6",
|
|
13401
13401
|
"AMP": "&",
|
|
@@ -15526,7 +15526,7 @@ var NAMED_ENTITIES = {
|
|
|
15526
15526
|
var NGSP_UNICODE = "\uE500";
|
|
15527
15527
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
15528
15528
|
|
|
15529
|
-
// bazel-out/
|
|
15529
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
15530
15530
|
var TokenError = class extends ParseError {
|
|
15531
15531
|
constructor(errorMsg, tokenType, span) {
|
|
15532
15532
|
super(span, errorMsg);
|
|
@@ -16447,7 +16447,7 @@ var CursorError = class {
|
|
|
16447
16447
|
}
|
|
16448
16448
|
};
|
|
16449
16449
|
|
|
16450
|
-
// bazel-out/
|
|
16450
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
16451
16451
|
var TreeError = class extends ParseError {
|
|
16452
16452
|
static create(elementName, span, msg) {
|
|
16453
16453
|
return new TreeError(elementName, span, msg);
|
|
@@ -16831,7 +16831,7 @@ function decodeEntity(match, entity) {
|
|
|
16831
16831
|
return match;
|
|
16832
16832
|
}
|
|
16833
16833
|
|
|
16834
|
-
// bazel-out/
|
|
16834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
16835
16835
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
16836
16836
|
"iframe|srcdoc",
|
|
16837
16837
|
"*|innerhtml",
|
|
@@ -16846,7 +16846,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
16846
16846
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
16847
16847
|
}
|
|
16848
16848
|
|
|
16849
|
-
// bazel-out/
|
|
16849
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16850
16850
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16851
16851
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16852
16852
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -17003,7 +17003,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
17003
17003
|
return jsDocComment(tags);
|
|
17004
17004
|
}
|
|
17005
17005
|
|
|
17006
|
-
// bazel-out/
|
|
17006
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
17007
17007
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
17008
17008
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
17009
17009
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -17054,7 +17054,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
17054
17054
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
17055
17055
|
}
|
|
17056
17056
|
|
|
17057
|
-
// bazel-out/
|
|
17057
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
17058
17058
|
function createLocalizeStatements(variable2, message, params) {
|
|
17059
17059
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
17060
17060
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -17143,7 +17143,7 @@ function createEmptyMessagePart(location) {
|
|
|
17143
17143
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
17144
17144
|
}
|
|
17145
17145
|
|
|
17146
|
-
// bazel-out/
|
|
17146
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
17147
17147
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
17148
17148
|
var TRANSLATION_VAR_PREFIX2 = "i18n_";
|
|
17149
17149
|
var I18N_ICU_MAPPING_PREFIX2 = "I18N_EXP_";
|
|
@@ -17304,7 +17304,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
17304
17304
|
return variable(name);
|
|
17305
17305
|
}
|
|
17306
17306
|
|
|
17307
|
-
// bazel-out/
|
|
17307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
17308
17308
|
function convertI18nText(job) {
|
|
17309
17309
|
var _a2, _b2, _c2;
|
|
17310
17310
|
for (const unit of job.units) {
|
|
@@ -17374,7 +17374,7 @@ function convertI18nText(job) {
|
|
|
17374
17374
|
}
|
|
17375
17375
|
}
|
|
17376
17376
|
|
|
17377
|
-
// bazel-out/
|
|
17377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
17378
17378
|
function liftLocalRefs(job) {
|
|
17379
17379
|
for (const unit of job.units) {
|
|
17380
17380
|
for (const op of unit.create) {
|
|
@@ -17404,7 +17404,7 @@ function serializeLocalRefs(refs) {
|
|
|
17404
17404
|
return literalArr(constRefs);
|
|
17405
17405
|
}
|
|
17406
17406
|
|
|
17407
|
-
// bazel-out/
|
|
17407
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
17408
17408
|
function emitNamespaceChanges(job) {
|
|
17409
17409
|
for (const unit of job.units) {
|
|
17410
17410
|
let activeNamespace = Namespace.HTML;
|
|
@@ -17420,7 +17420,7 @@ function emitNamespaceChanges(job) {
|
|
|
17420
17420
|
}
|
|
17421
17421
|
}
|
|
17422
17422
|
|
|
17423
|
-
// bazel-out/
|
|
17423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
17424
17424
|
function parse(value) {
|
|
17425
17425
|
const styles = [];
|
|
17426
17426
|
let i = 0;
|
|
@@ -17481,7 +17481,7 @@ function hyphenate2(value) {
|
|
|
17481
17481
|
}).toLowerCase();
|
|
17482
17482
|
}
|
|
17483
17483
|
|
|
17484
|
-
// bazel-out/
|
|
17484
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
17485
17485
|
function nameFunctionsAndVariables(job) {
|
|
17486
17486
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
17487
17487
|
}
|
|
@@ -17601,7 +17601,7 @@ function stripImportant(name) {
|
|
|
17601
17601
|
return name;
|
|
17602
17602
|
}
|
|
17603
17603
|
|
|
17604
|
-
// bazel-out/
|
|
17604
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
17605
17605
|
function mergeNextContextExpressions(job) {
|
|
17606
17606
|
for (const unit of job.units) {
|
|
17607
17607
|
for (const op of unit.create) {
|
|
@@ -17647,7 +17647,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
17647
17647
|
}
|
|
17648
17648
|
}
|
|
17649
17649
|
|
|
17650
|
-
// bazel-out/
|
|
17650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
17651
17651
|
var CONTAINER_TAG = "ng-container";
|
|
17652
17652
|
function generateNgContainerOps(job) {
|
|
17653
17653
|
for (const unit of job.units) {
|
|
@@ -17664,7 +17664,7 @@ function generateNgContainerOps(job) {
|
|
|
17664
17664
|
}
|
|
17665
17665
|
}
|
|
17666
17666
|
|
|
17667
|
-
// bazel-out/
|
|
17667
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
17668
17668
|
function lookupElement3(elements, xref) {
|
|
17669
17669
|
const el = elements.get(xref);
|
|
17670
17670
|
if (el === void 0) {
|
|
@@ -17694,7 +17694,7 @@ function disableBindings(job) {
|
|
|
17694
17694
|
}
|
|
17695
17695
|
}
|
|
17696
17696
|
|
|
17697
|
-
// bazel-out/
|
|
17697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
17698
17698
|
function generateNullishCoalesceExpressions(job) {
|
|
17699
17699
|
for (const unit of job.units) {
|
|
17700
17700
|
for (const op of unit.ops()) {
|
|
@@ -17710,7 +17710,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
17710
17710
|
}
|
|
17711
17711
|
}
|
|
17712
17712
|
|
|
17713
|
-
// bazel-out/
|
|
17713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
17714
17714
|
function kindTest(kind) {
|
|
17715
17715
|
return (op) => op.kind === kind;
|
|
17716
17716
|
}
|
|
@@ -17792,7 +17792,7 @@ function keepLast(ops) {
|
|
|
17792
17792
|
return ops.slice(ops.length - 1);
|
|
17793
17793
|
}
|
|
17794
17794
|
|
|
17795
|
-
// bazel-out/
|
|
17795
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
17796
17796
|
function parseExtractedStyles(job) {
|
|
17797
17797
|
const elements = /* @__PURE__ */ new Map();
|
|
17798
17798
|
for (const unit of job.units) {
|
|
@@ -17827,7 +17827,7 @@ function parseExtractedStyles(job) {
|
|
|
17827
17827
|
}
|
|
17828
17828
|
}
|
|
17829
17829
|
|
|
17830
|
-
// bazel-out/
|
|
17830
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
17831
17831
|
function removeContentSelectors(job) {
|
|
17832
17832
|
for (const unit of job.units) {
|
|
17833
17833
|
const elements = createOpXrefMap(unit);
|
|
@@ -17854,7 +17854,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
17854
17854
|
return el;
|
|
17855
17855
|
}
|
|
17856
17856
|
|
|
17857
|
-
// bazel-out/
|
|
17857
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
17858
17858
|
function createPipes(job) {
|
|
17859
17859
|
for (const unit of job.units) {
|
|
17860
17860
|
processPipeBindingsInView(unit);
|
|
@@ -17902,7 +17902,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
17902
17902
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
17903
17903
|
}
|
|
17904
17904
|
|
|
17905
|
-
// bazel-out/
|
|
17905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
17906
17906
|
function createVariadicPipes(job) {
|
|
17907
17907
|
for (const unit of job.units) {
|
|
17908
17908
|
for (const op of unit.update) {
|
|
@@ -17919,7 +17919,7 @@ function createVariadicPipes(job) {
|
|
|
17919
17919
|
}
|
|
17920
17920
|
}
|
|
17921
17921
|
|
|
17922
|
-
// bazel-out/
|
|
17922
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
17923
17923
|
function propagateI18nBlocks(job) {
|
|
17924
17924
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
17925
17925
|
}
|
|
@@ -17973,7 +17973,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
17973
17973
|
}
|
|
17974
17974
|
}
|
|
17975
17975
|
|
|
17976
|
-
// bazel-out/
|
|
17976
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
17977
17977
|
function extractPureFunctions(job) {
|
|
17978
17978
|
for (const view of job.units) {
|
|
17979
17979
|
for (const op of view.ops()) {
|
|
@@ -18015,7 +18015,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
18015
18015
|
}
|
|
18016
18016
|
};
|
|
18017
18017
|
|
|
18018
|
-
// bazel-out/
|
|
18018
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
18019
18019
|
function generatePureLiteralStructures(job) {
|
|
18020
18020
|
for (const unit of job.units) {
|
|
18021
18021
|
for (const op of unit.update) {
|
|
@@ -18062,7 +18062,7 @@ function transformLiteralMap(expr) {
|
|
|
18062
18062
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
18063
18063
|
}
|
|
18064
18064
|
|
|
18065
|
-
// bazel-out/
|
|
18065
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
18066
18066
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
18067
18067
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
18068
18068
|
}
|
|
@@ -18584,7 +18584,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
18584
18584
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
18585
18585
|
}
|
|
18586
18586
|
|
|
18587
|
-
// bazel-out/
|
|
18587
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
18588
18588
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
18589
18589
|
["window", Identifiers.resolveWindow],
|
|
18590
18590
|
["document", Identifiers.resolveDocument],
|
|
@@ -18917,7 +18917,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
18917
18917
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
18918
18918
|
}
|
|
18919
18919
|
|
|
18920
|
-
// bazel-out/
|
|
18920
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
18921
18921
|
function removeEmptyBindings(job) {
|
|
18922
18922
|
for (const unit of job.units) {
|
|
18923
18923
|
for (const op of unit.update) {
|
|
@@ -18938,7 +18938,7 @@ function removeEmptyBindings(job) {
|
|
|
18938
18938
|
}
|
|
18939
18939
|
}
|
|
18940
18940
|
|
|
18941
|
-
// bazel-out/
|
|
18941
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
18942
18942
|
function removeI18nContexts(job) {
|
|
18943
18943
|
for (const unit of job.units) {
|
|
18944
18944
|
for (const op of unit.create) {
|
|
@@ -18954,7 +18954,7 @@ function removeI18nContexts(job) {
|
|
|
18954
18954
|
}
|
|
18955
18955
|
}
|
|
18956
18956
|
|
|
18957
|
-
// bazel-out/
|
|
18957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
18958
18958
|
function removeUnusedI18nAttributesOps(job) {
|
|
18959
18959
|
for (const unit of job.units) {
|
|
18960
18960
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -18976,7 +18976,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
18976
18976
|
}
|
|
18977
18977
|
}
|
|
18978
18978
|
|
|
18979
|
-
// bazel-out/
|
|
18979
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
18980
18980
|
function resolveContexts(job) {
|
|
18981
18981
|
for (const unit of job.units) {
|
|
18982
18982
|
processLexicalScope(unit, unit.create);
|
|
@@ -19017,7 +19017,7 @@ function processLexicalScope(view, ops) {
|
|
|
19017
19017
|
}
|
|
19018
19018
|
}
|
|
19019
19019
|
|
|
19020
|
-
// bazel-out/
|
|
19020
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
19021
19021
|
function resolveDollarEvent(job) {
|
|
19022
19022
|
for (const unit of job.units) {
|
|
19023
19023
|
transformDollarEvent(unit, unit.create);
|
|
@@ -19038,7 +19038,7 @@ function transformDollarEvent(unit, ops) {
|
|
|
19038
19038
|
}
|
|
19039
19039
|
}
|
|
19040
19040
|
|
|
19041
|
-
// bazel-out/
|
|
19041
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
19042
19042
|
function resolveI18nElementPlaceholders(job) {
|
|
19043
19043
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
19044
19044
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -19217,7 +19217,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
19217
19217
|
params.set(placeholder, values);
|
|
19218
19218
|
}
|
|
19219
19219
|
|
|
19220
|
-
// bazel-out/
|
|
19220
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
19221
19221
|
function resolveI18nExpressionPlaceholders(job) {
|
|
19222
19222
|
var _a2;
|
|
19223
19223
|
const subTemplateIndicies = /* @__PURE__ */ new Map();
|
|
@@ -19270,7 +19270,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
19270
19270
|
}
|
|
19271
19271
|
}
|
|
19272
19272
|
|
|
19273
|
-
// bazel-out/
|
|
19273
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
19274
19274
|
function resolveNames(job) {
|
|
19275
19275
|
for (const unit of job.units) {
|
|
19276
19276
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -19334,7 +19334,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
19334
19334
|
}
|
|
19335
19335
|
}
|
|
19336
19336
|
|
|
19337
|
-
// bazel-out/
|
|
19337
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
19338
19338
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
19339
19339
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
19340
19340
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -19404,7 +19404,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
19404
19404
|
return securityContext;
|
|
19405
19405
|
}
|
|
19406
19406
|
|
|
19407
|
-
// bazel-out/
|
|
19407
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
19408
19408
|
function saveAndRestoreView(job) {
|
|
19409
19409
|
for (const unit of job.units) {
|
|
19410
19410
|
unit.create.prepend([
|
|
@@ -19449,7 +19449,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
19449
19449
|
}
|
|
19450
19450
|
}
|
|
19451
19451
|
|
|
19452
|
-
// bazel-out/
|
|
19452
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
19453
19453
|
function allocateSlots(job) {
|
|
19454
19454
|
const slotMap = /* @__PURE__ */ new Map();
|
|
19455
19455
|
for (const unit of job.units) {
|
|
@@ -19474,7 +19474,7 @@ function allocateSlots(job) {
|
|
|
19474
19474
|
}
|
|
19475
19475
|
}
|
|
19476
19476
|
|
|
19477
|
-
// bazel-out/
|
|
19477
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
19478
19478
|
function specializeStyleBindings(job) {
|
|
19479
19479
|
for (const unit of job.units) {
|
|
19480
19480
|
for (const op of unit.update) {
|
|
@@ -19504,7 +19504,7 @@ function specializeStyleBindings(job) {
|
|
|
19504
19504
|
}
|
|
19505
19505
|
}
|
|
19506
19506
|
|
|
19507
|
-
// bazel-out/
|
|
19507
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
19508
19508
|
function generateTemporaryVariables(job) {
|
|
19509
19509
|
for (const unit of job.units) {
|
|
19510
19510
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -19562,7 +19562,7 @@ function assignName(names, expr) {
|
|
|
19562
19562
|
expr.name = name;
|
|
19563
19563
|
}
|
|
19564
19564
|
|
|
19565
|
-
// bazel-out/
|
|
19565
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
19566
19566
|
function generateTrackFns(job) {
|
|
19567
19567
|
for (const unit of job.units) {
|
|
19568
19568
|
for (const op of unit.create) {
|
|
@@ -19595,7 +19595,7 @@ function generateTrackFns(job) {
|
|
|
19595
19595
|
}
|
|
19596
19596
|
}
|
|
19597
19597
|
|
|
19598
|
-
// bazel-out/
|
|
19598
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
19599
19599
|
function optimizeTrackFns(job) {
|
|
19600
19600
|
for (const unit of job.units) {
|
|
19601
19601
|
for (const op of unit.create) {
|
|
@@ -19642,7 +19642,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
19642
19642
|
return true;
|
|
19643
19643
|
}
|
|
19644
19644
|
|
|
19645
|
-
// bazel-out/
|
|
19645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
19646
19646
|
function generateTrackVariables(job) {
|
|
19647
19647
|
for (const unit of job.units) {
|
|
19648
19648
|
for (const op of unit.create) {
|
|
@@ -19663,7 +19663,7 @@ function generateTrackVariables(job) {
|
|
|
19663
19663
|
}
|
|
19664
19664
|
}
|
|
19665
19665
|
|
|
19666
|
-
// bazel-out/
|
|
19666
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
19667
19667
|
function countVariables(job) {
|
|
19668
19668
|
for (const unit of job.units) {
|
|
19669
19669
|
let varCount = 0;
|
|
@@ -19771,7 +19771,7 @@ function isSingletonInterpolation(expr) {
|
|
|
19771
19771
|
return true;
|
|
19772
19772
|
}
|
|
19773
19773
|
|
|
19774
|
-
// bazel-out/
|
|
19774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
19775
19775
|
function optimizeVariables(job) {
|
|
19776
19776
|
for (const unit of job.units) {
|
|
19777
19777
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -20021,7 +20021,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
20021
20021
|
}
|
|
20022
20022
|
}
|
|
20023
20023
|
|
|
20024
|
-
// bazel-out/
|
|
20024
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
20025
20025
|
function wrapI18nIcus(job) {
|
|
20026
20026
|
for (const unit of job.units) {
|
|
20027
20027
|
let currentI18nOp = null;
|
|
@@ -20051,7 +20051,7 @@ function wrapI18nIcus(job) {
|
|
|
20051
20051
|
}
|
|
20052
20052
|
}
|
|
20053
20053
|
|
|
20054
|
-
// bazel-out/
|
|
20054
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
20055
20055
|
var phases = [
|
|
20056
20056
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
20057
20057
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -20216,7 +20216,7 @@ function emitHostBindingFunction(job) {
|
|
|
20216
20216
|
);
|
|
20217
20217
|
}
|
|
20218
20218
|
|
|
20219
|
-
// bazel-out/
|
|
20219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
20220
20220
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
20221
20221
|
var domSchema = new DomElementSchemaRegistry();
|
|
20222
20222
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -20899,10 +20899,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
20899
20899
|
return null;
|
|
20900
20900
|
}
|
|
20901
20901
|
|
|
20902
|
-
// bazel-out/
|
|
20902
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
20903
20903
|
var USE_TEMPLATE_PIPELINE = false;
|
|
20904
20904
|
|
|
20905
|
-
// bazel-out/
|
|
20905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
20906
20906
|
var IMPORTANT_FLAG = "!important";
|
|
20907
20907
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
20908
20908
|
var StylingBuilder = class {
|
|
@@ -21235,7 +21235,7 @@ function isEmptyExpression(ast) {
|
|
|
21235
21235
|
return ast instanceof EmptyExpr;
|
|
21236
21236
|
}
|
|
21237
21237
|
|
|
21238
|
-
// bazel-out/
|
|
21238
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
21239
21239
|
var HtmlParser = class extends Parser2 {
|
|
21240
21240
|
constructor() {
|
|
21241
21241
|
super(getHtmlTagDefinition);
|
|
@@ -21245,7 +21245,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
21245
21245
|
}
|
|
21246
21246
|
};
|
|
21247
21247
|
|
|
21248
|
-
// bazel-out/
|
|
21248
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
21249
21249
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
21250
21250
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
21251
21251
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -21311,7 +21311,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
21311
21311
|
return result;
|
|
21312
21312
|
}
|
|
21313
21313
|
|
|
21314
|
-
// bazel-out/
|
|
21314
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
21315
21315
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
21316
21316
|
var ATTRIBUTE_PREFIX = "attr";
|
|
21317
21317
|
var CLASS_PREFIX = "class";
|
|
@@ -21631,7 +21631,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
21631
21631
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
21632
21632
|
}
|
|
21633
21633
|
|
|
21634
|
-
// bazel-out/
|
|
21634
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
21635
21635
|
function isStyleUrlResolvable(url) {
|
|
21636
21636
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
21637
21637
|
return false;
|
|
@@ -21640,7 +21640,7 @@ function isStyleUrlResolvable(url) {
|
|
|
21640
21640
|
}
|
|
21641
21641
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
21642
21642
|
|
|
21643
|
-
// bazel-out/
|
|
21643
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
21644
21644
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
21645
21645
|
var LINK_ELEMENT = "link";
|
|
21646
21646
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -21710,7 +21710,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
21710
21710
|
return selectAttr;
|
|
21711
21711
|
}
|
|
21712
21712
|
|
|
21713
|
-
// bazel-out/
|
|
21713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
21714
21714
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
21715
21715
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
21716
21716
|
var CONDITIONAL_ALIAS_PATTERN = /^as\s+(.*)/;
|
|
@@ -22001,7 +22001,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
22001
22001
|
return expression.slice(start, end);
|
|
22002
22002
|
}
|
|
22003
22003
|
|
|
22004
|
-
// bazel-out/
|
|
22004
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
22005
22005
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
22006
22006
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
22007
22007
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -22265,7 +22265,7 @@ function parseDeferredTime(value) {
|
|
|
22265
22265
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
22266
22266
|
}
|
|
22267
22267
|
|
|
22268
|
-
// bazel-out/
|
|
22268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
22269
22269
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
22270
22270
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
22271
22271
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -22400,7 +22400,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
22400
22400
|
return { triggers, prefetchTriggers };
|
|
22401
22401
|
}
|
|
22402
22402
|
|
|
22403
|
-
// bazel-out/
|
|
22403
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
22404
22404
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
22405
22405
|
var KW_BIND_IDX = 1;
|
|
22406
22406
|
var KW_LET_IDX = 2;
|
|
@@ -22831,7 +22831,7 @@ function textContents(node) {
|
|
|
22831
22831
|
}
|
|
22832
22832
|
}
|
|
22833
22833
|
|
|
22834
|
-
// bazel-out/
|
|
22834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
22835
22835
|
var TagType;
|
|
22836
22836
|
(function(TagType2) {
|
|
22837
22837
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -22976,7 +22976,7 @@ function serializePlaceholderValue(value) {
|
|
|
22976
22976
|
}
|
|
22977
22977
|
}
|
|
22978
22978
|
|
|
22979
|
-
// bazel-out/
|
|
22979
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
22980
22980
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
22981
22981
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
22982
22982
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -24663,7 +24663,7 @@ function createClosureModeGuard2() {
|
|
|
24663
24663
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
|
|
24664
24664
|
}
|
|
24665
24665
|
|
|
24666
|
-
// bazel-out/
|
|
24666
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24667
24667
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
24668
24668
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24669
24669
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -25294,7 +25294,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
25294
25294
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
25295
25295
|
}
|
|
25296
25296
|
|
|
25297
|
-
// bazel-out/
|
|
25297
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
25298
25298
|
var R3TargetBinder = class {
|
|
25299
25299
|
constructor(directiveMatcher) {
|
|
25300
25300
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25911,11 +25911,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25911
25911
|
return templateEntities;
|
|
25912
25912
|
}
|
|
25913
25913
|
|
|
25914
|
-
// bazel-out/
|
|
25914
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25915
25915
|
var ResourceLoader = class {
|
|
25916
25916
|
};
|
|
25917
25917
|
|
|
25918
|
-
// bazel-out/
|
|
25918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25919
25919
|
var CompilerFacadeImpl = class {
|
|
25920
25920
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
25921
25921
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -26488,10 +26488,10 @@ function publishFacade(global) {
|
|
|
26488
26488
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26489
26489
|
}
|
|
26490
26490
|
|
|
26491
|
-
// bazel-out/
|
|
26492
|
-
var VERSION2 = new Version("17.1.
|
|
26491
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26492
|
+
var VERSION2 = new Version("17.1.1");
|
|
26493
26493
|
|
|
26494
|
-
// bazel-out/
|
|
26494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26495
26495
|
var _I18N_ATTR = "i18n";
|
|
26496
26496
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26497
26497
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26800,7 +26800,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26800
26800
|
return { meaning, description, id: id.trim() };
|
|
26801
26801
|
}
|
|
26802
26802
|
|
|
26803
|
-
// bazel-out/
|
|
26803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26804
26804
|
var XmlTagDefinition = class {
|
|
26805
26805
|
constructor() {
|
|
26806
26806
|
this.closedByParent = false;
|
|
@@ -26825,7 +26825,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26825
26825
|
return _TAG_DEFINITION;
|
|
26826
26826
|
}
|
|
26827
26827
|
|
|
26828
|
-
// bazel-out/
|
|
26828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26829
26829
|
var XmlParser = class extends Parser2 {
|
|
26830
26830
|
constructor() {
|
|
26831
26831
|
super(getXmlTagDefinition);
|
|
@@ -26835,7 +26835,7 @@ var XmlParser = class extends Parser2 {
|
|
|
26835
26835
|
}
|
|
26836
26836
|
};
|
|
26837
26837
|
|
|
26838
|
-
// bazel-out/
|
|
26838
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26839
26839
|
var _VERSION = "1.2";
|
|
26840
26840
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26841
26841
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -27089,7 +27089,7 @@ function getCtypeForTag(tag) {
|
|
|
27089
27089
|
}
|
|
27090
27090
|
}
|
|
27091
27091
|
|
|
27092
|
-
// bazel-out/
|
|
27092
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
27093
27093
|
var _VERSION2 = "2.0";
|
|
27094
27094
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
27095
27095
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27405,7 +27405,7 @@ function getTypeForTag(tag) {
|
|
|
27405
27405
|
}
|
|
27406
27406
|
}
|
|
27407
27407
|
|
|
27408
|
-
// bazel-out/
|
|
27408
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27409
27409
|
var MessageBundle = class {
|
|
27410
27410
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
27411
27411
|
this._htmlParser = _htmlParser;
|
|
@@ -27478,7 +27478,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27478
27478
|
}
|
|
27479
27479
|
};
|
|
27480
27480
|
|
|
27481
|
-
// bazel-out/
|
|
27481
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27482
27482
|
var FactoryTarget2;
|
|
27483
27483
|
(function(FactoryTarget3) {
|
|
27484
27484
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27488,7 +27488,7 @@ var FactoryTarget2;
|
|
|
27488
27488
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27489
27489
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27490
27490
|
|
|
27491
|
-
// bazel-out/
|
|
27491
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27492
27492
|
function compileClassMetadata(metadata) {
|
|
27493
27493
|
var _a2, _b2;
|
|
27494
27494
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -27530,7 +27530,7 @@ function compileComponentClassMetadata(metadata, deferrableTypes) {
|
|
|
27530
27530
|
return iife.callFn([]);
|
|
27531
27531
|
}
|
|
27532
27532
|
|
|
27533
|
-
// bazel-out/
|
|
27533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27534
27534
|
function compileClassDebugInfo(debugInfo) {
|
|
27535
27535
|
const debugInfoObject = {
|
|
27536
27536
|
className: debugInfo.className
|
|
@@ -27550,12 +27550,12 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27550
27550
|
return iife.callFn([]);
|
|
27551
27551
|
}
|
|
27552
27552
|
|
|
27553
|
-
// bazel-out/
|
|
27553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27554
27554
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27555
27555
|
function compileDeclareClassMetadata(metadata) {
|
|
27556
27556
|
const definitionMap = new DefinitionMap();
|
|
27557
27557
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27558
|
-
definitionMap.set("version", literal("17.1.
|
|
27558
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
27559
27559
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27560
27560
|
definitionMap.set("type", metadata.type);
|
|
27561
27561
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27564,7 +27564,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
27564
27564
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
27565
27565
|
}
|
|
27566
27566
|
|
|
27567
|
-
// bazel-out/
|
|
27567
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27568
27568
|
function toOptionalLiteralArray(values, mapper) {
|
|
27569
27569
|
if (values === null || values.length === 0) {
|
|
27570
27570
|
return null;
|
|
@@ -27612,7 +27612,7 @@ function compileDependency(dep) {
|
|
|
27612
27612
|
return depMeta.toLiteralMap();
|
|
27613
27613
|
}
|
|
27614
27614
|
|
|
27615
|
-
// bazel-out/
|
|
27615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27616
27616
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27617
27617
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27618
27618
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27624,7 +27624,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27624
27624
|
const definitionMap = new DefinitionMap();
|
|
27625
27625
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27626
27626
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27627
|
-
definitionMap.set("version", literal("17.1.
|
|
27627
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
27628
27628
|
definitionMap.set("type", meta.type.value);
|
|
27629
27629
|
if (meta.isStandalone) {
|
|
27630
27630
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27778,7 +27778,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27778
27778
|
}));
|
|
27779
27779
|
}
|
|
27780
27780
|
|
|
27781
|
-
// bazel-out/
|
|
27781
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27782
27782
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27783
27783
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27784
27784
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27912,12 +27912,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27912
27912
|
}
|
|
27913
27913
|
};
|
|
27914
27914
|
|
|
27915
|
-
// bazel-out/
|
|
27915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27916
27916
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27917
27917
|
function compileDeclareFactoryFunction(meta) {
|
|
27918
27918
|
const definitionMap = new DefinitionMap();
|
|
27919
27919
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27920
|
-
definitionMap.set("version", literal("17.1.
|
|
27920
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
27921
27921
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27922
27922
|
definitionMap.set("type", meta.type.value);
|
|
27923
27923
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27929,7 +27929,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27929
27929
|
};
|
|
27930
27930
|
}
|
|
27931
27931
|
|
|
27932
|
-
// bazel-out/
|
|
27932
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27933
27933
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27934
27934
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27935
27935
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27940,7 +27940,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27940
27940
|
function createInjectableDefinitionMap(meta) {
|
|
27941
27941
|
const definitionMap = new DefinitionMap();
|
|
27942
27942
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27943
|
-
definitionMap.set("version", literal("17.1.
|
|
27943
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
27944
27944
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27945
27945
|
definitionMap.set("type", meta.type.value);
|
|
27946
27946
|
if (meta.providedIn !== void 0) {
|
|
@@ -27967,7 +27967,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27967
27967
|
return definitionMap;
|
|
27968
27968
|
}
|
|
27969
27969
|
|
|
27970
|
-
// bazel-out/
|
|
27970
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27971
27971
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27972
27972
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27973
27973
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27978,7 +27978,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27978
27978
|
function createInjectorDefinitionMap(meta) {
|
|
27979
27979
|
const definitionMap = new DefinitionMap();
|
|
27980
27980
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27981
|
-
definitionMap.set("version", literal("17.1.
|
|
27981
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
27982
27982
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27983
27983
|
definitionMap.set("type", meta.type.value);
|
|
27984
27984
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27988,7 +27988,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27988
27988
|
return definitionMap;
|
|
27989
27989
|
}
|
|
27990
27990
|
|
|
27991
|
-
// bazel-out/
|
|
27991
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27992
27992
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27993
27993
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27994
27994
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -28002,7 +28002,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
28002
28002
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
28003
28003
|
}
|
|
28004
28004
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
28005
|
-
definitionMap.set("version", literal("17.1.
|
|
28005
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
28006
28006
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
28007
28007
|
definitionMap.set("type", meta.type.value);
|
|
28008
28008
|
if (meta.bootstrap.length > 0) {
|
|
@@ -28026,7 +28026,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
28026
28026
|
return definitionMap;
|
|
28027
28027
|
}
|
|
28028
28028
|
|
|
28029
|
-
// bazel-out/
|
|
28029
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
28030
28030
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
28031
28031
|
function compileDeclarePipeFromMetadata(meta) {
|
|
28032
28032
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -28037,7 +28037,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
28037
28037
|
function createPipeDefinitionMap(meta) {
|
|
28038
28038
|
const definitionMap = new DefinitionMap();
|
|
28039
28039
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
28040
|
-
definitionMap.set("version", literal("17.1.
|
|
28040
|
+
definitionMap.set("version", literal("17.1.1"));
|
|
28041
28041
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
28042
28042
|
definitionMap.set("type", meta.type.value);
|
|
28043
28043
|
if (meta.isStandalone) {
|
|
@@ -28050,13 +28050,13 @@ function createPipeDefinitionMap(meta) {
|
|
|
28050
28050
|
return definitionMap;
|
|
28051
28051
|
}
|
|
28052
28052
|
|
|
28053
|
-
// bazel-out/
|
|
28053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
28054
28054
|
publishFacade(_global);
|
|
28055
28055
|
|
|
28056
|
-
// bazel-out/
|
|
28057
|
-
var VERSION3 = new Version("17.1.
|
|
28056
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
28057
|
+
var VERSION3 = new Version("17.1.1");
|
|
28058
28058
|
|
|
28059
|
-
// bazel-out/
|
|
28059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
28060
28060
|
var EmitFlags;
|
|
28061
28061
|
(function(EmitFlags2) {
|
|
28062
28062
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -28068,13 +28068,13 @@ var EmitFlags;
|
|
|
28068
28068
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
28069
28069
|
})(EmitFlags || (EmitFlags = {}));
|
|
28070
28070
|
|
|
28071
|
-
// bazel-out/
|
|
28071
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
28072
28072
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
28073
28073
|
|
|
28074
|
-
// bazel-out/
|
|
28074
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
28075
28075
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
28076
28076
|
|
|
28077
|
-
// bazel-out/
|
|
28077
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
28078
28078
|
var path = __toESM(require("path"), 1);
|
|
28079
28079
|
function i18nGetExtension(formatName) {
|
|
28080
28080
|
const format = formatName.toLowerCase();
|
|
@@ -28124,10 +28124,10 @@ function getPathNormalizer(basePath) {
|
|
|
28124
28124
|
};
|
|
28125
28125
|
}
|
|
28126
28126
|
|
|
28127
|
-
// bazel-out/
|
|
28127
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
28128
28128
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
28129
28129
|
|
|
28130
|
-
// bazel-out/
|
|
28130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
28131
28131
|
function toNumbers(value) {
|
|
28132
28132
|
const suffixIndex = value.lastIndexOf("-");
|
|
28133
28133
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -28162,7 +28162,7 @@ function compareVersions(v1, v2) {
|
|
|
28162
28162
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
28163
28163
|
}
|
|
28164
28164
|
|
|
28165
|
-
// bazel-out/
|
|
28165
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
28166
28166
|
var MIN_TS_VERSION = "5.2.0";
|
|
28167
28167
|
var MAX_TS_VERSION = "5.4.0";
|
|
28168
28168
|
var tsVersion = import_typescript3.default.version;
|
|
@@ -28175,13 +28175,13 @@ function verifySupportedTypeScriptVersion() {
|
|
|
28175
28175
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
28176
28176
|
}
|
|
28177
28177
|
|
|
28178
|
-
// bazel-out/
|
|
28178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
28179
28179
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
28180
28180
|
|
|
28181
|
-
// bazel-out/
|
|
28181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
28182
28182
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
28183
28183
|
|
|
28184
|
-
// bazel-out/
|
|
28184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
28185
28185
|
var ErrorCode;
|
|
28186
28186
|
(function(ErrorCode2) {
|
|
28187
28187
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -28268,7 +28268,7 @@ var ErrorCode;
|
|
|
28268
28268
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_IMPORTED_STYLES_STRING"] = 11002] = "LOCAL_COMPILATION_IMPORTED_STYLES_STRING";
|
|
28269
28269
|
})(ErrorCode || (ErrorCode = {}));
|
|
28270
28270
|
|
|
28271
|
-
// bazel-out/
|
|
28271
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
28272
28272
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
28273
28273
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
28274
28274
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -28280,15 +28280,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
28280
28280
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
28281
28281
|
]);
|
|
28282
28282
|
|
|
28283
|
-
// bazel-out/
|
|
28283
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28284
28284
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
28285
28285
|
|
|
28286
|
-
// bazel-out/
|
|
28286
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
28287
28287
|
function ngErrorCode(code) {
|
|
28288
28288
|
return parseInt("-99" + code);
|
|
28289
28289
|
}
|
|
28290
28290
|
|
|
28291
|
-
// bazel-out/
|
|
28291
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28292
28292
|
var FatalDiagnosticError = class {
|
|
28293
28293
|
constructor(code, node, message, relatedInformation) {
|
|
28294
28294
|
this.code = code;
|
|
@@ -28344,10 +28344,10 @@ function addDiagnosticChain(messageText, add) {
|
|
|
28344
28344
|
return messageText;
|
|
28345
28345
|
}
|
|
28346
28346
|
|
|
28347
|
-
// bazel-out/
|
|
28347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
28348
28348
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
28349
28349
|
|
|
28350
|
-
// bazel-out/
|
|
28350
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
28351
28351
|
var ExtendedTemplateDiagnosticName;
|
|
28352
28352
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
28353
28353
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -28362,13 +28362,13 @@ var ExtendedTemplateDiagnosticName;
|
|
|
28362
28362
|
ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
|
|
28363
28363
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
28364
28364
|
|
|
28365
|
-
// bazel-out/
|
|
28365
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
28366
28366
|
var import_typescript20 = __toESM(require("typescript"), 1);
|
|
28367
28367
|
|
|
28368
|
-
// bazel-out/
|
|
28368
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28369
28369
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28370
28370
|
|
|
28371
|
-
// bazel-out/
|
|
28371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
28372
28372
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
28373
28373
|
var TS = /\.tsx?$/i;
|
|
28374
28374
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28469,7 +28469,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28469
28469
|
return redirectInfo.unredirected;
|
|
28470
28470
|
}
|
|
28471
28471
|
|
|
28472
|
-
// bazel-out/
|
|
28472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28473
28473
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28474
28474
|
const exports = reflector.getExportsOfModule(file);
|
|
28475
28475
|
if (exports === null) {
|
|
@@ -28489,7 +28489,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28489
28489
|
return foundExportName;
|
|
28490
28490
|
}
|
|
28491
28491
|
|
|
28492
|
-
// bazel-out/
|
|
28492
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28493
28493
|
var ImportFlags;
|
|
28494
28494
|
(function(ImportFlags2) {
|
|
28495
28495
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28718,7 +28718,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28718
28718
|
}
|
|
28719
28719
|
};
|
|
28720
28720
|
|
|
28721
|
-
// bazel-out/
|
|
28721
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28722
28722
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28723
28723
|
var UnifiedModulesAliasingHost = class {
|
|
28724
28724
|
constructor(unifiedModulesHost) {
|
|
@@ -28785,7 +28785,7 @@ var AliasStrategy = class {
|
|
|
28785
28785
|
}
|
|
28786
28786
|
};
|
|
28787
28787
|
|
|
28788
|
-
// bazel-out/
|
|
28788
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28789
28789
|
function relativePathBetween(from, to) {
|
|
28790
28790
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28791
28791
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28794,7 +28794,7 @@ function normalizeSeparators2(path4) {
|
|
|
28794
28794
|
return path4.replace(/\\/g, "/");
|
|
28795
28795
|
}
|
|
28796
28796
|
|
|
28797
|
-
// bazel-out/
|
|
28797
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28798
28798
|
var NoopImportRewriter = class {
|
|
28799
28799
|
shouldImportSymbol(symbol, specifier) {
|
|
28800
28800
|
return true;
|
|
@@ -28853,7 +28853,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28853
28853
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28854
28854
|
}
|
|
28855
28855
|
|
|
28856
|
-
// bazel-out/
|
|
28856
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28857
28857
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28858
28858
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28859
28859
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28888,7 +28888,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28888
28888
|
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.");
|
|
28889
28889
|
}
|
|
28890
28890
|
|
|
28891
|
-
// bazel-out/
|
|
28891
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28892
28892
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28893
28893
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28894
28894
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28929,13 +28929,13 @@ var DefaultImportTracker = class {
|
|
|
28929
28929
|
}
|
|
28930
28930
|
};
|
|
28931
28931
|
|
|
28932
|
-
// bazel-out/
|
|
28932
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28933
28933
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
28934
28934
|
|
|
28935
|
-
// bazel-out/
|
|
28935
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28936
28936
|
var import_typescript14 = __toESM(require("typescript"), 1);
|
|
28937
28937
|
|
|
28938
|
-
// bazel-out/
|
|
28938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28939
28939
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28940
28940
|
function isDecoratorIdentifier(exp) {
|
|
28941
28941
|
return import_typescript11.default.isIdentifier(exp) || import_typescript11.default.isPropertyAccessExpression(exp) && import_typescript11.default.isIdentifier(exp.expression) && import_typescript11.default.isIdentifier(exp.name);
|
|
@@ -28950,7 +28950,7 @@ var ClassMemberKind;
|
|
|
28950
28950
|
})(ClassMemberKind || (ClassMemberKind = {}));
|
|
28951
28951
|
var AmbientImport = {};
|
|
28952
28952
|
|
|
28953
|
-
// bazel-out/
|
|
28953
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28954
28954
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28955
28955
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28956
28956
|
var _a2, _b2;
|
|
@@ -29123,7 +29123,7 @@ function extractModuleName(node) {
|
|
|
29123
29123
|
return node.moduleSpecifier.text;
|
|
29124
29124
|
}
|
|
29125
29125
|
|
|
29126
|
-
// bazel-out/
|
|
29126
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
29127
29127
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
29128
29128
|
function isNamedClassDeclaration(node) {
|
|
29129
29129
|
return import_typescript13.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -29132,7 +29132,7 @@ function isIdentifier(node) {
|
|
|
29132
29132
|
return node !== void 0 && import_typescript13.default.isIdentifier(node);
|
|
29133
29133
|
}
|
|
29134
29134
|
|
|
29135
|
-
// bazel-out/
|
|
29135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
29136
29136
|
var TypeScriptReflectionHost = class {
|
|
29137
29137
|
constructor(checker, isLocalCompilation = false) {
|
|
29138
29138
|
this.checker = checker;
|
|
@@ -29572,7 +29572,7 @@ function getExportedName(decl, originalId) {
|
|
|
29572
29572
|
}
|
|
29573
29573
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29574
29574
|
|
|
29575
|
-
// bazel-out/
|
|
29575
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29576
29576
|
var AssumeEager = "AssumeEager";
|
|
29577
29577
|
var DeferredSymbolTracker = class {
|
|
29578
29578
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29692,7 +29692,7 @@ var DeferredSymbolTracker = class {
|
|
|
29692
29692
|
}
|
|
29693
29693
|
};
|
|
29694
29694
|
|
|
29695
|
-
// bazel-out/
|
|
29695
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29696
29696
|
var Reference2 = class {
|
|
29697
29697
|
constructor(node, bestGuessOwningModule = null) {
|
|
29698
29698
|
this.node = node;
|
|
@@ -29761,7 +29761,7 @@ var Reference2 = class {
|
|
|
29761
29761
|
}
|
|
29762
29762
|
};
|
|
29763
29763
|
|
|
29764
|
-
// bazel-out/
|
|
29764
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29765
29765
|
var ModuleResolver = class {
|
|
29766
29766
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29767
29767
|
this.program = program;
|
|
@@ -29778,7 +29778,7 @@ var ModuleResolver = class {
|
|
|
29778
29778
|
}
|
|
29779
29779
|
};
|
|
29780
29780
|
|
|
29781
|
-
// bazel-out/
|
|
29781
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
29782
29782
|
function valueReferenceToExpression(valueRef) {
|
|
29783
29783
|
if (valueRef.kind === 2) {
|
|
29784
29784
|
return null;
|
|
@@ -30021,7 +30021,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
30021
30021
|
return import_typescript20.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript20.default.SyntaxKind.AbstractKeyword) : false;
|
|
30022
30022
|
}
|
|
30023
30023
|
|
|
30024
|
-
// bazel-out/
|
|
30024
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30025
30025
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
30026
30026
|
const deps = [];
|
|
30027
30027
|
const errors = [];
|
|
@@ -30163,10 +30163,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
30163
30163
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
30164
30164
|
}
|
|
30165
30165
|
|
|
30166
|
-
// bazel-out/
|
|
30166
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
30167
30167
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
30168
30168
|
|
|
30169
|
-
// bazel-out/
|
|
30169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
30170
30170
|
var MetaKind;
|
|
30171
30171
|
(function(MetaKind2) {
|
|
30172
30172
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -30179,10 +30179,10 @@ var MatchSource;
|
|
|
30179
30179
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
30180
30180
|
})(MatchSource || (MatchSource = {}));
|
|
30181
30181
|
|
|
30182
|
-
// bazel-out/
|
|
30182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30183
30183
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30184
30184
|
|
|
30185
|
-
// bazel-out/
|
|
30185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
30186
30186
|
var ClassPropertyMapping = class {
|
|
30187
30187
|
constructor(forwardMap) {
|
|
30188
30188
|
this.forwardMap = forwardMap;
|
|
@@ -30262,7 +30262,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30262
30262
|
return reverseMap;
|
|
30263
30263
|
}
|
|
30264
30264
|
|
|
30265
|
-
// bazel-out/
|
|
30265
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30266
30266
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
30267
30267
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30268
30268
|
if (!import_typescript22.default.isTupleTypeNode(def)) {
|
|
@@ -30452,7 +30452,7 @@ function hasInjectableFields(clazz, host) {
|
|
|
30452
30452
|
return members.some(({ isStatic, name }) => isStatic && (name === "\u0275prov" || name === "\u0275fac"));
|
|
30453
30453
|
}
|
|
30454
30454
|
|
|
30455
|
-
// bazel-out/
|
|
30455
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30456
30456
|
var DtsMetadataReader = class {
|
|
30457
30457
|
constructor(checker, reflector) {
|
|
30458
30458
|
this.checker = checker;
|
|
@@ -30635,7 +30635,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30635
30635
|
return result.length > 0 ? result : null;
|
|
30636
30636
|
}
|
|
30637
30637
|
|
|
30638
|
-
// bazel-out/
|
|
30638
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30639
30639
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30640
30640
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30641
30641
|
if (topMeta === null) {
|
|
@@ -30698,7 +30698,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30698
30698
|
});
|
|
30699
30699
|
}
|
|
30700
30700
|
|
|
30701
|
-
// bazel-out/
|
|
30701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30702
30702
|
var LocalMetadataRegistry = class {
|
|
30703
30703
|
constructor() {
|
|
30704
30704
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -30755,7 +30755,7 @@ var CompoundMetadataRegistry = class {
|
|
|
30755
30755
|
}
|
|
30756
30756
|
};
|
|
30757
30757
|
|
|
30758
|
-
// bazel-out/
|
|
30758
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
30759
30759
|
var ResourceRegistry = class {
|
|
30760
30760
|
constructor() {
|
|
30761
30761
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -30820,7 +30820,7 @@ var ResourceRegistry = class {
|
|
|
30820
30820
|
}
|
|
30821
30821
|
};
|
|
30822
30822
|
|
|
30823
|
-
// bazel-out/
|
|
30823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
30824
30824
|
var ExportedProviderStatusResolver = class {
|
|
30825
30825
|
constructor(metaReader) {
|
|
30826
30826
|
this.metaReader = metaReader;
|
|
@@ -30864,7 +30864,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
30864
30864
|
}
|
|
30865
30865
|
};
|
|
30866
30866
|
|
|
30867
|
-
// bazel-out/
|
|
30867
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
30868
30868
|
var EMPTY_ARRAY = [];
|
|
30869
30869
|
var HostDirectivesResolver = class {
|
|
30870
30870
|
constructor(metaReader) {
|
|
@@ -30926,10 +30926,10 @@ function resolveOutput(bindingName) {
|
|
|
30926
30926
|
return bindingName;
|
|
30927
30927
|
}
|
|
30928
30928
|
|
|
30929
|
-
// bazel-out/
|
|
30929
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
30930
30930
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
30931
30931
|
|
|
30932
|
-
// bazel-out/
|
|
30932
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
30933
30933
|
var DynamicValue = class {
|
|
30934
30934
|
constructor(node, reason, code) {
|
|
30935
30935
|
this.node = node;
|
|
@@ -31019,7 +31019,7 @@ var DynamicValue = class {
|
|
|
31019
31019
|
}
|
|
31020
31020
|
};
|
|
31021
31021
|
|
|
31022
|
-
// bazel-out/
|
|
31022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
31023
31023
|
var ResolvedModule = class {
|
|
31024
31024
|
constructor(exports, evaluate) {
|
|
31025
31025
|
this.exports = exports;
|
|
@@ -31049,7 +31049,7 @@ var EnumValue = class {
|
|
|
31049
31049
|
var KnownFn = class {
|
|
31050
31050
|
};
|
|
31051
31051
|
|
|
31052
|
-
// bazel-out/
|
|
31052
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31053
31053
|
function describeResolvedType(value, maxDepth = 1) {
|
|
31054
31054
|
var _a2, _b2;
|
|
31055
31055
|
if (value === null) {
|
|
@@ -31178,10 +31178,10 @@ function getContainerNode(node) {
|
|
|
31178
31178
|
return node.getSourceFile();
|
|
31179
31179
|
}
|
|
31180
31180
|
|
|
31181
|
-
// bazel-out/
|
|
31181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31182
31182
|
var import_typescript27 = __toESM(require("typescript"), 1);
|
|
31183
31183
|
|
|
31184
|
-
// bazel-out/
|
|
31184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
31185
31185
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
31186
31186
|
constructor(lhs) {
|
|
31187
31187
|
super();
|
|
@@ -31233,14 +31233,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31233
31233
|
}
|
|
31234
31234
|
};
|
|
31235
31235
|
|
|
31236
|
-
// bazel-out/
|
|
31236
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31237
31237
|
var SyntheticValue = class {
|
|
31238
31238
|
constructor(value) {
|
|
31239
31239
|
this.value = value;
|
|
31240
31240
|
}
|
|
31241
31241
|
};
|
|
31242
31242
|
|
|
31243
|
-
// bazel-out/
|
|
31243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31244
31244
|
function literalBinaryOp(op) {
|
|
31245
31245
|
return { op, literal: true };
|
|
31246
31246
|
}
|
|
@@ -31815,7 +31815,7 @@ function owningModule(context, override = null) {
|
|
|
31815
31815
|
}
|
|
31816
31816
|
}
|
|
31817
31817
|
|
|
31818
|
-
// bazel-out/
|
|
31818
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
31819
31819
|
var PartialEvaluator = class {
|
|
31820
31820
|
constructor(host, checker, dependencyTracker) {
|
|
31821
31821
|
this.host = host;
|
|
@@ -31835,7 +31835,7 @@ var PartialEvaluator = class {
|
|
|
31835
31835
|
}
|
|
31836
31836
|
};
|
|
31837
31837
|
|
|
31838
|
-
// bazel-out/
|
|
31838
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
31839
31839
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
31840
31840
|
const context = [];
|
|
31841
31841
|
for (const decl of data) {
|
|
@@ -32031,7 +32031,7 @@ function getInheritedUndecoratedCtorDiagnostic(node, baseClass, kind) {
|
|
|
32031
32031
|
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}.`);
|
|
32032
32032
|
}
|
|
32033
32033
|
|
|
32034
|
-
// bazel-out/
|
|
32034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
32035
32035
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
32036
32036
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
32037
32037
|
let resolved = null;
|
|
@@ -32081,7 +32081,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
32081
32081
|
return meta;
|
|
32082
32082
|
}
|
|
32083
32083
|
|
|
32084
|
-
// bazel-out/
|
|
32084
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
32085
32085
|
function compileNgFactoryDefField(metadata) {
|
|
32086
32086
|
const res = compileFactoryFunction(metadata);
|
|
32087
32087
|
return {
|
|
@@ -32103,7 +32103,7 @@ function compileDeclareFactory(metadata) {
|
|
|
32103
32103
|
};
|
|
32104
32104
|
}
|
|
32105
32105
|
|
|
32106
|
-
// bazel-out/
|
|
32106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
32107
32107
|
var InjectableClassRegistry = class {
|
|
32108
32108
|
constructor(host, isCore) {
|
|
32109
32109
|
this.host = host;
|
|
@@ -32129,7 +32129,7 @@ var InjectableClassRegistry = class {
|
|
|
32129
32129
|
}
|
|
32130
32130
|
};
|
|
32131
32131
|
|
|
32132
|
-
// bazel-out/
|
|
32132
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
32133
32133
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
32134
32134
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
32135
32135
|
if (!reflection.isClass(clazz)) {
|
|
@@ -32213,7 +32213,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
32213
32213
|
return result.transformed[0];
|
|
32214
32214
|
}
|
|
32215
32215
|
|
|
32216
|
-
// bazel-out/
|
|
32216
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
32217
32217
|
var path2 = __toESM(require("path"), 1);
|
|
32218
32218
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
32219
32219
|
if (!reflection.isClass(clazz)) {
|
|
@@ -32239,13 +32239,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
32239
32239
|
return null;
|
|
32240
32240
|
}
|
|
32241
32241
|
|
|
32242
|
-
// bazel-out/
|
|
32242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
32243
32243
|
var NoopReferencesRegistry = class {
|
|
32244
32244
|
add(source, ...references) {
|
|
32245
32245
|
}
|
|
32246
32246
|
};
|
|
32247
32247
|
|
|
32248
|
-
// bazel-out/
|
|
32248
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
32249
32249
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
32250
32250
|
const schemas = [];
|
|
32251
32251
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -32274,7 +32274,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
32274
32274
|
return schemas;
|
|
32275
32275
|
}
|
|
32276
32276
|
|
|
32277
|
-
// bazel-out/
|
|
32277
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
32278
32278
|
function compileInputTransformFields(inputs) {
|
|
32279
32279
|
const extraFields = [];
|
|
32280
32280
|
for (const input of inputs) {
|
|
@@ -32291,10 +32291,10 @@ function compileInputTransformFields(inputs) {
|
|
|
32291
32291
|
return extraFields;
|
|
32292
32292
|
}
|
|
32293
32293
|
|
|
32294
|
-
// bazel-out/
|
|
32294
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
32295
32295
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
32296
32296
|
|
|
32297
|
-
// bazel-out/
|
|
32297
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
32298
32298
|
var import_typescript33 = __toESM(require("typescript"), 1);
|
|
32299
32299
|
var SemanticSymbol = class {
|
|
32300
32300
|
constructor(decl) {
|
|
@@ -32310,7 +32310,7 @@ function getSymbolIdentifier(decl) {
|
|
|
32310
32310
|
return decl.name.text;
|
|
32311
32311
|
}
|
|
32312
32312
|
|
|
32313
|
-
// bazel-out/
|
|
32313
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
32314
32314
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
32315
32315
|
isPublicApiAffected() {
|
|
32316
32316
|
return false;
|
|
@@ -32452,10 +32452,10 @@ function getImportPath(expr) {
|
|
|
32452
32452
|
}
|
|
32453
32453
|
}
|
|
32454
32454
|
|
|
32455
|
-
// bazel-out/
|
|
32455
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
32456
32456
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32457
32457
|
|
|
32458
|
-
// bazel-out/
|
|
32458
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
32459
32459
|
function isSymbolEqual(a, b) {
|
|
32460
32460
|
if (a.decl === b.decl) {
|
|
32461
32461
|
return true;
|
|
@@ -32505,7 +32505,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
32505
32505
|
return true;
|
|
32506
32506
|
}
|
|
32507
32507
|
|
|
32508
|
-
// bazel-out/
|
|
32508
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
32509
32509
|
function extractSemanticTypeParameters(node) {
|
|
32510
32510
|
if (!import_typescript34.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
32511
32511
|
return null;
|
|
@@ -32525,7 +32525,7 @@ function isTypeParameterEqual(a, b) {
|
|
|
32525
32525
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
32526
32526
|
}
|
|
32527
32527
|
|
|
32528
|
-
// bazel-out/
|
|
32528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
32529
32529
|
var PerfPhase;
|
|
32530
32530
|
(function(PerfPhase2) {
|
|
32531
32531
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -32593,7 +32593,7 @@ var PerfCheckpoint;
|
|
|
32593
32593
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
32594
32594
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
32595
32595
|
|
|
32596
|
-
// bazel-out/
|
|
32596
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
32597
32597
|
var NoopPerfRecorder = class {
|
|
32598
32598
|
eventCount() {
|
|
32599
32599
|
}
|
|
@@ -32610,7 +32610,7 @@ var NoopPerfRecorder = class {
|
|
|
32610
32610
|
};
|
|
32611
32611
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
32612
32612
|
|
|
32613
|
-
// bazel-out/
|
|
32613
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
32614
32614
|
function mark() {
|
|
32615
32615
|
return process.hrtime();
|
|
32616
32616
|
}
|
|
@@ -32619,7 +32619,7 @@ function timeSinceInMicros(mark2) {
|
|
|
32619
32619
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
32620
32620
|
}
|
|
32621
32621
|
|
|
32622
|
-
// bazel-out/
|
|
32622
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
32623
32623
|
var ActivePerfRecorder = class {
|
|
32624
32624
|
static zeroedToNow() {
|
|
32625
32625
|
return new ActivePerfRecorder(mark());
|
|
@@ -32713,14 +32713,14 @@ var DelegatingPerfRecorder = class {
|
|
|
32713
32713
|
}
|
|
32714
32714
|
};
|
|
32715
32715
|
|
|
32716
|
-
// bazel-out/
|
|
32716
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
32717
32717
|
var ComponentScopeKind;
|
|
32718
32718
|
(function(ComponentScopeKind2) {
|
|
32719
32719
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
32720
32720
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
32721
32721
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
32722
32722
|
|
|
32723
|
-
// bazel-out/
|
|
32723
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
32724
32724
|
var CompoundComponentScopeReader = class {
|
|
32725
32725
|
constructor(readers) {
|
|
32726
32726
|
this.readers = readers;
|
|
@@ -32745,7 +32745,7 @@ var CompoundComponentScopeReader = class {
|
|
|
32745
32745
|
}
|
|
32746
32746
|
};
|
|
32747
32747
|
|
|
32748
|
-
// bazel-out/
|
|
32748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
32749
32749
|
var MetadataDtsModuleScopeResolver = class {
|
|
32750
32750
|
constructor(dtsMetaReader, aliasingHost) {
|
|
32751
32751
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -32820,10 +32820,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
32820
32820
|
}
|
|
32821
32821
|
};
|
|
32822
32822
|
|
|
32823
|
-
// bazel-out/
|
|
32823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
32824
32824
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32825
32825
|
|
|
32826
|
-
// bazel-out/
|
|
32826
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
32827
32827
|
function getDiagnosticNode(ref, rawExpr) {
|
|
32828
32828
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
32829
32829
|
}
|
|
@@ -32849,7 +32849,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
32849
32849
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
32850
32850
|
}
|
|
32851
32851
|
|
|
32852
|
-
// bazel-out/
|
|
32852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
32853
32853
|
var LocalModuleScopeRegistry = class {
|
|
32854
32854
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
32855
32855
|
this.localReader = localReader;
|
|
@@ -33188,7 +33188,7 @@ function reexportCollision(module3, refA, refB) {
|
|
|
33188
33188
|
]);
|
|
33189
33189
|
}
|
|
33190
33190
|
|
|
33191
|
-
// bazel-out/
|
|
33191
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
33192
33192
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
33193
33193
|
var TypeCheckScopeRegistry = class {
|
|
33194
33194
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -33265,7 +33265,7 @@ var TypeCheckScopeRegistry = class {
|
|
|
33265
33265
|
}
|
|
33266
33266
|
};
|
|
33267
33267
|
|
|
33268
|
-
// bazel-out/
|
|
33268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
33269
33269
|
var CompilationMode;
|
|
33270
33270
|
(function(CompilationMode2) {
|
|
33271
33271
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -33279,7 +33279,7 @@ var HandlerPrecedence;
|
|
|
33279
33279
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
33280
33280
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
33281
33281
|
|
|
33282
|
-
// bazel-out/
|
|
33282
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
33283
33283
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
33284
33284
|
function aliasTransformFactory(exportStatements) {
|
|
33285
33285
|
return () => {
|
|
@@ -33302,10 +33302,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
33302
33302
|
};
|
|
33303
33303
|
}
|
|
33304
33304
|
|
|
33305
|
-
// bazel-out/
|
|
33305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
33306
33306
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
33307
33307
|
|
|
33308
|
-
// bazel-out/
|
|
33308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
33309
33309
|
var TraitState;
|
|
33310
33310
|
(function(TraitState2) {
|
|
33311
33311
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -33362,7 +33362,7 @@ var TraitImpl = class {
|
|
|
33362
33362
|
}
|
|
33363
33363
|
};
|
|
33364
33364
|
|
|
33365
|
-
// bazel-out/
|
|
33365
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
33366
33366
|
var TraitCompiler = class {
|
|
33367
33367
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
33368
33368
|
this.handlers = handlers;
|
|
@@ -33804,10 +33804,10 @@ function containsErrors(diagnostics) {
|
|
|
33804
33804
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript39.default.DiagnosticCategory.Error);
|
|
33805
33805
|
}
|
|
33806
33806
|
|
|
33807
|
-
// bazel-out/
|
|
33807
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
33808
33808
|
var import_typescript47 = __toESM(require("typescript"), 1);
|
|
33809
33809
|
|
|
33810
|
-
// bazel-out/
|
|
33810
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
33811
33811
|
var Context = class {
|
|
33812
33812
|
constructor(isStatement) {
|
|
33813
33813
|
this.isStatement = isStatement;
|
|
@@ -33820,7 +33820,7 @@ var Context = class {
|
|
|
33820
33820
|
}
|
|
33821
33821
|
};
|
|
33822
33822
|
|
|
33823
|
-
// bazel-out/
|
|
33823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
33824
33824
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33825
33825
|
var ImportManager = class {
|
|
33826
33826
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i", factory9 = import_typescript41.default.factory) {
|
|
@@ -33857,7 +33857,7 @@ var ImportManager = class {
|
|
|
33857
33857
|
}
|
|
33858
33858
|
};
|
|
33859
33859
|
|
|
33860
|
-
// bazel-out/
|
|
33860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
33861
33861
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
33862
33862
|
[UnaryOperator.Minus, "-"],
|
|
33863
33863
|
[UnaryOperator.Plus, "+"]
|
|
@@ -34095,7 +34095,7 @@ function createRange(span) {
|
|
|
34095
34095
|
};
|
|
34096
34096
|
}
|
|
34097
34097
|
|
|
34098
|
-
// bazel-out/
|
|
34098
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
34099
34099
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
34100
34100
|
var INELIGIBLE = {};
|
|
34101
34101
|
function canEmitType(type, canEmit) {
|
|
@@ -34170,10 +34170,10 @@ var TypeEmitter = class {
|
|
|
34170
34170
|
}
|
|
34171
34171
|
};
|
|
34172
34172
|
|
|
34173
|
-
// bazel-out/
|
|
34173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
34174
34174
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
34175
34175
|
|
|
34176
|
-
// bazel-out/
|
|
34176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
34177
34177
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
34178
34178
|
function tsNumericExpression(value) {
|
|
34179
34179
|
if (value < 0) {
|
|
@@ -34183,7 +34183,7 @@ function tsNumericExpression(value) {
|
|
|
34183
34183
|
return import_typescript43.default.factory.createNumericLiteral(value);
|
|
34184
34184
|
}
|
|
34185
34185
|
|
|
34186
|
-
// bazel-out/
|
|
34186
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
34187
34187
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
34188
34188
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
34189
34189
|
}
|
|
@@ -34397,7 +34397,7 @@ var TypeTranslatorVisitor = class {
|
|
|
34397
34397
|
}
|
|
34398
34398
|
};
|
|
34399
34399
|
|
|
34400
|
-
// bazel-out/
|
|
34400
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
34401
34401
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
34402
34402
|
var PureAnnotation;
|
|
34403
34403
|
(function(PureAnnotation2) {
|
|
@@ -34594,7 +34594,7 @@ function attachComments(statement, leadingComments) {
|
|
|
34594
34594
|
}
|
|
34595
34595
|
}
|
|
34596
34596
|
|
|
34597
|
-
// bazel-out/
|
|
34597
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
34598
34598
|
function translateExpression(expression, imports, options = {}) {
|
|
34599
34599
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
34600
34600
|
}
|
|
@@ -34602,7 +34602,7 @@ function translateStatement(statement, imports, options = {}) {
|
|
|
34602
34602
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(true));
|
|
34603
34603
|
}
|
|
34604
34604
|
|
|
34605
|
-
// bazel-out/
|
|
34605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/utils.mjs
|
|
34606
34606
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
34607
34607
|
function addImports(factory9 = import_typescript46.default.factory, importManager, sf, extraStatements = []) {
|
|
34608
34608
|
const addedImports = importManager.getAllImports(sf.fileName).map((i) => {
|
|
@@ -34638,7 +34638,7 @@ function isImportStatement(stmt) {
|
|
|
34638
34638
|
return import_typescript46.default.isImportDeclaration(stmt) || import_typescript46.default.isImportEqualsDeclaration(stmt) || import_typescript46.default.isNamespaceImport(stmt);
|
|
34639
34639
|
}
|
|
34640
34640
|
|
|
34641
|
-
// bazel-out/
|
|
34641
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
34642
34642
|
var DtsTransformRegistry = class {
|
|
34643
34643
|
constructor() {
|
|
34644
34644
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -34785,10 +34785,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
34785
34785
|
import_typescript47.default.forEachChild(node, markForEmitAsSingleLine);
|
|
34786
34786
|
}
|
|
34787
34787
|
|
|
34788
|
-
// bazel-out/
|
|
34788
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34789
34789
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34790
34790
|
|
|
34791
|
-
// bazel-out/
|
|
34791
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
34792
34792
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34793
34793
|
function visit(node, visitor, context) {
|
|
34794
34794
|
return visitor._visit(node, context);
|
|
@@ -34849,7 +34849,7 @@ var Visitor = class {
|
|
|
34849
34849
|
}
|
|
34850
34850
|
};
|
|
34851
34851
|
|
|
34852
|
-
// bazel-out/
|
|
34852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34853
34853
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
34854
34854
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
34855
34855
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -35073,10 +35073,10 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
35073
35073
|
return array;
|
|
35074
35074
|
}
|
|
35075
35075
|
|
|
35076
|
-
// bazel-out/
|
|
35076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35077
35077
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
35078
35078
|
|
|
35079
|
-
// bazel-out/
|
|
35079
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35080
35080
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
35081
35081
|
function tryParseInputInitializerAndOptions(member, reflector, coreModule) {
|
|
35082
35082
|
if (member.value === null || !import_typescript50.default.isCallExpression(member.value)) {
|
|
@@ -35160,7 +35160,7 @@ function tryParseSignalInputMapping(member, reflector, coreModule) {
|
|
|
35160
35160
|
};
|
|
35161
35161
|
}
|
|
35162
35162
|
|
|
35163
|
-
// bazel-out/
|
|
35163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35164
35164
|
var EMPTY_OBJECT = {};
|
|
35165
35165
|
var QUERY_TYPES = /* @__PURE__ */ new Set([
|
|
35166
35166
|
"ContentChild",
|
|
@@ -35815,7 +35815,7 @@ function toR3InputMetadata(mapping) {
|
|
|
35815
35815
|
};
|
|
35816
35816
|
}
|
|
35817
35817
|
|
|
35818
|
-
// bazel-out/
|
|
35818
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
35819
35819
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
35820
35820
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
35821
35821
|
super(decl);
|
|
@@ -35895,7 +35895,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
35895
35895
|
return isSymbolEqual(current, previous);
|
|
35896
35896
|
}
|
|
35897
35897
|
|
|
35898
|
-
// bazel-out/
|
|
35898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
35899
35899
|
var FIELD_DECORATORS = [
|
|
35900
35900
|
"Input",
|
|
35901
35901
|
"Output",
|
|
@@ -36077,10 +36077,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
36077
36077
|
}
|
|
36078
36078
|
};
|
|
36079
36079
|
|
|
36080
|
-
// bazel-out/
|
|
36080
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36081
36081
|
var import_typescript53 = __toESM(require("typescript"), 1);
|
|
36082
36082
|
|
|
36083
|
-
// bazel-out/
|
|
36083
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
36084
36084
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
36085
36085
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
36086
36086
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -36147,7 +36147,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
36147
36147
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
36148
36148
|
}
|
|
36149
36149
|
|
|
36150
|
-
// bazel-out/
|
|
36150
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36151
36151
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
36152
36152
|
constructor(decl, hasProviders) {
|
|
36153
36153
|
super(decl);
|
|
@@ -36718,7 +36718,7 @@ function isSyntheticReference(ref) {
|
|
|
36718
36718
|
return ref.synthetic;
|
|
36719
36719
|
}
|
|
36720
36720
|
|
|
36721
|
-
// bazel-out/
|
|
36721
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
36722
36722
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
36723
36723
|
const name = ref.debugName || "(unknown)";
|
|
36724
36724
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -36741,7 +36741,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
36741
36741
|
return null;
|
|
36742
36742
|
}
|
|
36743
36743
|
|
|
36744
|
-
// bazel-out/
|
|
36744
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
36745
36745
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
36746
36746
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
36747
36747
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -37096,7 +37096,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
37096
37096
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
37097
37097
|
}
|
|
37098
37098
|
|
|
37099
|
-
// bazel-out/
|
|
37099
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
37100
37100
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
37101
37101
|
constructor() {
|
|
37102
37102
|
super(...arguments);
|
|
@@ -37131,7 +37131,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
37131
37131
|
}
|
|
37132
37132
|
};
|
|
37133
37133
|
|
|
37134
|
-
// bazel-out/
|
|
37134
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
37135
37135
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
37136
37136
|
if (value instanceof Map) {
|
|
37137
37137
|
const name = value.get("name");
|
|
@@ -37208,7 +37208,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
37208
37208
|
return false;
|
|
37209
37209
|
}
|
|
37210
37210
|
|
|
37211
|
-
// bazel-out/
|
|
37211
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
37212
37212
|
var EMPTY_ARRAY2 = [];
|
|
37213
37213
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
37214
37214
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -38164,7 +38164,7 @@ function validateStandaloneImports(importRefs, importExpr2, metaReader, scopeRea
|
|
|
38164
38164
|
return diagnostics;
|
|
38165
38165
|
}
|
|
38166
38166
|
|
|
38167
|
-
// bazel-out/
|
|
38167
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
38168
38168
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
38169
38169
|
var InjectableDecoratorHandler = class {
|
|
38170
38170
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -38395,7 +38395,7 @@ function getDep(dep, reflector) {
|
|
|
38395
38395
|
return meta;
|
|
38396
38396
|
}
|
|
38397
38397
|
|
|
38398
|
-
// bazel-out/
|
|
38398
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
38399
38399
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
38400
38400
|
var PipeSymbol = class extends SemanticSymbol {
|
|
38401
38401
|
constructor(decl, name) {
|
|
@@ -38553,7 +38553,7 @@ var PipeDecoratorHandler = class {
|
|
|
38553
38553
|
}
|
|
38554
38554
|
};
|
|
38555
38555
|
|
|
38556
|
-
// bazel-out/
|
|
38556
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
38557
38557
|
var CycleAnalyzer = class {
|
|
38558
38558
|
constructor(importGraph) {
|
|
38559
38559
|
this.importGraph = importGraph;
|
|
@@ -38624,7 +38624,7 @@ var Cycle = class {
|
|
|
38624
38624
|
}
|
|
38625
38625
|
};
|
|
38626
38626
|
|
|
38627
|
-
// bazel-out/
|
|
38627
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
38628
38628
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
38629
38629
|
var ImportGraph = class {
|
|
38630
38630
|
constructor(checker, perf) {
|
|
@@ -38716,13 +38716,13 @@ var Found = class {
|
|
|
38716
38716
|
}
|
|
38717
38717
|
};
|
|
38718
38718
|
|
|
38719
|
-
// bazel-out/
|
|
38719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
38720
38720
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
38721
38721
|
|
|
38722
|
-
// bazel-out/
|
|
38722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
38723
38723
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
38724
38724
|
|
|
38725
|
-
// bazel-out/
|
|
38725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
38726
38726
|
var EntryType;
|
|
38727
38727
|
(function(EntryType2) {
|
|
38728
38728
|
EntryType2["Block"] = "block";
|
|
@@ -38765,17 +38765,17 @@ var MemberTags;
|
|
|
38765
38765
|
MemberTags2["Inherited"] = "override";
|
|
38766
38766
|
})(MemberTags || (MemberTags = {}));
|
|
38767
38767
|
|
|
38768
|
-
// bazel-out/
|
|
38768
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
38769
38769
|
function isAngularPrivateName(name) {
|
|
38770
38770
|
var _a2;
|
|
38771
38771
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
38772
38772
|
return firstChar === "\u0275" || firstChar === "_";
|
|
38773
38773
|
}
|
|
38774
38774
|
|
|
38775
|
-
// bazel-out/
|
|
38775
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
38776
38776
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
38777
38777
|
|
|
38778
|
-
// bazel-out/
|
|
38778
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
38779
38779
|
function extractGenerics(declaration) {
|
|
38780
38780
|
var _a2, _b2;
|
|
38781
38781
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -38788,7 +38788,7 @@ function extractGenerics(declaration) {
|
|
|
38788
38788
|
})) != null ? _b2 : [];
|
|
38789
38789
|
}
|
|
38790
38790
|
|
|
38791
|
-
// bazel-out/
|
|
38791
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
38792
38792
|
var import_typescript61 = __toESM(require("typescript"), 1);
|
|
38793
38793
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
|
|
38794
38794
|
function extractJsDocTags(node) {
|
|
@@ -38832,12 +38832,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
38832
38832
|
return comment.replace(/_NG_AT_/g, "@");
|
|
38833
38833
|
}
|
|
38834
38834
|
|
|
38835
|
-
// bazel-out/
|
|
38835
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
38836
38836
|
function extractResolvedTypeString(node, checker) {
|
|
38837
38837
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
38838
38838
|
}
|
|
38839
38839
|
|
|
38840
|
-
// bazel-out/
|
|
38840
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
38841
38841
|
var FunctionExtractor = class {
|
|
38842
38842
|
constructor(declaration, typeChecker) {
|
|
38843
38843
|
this.declaration = declaration;
|
|
@@ -38891,7 +38891,7 @@ var FunctionExtractor = class {
|
|
|
38891
38891
|
}
|
|
38892
38892
|
};
|
|
38893
38893
|
|
|
38894
|
-
// bazel-out/
|
|
38894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
38895
38895
|
var ClassExtractor = class {
|
|
38896
38896
|
constructor(declaration, typeChecker) {
|
|
38897
38897
|
this.declaration = declaration;
|
|
@@ -39118,7 +39118,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
39118
39118
|
return extractor.extract();
|
|
39119
39119
|
}
|
|
39120
39120
|
|
|
39121
|
-
// bazel-out/
|
|
39121
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
39122
39122
|
function extractConstant(declaration, typeChecker) {
|
|
39123
39123
|
const resolvedType = typeChecker.getBaseTypeOfLiteralType(typeChecker.getTypeAtLocation(declaration));
|
|
39124
39124
|
const variableStatement = declaration.parent.parent;
|
|
@@ -39136,7 +39136,7 @@ function isSyntheticAngularConstant(declaration) {
|
|
|
39136
39136
|
return declaration.name.getText() === "USED_FOR_NG_TYPE_CHECKING";
|
|
39137
39137
|
}
|
|
39138
39138
|
|
|
39139
|
-
// bazel-out/
|
|
39139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
39140
39140
|
var import_typescript64 = __toESM(require("typescript"), 1);
|
|
39141
39141
|
function extractorDecorator(declaration, typeChecker) {
|
|
39142
39142
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -39209,7 +39209,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
39209
39209
|
return callSignature;
|
|
39210
39210
|
}
|
|
39211
39211
|
|
|
39212
|
-
// bazel-out/
|
|
39212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
39213
39213
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
39214
39214
|
function extractEnum(declaration, typeChecker) {
|
|
39215
39215
|
return {
|
|
@@ -39240,7 +39240,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
39240
39240
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
39241
39241
|
}
|
|
39242
39242
|
|
|
39243
|
-
// bazel-out/
|
|
39243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
39244
39244
|
function extractTypeAlias(declaration) {
|
|
39245
39245
|
return {
|
|
39246
39246
|
name: declaration.name.getText(),
|
|
@@ -39252,7 +39252,7 @@ function extractTypeAlias(declaration) {
|
|
|
39252
39252
|
};
|
|
39253
39253
|
}
|
|
39254
39254
|
|
|
39255
|
-
// bazel-out/
|
|
39255
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
39256
39256
|
var DocsExtractor = class {
|
|
39257
39257
|
constructor(typeChecker, metadataReader) {
|
|
39258
39258
|
this.typeChecker = typeChecker;
|
|
@@ -39314,7 +39314,7 @@ function isIgnoredInterface(node) {
|
|
|
39314
39314
|
return node.name.getText().endsWith("Decorator") || isDecoratorOptionsInterface(node);
|
|
39315
39315
|
}
|
|
39316
39316
|
|
|
39317
|
-
// bazel-out/
|
|
39317
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
39318
39318
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
39319
39319
|
var FlatIndexGenerator = class {
|
|
39320
39320
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -39339,7 +39339,7 @@ export * from '${relativeEntryPoint}';
|
|
|
39339
39339
|
}
|
|
39340
39340
|
};
|
|
39341
39341
|
|
|
39342
|
-
// bazel-out/
|
|
39342
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
39343
39343
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
39344
39344
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
39345
39345
|
let resolvedEntryPoint = null;
|
|
@@ -39355,7 +39355,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
39355
39355
|
return resolvedEntryPoint;
|
|
39356
39356
|
}
|
|
39357
39357
|
|
|
39358
|
-
// bazel-out/
|
|
39358
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
39359
39359
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
39360
39360
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
39361
39361
|
const diagnostics = [];
|
|
@@ -39435,7 +39435,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
39435
39435
|
}
|
|
39436
39436
|
}
|
|
39437
39437
|
|
|
39438
|
-
// bazel-out/
|
|
39438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
39439
39439
|
var ReferenceGraph = class {
|
|
39440
39440
|
constructor() {
|
|
39441
39441
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -39489,7 +39489,7 @@ var ReferenceGraph = class {
|
|
|
39489
39489
|
}
|
|
39490
39490
|
};
|
|
39491
39491
|
|
|
39492
|
-
// bazel-out/
|
|
39492
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
39493
39493
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
39494
39494
|
var UpdateMode;
|
|
39495
39495
|
(function(UpdateMode2) {
|
|
@@ -39497,13 +39497,13 @@ var UpdateMode;
|
|
|
39497
39497
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
39498
39498
|
})(UpdateMode || (UpdateMode = {}));
|
|
39499
39499
|
|
|
39500
|
-
// bazel-out/
|
|
39500
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
39501
39501
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
39502
39502
|
|
|
39503
|
-
// bazel-out/
|
|
39503
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
39504
39504
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
39505
39505
|
|
|
39506
|
-
// bazel-out/
|
|
39506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
39507
39507
|
var NgExtension = Symbol("NgExtension");
|
|
39508
39508
|
function isExtended(sf) {
|
|
39509
39509
|
return sf[NgExtension] !== void 0;
|
|
@@ -39563,13 +39563,13 @@ function retagTsFile(sf) {
|
|
|
39563
39563
|
}
|
|
39564
39564
|
}
|
|
39565
39565
|
|
|
39566
|
-
// bazel-out/
|
|
39566
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
39567
39567
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
39568
39568
|
function makeShimFileName(fileName, suffix) {
|
|
39569
39569
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
39570
39570
|
}
|
|
39571
39571
|
|
|
39572
|
-
// bazel-out/
|
|
39572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
39573
39573
|
var ShimAdapter = class {
|
|
39574
39574
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
39575
39575
|
this.delegate = delegate;
|
|
@@ -39664,7 +39664,7 @@ var ShimAdapter = class {
|
|
|
39664
39664
|
}
|
|
39665
39665
|
};
|
|
39666
39666
|
|
|
39667
|
-
// bazel-out/
|
|
39667
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
39668
39668
|
var ShimReferenceTagger = class {
|
|
39669
39669
|
constructor(shimExtensions) {
|
|
39670
39670
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -39698,7 +39698,7 @@ var ShimReferenceTagger = class {
|
|
|
39698
39698
|
}
|
|
39699
39699
|
};
|
|
39700
39700
|
|
|
39701
|
-
// bazel-out/
|
|
39701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
39702
39702
|
var DelegatingCompilerHost = class {
|
|
39703
39703
|
get jsDocParsingMode() {
|
|
39704
39704
|
return this.delegate.jsDocParsingMode;
|
|
@@ -39817,7 +39817,7 @@ var TsCreateProgramDriver = class {
|
|
|
39817
39817
|
}
|
|
39818
39818
|
};
|
|
39819
39819
|
|
|
39820
|
-
// bazel-out/
|
|
39820
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
39821
39821
|
var FileDependencyGraph = class {
|
|
39822
39822
|
constructor() {
|
|
39823
39823
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -39884,7 +39884,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
39884
39884
|
return false;
|
|
39885
39885
|
}
|
|
39886
39886
|
|
|
39887
|
-
// bazel-out/
|
|
39887
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
39888
39888
|
var IncrementalStateKind;
|
|
39889
39889
|
(function(IncrementalStateKind2) {
|
|
39890
39890
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -39892,7 +39892,7 @@ var IncrementalStateKind;
|
|
|
39892
39892
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
39893
39893
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
39894
39894
|
|
|
39895
|
-
// bazel-out/
|
|
39895
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
39896
39896
|
var PhaseKind;
|
|
39897
39897
|
(function(PhaseKind2) {
|
|
39898
39898
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -40093,7 +40093,7 @@ function toOriginalSourceFile(sf) {
|
|
|
40093
40093
|
}
|
|
40094
40094
|
}
|
|
40095
40095
|
|
|
40096
|
-
// bazel-out/
|
|
40096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
40097
40097
|
var TrackedIncrementalBuildStrategy = class {
|
|
40098
40098
|
constructor() {
|
|
40099
40099
|
this.state = null;
|
|
@@ -40114,7 +40114,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
40114
40114
|
};
|
|
40115
40115
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
40116
40116
|
|
|
40117
|
-
// bazel-out/
|
|
40117
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
40118
40118
|
var IdentifierKind;
|
|
40119
40119
|
(function(IdentifierKind2) {
|
|
40120
40120
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -40132,7 +40132,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
40132
40132
|
}
|
|
40133
40133
|
};
|
|
40134
40134
|
|
|
40135
|
-
// bazel-out/
|
|
40135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
40136
40136
|
var IndexingContext = class {
|
|
40137
40137
|
constructor() {
|
|
40138
40138
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -40142,7 +40142,7 @@ var IndexingContext = class {
|
|
|
40142
40142
|
}
|
|
40143
40143
|
};
|
|
40144
40144
|
|
|
40145
|
-
// bazel-out/
|
|
40145
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
40146
40146
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
40147
40147
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
40148
40148
|
super();
|
|
@@ -40423,7 +40423,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
40423
40423
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
40424
40424
|
}
|
|
40425
40425
|
|
|
40426
|
-
// bazel-out/
|
|
40426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
40427
40427
|
function generateAnalysis(context) {
|
|
40428
40428
|
const analysis = /* @__PURE__ */ new Map();
|
|
40429
40429
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -40459,7 +40459,7 @@ function generateAnalysis(context) {
|
|
|
40459
40459
|
return analysis;
|
|
40460
40460
|
}
|
|
40461
40461
|
|
|
40462
|
-
// bazel-out/
|
|
40462
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
40463
40463
|
var NgModuleIndexImpl = class {
|
|
40464
40464
|
constructor(metaReader, localReader) {
|
|
40465
40465
|
this.metaReader = metaReader;
|
|
@@ -40548,7 +40548,7 @@ var NgModuleIndexImpl = class {
|
|
|
40548
40548
|
}
|
|
40549
40549
|
};
|
|
40550
40550
|
|
|
40551
|
-
// bazel-out/
|
|
40551
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
40552
40552
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
40553
40553
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
40554
40554
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -40696,7 +40696,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
40696
40696
|
};
|
|
40697
40697
|
}
|
|
40698
40698
|
|
|
40699
|
-
// bazel-out/
|
|
40699
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
40700
40700
|
var StandaloneComponentScopeReader = class {
|
|
40701
40701
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
40702
40702
|
this.metaReader = metaReader;
|
|
@@ -40792,21 +40792,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
40792
40792
|
}
|
|
40793
40793
|
};
|
|
40794
40794
|
|
|
40795
|
-
// bazel-out/
|
|
40795
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
40796
40796
|
var OptimizeFor;
|
|
40797
40797
|
(function(OptimizeFor2) {
|
|
40798
40798
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
40799
40799
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
40800
40800
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
40801
40801
|
|
|
40802
|
-
// bazel-out/
|
|
40802
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
40803
40803
|
var CompletionKind;
|
|
40804
40804
|
(function(CompletionKind2) {
|
|
40805
40805
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
40806
40806
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
40807
40807
|
})(CompletionKind || (CompletionKind = {}));
|
|
40808
40808
|
|
|
40809
|
-
// bazel-out/
|
|
40809
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
40810
40810
|
var PotentialImportKind;
|
|
40811
40811
|
(function(PotentialImportKind2) {
|
|
40812
40812
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -40818,7 +40818,7 @@ var PotentialImportMode;
|
|
|
40818
40818
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
40819
40819
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
40820
40820
|
|
|
40821
|
-
// bazel-out/
|
|
40821
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
40822
40822
|
var SymbolKind;
|
|
40823
40823
|
(function(SymbolKind2) {
|
|
40824
40824
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -40834,7 +40834,7 @@ var SymbolKind;
|
|
|
40834
40834
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
40835
40835
|
})(SymbolKind || (SymbolKind = {}));
|
|
40836
40836
|
|
|
40837
|
-
// bazel-out/
|
|
40837
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
40838
40838
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
40839
40839
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
40840
40840
|
var _a2;
|
|
@@ -40941,7 +40941,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
40941
40941
|
return import_typescript77.default.createSourceFile(fileName, template2, import_typescript77.default.ScriptTarget.Latest, false, import_typescript77.default.ScriptKind.JSX);
|
|
40942
40942
|
}
|
|
40943
40943
|
|
|
40944
|
-
// bazel-out/
|
|
40944
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
40945
40945
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
40946
40946
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
40947
40947
|
function getTemplateId(clazz) {
|
|
@@ -40958,10 +40958,10 @@ function allocateTemplateId(sf) {
|
|
|
40958
40958
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
40959
40959
|
}
|
|
40960
40960
|
|
|
40961
|
-
// bazel-out/
|
|
40961
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
40962
40962
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40963
40963
|
|
|
40964
|
-
// bazel-out/
|
|
40964
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
40965
40965
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40966
40966
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
40967
40967
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -41090,7 +41090,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
41090
41090
|
}) || false;
|
|
41091
41091
|
}
|
|
41092
41092
|
|
|
41093
|
-
// bazel-out/
|
|
41093
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
41094
41094
|
var CompletionEngine = class {
|
|
41095
41095
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
41096
41096
|
this.tcb = tcb;
|
|
@@ -41247,10 +41247,10 @@ var CompletionEngine = class {
|
|
|
41247
41247
|
}
|
|
41248
41248
|
};
|
|
41249
41249
|
|
|
41250
|
-
// bazel-out/
|
|
41250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
41251
41251
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
41252
41252
|
|
|
41253
|
-
// bazel-out/
|
|
41253
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
41254
41254
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
41255
41255
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
41256
41256
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -41302,10 +41302,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
41302
41302
|
}
|
|
41303
41303
|
};
|
|
41304
41304
|
|
|
41305
|
-
// bazel-out/
|
|
41305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
41306
41306
|
var import_typescript86 = __toESM(require("typescript"), 1);
|
|
41307
41307
|
|
|
41308
|
-
// bazel-out/
|
|
41308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
41309
41309
|
var ReferenceEmitEnvironment = class {
|
|
41310
41310
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
41311
41311
|
this.importManager = importManager;
|
|
@@ -41335,7 +41335,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
41335
41335
|
}
|
|
41336
41336
|
};
|
|
41337
41337
|
|
|
41338
|
-
// bazel-out/
|
|
41338
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
41339
41339
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
41340
41340
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
41341
41341
|
import_typescript81.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -41420,13 +41420,13 @@ function tsNumericExpression2(value) {
|
|
|
41420
41420
|
return import_typescript81.default.factory.createNumericLiteral(value);
|
|
41421
41421
|
}
|
|
41422
41422
|
|
|
41423
|
-
// bazel-out/
|
|
41423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
41424
41424
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
41425
41425
|
|
|
41426
|
-
// bazel-out/
|
|
41426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
41427
41427
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
41428
41428
|
|
|
41429
|
-
// bazel-out/
|
|
41429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
41430
41430
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
41431
41431
|
var TypeParameterEmitter = class {
|
|
41432
41432
|
constructor(typeParameters, reflector) {
|
|
@@ -41504,7 +41504,7 @@ var TypeParameterEmitter = class {
|
|
|
41504
41504
|
}
|
|
41505
41505
|
};
|
|
41506
41506
|
|
|
41507
|
-
// bazel-out/
|
|
41507
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
41508
41508
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_MODULES = [
|
|
41509
41509
|
Identifiers.InputSignalBrandWriteType.moduleName
|
|
41510
41510
|
];
|
|
@@ -41592,7 +41592,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
41592
41592
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
41593
41593
|
}
|
|
41594
41594
|
|
|
41595
|
-
// bazel-out/
|
|
41595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
41596
41596
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
41597
41597
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
41598
41598
|
const rawType = import_typescript85.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -41715,7 +41715,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
41715
41715
|
});
|
|
41716
41716
|
}
|
|
41717
41717
|
|
|
41718
|
-
// bazel-out/
|
|
41718
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
41719
41719
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
41720
41720
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
41721
41721
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -41790,7 +41790,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
41790
41790
|
}
|
|
41791
41791
|
};
|
|
41792
41792
|
|
|
41793
|
-
// bazel-out/
|
|
41793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
41794
41794
|
var import_typescript87 = __toESM(require("typescript"), 1);
|
|
41795
41795
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
41796
41796
|
constructor(resolver) {
|
|
@@ -41990,7 +41990,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
41990
41990
|
});
|
|
41991
41991
|
}
|
|
41992
41992
|
|
|
41993
|
-
// bazel-out/
|
|
41993
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
41994
41994
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
41995
41995
|
var TypeCheckShimGenerator = class {
|
|
41996
41996
|
constructor() {
|
|
@@ -42008,10 +42008,10 @@ var TypeCheckShimGenerator = class {
|
|
|
42008
42008
|
}
|
|
42009
42009
|
};
|
|
42010
42010
|
|
|
42011
|
-
// bazel-out/
|
|
42011
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
42012
42012
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
42013
42013
|
|
|
42014
|
-
// bazel-out/
|
|
42014
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
42015
42015
|
var import_typescript89 = __toESM(require("typescript"), 1);
|
|
42016
42016
|
function wrapForDiagnostics(expr) {
|
|
42017
42017
|
return import_typescript89.default.factory.createParenthesizedExpression(expr);
|
|
@@ -42056,7 +42056,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
42056
42056
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
42057
42057
|
}
|
|
42058
42058
|
|
|
42059
|
-
// bazel-out/
|
|
42059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
42060
42060
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
42061
42061
|
var NULL_AS_ANY = import_typescript90.default.factory.createAsExpression(import_typescript90.default.factory.createNull(), import_typescript90.default.factory.createKeywordTypeNode(import_typescript90.default.SyntaxKind.AnyKeyword));
|
|
42062
42062
|
var UNDEFINED = import_typescript90.default.factory.createIdentifier("undefined");
|
|
@@ -42388,7 +42388,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
42388
42388
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
42389
42389
|
})();
|
|
42390
42390
|
|
|
42391
|
-
// bazel-out/
|
|
42391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_semantics.mjs
|
|
42392
42392
|
var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
42393
42393
|
constructor(templateId, boundTarget, oob) {
|
|
42394
42394
|
super();
|
|
@@ -42411,7 +42411,7 @@ var ExpressionSemanticVisitor = class extends RecursiveAstVisitor2 {
|
|
|
42411
42411
|
}
|
|
42412
42412
|
};
|
|
42413
42413
|
|
|
42414
|
-
// bazel-out/
|
|
42414
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
42415
42415
|
var TcbGenericContextBehavior;
|
|
42416
42416
|
(function(TcbGenericContextBehavior2) {
|
|
42417
42417
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -43912,7 +43912,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
43912
43912
|
}
|
|
43913
43913
|
};
|
|
43914
43914
|
|
|
43915
|
-
// bazel-out/
|
|
43915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
43916
43916
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
43917
43917
|
var TypeCheckFile = class extends Environment {
|
|
43918
43918
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -43949,7 +43949,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
43949
43949
|
}
|
|
43950
43950
|
};
|
|
43951
43951
|
|
|
43952
|
-
// bazel-out/
|
|
43952
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
43953
43953
|
var InliningMode;
|
|
43954
43954
|
(function(InliningMode2) {
|
|
43955
43955
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -44189,7 +44189,7 @@ function splitStringAtPoints(str, points) {
|
|
|
44189
44189
|
return splits;
|
|
44190
44190
|
}
|
|
44191
44191
|
|
|
44192
|
-
// bazel-out/
|
|
44192
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
44193
44193
|
var LF_CHAR = 10;
|
|
44194
44194
|
var CR_CHAR = 13;
|
|
44195
44195
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -44230,7 +44230,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
44230
44230
|
return low - 1;
|
|
44231
44231
|
}
|
|
44232
44232
|
|
|
44233
|
-
// bazel-out/
|
|
44233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
44234
44234
|
var TemplateSource = class {
|
|
44235
44235
|
constructor(mapping, file) {
|
|
44236
44236
|
this.mapping = mapping;
|
|
@@ -44281,7 +44281,7 @@ var TemplateSourceManager = class {
|
|
|
44281
44281
|
}
|
|
44282
44282
|
};
|
|
44283
44283
|
|
|
44284
|
-
// bazel-out/
|
|
44284
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
44285
44285
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
44286
44286
|
var SymbolBuilder = class {
|
|
44287
44287
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -44758,7 +44758,7 @@ function sourceSpanEqual(a, b) {
|
|
|
44758
44758
|
return a.start.offset === b.start.offset && a.end.offset === b.end.offset;
|
|
44759
44759
|
}
|
|
44760
44760
|
|
|
44761
|
-
// bazel-out/
|
|
44761
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
44762
44762
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
44763
44763
|
var TemplateTypeCheckerImpl = class {
|
|
44764
44764
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -45454,7 +45454,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
45454
45454
|
}
|
|
45455
45455
|
};
|
|
45456
45456
|
|
|
45457
|
-
// bazel-out/
|
|
45457
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
45458
45458
|
var TemplateCheckWithVisitor = class {
|
|
45459
45459
|
run(ctx, component, template2) {
|
|
45460
45460
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -45577,7 +45577,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
45577
45577
|
}
|
|
45578
45578
|
};
|
|
45579
45579
|
|
|
45580
|
-
// bazel-out/
|
|
45580
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
45581
45581
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
45582
45582
|
constructor() {
|
|
45583
45583
|
super(...arguments);
|
|
@@ -45614,7 +45614,7 @@ var factory = {
|
|
|
45614
45614
|
create: () => new InterpolatedSignalCheck()
|
|
45615
45615
|
};
|
|
45616
45616
|
|
|
45617
|
-
// bazel-out/
|
|
45617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
45618
45618
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
45619
45619
|
constructor() {
|
|
45620
45620
|
super(...arguments);
|
|
@@ -45639,7 +45639,7 @@ var factory2 = {
|
|
|
45639
45639
|
create: () => new InvalidBananaInBoxCheck()
|
|
45640
45640
|
};
|
|
45641
45641
|
|
|
45642
|
-
// bazel-out/
|
|
45642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
45643
45643
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
45644
45644
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
45645
45645
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -45683,7 +45683,7 @@ var factory3 = {
|
|
|
45683
45683
|
}
|
|
45684
45684
|
};
|
|
45685
45685
|
|
|
45686
|
-
// bazel-out/
|
|
45686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
45687
45687
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
45688
45688
|
constructor() {
|
|
45689
45689
|
super(...arguments);
|
|
@@ -45715,7 +45715,7 @@ var factory4 = {
|
|
|
45715
45715
|
create: () => new MissingNgForOfLetCheck()
|
|
45716
45716
|
};
|
|
45717
45717
|
|
|
45718
|
-
// bazel-out/
|
|
45718
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
45719
45719
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
45720
45720
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
45721
45721
|
constructor() {
|
|
@@ -45759,7 +45759,7 @@ var factory5 = {
|
|
|
45759
45759
|
}
|
|
45760
45760
|
};
|
|
45761
45761
|
|
|
45762
|
-
// bazel-out/
|
|
45762
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
45763
45763
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
45764
45764
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
45765
45765
|
constructor() {
|
|
@@ -45804,7 +45804,7 @@ var factory6 = {
|
|
|
45804
45804
|
}
|
|
45805
45805
|
};
|
|
45806
45806
|
|
|
45807
|
-
// bazel-out/
|
|
45807
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
45808
45808
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
45809
45809
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
45810
45810
|
constructor() {
|
|
@@ -45827,7 +45827,7 @@ var factory7 = {
|
|
|
45827
45827
|
create: () => new SuffixNotSupportedCheck()
|
|
45828
45828
|
};
|
|
45829
45829
|
|
|
45830
|
-
// bazel-out/
|
|
45830
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
45831
45831
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
45832
45832
|
constructor() {
|
|
45833
45833
|
super(...arguments);
|
|
@@ -45865,10 +45865,10 @@ var factory8 = {
|
|
|
45865
45865
|
create: () => new TextAttributeNotBindingSpec()
|
|
45866
45866
|
};
|
|
45867
45867
|
|
|
45868
|
-
// bazel-out/
|
|
45868
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
45869
45869
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
45870
45870
|
|
|
45871
|
-
// bazel-out/
|
|
45871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
45872
45872
|
var DiagnosticCategoryLabel;
|
|
45873
45873
|
(function(DiagnosticCategoryLabel2) {
|
|
45874
45874
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -45876,7 +45876,7 @@ var DiagnosticCategoryLabel;
|
|
|
45876
45876
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
45877
45877
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
45878
45878
|
|
|
45879
|
-
// bazel-out/
|
|
45879
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
45880
45880
|
var ExtendedTemplateCheckerImpl = class {
|
|
45881
45881
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
45882
45882
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -45928,7 +45928,7 @@ function assertNever(value) {
|
|
|
45928
45928
|
${value}`);
|
|
45929
45929
|
}
|
|
45930
45930
|
|
|
45931
|
-
// bazel-out/
|
|
45931
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
45932
45932
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
45933
45933
|
factory2,
|
|
45934
45934
|
factory5,
|
|
@@ -45944,7 +45944,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
45944
45944
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
|
|
45945
45945
|
]);
|
|
45946
45946
|
|
|
45947
|
-
// bazel-out/
|
|
45947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
45948
45948
|
var CompilationTicketKind;
|
|
45949
45949
|
(function(CompilationTicketKind2) {
|
|
45950
45950
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -46693,7 +46693,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
46693
46693
|
return versions;
|
|
46694
46694
|
}
|
|
46695
46695
|
|
|
46696
|
-
// bazel-out/
|
|
46696
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
46697
46697
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
46698
46698
|
var DelegatingCompilerHost2 = class {
|
|
46699
46699
|
get jsDocParsingMode() {
|
|
@@ -46832,7 +46832,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
46832
46832
|
}
|
|
46833
46833
|
};
|
|
46834
46834
|
|
|
46835
|
-
// bazel-out/
|
|
46835
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
46836
46836
|
var NgtscProgram = class {
|
|
46837
46837
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
46838
46838
|
this.options = options;
|
|
@@ -47059,24 +47059,24 @@ function mergeEmitResults(emitResults) {
|
|
|
47059
47059
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
47060
47060
|
}
|
|
47061
47061
|
|
|
47062
|
-
// bazel-out/
|
|
47062
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
47063
47063
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
47064
47064
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
47065
47065
|
}
|
|
47066
47066
|
|
|
47067
|
-
// bazel-out/
|
|
47067
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
47068
47068
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
47069
47069
|
|
|
47070
|
-
// bazel-out/
|
|
47070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
47071
47071
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
47072
47072
|
|
|
47073
|
-
// bazel-out/
|
|
47073
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
|
|
47074
47074
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
47075
47075
|
|
|
47076
|
-
// bazel-out/
|
|
47076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/signal_inputs_metadata_transform.mjs
|
|
47077
47077
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
47078
47078
|
|
|
47079
|
-
// bazel-out/
|
|
47079
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
47080
47080
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
47081
47081
|
ngDevMode: false,
|
|
47082
47082
|
ngI18nClosureMode: false
|
|
@@ -47085,7 +47085,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
47085
47085
|
ngJitMode: false
|
|
47086
47086
|
});
|
|
47087
47087
|
|
|
47088
|
-
// bazel-out/
|
|
47088
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
47089
47089
|
var LogLevel;
|
|
47090
47090
|
(function(LogLevel2) {
|
|
47091
47091
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -47094,7 +47094,7 @@ var LogLevel;
|
|
|
47094
47094
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
47095
47095
|
})(LogLevel || (LogLevel = {}));
|
|
47096
47096
|
|
|
47097
|
-
// bazel-out/
|
|
47097
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
47098
47098
|
var RESET = "\x1B[0m";
|
|
47099
47099
|
var RED = "\x1B[31m";
|
|
47100
47100
|
var YELLOW = "\x1B[33m";
|
|
@@ -47103,18 +47103,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
47103
47103
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
47104
47104
|
var ERROR = `${RED}Error:${RESET}`;
|
|
47105
47105
|
|
|
47106
|
-
// bazel-out/
|
|
47106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
47107
47107
|
setFileSystem(new NodeJSFileSystem());
|
|
47108
47108
|
|
|
47109
|
-
// bazel-out/
|
|
47109
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
47110
47110
|
var import_fs2 = require("fs");
|
|
47111
47111
|
var import_path8 = require("path");
|
|
47112
47112
|
var import_typescript121 = __toESM(require("typescript"), 1);
|
|
47113
47113
|
|
|
47114
|
-
// bazel-out/
|
|
47114
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
47115
47115
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
47116
47116
|
|
|
47117
|
-
// bazel-out/
|
|
47117
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
47118
47118
|
var import_path4 = require("path");
|
|
47119
47119
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
47120
47120
|
var ImportManager2 = class {
|
|
@@ -47298,7 +47298,7 @@ ${text2}`;
|
|
|
47298
47298
|
}
|
|
47299
47299
|
};
|
|
47300
47300
|
|
|
47301
|
-
// bazel-out/
|
|
47301
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
47302
47302
|
var ChangeTracker = class {
|
|
47303
47303
|
constructor(_printer, _importRemapper) {
|
|
47304
47304
|
__publicField(this, "_printer");
|
|
@@ -47357,7 +47357,7 @@ function normalizePath(path4) {
|
|
|
47357
47357
|
return path4.replace(/\\/g, "/");
|
|
47358
47358
|
}
|
|
47359
47359
|
|
|
47360
|
-
// bazel-out/
|
|
47360
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
47361
47361
|
var import_core19 = require("@angular-devkit/core");
|
|
47362
47362
|
function getProjectTsConfigPaths(tree) {
|
|
47363
47363
|
return __async(this, null, function* () {
|
|
@@ -47437,11 +47437,11 @@ function getWorkspace(tree) {
|
|
|
47437
47437
|
});
|
|
47438
47438
|
}
|
|
47439
47439
|
|
|
47440
|
-
// bazel-out/
|
|
47440
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
47441
47441
|
var import_path5 = require("path");
|
|
47442
47442
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
47443
47443
|
|
|
47444
|
-
// bazel-out/
|
|
47444
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
47445
47445
|
var path3 = __toESM(require("path"), 1);
|
|
47446
47446
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
47447
47447
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -47458,7 +47458,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
47458
47458
|
return import_typescript111.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
47459
47459
|
}
|
|
47460
47460
|
|
|
47461
|
-
// bazel-out/
|
|
47461
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
47462
47462
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
47463
47463
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
47464
47464
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -47487,13 +47487,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
47487
47487
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
47488
47488
|
}
|
|
47489
47489
|
|
|
47490
|
-
// bazel-out/
|
|
47490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
47491
47491
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
47492
47492
|
|
|
47493
|
-
// bazel-out/
|
|
47493
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
47494
47494
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
47495
47495
|
|
|
47496
|
-
// bazel-out/
|
|
47496
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
47497
47497
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
47498
47498
|
function getImportOfIdentifier(typeChecker, node) {
|
|
47499
47499
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -47544,7 +47544,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
47544
47544
|
});
|
|
47545
47545
|
}
|
|
47546
47546
|
|
|
47547
|
-
// bazel-out/
|
|
47547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
47548
47548
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
47549
47549
|
if (!import_typescript114.default.isCallExpression(decorator.expression) || !import_typescript114.default.isIdentifier(decorator.expression.expression)) {
|
|
47550
47550
|
return null;
|
|
@@ -47553,7 +47553,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
47553
47553
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
47554
47554
|
}
|
|
47555
47555
|
|
|
47556
|
-
// bazel-out/
|
|
47556
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
47557
47557
|
function getAngularDecorators(typeChecker, decorators) {
|
|
47558
47558
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
47559
47559
|
node,
|
|
@@ -47563,7 +47563,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
47563
47563
|
}));
|
|
47564
47564
|
}
|
|
47565
47565
|
|
|
47566
|
-
// bazel-out/
|
|
47566
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
47567
47567
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
47568
47568
|
function closestNode(node, predicate) {
|
|
47569
47569
|
let current = node.parent;
|
|
@@ -47576,7 +47576,7 @@ function closestNode(node, predicate) {
|
|
|
47576
47576
|
return null;
|
|
47577
47577
|
}
|
|
47578
47578
|
|
|
47579
|
-
// bazel-out/
|
|
47579
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
47580
47580
|
var import_path6 = require("path");
|
|
47581
47581
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
47582
47582
|
var UniqueItemTracker = class {
|
|
@@ -47752,7 +47752,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
47752
47752
|
}));
|
|
47753
47753
|
}
|
|
47754
47754
|
|
|
47755
|
-
// bazel-out/
|
|
47755
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
47756
47756
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
47757
47757
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
47758
47758
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -47951,14 +47951,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
47951
47951
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
47952
47952
|
}
|
|
47953
47953
|
|
|
47954
|
-
// bazel-out/
|
|
47954
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
47955
47955
|
var import_path7 = require("path");
|
|
47956
47956
|
var import_typescript120 = __toESM(require("typescript"), 1);
|
|
47957
47957
|
|
|
47958
|
-
// bazel-out/
|
|
47958
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
47959
47959
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
47960
47960
|
|
|
47961
|
-
// bazel-out/
|
|
47961
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
47962
47962
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
47963
47963
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
47964
47964
|
var _a2, _b2;
|
|
@@ -47967,7 +47967,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
47967
47967
|
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];
|
|
47968
47968
|
}
|
|
47969
47969
|
|
|
47970
|
-
// bazel-out/
|
|
47970
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
47971
47971
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
47972
47972
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
47973
47973
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -48330,7 +48330,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
48330
48330
|
return metadata != null && metadata.isStandalone;
|
|
48331
48331
|
}
|
|
48332
48332
|
|
|
48333
|
-
// bazel-out/
|
|
48333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
48334
48334
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
48335
48335
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
48336
48336
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -48707,7 +48707,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
48707
48707
|
return false;
|
|
48708
48708
|
}
|
|
48709
48709
|
|
|
48710
|
-
// bazel-out/
|
|
48710
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
48711
48711
|
var MigrationMode;
|
|
48712
48712
|
(function(MigrationMode2) {
|
|
48713
48713
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|