@angular/core 17.3.11 → 17.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +3 -3
- 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 +1 -1
- 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 +200 -191
- package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
- package/schematics/migrations/compiler-options/bundle.js +13 -13
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +201 -192
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
- package/schematics/migrations/transfer-state/bundle.js +13 -13
- package/schematics/ng-generate/control-flow-migration/bundle.js +209 -200
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +481 -472
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
|
@@ -2492,7 +2492,7 @@ var require_semver2 = __commonJS({
|
|
|
2492
2492
|
}
|
|
2493
2493
|
});
|
|
2494
2494
|
|
|
2495
|
-
// bazel-out/
|
|
2495
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
2496
2496
|
var standalone_migration_exports = {};
|
|
2497
2497
|
__export(standalone_migration_exports, {
|
|
2498
2498
|
default: () => standalone_migration_default
|
|
@@ -2500,10 +2500,10 @@ __export(standalone_migration_exports, {
|
|
|
2500
2500
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
2501
2501
|
var import_schematics = require("@angular-devkit/schematics");
|
|
2502
2502
|
|
|
2503
|
-
// bazel-out/
|
|
2503
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
2504
2504
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
2505
2505
|
|
|
2506
|
-
// bazel-out/
|
|
2506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
2507
2507
|
var InvalidFileSystem = class {
|
|
2508
2508
|
exists(path4) {
|
|
2509
2509
|
throw makeError();
|
|
@@ -2591,7 +2591,7 @@ function makeError() {
|
|
|
2591
2591
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
2592
2592
|
}
|
|
2593
2593
|
|
|
2594
|
-
// bazel-out/
|
|
2594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
2595
2595
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
2596
2596
|
function stripExtension(path4) {
|
|
2597
2597
|
return path4.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -2604,7 +2604,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
2604
2604
|
return sf;
|
|
2605
2605
|
}
|
|
2606
2606
|
|
|
2607
|
-
// bazel-out/
|
|
2607
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
2608
2608
|
var fs = new InvalidFileSystem();
|
|
2609
2609
|
function getFileSystem() {
|
|
2610
2610
|
return fs;
|
|
@@ -2648,7 +2648,7 @@ function toRelativeImport(relativePath) {
|
|
|
2648
2648
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
2649
2649
|
}
|
|
2650
2650
|
|
|
2651
|
-
// bazel-out/
|
|
2651
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
2652
2652
|
var LogicalProjectPath = {
|
|
2653
2653
|
relativePathBetween: function(from, to) {
|
|
2654
2654
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -2694,7 +2694,7 @@ function isWithinBasePath(base, path4) {
|
|
|
2694
2694
|
return isLocalRelativePath(relative(base, path4));
|
|
2695
2695
|
}
|
|
2696
2696
|
|
|
2697
|
-
// bazel-out/
|
|
2697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
2698
2698
|
var import_fs = __toESM(require("fs"), 1);
|
|
2699
2699
|
var import_module = require("module");
|
|
2700
2700
|
var p = __toESM(require("path"), 1);
|
|
@@ -2802,7 +2802,7 @@ function toggleCase(str) {
|
|
|
2802
2802
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
2803
2803
|
}
|
|
2804
2804
|
|
|
2805
|
-
// bazel-out/
|
|
2805
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
2806
2806
|
var _SELECTOR_REGEXP = new RegExp(
|
|
2807
2807
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
2808
2808
|
"g"
|
|
@@ -3110,7 +3110,7 @@ var SelectorContext = class {
|
|
|
3110
3110
|
}
|
|
3111
3111
|
};
|
|
3112
3112
|
|
|
3113
|
-
// bazel-out/
|
|
3113
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
3114
3114
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
3115
3115
|
var ViewEncapsulation;
|
|
3116
3116
|
(function(ViewEncapsulation2) {
|
|
@@ -3179,7 +3179,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
3179
3179
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
3180
3180
|
}
|
|
3181
3181
|
|
|
3182
|
-
// bazel-out/
|
|
3182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
3183
3183
|
var output_ast_exports = {};
|
|
3184
3184
|
__export(output_ast_exports, {
|
|
3185
3185
|
ArrayType: () => ArrayType,
|
|
@@ -3267,7 +3267,7 @@ __export(output_ast_exports, {
|
|
|
3267
3267
|
variable: () => variable
|
|
3268
3268
|
});
|
|
3269
3269
|
|
|
3270
|
-
// bazel-out/
|
|
3270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
3271
3271
|
var textEncoder;
|
|
3272
3272
|
function digest(message) {
|
|
3273
3273
|
return message.id || computeDigest(message);
|
|
@@ -3510,7 +3510,7 @@ function wordAt(bytes, index, endian) {
|
|
|
3510
3510
|
return word;
|
|
3511
3511
|
}
|
|
3512
3512
|
|
|
3513
|
-
// bazel-out/
|
|
3513
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
3514
3514
|
var TypeModifier;
|
|
3515
3515
|
(function(TypeModifier2) {
|
|
3516
3516
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -4705,7 +4705,7 @@ function serializeTags(tags) {
|
|
|
4705
4705
|
return out;
|
|
4706
4706
|
}
|
|
4707
4707
|
|
|
4708
|
-
// bazel-out/
|
|
4708
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
4709
4709
|
var CONSTANT_PREFIX = "_c";
|
|
4710
4710
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
4711
4711
|
var KEY_CONTEXT = {};
|
|
@@ -4893,7 +4893,7 @@ function isLongStringLiteral(expr) {
|
|
|
4893
4893
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
4894
4894
|
}
|
|
4895
4895
|
|
|
4896
|
-
// bazel-out/
|
|
4896
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
4897
4897
|
var CORE = "@angular/core";
|
|
4898
4898
|
var _Identifiers = class {
|
|
4899
4899
|
};
|
|
@@ -5559,7 +5559,7 @@ var Identifiers = _Identifiers;
|
|
|
5559
5559
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
5560
5560
|
})();
|
|
5561
5561
|
|
|
5562
|
-
// bazel-out/
|
|
5562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
5563
5563
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
5564
5564
|
function dashCaseToCamelCase(input) {
|
|
5565
5565
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -5647,7 +5647,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
5647
5647
|
return [truthy, falsy];
|
|
5648
5648
|
}
|
|
5649
5649
|
|
|
5650
|
-
// bazel-out/
|
|
5650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
5651
5651
|
var VERSION = 3;
|
|
5652
5652
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
5653
5653
|
var SourceMapGenerator = class {
|
|
@@ -5776,7 +5776,7 @@ function toBase64Digit(value) {
|
|
|
5776
5776
|
return B64_DIGITS[value];
|
|
5777
5777
|
}
|
|
5778
5778
|
|
|
5779
|
-
// bazel-out/
|
|
5779
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
5780
5780
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
5781
5781
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
5782
5782
|
var _INDENT_WITH = " ";
|
|
@@ -6264,7 +6264,7 @@ function _createIndent(count) {
|
|
|
6264
6264
|
return res;
|
|
6265
6265
|
}
|
|
6266
6266
|
|
|
6267
|
-
// bazel-out/
|
|
6267
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
6268
6268
|
function typeWithParameters(type, numParams) {
|
|
6269
6269
|
if (numParams === 0) {
|
|
6270
6270
|
return expressionType(type);
|
|
@@ -6332,7 +6332,7 @@ function generateForwardRef(expr) {
|
|
|
6332
6332
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
6333
6333
|
}
|
|
6334
6334
|
|
|
6335
|
-
// bazel-out/
|
|
6335
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
6336
6336
|
var R3FactoryDelegateType;
|
|
6337
6337
|
(function(R3FactoryDelegateType2) {
|
|
6338
6338
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -6477,7 +6477,7 @@ function getInjectFn(target) {
|
|
|
6477
6477
|
}
|
|
6478
6478
|
}
|
|
6479
6479
|
|
|
6480
|
-
// bazel-out/
|
|
6480
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
6481
6481
|
var TagContentType;
|
|
6482
6482
|
(function(TagContentType2) {
|
|
6483
6483
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -6514,7 +6514,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
6514
6514
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
6515
6515
|
}
|
|
6516
6516
|
|
|
6517
|
-
// bazel-out/
|
|
6517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
6518
6518
|
var Comment = class {
|
|
6519
6519
|
constructor(value, sourceSpan) {
|
|
6520
6520
|
this.value = value;
|
|
@@ -6968,7 +6968,7 @@ function visitAll(visitor, nodes) {
|
|
|
6968
6968
|
return result;
|
|
6969
6969
|
}
|
|
6970
6970
|
|
|
6971
|
-
// bazel-out/
|
|
6971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
6972
6972
|
var Message = class {
|
|
6973
6973
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
6974
6974
|
this.nodes = nodes;
|
|
@@ -7157,7 +7157,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
7157
7157
|
}
|
|
7158
7158
|
};
|
|
7159
7159
|
|
|
7160
|
-
// bazel-out/
|
|
7160
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
7161
7161
|
var Serializer = class {
|
|
7162
7162
|
createNameMapper(message) {
|
|
7163
7163
|
return null;
|
|
@@ -7214,7 +7214,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
7214
7214
|
}
|
|
7215
7215
|
};
|
|
7216
7216
|
|
|
7217
|
-
// bazel-out/
|
|
7217
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
7218
7218
|
var _Visitor = class {
|
|
7219
7219
|
visitTag(tag) {
|
|
7220
7220
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -7302,7 +7302,7 @@ function escapeXml(text2) {
|
|
|
7302
7302
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
7303
7303
|
}
|
|
7304
7304
|
|
|
7305
|
-
// bazel-out/
|
|
7305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
7306
7306
|
var _MESSAGES_TAG = "messagebundle";
|
|
7307
7307
|
var _MESSAGE_TAG = "msg";
|
|
7308
7308
|
var _PLACEHOLDER_TAG = "ph";
|
|
@@ -7454,7 +7454,7 @@ function toPublicName(internalName) {
|
|
|
7454
7454
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
7455
7455
|
}
|
|
7456
7456
|
|
|
7457
|
-
// bazel-out/
|
|
7457
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
7458
7458
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
7459
7459
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
7460
7460
|
var I18N_ATTR = "i18n";
|
|
@@ -7556,7 +7556,7 @@ function declareI18nVariable(variable2) {
|
|
|
7556
7556
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
7557
7557
|
}
|
|
7558
7558
|
|
|
7559
|
-
// bazel-out/
|
|
7559
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
7560
7560
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
7561
7561
|
var TEMPORARY_NAME = "_t";
|
|
7562
7562
|
var CONTEXT_NAME = "ctx";
|
|
@@ -7802,7 +7802,7 @@ function getInstructionStatements(instructions) {
|
|
|
7802
7802
|
return statements;
|
|
7803
7803
|
}
|
|
7804
7804
|
|
|
7805
|
-
// bazel-out/
|
|
7805
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
7806
7806
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
7807
7807
|
let result = null;
|
|
7808
7808
|
const factoryMeta = {
|
|
@@ -7887,7 +7887,7 @@ function createFactoryFunction(type) {
|
|
|
7887
7887
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
7888
7888
|
}
|
|
7889
7889
|
|
|
7890
|
-
// bazel-out/
|
|
7890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
7891
7891
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
7892
7892
|
/^\s*$/,
|
|
7893
7893
|
/[<>]/,
|
|
@@ -7909,7 +7909,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
7909
7909
|
}
|
|
7910
7910
|
}
|
|
7911
7911
|
|
|
7912
|
-
// bazel-out/
|
|
7912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
7913
7913
|
var InterpolationConfig = class {
|
|
7914
7914
|
static fromArray(markers) {
|
|
7915
7915
|
if (!markers) {
|
|
@@ -7926,7 +7926,7 @@ var InterpolationConfig = class {
|
|
|
7926
7926
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
7927
7927
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
7928
7928
|
|
|
7929
|
-
// bazel-out/
|
|
7929
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
7930
7930
|
var $EOF = 0;
|
|
7931
7931
|
var $BSPACE = 8;
|
|
7932
7932
|
var $TAB = 9;
|
|
@@ -8008,7 +8008,7 @@ function isQuote(code) {
|
|
|
8008
8008
|
return code === $SQ || code === $DQ || code === $BT;
|
|
8009
8009
|
}
|
|
8010
8010
|
|
|
8011
|
-
// bazel-out/
|
|
8011
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
8012
8012
|
var ParseLocation = class {
|
|
8013
8013
|
constructor(file, offset, line, col) {
|
|
8014
8014
|
this.file = file;
|
|
@@ -8155,7 +8155,7 @@ function sanitizeIdentifier(name) {
|
|
|
8155
8155
|
return name.replace(/\W/g, "_");
|
|
8156
8156
|
}
|
|
8157
8157
|
|
|
8158
|
-
// bazel-out/
|
|
8158
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
8159
8159
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
8160
8160
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
8161
8161
|
constructor() {
|
|
@@ -8248,7 +8248,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
8248
8248
|
}
|
|
8249
8249
|
};
|
|
8250
8250
|
|
|
8251
|
-
// bazel-out/
|
|
8251
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
8252
8252
|
var policy;
|
|
8253
8253
|
function getPolicy() {
|
|
8254
8254
|
if (policy === void 0) {
|
|
@@ -8286,7 +8286,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
8286
8286
|
return fn2.bind(_global);
|
|
8287
8287
|
}
|
|
8288
8288
|
|
|
8289
|
-
// bazel-out/
|
|
8289
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
8290
8290
|
var JitEvaluator = class {
|
|
8291
8291
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
8292
8292
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -8377,7 +8377,7 @@ function isUseStrictStatement(statement) {
|
|
|
8377
8377
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
8378
8378
|
}
|
|
8379
8379
|
|
|
8380
|
-
// bazel-out/
|
|
8380
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
8381
8381
|
function compileInjector(meta) {
|
|
8382
8382
|
const definitionMap = new DefinitionMap();
|
|
8383
8383
|
if (meta.providers !== null) {
|
|
@@ -8394,7 +8394,7 @@ function createInjectorType(meta) {
|
|
|
8394
8394
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
8395
8395
|
}
|
|
8396
8396
|
|
|
8397
|
-
// bazel-out/
|
|
8397
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
8398
8398
|
var R3JitReflector = class {
|
|
8399
8399
|
constructor(context) {
|
|
8400
8400
|
this.context = context;
|
|
@@ -8410,7 +8410,7 @@ var R3JitReflector = class {
|
|
|
8410
8410
|
}
|
|
8411
8411
|
};
|
|
8412
8412
|
|
|
8413
|
-
// bazel-out/
|
|
8413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
8414
8414
|
var R3SelectorScopeMode;
|
|
8415
8415
|
(function(R3SelectorScopeMode2) {
|
|
8416
8416
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -8551,7 +8551,7 @@ function tupleOfTypes(types) {
|
|
|
8551
8551
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
8552
8552
|
}
|
|
8553
8553
|
|
|
8554
|
-
// bazel-out/
|
|
8554
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
8555
8555
|
function compilePipeFromMetadata(metadata) {
|
|
8556
8556
|
const definitionMapValues = [];
|
|
8557
8557
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -8572,7 +8572,7 @@ function createPipeType(metadata) {
|
|
|
8572
8572
|
]));
|
|
8573
8573
|
}
|
|
8574
8574
|
|
|
8575
|
-
// bazel-out/
|
|
8575
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
8576
8576
|
var R3TemplateDependencyKind;
|
|
8577
8577
|
(function(R3TemplateDependencyKind2) {
|
|
8578
8578
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -8580,7 +8580,7 @@ var R3TemplateDependencyKind;
|
|
|
8580
8580
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
8581
8581
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
8582
8582
|
|
|
8583
|
-
// bazel-out/
|
|
8583
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
8584
8584
|
var ParserError = class {
|
|
8585
8585
|
constructor(message, input, errLocation, ctxLocation) {
|
|
8586
8586
|
this.input = input;
|
|
@@ -9247,7 +9247,7 @@ var BoundElementProperty = class {
|
|
|
9247
9247
|
}
|
|
9248
9248
|
};
|
|
9249
9249
|
|
|
9250
|
-
// bazel-out/
|
|
9250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
9251
9251
|
var _EventHandlerVars = class {
|
|
9252
9252
|
};
|
|
9253
9253
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -9938,7 +9938,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
9938
9938
|
}
|
|
9939
9939
|
};
|
|
9940
9940
|
|
|
9941
|
-
// bazel-out/
|
|
9941
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
9942
9942
|
var _SECURITY_SCHEMA;
|
|
9943
9943
|
function SECURITY_SCHEMA() {
|
|
9944
9944
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -9996,7 +9996,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
9996
9996
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
9997
9997
|
}
|
|
9998
9998
|
|
|
9999
|
-
// bazel-out/
|
|
9999
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
10000
10000
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
10001
10001
|
"inherit",
|
|
10002
10002
|
"initial",
|
|
@@ -10468,7 +10468,7 @@ function repeatGroups(groups, multiples) {
|
|
|
10468
10468
|
}
|
|
10469
10469
|
}
|
|
10470
10470
|
|
|
10471
|
-
// bazel-out/
|
|
10471
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
10472
10472
|
var OpKind;
|
|
10473
10473
|
(function(OpKind2) {
|
|
10474
10474
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -10622,7 +10622,7 @@ var TemplateKind;
|
|
|
10622
10622
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
10623
10623
|
})(TemplateKind || (TemplateKind = {}));
|
|
10624
10624
|
|
|
10625
|
-
// bazel-out/
|
|
10625
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
10626
10626
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
10627
10627
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
10628
10628
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -10650,7 +10650,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
10650
10650
|
return expr[UsesVarOffset] === true;
|
|
10651
10651
|
}
|
|
10652
10652
|
|
|
10653
|
-
// bazel-out/
|
|
10653
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
10654
10654
|
function createStatementOp(statement) {
|
|
10655
10655
|
return __spreadValues({
|
|
10656
10656
|
kind: OpKind.Statement,
|
|
@@ -10672,7 +10672,7 @@ var NEW_OP = {
|
|
|
10672
10672
|
next: null
|
|
10673
10673
|
};
|
|
10674
10674
|
|
|
10675
|
-
// bazel-out/
|
|
10675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
10676
10676
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
10677
10677
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
10678
10678
|
kind: OpKind.InterpolateText,
|
|
@@ -10853,7 +10853,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
10853
10853
|
}, NEW_OP);
|
|
10854
10854
|
}
|
|
10855
10855
|
|
|
10856
|
-
// bazel-out/
|
|
10856
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
10857
10857
|
var _a;
|
|
10858
10858
|
var _b;
|
|
10859
10859
|
var _c;
|
|
@@ -11715,7 +11715,7 @@ function isStringLiteral(expr) {
|
|
|
11715
11715
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
11716
11716
|
}
|
|
11717
11717
|
|
|
11718
|
-
// bazel-out/
|
|
11718
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
11719
11719
|
var _OpList = class {
|
|
11720
11720
|
constructor() {
|
|
11721
11721
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -11906,14 +11906,14 @@ var OpList = _OpList;
|
|
|
11906
11906
|
_OpList.nextListId = 0;
|
|
11907
11907
|
})();
|
|
11908
11908
|
|
|
11909
|
-
// bazel-out/
|
|
11909
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
11910
11910
|
var SlotHandle = class {
|
|
11911
11911
|
constructor() {
|
|
11912
11912
|
this.slot = null;
|
|
11913
11913
|
}
|
|
11914
11914
|
};
|
|
11915
11915
|
|
|
11916
|
-
// bazel-out/
|
|
11916
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
11917
11917
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
11918
11918
|
OpKind.Element,
|
|
11919
11919
|
OpKind.ElementStart,
|
|
@@ -12214,7 +12214,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
12214
12214
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
12215
12215
|
}
|
|
12216
12216
|
|
|
12217
|
-
// bazel-out/
|
|
12217
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
12218
12218
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
12219
12219
|
return __spreadValues(__spreadValues({
|
|
12220
12220
|
kind: OpKind.HostProperty,
|
|
@@ -12228,10 +12228,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
12228
12228
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
12229
12229
|
}
|
|
12230
12230
|
|
|
12231
|
-
// bazel-out/
|
|
12231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
12232
12232
|
var CTX_REF = "CTX_REF_MARKER";
|
|
12233
12233
|
|
|
12234
|
-
// bazel-out/
|
|
12234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
12235
12235
|
var CompilationJobKind;
|
|
12236
12236
|
(function(CompilationJobKind2) {
|
|
12237
12237
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -12339,7 +12339,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
12339
12339
|
}
|
|
12340
12340
|
};
|
|
12341
12341
|
|
|
12342
|
-
// bazel-out/
|
|
12342
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
12343
12343
|
function deleteAnyCasts(job) {
|
|
12344
12344
|
for (const unit of job.units) {
|
|
12345
12345
|
for (const op of unit.ops()) {
|
|
@@ -12357,7 +12357,7 @@ function removeAnys(e) {
|
|
|
12357
12357
|
return e;
|
|
12358
12358
|
}
|
|
12359
12359
|
|
|
12360
|
-
// bazel-out/
|
|
12360
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
12361
12361
|
function applyI18nExpressions(job) {
|
|
12362
12362
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
12363
12363
|
for (const unit of job.units) {
|
|
@@ -12400,7 +12400,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
12400
12400
|
return false;
|
|
12401
12401
|
}
|
|
12402
12402
|
|
|
12403
|
-
// bazel-out/
|
|
12403
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
12404
12404
|
function assignI18nSlotDependencies(job) {
|
|
12405
12405
|
for (const unit of job.units) {
|
|
12406
12406
|
let updateOp = unit.update.head;
|
|
@@ -12445,7 +12445,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
12445
12445
|
}
|
|
12446
12446
|
}
|
|
12447
12447
|
|
|
12448
|
-
// bazel-out/
|
|
12448
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
12449
12449
|
function createOpXrefMap(unit) {
|
|
12450
12450
|
const map = /* @__PURE__ */ new Map();
|
|
12451
12451
|
for (const op of unit.create) {
|
|
@@ -12460,7 +12460,7 @@ function createOpXrefMap(unit) {
|
|
|
12460
12460
|
return map;
|
|
12461
12461
|
}
|
|
12462
12462
|
|
|
12463
|
-
// bazel-out/
|
|
12463
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
12464
12464
|
function extractAttributes(job) {
|
|
12465
12465
|
for (const unit of job.units) {
|
|
12466
12466
|
const elements = createOpXrefMap(unit);
|
|
@@ -12589,7 +12589,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
12589
12589
|
}
|
|
12590
12590
|
}
|
|
12591
12591
|
|
|
12592
|
-
// bazel-out/
|
|
12592
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
12593
12593
|
function lookupElement2(elements, xref) {
|
|
12594
12594
|
const el = elements.get(xref);
|
|
12595
12595
|
if (el === void 0) {
|
|
@@ -12646,7 +12646,7 @@ function specializeBindings(job) {
|
|
|
12646
12646
|
}
|
|
12647
12647
|
}
|
|
12648
12648
|
|
|
12649
|
-
// bazel-out/
|
|
12649
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
12650
12650
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
12651
12651
|
Identifiers.attribute,
|
|
12652
12652
|
Identifiers.classProp,
|
|
@@ -12714,7 +12714,7 @@ function chainOperationsInList(opList) {
|
|
|
12714
12714
|
}
|
|
12715
12715
|
}
|
|
12716
12716
|
|
|
12717
|
-
// bazel-out/
|
|
12717
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
12718
12718
|
function collapseSingletonInterpolations(job) {
|
|
12719
12719
|
for (const unit of job.units) {
|
|
12720
12720
|
for (const op of unit.update) {
|
|
@@ -12726,7 +12726,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
12726
12726
|
}
|
|
12727
12727
|
}
|
|
12728
12728
|
|
|
12729
|
-
// bazel-out/
|
|
12729
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
12730
12730
|
function generateConditionalExpressions(job) {
|
|
12731
12731
|
for (const unit of job.units) {
|
|
12732
12732
|
for (const op of unit.ops()) {
|
|
@@ -12763,7 +12763,7 @@ function generateConditionalExpressions(job) {
|
|
|
12763
12763
|
}
|
|
12764
12764
|
}
|
|
12765
12765
|
|
|
12766
|
-
// bazel-out/
|
|
12766
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
12767
12767
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
12768
12768
|
["&&", BinaryOperator.And],
|
|
12769
12769
|
[">", BinaryOperator.Bigger],
|
|
@@ -12814,7 +12814,7 @@ function literalOrArrayLiteral(value) {
|
|
|
12814
12814
|
return literal(value);
|
|
12815
12815
|
}
|
|
12816
12816
|
|
|
12817
|
-
// bazel-out/
|
|
12817
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
12818
12818
|
function collectElementConsts(job) {
|
|
12819
12819
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
12820
12820
|
for (const unit of job.units) {
|
|
@@ -12983,7 +12983,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
12983
12983
|
return literalArr(attrArray);
|
|
12984
12984
|
}
|
|
12985
12985
|
|
|
12986
|
-
// bazel-out/
|
|
12986
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
12987
12987
|
function convertI18nBindings(job) {
|
|
12988
12988
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
12989
12989
|
for (const unit of job.units) {
|
|
@@ -13024,7 +13024,7 @@ function convertI18nBindings(job) {
|
|
|
13024
13024
|
}
|
|
13025
13025
|
}
|
|
13026
13026
|
|
|
13027
|
-
// bazel-out/
|
|
13027
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
|
|
13028
13028
|
function createDeferDepsFns(job) {
|
|
13029
13029
|
var _a2;
|
|
13030
13030
|
for (const unit of job.units) {
|
|
@@ -13064,7 +13064,7 @@ function createDeferDepsFns(job) {
|
|
|
13064
13064
|
}
|
|
13065
13065
|
}
|
|
13066
13066
|
|
|
13067
|
-
// bazel-out/
|
|
13067
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
13068
13068
|
function createI18nContexts(job) {
|
|
13069
13069
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
13070
13070
|
for (const unit of job.units) {
|
|
@@ -13142,7 +13142,7 @@ function createI18nContexts(job) {
|
|
|
13142
13142
|
}
|
|
13143
13143
|
}
|
|
13144
13144
|
|
|
13145
|
-
// bazel-out/
|
|
13145
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
13146
13146
|
function deduplicateTextBindings(job) {
|
|
13147
13147
|
const seen = /* @__PURE__ */ new Map();
|
|
13148
13148
|
for (const unit of job.units) {
|
|
@@ -13164,7 +13164,7 @@ function deduplicateTextBindings(job) {
|
|
|
13164
13164
|
}
|
|
13165
13165
|
}
|
|
13166
13166
|
|
|
13167
|
-
// bazel-out/
|
|
13167
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
13168
13168
|
function configureDeferInstructions(job) {
|
|
13169
13169
|
for (const unit of job.units) {
|
|
13170
13170
|
for (const op of unit.create) {
|
|
@@ -13181,7 +13181,7 @@ function configureDeferInstructions(job) {
|
|
|
13181
13181
|
}
|
|
13182
13182
|
}
|
|
13183
13183
|
|
|
13184
|
-
// bazel-out/
|
|
13184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
13185
13185
|
function resolveDeferTargetNames(job) {
|
|
13186
13186
|
const scopes = /* @__PURE__ */ new Map();
|
|
13187
13187
|
function getScopeForView2(view) {
|
|
@@ -13275,7 +13275,7 @@ var Scope = class {
|
|
|
13275
13275
|
}
|
|
13276
13276
|
};
|
|
13277
13277
|
|
|
13278
|
-
// bazel-out/
|
|
13278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
13279
13279
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
13280
13280
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
13281
13281
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -13302,7 +13302,7 @@ function collapseEmptyInstructions(job) {
|
|
|
13302
13302
|
}
|
|
13303
13303
|
}
|
|
13304
13304
|
|
|
13305
|
-
// bazel-out/
|
|
13305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
13306
13306
|
function expandSafeReads(job) {
|
|
13307
13307
|
for (const unit of job.units) {
|
|
13308
13308
|
for (const op of unit.ops()) {
|
|
@@ -13438,7 +13438,7 @@ function ternaryTransform(e) {
|
|
|
13438
13438
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
13439
13439
|
}
|
|
13440
13440
|
|
|
13441
|
-
// bazel-out/
|
|
13441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
13442
13442
|
var ESCAPE = "\uFFFD";
|
|
13443
13443
|
var ELEMENT_MARKER = "#";
|
|
13444
13444
|
var TEMPLATE_MARKER = "*";
|
|
@@ -13574,7 +13574,7 @@ function formatValue(value) {
|
|
|
13574
13574
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
13575
13575
|
}
|
|
13576
13576
|
|
|
13577
|
-
// bazel-out/
|
|
13577
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
13578
13578
|
function generateAdvance(job) {
|
|
13579
13579
|
for (const unit of job.units) {
|
|
13580
13580
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -13606,7 +13606,7 @@ function generateAdvance(job) {
|
|
|
13606
13606
|
}
|
|
13607
13607
|
}
|
|
13608
13608
|
|
|
13609
|
-
// bazel-out/
|
|
13609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
13610
13610
|
function generateProjectionDefs(job) {
|
|
13611
13611
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
13612
13612
|
const selectors = [];
|
|
@@ -13630,7 +13630,7 @@ function generateProjectionDefs(job) {
|
|
|
13630
13630
|
}
|
|
13631
13631
|
}
|
|
13632
13632
|
|
|
13633
|
-
// bazel-out/
|
|
13633
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
13634
13634
|
function generateVariables(job) {
|
|
13635
13635
|
recursivelyProcessView(job.root, null);
|
|
13636
13636
|
}
|
|
@@ -13724,7 +13724,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
13724
13724
|
return newOps;
|
|
13725
13725
|
}
|
|
13726
13726
|
|
|
13727
|
-
// bazel-out/
|
|
13727
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
13728
13728
|
function collectConstExpressions(job) {
|
|
13729
13729
|
for (const unit of job.units) {
|
|
13730
13730
|
for (const op of unit.ops()) {
|
|
@@ -13738,7 +13738,7 @@ function collectConstExpressions(job) {
|
|
|
13738
13738
|
}
|
|
13739
13739
|
}
|
|
13740
13740
|
|
|
13741
|
-
// bazel-out/
|
|
13741
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
13742
13742
|
var STYLE_DOT = "style.";
|
|
13743
13743
|
var CLASS_DOT = "class.";
|
|
13744
13744
|
var STYLE_BANG = "style!";
|
|
@@ -13796,7 +13796,7 @@ function parseProperty(name) {
|
|
|
13796
13796
|
return { property: property2, suffix };
|
|
13797
13797
|
}
|
|
13798
13798
|
|
|
13799
|
-
// bazel-out/
|
|
13799
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
13800
13800
|
function mapLiteral(obj, quoted = false) {
|
|
13801
13801
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
13802
13802
|
key,
|
|
@@ -13805,7 +13805,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
13805
13805
|
})));
|
|
13806
13806
|
}
|
|
13807
13807
|
|
|
13808
|
-
// bazel-out/
|
|
13808
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
13809
13809
|
var IcuSerializerVisitor = class {
|
|
13810
13810
|
visitText(text2) {
|
|
13811
13811
|
return text2.value;
|
|
@@ -13839,7 +13839,7 @@ function serializeIcuNode(icu) {
|
|
|
13839
13839
|
return icu.visit(serializer);
|
|
13840
13840
|
}
|
|
13841
13841
|
|
|
13842
|
-
// bazel-out/
|
|
13842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
13843
13843
|
var TokenType;
|
|
13844
13844
|
(function(TokenType2) {
|
|
13845
13845
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -14200,7 +14200,7 @@ function parseIntAutoRadix(text2) {
|
|
|
14200
14200
|
return result;
|
|
14201
14201
|
}
|
|
14202
14202
|
|
|
14203
|
-
// bazel-out/
|
|
14203
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
14204
14204
|
var SplitInterpolation = class {
|
|
14205
14205
|
constructor(strings, expressions, offsets) {
|
|
14206
14206
|
this.strings = strings;
|
|
@@ -15082,7 +15082,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
15082
15082
|
return offsetMap;
|
|
15083
15083
|
}
|
|
15084
15084
|
|
|
15085
|
-
// bazel-out/
|
|
15085
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
15086
15086
|
var NodeWithI18n = class {
|
|
15087
15087
|
constructor(sourceSpan, i18n2) {
|
|
15088
15088
|
this.sourceSpan = sourceSpan;
|
|
@@ -15193,11 +15193,11 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
15193
15193
|
return result;
|
|
15194
15194
|
}
|
|
15195
15195
|
|
|
15196
|
-
// bazel-out/
|
|
15196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
15197
15197
|
var ElementSchemaRegistry = class {
|
|
15198
15198
|
};
|
|
15199
15199
|
|
|
15200
|
-
// bazel-out/
|
|
15200
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
15201
15201
|
var BOOLEAN = "boolean";
|
|
15202
15202
|
var NUMBER = "number";
|
|
15203
15203
|
var STRING = "string";
|
|
@@ -15580,7 +15580,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
15580
15580
|
}
|
|
15581
15581
|
}
|
|
15582
15582
|
|
|
15583
|
-
// bazel-out/
|
|
15583
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
15584
15584
|
var HtmlTagDefinition = class {
|
|
15585
15585
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
15586
15586
|
this.closedByChildren = {};
|
|
@@ -15698,7 +15698,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
15698
15698
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
15699
15699
|
}
|
|
15700
15700
|
|
|
15701
|
-
// bazel-out/
|
|
15701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
15702
15702
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
15703
15703
|
"A": "LINK",
|
|
15704
15704
|
"B": "BOLD_TEXT",
|
|
@@ -15820,7 +15820,7 @@ var PlaceholderRegistry = class {
|
|
|
15820
15820
|
}
|
|
15821
15821
|
};
|
|
15822
15822
|
|
|
15823
|
-
// bazel-out/
|
|
15823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
15824
15824
|
var _expParser = new Parser(new Lexer());
|
|
15825
15825
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
15826
15826
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -15999,14 +15999,14 @@ function extractPlaceholderName(input) {
|
|
|
15999
15999
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
16000
16000
|
}
|
|
16001
16001
|
|
|
16002
|
-
// bazel-out/
|
|
16002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
16003
16003
|
var I18nError = class extends ParseError {
|
|
16004
16004
|
constructor(span, msg) {
|
|
16005
16005
|
super(span, msg);
|
|
16006
16006
|
}
|
|
16007
16007
|
};
|
|
16008
16008
|
|
|
16009
|
-
// bazel-out/
|
|
16009
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
16010
16010
|
var NAMED_ENTITIES = {
|
|
16011
16011
|
"AElig": "\xC6",
|
|
16012
16012
|
"AMP": "&",
|
|
@@ -18137,7 +18137,7 @@ var NAMED_ENTITIES = {
|
|
|
18137
18137
|
var NGSP_UNICODE = "\uE500";
|
|
18138
18138
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
18139
18139
|
|
|
18140
|
-
// bazel-out/
|
|
18140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
18141
18141
|
var TokenError = class extends ParseError {
|
|
18142
18142
|
constructor(errorMsg, tokenType, span) {
|
|
18143
18143
|
super(span, errorMsg);
|
|
@@ -19058,7 +19058,7 @@ var CursorError = class {
|
|
|
19058
19058
|
}
|
|
19059
19059
|
};
|
|
19060
19060
|
|
|
19061
|
-
// bazel-out/
|
|
19061
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
19062
19062
|
var TreeError = class extends ParseError {
|
|
19063
19063
|
static create(elementName, span, msg) {
|
|
19064
19064
|
return new TreeError(elementName, span, msg);
|
|
@@ -19442,7 +19442,7 @@ function decodeEntity(match, entity) {
|
|
|
19442
19442
|
return match;
|
|
19443
19443
|
}
|
|
19444
19444
|
|
|
19445
|
-
// bazel-out/
|
|
19445
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
19446
19446
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
19447
19447
|
"iframe|srcdoc",
|
|
19448
19448
|
"*|innerhtml",
|
|
@@ -19457,7 +19457,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
19457
19457
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
19458
19458
|
}
|
|
19459
19459
|
|
|
19460
|
-
// bazel-out/
|
|
19460
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
19461
19461
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
19462
19462
|
if (htmlNode instanceof NodeWithI18n) {
|
|
19463
19463
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -19614,7 +19614,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
19614
19614
|
return jsDocComment(tags);
|
|
19615
19615
|
}
|
|
19616
19616
|
|
|
19617
|
-
// bazel-out/
|
|
19617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
19618
19618
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
19619
19619
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
19620
19620
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -19665,7 +19665,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
19665
19665
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
19666
19666
|
}
|
|
19667
19667
|
|
|
19668
|
-
// bazel-out/
|
|
19668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
19669
19669
|
function createLocalizeStatements(variable2, message, params) {
|
|
19670
19670
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
19671
19671
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -19754,7 +19754,7 @@ function createEmptyMessagePart(location) {
|
|
|
19754
19754
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
19755
19755
|
}
|
|
19756
19756
|
|
|
19757
|
-
// bazel-out/
|
|
19757
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
19758
19758
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
19759
19759
|
var TRANSLATION_VAR_PREFIX2 = "i18n_";
|
|
19760
19760
|
var I18N_ICU_MAPPING_PREFIX2 = "I18N_EXP_";
|
|
@@ -19915,7 +19915,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
19915
19915
|
return variable(name);
|
|
19916
19916
|
}
|
|
19917
19917
|
|
|
19918
|
-
// bazel-out/
|
|
19918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
19919
19919
|
function convertI18nText(job) {
|
|
19920
19920
|
var _a2, _b2, _c2;
|
|
19921
19921
|
for (const unit of job.units) {
|
|
@@ -19985,7 +19985,7 @@ function convertI18nText(job) {
|
|
|
19985
19985
|
}
|
|
19986
19986
|
}
|
|
19987
19987
|
|
|
19988
|
-
// bazel-out/
|
|
19988
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
19989
19989
|
function liftLocalRefs(job) {
|
|
19990
19990
|
for (const unit of job.units) {
|
|
19991
19991
|
for (const op of unit.create) {
|
|
@@ -20015,7 +20015,7 @@ function serializeLocalRefs(refs) {
|
|
|
20015
20015
|
return literalArr(constRefs);
|
|
20016
20016
|
}
|
|
20017
20017
|
|
|
20018
|
-
// bazel-out/
|
|
20018
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
20019
20019
|
function emitNamespaceChanges(job) {
|
|
20020
20020
|
for (const unit of job.units) {
|
|
20021
20021
|
let activeNamespace = Namespace.HTML;
|
|
@@ -20031,7 +20031,7 @@ function emitNamespaceChanges(job) {
|
|
|
20031
20031
|
}
|
|
20032
20032
|
}
|
|
20033
20033
|
|
|
20034
|
-
// bazel-out/
|
|
20034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
20035
20035
|
function parse(value) {
|
|
20036
20036
|
const styles = [];
|
|
20037
20037
|
let i = 0;
|
|
@@ -20092,7 +20092,7 @@ function hyphenate2(value) {
|
|
|
20092
20092
|
}).toLowerCase();
|
|
20093
20093
|
}
|
|
20094
20094
|
|
|
20095
|
-
// bazel-out/
|
|
20095
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
20096
20096
|
function nameFunctionsAndVariables(job) {
|
|
20097
20097
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
20098
20098
|
}
|
|
@@ -20221,7 +20221,7 @@ function stripImportant(name) {
|
|
|
20221
20221
|
return name;
|
|
20222
20222
|
}
|
|
20223
20223
|
|
|
20224
|
-
// bazel-out/
|
|
20224
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
20225
20225
|
function mergeNextContextExpressions(job) {
|
|
20226
20226
|
for (const unit of job.units) {
|
|
20227
20227
|
for (const op of unit.create) {
|
|
@@ -20267,7 +20267,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
20267
20267
|
}
|
|
20268
20268
|
}
|
|
20269
20269
|
|
|
20270
|
-
// bazel-out/
|
|
20270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
20271
20271
|
var CONTAINER_TAG = "ng-container";
|
|
20272
20272
|
function generateNgContainerOps(job) {
|
|
20273
20273
|
for (const unit of job.units) {
|
|
@@ -20284,7 +20284,7 @@ function generateNgContainerOps(job) {
|
|
|
20284
20284
|
}
|
|
20285
20285
|
}
|
|
20286
20286
|
|
|
20287
|
-
// bazel-out/
|
|
20287
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
20288
20288
|
function lookupElement3(elements, xref) {
|
|
20289
20289
|
const el = elements.get(xref);
|
|
20290
20290
|
if (el === void 0) {
|
|
@@ -20314,7 +20314,7 @@ function disableBindings(job) {
|
|
|
20314
20314
|
}
|
|
20315
20315
|
}
|
|
20316
20316
|
|
|
20317
|
-
// bazel-out/
|
|
20317
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
20318
20318
|
function generateNullishCoalesceExpressions(job) {
|
|
20319
20319
|
for (const unit of job.units) {
|
|
20320
20320
|
for (const op of unit.ops()) {
|
|
@@ -20330,7 +20330,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
20330
20330
|
}
|
|
20331
20331
|
}
|
|
20332
20332
|
|
|
20333
|
-
// bazel-out/
|
|
20333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
20334
20334
|
function kindTest(kind) {
|
|
20335
20335
|
return (op) => op.kind === kind;
|
|
20336
20336
|
}
|
|
@@ -20420,7 +20420,7 @@ function keepLast(ops) {
|
|
|
20420
20420
|
return ops.slice(ops.length - 1);
|
|
20421
20421
|
}
|
|
20422
20422
|
|
|
20423
|
-
// bazel-out/
|
|
20423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
20424
20424
|
function parseExtractedStyles(job) {
|
|
20425
20425
|
const elements = /* @__PURE__ */ new Map();
|
|
20426
20426
|
for (const unit of job.units) {
|
|
@@ -20455,7 +20455,7 @@ function parseExtractedStyles(job) {
|
|
|
20455
20455
|
}
|
|
20456
20456
|
}
|
|
20457
20457
|
|
|
20458
|
-
// bazel-out/
|
|
20458
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
20459
20459
|
function removeContentSelectors(job) {
|
|
20460
20460
|
for (const unit of job.units) {
|
|
20461
20461
|
const elements = createOpXrefMap(unit);
|
|
@@ -20482,7 +20482,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
20482
20482
|
return el;
|
|
20483
20483
|
}
|
|
20484
20484
|
|
|
20485
|
-
// bazel-out/
|
|
20485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
20486
20486
|
function createPipes(job) {
|
|
20487
20487
|
for (const unit of job.units) {
|
|
20488
20488
|
processPipeBindingsInView(unit);
|
|
@@ -20530,7 +20530,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
20530
20530
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
20531
20531
|
}
|
|
20532
20532
|
|
|
20533
|
-
// bazel-out/
|
|
20533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
20534
20534
|
function createVariadicPipes(job) {
|
|
20535
20535
|
for (const unit of job.units) {
|
|
20536
20536
|
for (const op of unit.update) {
|
|
@@ -20547,7 +20547,7 @@ function createVariadicPipes(job) {
|
|
|
20547
20547
|
}
|
|
20548
20548
|
}
|
|
20549
20549
|
|
|
20550
|
-
// bazel-out/
|
|
20550
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
20551
20551
|
function propagateI18nBlocks(job) {
|
|
20552
20552
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
20553
20553
|
}
|
|
@@ -20601,7 +20601,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
20601
20601
|
}
|
|
20602
20602
|
}
|
|
20603
20603
|
|
|
20604
|
-
// bazel-out/
|
|
20604
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
20605
20605
|
function extractPureFunctions(job) {
|
|
20606
20606
|
for (const view of job.units) {
|
|
20607
20607
|
for (const op of view.ops()) {
|
|
@@ -20643,7 +20643,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
20643
20643
|
}
|
|
20644
20644
|
};
|
|
20645
20645
|
|
|
20646
|
-
// bazel-out/
|
|
20646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
20647
20647
|
function generatePureLiteralStructures(job) {
|
|
20648
20648
|
for (const unit of job.units) {
|
|
20649
20649
|
for (const op of unit.update) {
|
|
@@ -20690,7 +20690,7 @@ function transformLiteralMap(expr) {
|
|
|
20690
20690
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
20691
20691
|
}
|
|
20692
20692
|
|
|
20693
|
-
// bazel-out/
|
|
20693
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
20694
20694
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
20695
20695
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
20696
20696
|
}
|
|
@@ -21225,7 +21225,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
21225
21225
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
21226
21226
|
}
|
|
21227
21227
|
|
|
21228
|
-
// bazel-out/
|
|
21228
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
21229
21229
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
21230
21230
|
["window", Identifiers.resolveWindow],
|
|
21231
21231
|
["document", Identifiers.resolveDocument],
|
|
@@ -21566,7 +21566,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
21566
21566
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
21567
21567
|
}
|
|
21568
21568
|
|
|
21569
|
-
// bazel-out/
|
|
21569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
21570
21570
|
function removeEmptyBindings(job) {
|
|
21571
21571
|
for (const unit of job.units) {
|
|
21572
21572
|
for (const op of unit.update) {
|
|
@@ -21587,7 +21587,7 @@ function removeEmptyBindings(job) {
|
|
|
21587
21587
|
}
|
|
21588
21588
|
}
|
|
21589
21589
|
|
|
21590
|
-
// bazel-out/
|
|
21590
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
21591
21591
|
function removeI18nContexts(job) {
|
|
21592
21592
|
for (const unit of job.units) {
|
|
21593
21593
|
for (const op of unit.create) {
|
|
@@ -21603,7 +21603,7 @@ function removeI18nContexts(job) {
|
|
|
21603
21603
|
}
|
|
21604
21604
|
}
|
|
21605
21605
|
|
|
21606
|
-
// bazel-out/
|
|
21606
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
21607
21607
|
function removeUnusedI18nAttributesOps(job) {
|
|
21608
21608
|
for (const unit of job.units) {
|
|
21609
21609
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -21625,7 +21625,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
21625
21625
|
}
|
|
21626
21626
|
}
|
|
21627
21627
|
|
|
21628
|
-
// bazel-out/
|
|
21628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
21629
21629
|
function resolveContexts(job) {
|
|
21630
21630
|
for (const unit of job.units) {
|
|
21631
21631
|
processLexicalScope(unit, unit.create);
|
|
@@ -21667,7 +21667,7 @@ function processLexicalScope(view, ops) {
|
|
|
21667
21667
|
}
|
|
21668
21668
|
}
|
|
21669
21669
|
|
|
21670
|
-
// bazel-out/
|
|
21670
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
21671
21671
|
function resolveDollarEvent(job) {
|
|
21672
21672
|
for (const unit of job.units) {
|
|
21673
21673
|
transformDollarEvent(unit.create);
|
|
@@ -21690,7 +21690,7 @@ function transformDollarEvent(ops) {
|
|
|
21690
21690
|
}
|
|
21691
21691
|
}
|
|
21692
21692
|
|
|
21693
|
-
// bazel-out/
|
|
21693
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
21694
21694
|
function resolveI18nElementPlaceholders(job) {
|
|
21695
21695
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
21696
21696
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -21869,7 +21869,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
21869
21869
|
params.set(placeholder, values);
|
|
21870
21870
|
}
|
|
21871
21871
|
|
|
21872
|
-
// bazel-out/
|
|
21872
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
21873
21873
|
function resolveI18nExpressionPlaceholders(job) {
|
|
21874
21874
|
var _a2;
|
|
21875
21875
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -21922,7 +21922,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
21922
21922
|
}
|
|
21923
21923
|
}
|
|
21924
21924
|
|
|
21925
|
-
// bazel-out/
|
|
21925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
21926
21926
|
function resolveNames(job) {
|
|
21927
21927
|
for (const unit of job.units) {
|
|
21928
21928
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -21987,7 +21987,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
21987
21987
|
}
|
|
21988
21988
|
}
|
|
21989
21989
|
|
|
21990
|
-
// bazel-out/
|
|
21990
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
21991
21991
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
21992
21992
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
21993
21993
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -22057,7 +22057,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
22057
22057
|
return securityContext;
|
|
22058
22058
|
}
|
|
22059
22059
|
|
|
22060
|
-
// bazel-out/
|
|
22060
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
22061
22061
|
function transformTwoWayBindingSet(job) {
|
|
22062
22062
|
for (const unit of job.units) {
|
|
22063
22063
|
for (const op of unit.create) {
|
|
@@ -22107,7 +22107,7 @@ function wrapAction(target, value) {
|
|
|
22107
22107
|
throw new Error(`Unsupported expression in two-way action binding.`);
|
|
22108
22108
|
}
|
|
22109
22109
|
|
|
22110
|
-
// bazel-out/
|
|
22110
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
22111
22111
|
function saveAndRestoreView(job) {
|
|
22112
22112
|
for (const unit of job.units) {
|
|
22113
22113
|
unit.create.prepend([
|
|
@@ -22152,7 +22152,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
22152
22152
|
}
|
|
22153
22153
|
}
|
|
22154
22154
|
|
|
22155
|
-
// bazel-out/
|
|
22155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
22156
22156
|
function allocateSlots(job) {
|
|
22157
22157
|
const slotMap = /* @__PURE__ */ new Map();
|
|
22158
22158
|
for (const unit of job.units) {
|
|
@@ -22177,7 +22177,7 @@ function allocateSlots(job) {
|
|
|
22177
22177
|
}
|
|
22178
22178
|
}
|
|
22179
22179
|
|
|
22180
|
-
// bazel-out/
|
|
22180
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
22181
22181
|
function specializeStyleBindings(job) {
|
|
22182
22182
|
for (const unit of job.units) {
|
|
22183
22183
|
for (const op of unit.update) {
|
|
@@ -22207,7 +22207,7 @@ function specializeStyleBindings(job) {
|
|
|
22207
22207
|
}
|
|
22208
22208
|
}
|
|
22209
22209
|
|
|
22210
|
-
// bazel-out/
|
|
22210
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
22211
22211
|
function generateTemporaryVariables(job) {
|
|
22212
22212
|
for (const unit of job.units) {
|
|
22213
22213
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -22265,7 +22265,7 @@ function assignName(names, expr) {
|
|
|
22265
22265
|
expr.name = name;
|
|
22266
22266
|
}
|
|
22267
22267
|
|
|
22268
|
-
// bazel-out/
|
|
22268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
22269
22269
|
function generateTrackFns(job) {
|
|
22270
22270
|
for (const unit of job.units) {
|
|
22271
22271
|
for (const op of unit.create) {
|
|
@@ -22298,7 +22298,7 @@ function generateTrackFns(job) {
|
|
|
22298
22298
|
}
|
|
22299
22299
|
}
|
|
22300
22300
|
|
|
22301
|
-
// bazel-out/
|
|
22301
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
22302
22302
|
function optimizeTrackFns(job) {
|
|
22303
22303
|
for (const unit of job.units) {
|
|
22304
22304
|
for (const op of unit.create) {
|
|
@@ -22346,7 +22346,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
22346
22346
|
return true;
|
|
22347
22347
|
}
|
|
22348
22348
|
|
|
22349
|
-
// bazel-out/
|
|
22349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
22350
22350
|
function generateTrackVariables(job) {
|
|
22351
22351
|
for (const unit of job.units) {
|
|
22352
22352
|
for (const op of unit.create) {
|
|
@@ -22367,7 +22367,7 @@ function generateTrackVariables(job) {
|
|
|
22367
22367
|
}
|
|
22368
22368
|
}
|
|
22369
22369
|
|
|
22370
|
-
// bazel-out/
|
|
22370
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
22371
22371
|
function countVariables(job) {
|
|
22372
22372
|
for (const unit of job.units) {
|
|
22373
22373
|
let varCount = 0;
|
|
@@ -22477,7 +22477,7 @@ function isSingletonInterpolation(expr) {
|
|
|
22477
22477
|
return true;
|
|
22478
22478
|
}
|
|
22479
22479
|
|
|
22480
|
-
// bazel-out/
|
|
22480
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
22481
22481
|
function optimizeVariables(job) {
|
|
22482
22482
|
for (const unit of job.units) {
|
|
22483
22483
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -22726,7 +22726,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
22726
22726
|
}
|
|
22727
22727
|
}
|
|
22728
22728
|
|
|
22729
|
-
// bazel-out/
|
|
22729
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
22730
22730
|
function wrapI18nIcus(job) {
|
|
22731
22731
|
for (const unit of job.units) {
|
|
22732
22732
|
let currentI18nOp = null;
|
|
@@ -22756,7 +22756,7 @@ function wrapI18nIcus(job) {
|
|
|
22756
22756
|
}
|
|
22757
22757
|
}
|
|
22758
22758
|
|
|
22759
|
-
// bazel-out/
|
|
22759
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
22760
22760
|
var phases = [
|
|
22761
22761
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
22762
22762
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -22922,7 +22922,7 @@ function emitHostBindingFunction(job) {
|
|
|
22922
22922
|
);
|
|
22923
22923
|
}
|
|
22924
22924
|
|
|
22925
|
-
// bazel-out/
|
|
22925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
22926
22926
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
22927
22927
|
var domSchema = new DomElementSchemaRegistry();
|
|
22928
22928
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -23650,10 +23650,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
23650
23650
|
return null;
|
|
23651
23651
|
}
|
|
23652
23652
|
|
|
23653
|
-
// bazel-out/
|
|
23653
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
23654
23654
|
var USE_TEMPLATE_PIPELINE = false;
|
|
23655
23655
|
|
|
23656
|
-
// bazel-out/
|
|
23656
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
23657
23657
|
var HtmlParser = class extends Parser2 {
|
|
23658
23658
|
constructor() {
|
|
23659
23659
|
super(getHtmlTagDefinition);
|
|
@@ -23663,7 +23663,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
23663
23663
|
}
|
|
23664
23664
|
};
|
|
23665
23665
|
|
|
23666
|
-
// bazel-out/
|
|
23666
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
23667
23667
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
23668
23668
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
23669
23669
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -23729,7 +23729,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
23729
23729
|
return result;
|
|
23730
23730
|
}
|
|
23731
23731
|
|
|
23732
|
-
// bazel-out/
|
|
23732
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
23733
23733
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
23734
23734
|
var ATTRIBUTE_PREFIX = "attr";
|
|
23735
23735
|
var CLASS_PREFIX = "class";
|
|
@@ -24070,7 +24070,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
24070
24070
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
24071
24071
|
}
|
|
24072
24072
|
|
|
24073
|
-
// bazel-out/
|
|
24073
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
24074
24074
|
function isStyleUrlResolvable(url) {
|
|
24075
24075
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
24076
24076
|
return false;
|
|
@@ -24079,7 +24079,7 @@ function isStyleUrlResolvable(url) {
|
|
|
24079
24079
|
}
|
|
24080
24080
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
24081
24081
|
|
|
24082
|
-
// bazel-out/
|
|
24082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
24083
24083
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
24084
24084
|
var LINK_ELEMENT = "link";
|
|
24085
24085
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -24149,7 +24149,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
24149
24149
|
return selectAttr;
|
|
24150
24150
|
}
|
|
24151
24151
|
|
|
24152
|
-
// bazel-out/
|
|
24152
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
24153
24153
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
24154
24154
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
24155
24155
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -24463,7 +24463,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
24463
24463
|
return expression.slice(start, end);
|
|
24464
24464
|
}
|
|
24465
24465
|
|
|
24466
|
-
// bazel-out/
|
|
24466
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
24467
24467
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
24468
24468
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
24469
24469
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -24727,7 +24727,7 @@ function parseDeferredTime(value) {
|
|
|
24727
24727
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
24728
24728
|
}
|
|
24729
24729
|
|
|
24730
|
-
// bazel-out/
|
|
24730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
24731
24731
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
24732
24732
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
24733
24733
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -24862,7 +24862,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
24862
24862
|
return { triggers, prefetchTriggers };
|
|
24863
24863
|
}
|
|
24864
24864
|
|
|
24865
|
-
// bazel-out/
|
|
24865
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
24866
24866
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
24867
24867
|
var KW_BIND_IDX = 1;
|
|
24868
24868
|
var KW_LET_IDX = 2;
|
|
@@ -25293,7 +25293,7 @@ function textContents(node) {
|
|
|
25293
25293
|
}
|
|
25294
25294
|
}
|
|
25295
25295
|
|
|
25296
|
-
// bazel-out/
|
|
25296
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
25297
25297
|
var TagType;
|
|
25298
25298
|
(function(TagType2) {
|
|
25299
25299
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -25438,7 +25438,7 @@ function serializePlaceholderValue(value) {
|
|
|
25438
25438
|
}
|
|
25439
25439
|
}
|
|
25440
25440
|
|
|
25441
|
-
// bazel-out/
|
|
25441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
25442
25442
|
var IMPORTANT_FLAG = "!important";
|
|
25443
25443
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
25444
25444
|
var StylingBuilder = class {
|
|
@@ -25771,7 +25771,7 @@ function isEmptyExpression(ast) {
|
|
|
25771
25771
|
return ast instanceof EmptyExpr;
|
|
25772
25772
|
}
|
|
25773
25773
|
|
|
25774
|
-
// bazel-out/
|
|
25774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
25775
25775
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
25776
25776
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
25777
25777
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -27463,7 +27463,7 @@ function createClosureModeGuard2() {
|
|
|
27463
27463
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
|
|
27464
27464
|
}
|
|
27465
27465
|
|
|
27466
|
-
// bazel-out/
|
|
27466
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
27467
27467
|
function toQueryFlags(query) {
|
|
27468
27468
|
return (query.descendants ? 1 : 0) | (query.static ? 2 : 0) | (query.emitDistinctChangesOnly ? 4 : 0);
|
|
27469
27469
|
}
|
|
@@ -27580,7 +27580,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
27580
27580
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
27581
27581
|
}
|
|
27582
27582
|
|
|
27583
|
-
// bazel-out/
|
|
27583
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
27584
27584
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
27585
27585
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
27586
27586
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -28160,7 +28160,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
28160
28160
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
28161
28161
|
}
|
|
28162
28162
|
|
|
28163
|
-
// bazel-out/
|
|
28163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
28164
28164
|
var R3TargetBinder = class {
|
|
28165
28165
|
constructor(directiveMatcher) {
|
|
28166
28166
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -28786,11 +28786,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
28786
28786
|
return templateEntities;
|
|
28787
28787
|
}
|
|
28788
28788
|
|
|
28789
|
-
// bazel-out/
|
|
28789
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
28790
28790
|
var ResourceLoader = class {
|
|
28791
28791
|
};
|
|
28792
28792
|
|
|
28793
|
-
// bazel-out/
|
|
28793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
28794
28794
|
var SHOULD_USE_TEMPLATE_PIPELINE_FOR_JIT = true;
|
|
28795
28795
|
var CompilerFacadeImpl = class {
|
|
28796
28796
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
@@ -28999,6 +28999,7 @@ function convertQueryPredicate(predicate) {
|
|
|
28999
28999
|
return Array.isArray(predicate) ? predicate : createMayBeForwardRefExpression(new WrappedNodeExpr(predicate), 1);
|
|
29000
29000
|
}
|
|
29001
29001
|
function convertDirectiveFacadeToMetadata(facade) {
|
|
29002
|
+
var _a2;
|
|
29002
29003
|
const inputsFromMetadata = parseInputsArray(facade.inputs || []);
|
|
29003
29004
|
const outputsFromMetadata = parseMappingStringArray(facade.outputs || []);
|
|
29004
29005
|
const propMetadata = facade.propMetadata;
|
|
@@ -29021,6 +29022,19 @@ function convertDirectiveFacadeToMetadata(facade) {
|
|
|
29021
29022
|
});
|
|
29022
29023
|
}
|
|
29023
29024
|
}
|
|
29025
|
+
const hostDirectives = ((_a2 = facade.hostDirectives) == null ? void 0 : _a2.length) ? facade.hostDirectives.map((hostDirective) => {
|
|
29026
|
+
return typeof hostDirective === "function" ? {
|
|
29027
|
+
directive: wrapReference(hostDirective),
|
|
29028
|
+
inputs: null,
|
|
29029
|
+
outputs: null,
|
|
29030
|
+
isForwardReference: false
|
|
29031
|
+
} : {
|
|
29032
|
+
directive: wrapReference(hostDirective.directive),
|
|
29033
|
+
isForwardReference: false,
|
|
29034
|
+
inputs: hostDirective.inputs ? parseMappingStringArray(hostDirective.inputs) : null,
|
|
29035
|
+
outputs: hostDirective.outputs ? parseMappingStringArray(hostDirective.outputs) : null
|
|
29036
|
+
};
|
|
29037
|
+
}) : null;
|
|
29024
29038
|
return __spreadProps(__spreadValues({}, facade), {
|
|
29025
29039
|
typeArgumentCount: 0,
|
|
29026
29040
|
typeSourceSpan: facade.typeSourceSpan,
|
|
@@ -29035,31 +29049,37 @@ function convertDirectiveFacadeToMetadata(facade) {
|
|
|
29035
29049
|
providers: facade.providers != null ? new WrappedNodeExpr(facade.providers) : null,
|
|
29036
29050
|
viewQueries: facade.viewQueries.map(convertToR3QueryMetadata),
|
|
29037
29051
|
fullInheritance: false,
|
|
29038
|
-
hostDirectives
|
|
29052
|
+
hostDirectives
|
|
29039
29053
|
});
|
|
29040
29054
|
}
|
|
29041
29055
|
function convertDeclareDirectiveFacadeToMetadata(declaration, typeSourceSpan) {
|
|
29042
|
-
var _a2, _b2, _c2, _d2, _e2, _f2, _g, _h, _i;
|
|
29056
|
+
var _a2, _b2, _c2, _d2, _e2, _f2, _g, _h, _i, _j;
|
|
29057
|
+
const hostDirectives = ((_a2 = declaration.hostDirectives) == null ? void 0 : _a2.length) ? declaration.hostDirectives.map((dir) => ({
|
|
29058
|
+
directive: wrapReference(dir.directive),
|
|
29059
|
+
isForwardReference: false,
|
|
29060
|
+
inputs: dir.inputs ? getHostDirectiveBindingMapping(dir.inputs) : null,
|
|
29061
|
+
outputs: dir.outputs ? getHostDirectiveBindingMapping(dir.outputs) : null
|
|
29062
|
+
})) : null;
|
|
29043
29063
|
return {
|
|
29044
29064
|
name: declaration.type.name,
|
|
29045
29065
|
type: wrapReference(declaration.type),
|
|
29046
29066
|
typeSourceSpan,
|
|
29047
|
-
selector: (
|
|
29067
|
+
selector: (_b2 = declaration.selector) != null ? _b2 : null,
|
|
29048
29068
|
inputs: declaration.inputs ? inputsPartialMetadataToInputMetadata(declaration.inputs) : {},
|
|
29049
|
-
outputs: (
|
|
29069
|
+
outputs: (_c2 = declaration.outputs) != null ? _c2 : {},
|
|
29050
29070
|
host: convertHostDeclarationToMetadata(declaration.host),
|
|
29051
|
-
queries: ((
|
|
29052
|
-
viewQueries: ((
|
|
29071
|
+
queries: ((_d2 = declaration.queries) != null ? _d2 : []).map(convertQueryDeclarationToMetadata),
|
|
29072
|
+
viewQueries: ((_e2 = declaration.viewQueries) != null ? _e2 : []).map(convertQueryDeclarationToMetadata),
|
|
29053
29073
|
providers: declaration.providers !== void 0 ? new WrappedNodeExpr(declaration.providers) : null,
|
|
29054
|
-
exportAs: (
|
|
29055
|
-
usesInheritance: (
|
|
29056
|
-
lifecycle: { usesOnChanges: (
|
|
29074
|
+
exportAs: (_f2 = declaration.exportAs) != null ? _f2 : null,
|
|
29075
|
+
usesInheritance: (_g = declaration.usesInheritance) != null ? _g : false,
|
|
29076
|
+
lifecycle: { usesOnChanges: (_h = declaration.usesOnChanges) != null ? _h : false },
|
|
29057
29077
|
deps: null,
|
|
29058
29078
|
typeArgumentCount: 0,
|
|
29059
29079
|
fullInheritance: false,
|
|
29060
|
-
isStandalone: (
|
|
29061
|
-
isSignal: (
|
|
29062
|
-
hostDirectives
|
|
29080
|
+
isStandalone: (_i = declaration.isStandalone) != null ? _i : false,
|
|
29081
|
+
isSignal: (_j = declaration.isSignal) != null ? _j : false,
|
|
29082
|
+
hostDirectives
|
|
29063
29083
|
};
|
|
29064
29084
|
}
|
|
29065
29085
|
function convertHostDeclarationToMetadata(host = {}) {
|
|
@@ -29075,24 +29095,13 @@ function convertHostDeclarationToMetadata(host = {}) {
|
|
|
29075
29095
|
useTemplatePipeline: SHOULD_USE_TEMPLATE_PIPELINE_FOR_JIT
|
|
29076
29096
|
};
|
|
29077
29097
|
}
|
|
29078
|
-
function
|
|
29079
|
-
|
|
29080
|
-
|
|
29081
|
-
|
|
29082
|
-
|
|
29083
|
-
directive: wrapReference(hostDirective),
|
|
29084
|
-
inputs: null,
|
|
29085
|
-
outputs: null,
|
|
29086
|
-
isForwardReference: false
|
|
29087
|
-
} : {
|
|
29088
|
-
directive: wrapReference(hostDirective.directive),
|
|
29089
|
-
isForwardReference: false,
|
|
29090
|
-
inputs: hostDirective.inputs ? parseMappingStringArray(hostDirective.inputs) : null,
|
|
29091
|
-
outputs: hostDirective.outputs ? parseMappingStringArray(hostDirective.outputs) : null
|
|
29092
|
-
};
|
|
29093
|
-
});
|
|
29098
|
+
function getHostDirectiveBindingMapping(array) {
|
|
29099
|
+
let result = null;
|
|
29100
|
+
for (let i = 1; i < array.length; i += 2) {
|
|
29101
|
+
result = result || {};
|
|
29102
|
+
result[array[i - 1]] = array[i];
|
|
29094
29103
|
}
|
|
29095
|
-
return
|
|
29104
|
+
return result;
|
|
29096
29105
|
}
|
|
29097
29106
|
function convertOpaqueValuesToExpressions(obj) {
|
|
29098
29107
|
const result = {};
|
|
@@ -29371,10 +29380,10 @@ function publishFacade(global) {
|
|
|
29371
29380
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
29372
29381
|
}
|
|
29373
29382
|
|
|
29374
|
-
// bazel-out/
|
|
29375
|
-
var VERSION2 = new Version("17.3.
|
|
29383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
29384
|
+
var VERSION2 = new Version("17.3.12");
|
|
29376
29385
|
|
|
29377
|
-
// bazel-out/
|
|
29386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
29378
29387
|
var _I18N_ATTR = "i18n";
|
|
29379
29388
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
29380
29389
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -29683,7 +29692,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
29683
29692
|
return { meaning, description, id: id.trim() };
|
|
29684
29693
|
}
|
|
29685
29694
|
|
|
29686
|
-
// bazel-out/
|
|
29695
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
29687
29696
|
var XmlTagDefinition = class {
|
|
29688
29697
|
constructor() {
|
|
29689
29698
|
this.closedByParent = false;
|
|
@@ -29708,7 +29717,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
29708
29717
|
return _TAG_DEFINITION;
|
|
29709
29718
|
}
|
|
29710
29719
|
|
|
29711
|
-
// bazel-out/
|
|
29720
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
29712
29721
|
var XmlParser = class extends Parser2 {
|
|
29713
29722
|
constructor() {
|
|
29714
29723
|
super(getXmlTagDefinition);
|
|
@@ -29718,7 +29727,7 @@ var XmlParser = class extends Parser2 {
|
|
|
29718
29727
|
}
|
|
29719
29728
|
};
|
|
29720
29729
|
|
|
29721
|
-
// bazel-out/
|
|
29730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
29722
29731
|
var _VERSION = "1.2";
|
|
29723
29732
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
29724
29733
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -29972,7 +29981,7 @@ function getCtypeForTag(tag) {
|
|
|
29972
29981
|
}
|
|
29973
29982
|
}
|
|
29974
29983
|
|
|
29975
|
-
// bazel-out/
|
|
29984
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
29976
29985
|
var _VERSION2 = "2.0";
|
|
29977
29986
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
29978
29987
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -30288,7 +30297,7 @@ function getTypeForTag(tag) {
|
|
|
30288
30297
|
}
|
|
30289
30298
|
}
|
|
30290
30299
|
|
|
30291
|
-
// bazel-out/
|
|
30300
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
30292
30301
|
var MessageBundle = class {
|
|
30293
30302
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
30294
30303
|
this._htmlParser = _htmlParser;
|
|
@@ -30361,7 +30370,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
30361
30370
|
}
|
|
30362
30371
|
};
|
|
30363
30372
|
|
|
30364
|
-
// bazel-out/
|
|
30373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
30365
30374
|
var FactoryTarget2;
|
|
30366
30375
|
(function(FactoryTarget3) {
|
|
30367
30376
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -30371,7 +30380,7 @@ var FactoryTarget2;
|
|
|
30371
30380
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
30372
30381
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
30373
30382
|
|
|
30374
|
-
// bazel-out/
|
|
30383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
30375
30384
|
function compileClassMetadata(metadata) {
|
|
30376
30385
|
var _a2, _b2;
|
|
30377
30386
|
const fnCall = importExpr(Identifiers.setClassMetadata).callFn([
|
|
@@ -30413,7 +30422,7 @@ function compileComponentClassMetadata(metadata, deferrableTypes) {
|
|
|
30413
30422
|
return iife.callFn([]);
|
|
30414
30423
|
}
|
|
30415
30424
|
|
|
30416
|
-
// bazel-out/
|
|
30425
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
30417
30426
|
function compileClassDebugInfo(debugInfo) {
|
|
30418
30427
|
const debugInfoObject = {
|
|
30419
30428
|
className: debugInfo.className
|
|
@@ -30433,12 +30442,12 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
30433
30442
|
return iife.callFn([]);
|
|
30434
30443
|
}
|
|
30435
30444
|
|
|
30436
|
-
// bazel-out/
|
|
30445
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
30437
30446
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
30438
30447
|
function compileDeclareClassMetadata(metadata) {
|
|
30439
30448
|
const definitionMap = new DefinitionMap();
|
|
30440
30449
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
30441
|
-
definitionMap.set("version", literal("17.3.
|
|
30450
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30442
30451
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30443
30452
|
definitionMap.set("type", metadata.type);
|
|
30444
30453
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -30447,7 +30456,7 @@ function compileDeclareClassMetadata(metadata) {
|
|
|
30447
30456
|
return importExpr(Identifiers.declareClassMetadata).callFn([definitionMap.toLiteralMap()]);
|
|
30448
30457
|
}
|
|
30449
30458
|
|
|
30450
|
-
// bazel-out/
|
|
30459
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
30451
30460
|
function toOptionalLiteralArray(values, mapper) {
|
|
30452
30461
|
if (values === null || values.length === 0) {
|
|
30453
30462
|
return null;
|
|
@@ -30495,7 +30504,7 @@ function compileDependency(dep) {
|
|
|
30495
30504
|
return depMeta.toLiteralMap();
|
|
30496
30505
|
}
|
|
30497
30506
|
|
|
30498
|
-
// bazel-out/
|
|
30507
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
30499
30508
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
30500
30509
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
30501
30510
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -30507,7 +30516,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
30507
30516
|
const definitionMap = new DefinitionMap();
|
|
30508
30517
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
30509
30518
|
definitionMap.set("minVersion", literal(minVersion));
|
|
30510
|
-
definitionMap.set("version", literal("17.3.
|
|
30519
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30511
30520
|
definitionMap.set("type", meta.type.value);
|
|
30512
30521
|
if (meta.isStandalone) {
|
|
30513
30522
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -30667,7 +30676,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
30667
30676
|
}));
|
|
30668
30677
|
}
|
|
30669
30678
|
|
|
30670
|
-
// bazel-out/
|
|
30679
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
30671
30680
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
30672
30681
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
30673
30682
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -30801,12 +30810,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
30801
30810
|
}
|
|
30802
30811
|
};
|
|
30803
30812
|
|
|
30804
|
-
// bazel-out/
|
|
30813
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
30805
30814
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
30806
30815
|
function compileDeclareFactoryFunction(meta) {
|
|
30807
30816
|
const definitionMap = new DefinitionMap();
|
|
30808
30817
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
30809
|
-
definitionMap.set("version", literal("17.3.
|
|
30818
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30810
30819
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30811
30820
|
definitionMap.set("type", meta.type.value);
|
|
30812
30821
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -30818,7 +30827,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
30818
30827
|
};
|
|
30819
30828
|
}
|
|
30820
30829
|
|
|
30821
|
-
// bazel-out/
|
|
30830
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
30822
30831
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
30823
30832
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
30824
30833
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -30829,7 +30838,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
30829
30838
|
function createInjectableDefinitionMap(meta) {
|
|
30830
30839
|
const definitionMap = new DefinitionMap();
|
|
30831
30840
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
30832
|
-
definitionMap.set("version", literal("17.3.
|
|
30841
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30833
30842
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30834
30843
|
definitionMap.set("type", meta.type.value);
|
|
30835
30844
|
if (meta.providedIn !== void 0) {
|
|
@@ -30856,7 +30865,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
30856
30865
|
return definitionMap;
|
|
30857
30866
|
}
|
|
30858
30867
|
|
|
30859
|
-
// bazel-out/
|
|
30868
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
30860
30869
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
30861
30870
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
30862
30871
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -30867,7 +30876,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
30867
30876
|
function createInjectorDefinitionMap(meta) {
|
|
30868
30877
|
const definitionMap = new DefinitionMap();
|
|
30869
30878
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
30870
|
-
definitionMap.set("version", literal("17.3.
|
|
30879
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30871
30880
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30872
30881
|
definitionMap.set("type", meta.type.value);
|
|
30873
30882
|
definitionMap.set("providers", meta.providers);
|
|
@@ -30877,7 +30886,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
30877
30886
|
return definitionMap;
|
|
30878
30887
|
}
|
|
30879
30888
|
|
|
30880
|
-
// bazel-out/
|
|
30889
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
30881
30890
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
30882
30891
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
30883
30892
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -30891,7 +30900,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
30891
30900
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
30892
30901
|
}
|
|
30893
30902
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
30894
|
-
definitionMap.set("version", literal("17.3.
|
|
30903
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30895
30904
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30896
30905
|
definitionMap.set("type", meta.type.value);
|
|
30897
30906
|
if (meta.bootstrap.length > 0) {
|
|
@@ -30915,7 +30924,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
30915
30924
|
return definitionMap;
|
|
30916
30925
|
}
|
|
30917
30926
|
|
|
30918
|
-
// bazel-out/
|
|
30927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
30919
30928
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
30920
30929
|
function compileDeclarePipeFromMetadata(meta) {
|
|
30921
30930
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -30926,7 +30935,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
30926
30935
|
function createPipeDefinitionMap(meta) {
|
|
30927
30936
|
const definitionMap = new DefinitionMap();
|
|
30928
30937
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
30929
|
-
definitionMap.set("version", literal("17.3.
|
|
30938
|
+
definitionMap.set("version", literal("17.3.12"));
|
|
30930
30939
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
30931
30940
|
definitionMap.set("type", meta.type.value);
|
|
30932
30941
|
if (meta.isStandalone) {
|
|
@@ -30939,16 +30948,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
30939
30948
|
return definitionMap;
|
|
30940
30949
|
}
|
|
30941
30950
|
|
|
30942
|
-
// bazel-out/
|
|
30951
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
30943
30952
|
publishFacade(_global);
|
|
30944
30953
|
|
|
30945
|
-
// bazel-out/
|
|
30946
|
-
var VERSION3 = new Version("17.3.
|
|
30954
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
30955
|
+
var VERSION3 = new Version("17.3.12");
|
|
30947
30956
|
|
|
30948
|
-
// bazel-out/
|
|
30957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
30949
30958
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
30950
30959
|
|
|
30951
|
-
// bazel-out/
|
|
30960
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
30952
30961
|
var ErrorCode;
|
|
30953
30962
|
(function(ErrorCode2) {
|
|
30954
30963
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -31037,7 +31046,7 @@ var ErrorCode;
|
|
|
31037
31046
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
31038
31047
|
})(ErrorCode || (ErrorCode = {}));
|
|
31039
31048
|
|
|
31040
|
-
// bazel-out/
|
|
31049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
31041
31050
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
31042
31051
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
31043
31052
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -31049,15 +31058,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
31049
31058
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
31050
31059
|
]);
|
|
31051
31060
|
|
|
31052
|
-
// bazel-out/
|
|
31061
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
31053
31062
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
31054
31063
|
|
|
31055
|
-
// bazel-out/
|
|
31064
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
31056
31065
|
function ngErrorCode(code) {
|
|
31057
31066
|
return parseInt("-99" + code);
|
|
31058
31067
|
}
|
|
31059
31068
|
|
|
31060
|
-
// bazel-out/
|
|
31069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
31061
31070
|
var FatalDiagnosticError = class extends Error {
|
|
31062
31071
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
31063
31072
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -31119,10 +31128,10 @@ function isFatalDiagnosticError(err) {
|
|
|
31119
31128
|
return err._isFatalDiagnosticError === true;
|
|
31120
31129
|
}
|
|
31121
31130
|
|
|
31122
|
-
// bazel-out/
|
|
31131
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
31123
31132
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.io/errors";
|
|
31124
31133
|
|
|
31125
|
-
// bazel-out/
|
|
31134
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
31126
31135
|
var ExtendedTemplateDiagnosticName;
|
|
31127
31136
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
31128
31137
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -31137,7 +31146,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
31137
31146
|
ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
|
|
31138
31147
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
31139
31148
|
|
|
31140
|
-
// bazel-out/
|
|
31149
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
31141
31150
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
31142
31151
|
var TS = /\.tsx?$/i;
|
|
31143
31152
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -31238,7 +31247,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
31238
31247
|
return redirectInfo.unredirected;
|
|
31239
31248
|
}
|
|
31240
31249
|
|
|
31241
|
-
// bazel-out/
|
|
31250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
31242
31251
|
function findExportedNameOfNode(target, file, reflector) {
|
|
31243
31252
|
const exports = reflector.getExportsOfModule(file);
|
|
31244
31253
|
if (exports === null) {
|
|
@@ -31258,7 +31267,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
31258
31267
|
return foundExportName;
|
|
31259
31268
|
}
|
|
31260
31269
|
|
|
31261
|
-
// bazel-out/
|
|
31270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
31262
31271
|
var ImportFlags;
|
|
31263
31272
|
(function(ImportFlags2) {
|
|
31264
31273
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -31487,7 +31496,7 @@ var UnifiedModulesStrategy = class {
|
|
|
31487
31496
|
}
|
|
31488
31497
|
};
|
|
31489
31498
|
|
|
31490
|
-
// bazel-out/
|
|
31499
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
31491
31500
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
31492
31501
|
var UnifiedModulesAliasingHost = class {
|
|
31493
31502
|
constructor(unifiedModulesHost) {
|
|
@@ -31554,7 +31563,7 @@ var AliasStrategy = class {
|
|
|
31554
31563
|
}
|
|
31555
31564
|
};
|
|
31556
31565
|
|
|
31557
|
-
// bazel-out/
|
|
31566
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
31558
31567
|
function relativePathBetween(from, to) {
|
|
31559
31568
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
31560
31569
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -31563,7 +31572,7 @@ function normalizeSeparators2(path4) {
|
|
|
31563
31572
|
return path4.replace(/\\/g, "/");
|
|
31564
31573
|
}
|
|
31565
31574
|
|
|
31566
|
-
// bazel-out/
|
|
31575
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
31567
31576
|
var NoopImportRewriter = class {
|
|
31568
31577
|
rewriteSymbol(symbol, specifier) {
|
|
31569
31578
|
return symbol;
|
|
@@ -31616,7 +31625,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
31616
31625
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
31617
31626
|
}
|
|
31618
31627
|
|
|
31619
|
-
// bazel-out/
|
|
31628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
31620
31629
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
31621
31630
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
31622
31631
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -31651,7 +31660,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
31651
31660
|
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.");
|
|
31652
31661
|
}
|
|
31653
31662
|
|
|
31654
|
-
// bazel-out/
|
|
31663
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
31655
31664
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
31656
31665
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
31657
31666
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -31692,13 +31701,13 @@ var DefaultImportTracker = class {
|
|
|
31692
31701
|
}
|
|
31693
31702
|
};
|
|
31694
31703
|
|
|
31695
|
-
// bazel-out/
|
|
31704
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
31696
31705
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
31697
31706
|
|
|
31698
|
-
// bazel-out/
|
|
31707
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
31699
31708
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
31700
31709
|
|
|
31701
|
-
// bazel-out/
|
|
31710
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
31702
31711
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
31703
31712
|
function isDecoratorIdentifier(exp) {
|
|
31704
31713
|
return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
|
|
@@ -31721,7 +31730,7 @@ var ClassMemberAccessLevel;
|
|
|
31721
31730
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
31722
31731
|
var AmbientImport = {};
|
|
31723
31732
|
|
|
31724
|
-
// bazel-out/
|
|
31733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
31725
31734
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
31726
31735
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
31727
31736
|
var _a2, _b2;
|
|
@@ -31894,7 +31903,7 @@ function extractModuleName(node) {
|
|
|
31894
31903
|
return node.moduleSpecifier.text;
|
|
31895
31904
|
}
|
|
31896
31905
|
|
|
31897
|
-
// bazel-out/
|
|
31906
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
31898
31907
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
31899
31908
|
function isNamedClassDeclaration(node) {
|
|
31900
31909
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -31918,7 +31927,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
31918
31927
|
}
|
|
31919
31928
|
}
|
|
31920
31929
|
|
|
31921
|
-
// bazel-out/
|
|
31930
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
31922
31931
|
var TypeScriptReflectionHost = class {
|
|
31923
31932
|
constructor(checker, isLocalCompilation = false) {
|
|
31924
31933
|
this.checker = checker;
|
|
@@ -32405,7 +32414,7 @@ function getExportedName(decl, originalId) {
|
|
|
32405
32414
|
}
|
|
32406
32415
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
32407
32416
|
|
|
32408
|
-
// bazel-out/
|
|
32417
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
32409
32418
|
var AssumeEager = "AssumeEager";
|
|
32410
32419
|
var DeferredSymbolTracker = class {
|
|
32411
32420
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -32525,7 +32534,7 @@ var DeferredSymbolTracker = class {
|
|
|
32525
32534
|
}
|
|
32526
32535
|
};
|
|
32527
32536
|
|
|
32528
|
-
// bazel-out/
|
|
32537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
32529
32538
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
32530
32539
|
var ImportedSymbolsTracker = class {
|
|
32531
32540
|
constructor() {
|
|
@@ -32584,7 +32593,7 @@ var ImportedSymbolsTracker = class {
|
|
|
32584
32593
|
}
|
|
32585
32594
|
};
|
|
32586
32595
|
|
|
32587
|
-
// bazel-out/
|
|
32596
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
32588
32597
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
32589
32598
|
var LocalCompilationExtraImportsTracker = class {
|
|
32590
32599
|
constructor(typeChecker) {
|
|
@@ -32631,7 +32640,7 @@ function removeQuotations(s) {
|
|
|
32631
32640
|
return s.substring(1, s.length - 1).trim();
|
|
32632
32641
|
}
|
|
32633
32642
|
|
|
32634
|
-
// bazel-out/
|
|
32643
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
32635
32644
|
var Reference2 = class {
|
|
32636
32645
|
constructor(node, bestGuessOwningModule = null) {
|
|
32637
32646
|
this.node = node;
|
|
@@ -32700,7 +32709,7 @@ var Reference2 = class {
|
|
|
32700
32709
|
}
|
|
32701
32710
|
};
|
|
32702
32711
|
|
|
32703
|
-
// bazel-out/
|
|
32712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
32704
32713
|
var ModuleResolver = class {
|
|
32705
32714
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
32706
32715
|
this.program = program;
|
|
@@ -32717,16 +32726,16 @@ var ModuleResolver = class {
|
|
|
32717
32726
|
}
|
|
32718
32727
|
};
|
|
32719
32728
|
|
|
32720
|
-
// bazel-out/
|
|
32729
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
|
|
32721
32730
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
32722
32731
|
|
|
32723
|
-
// bazel-out/
|
|
32732
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
|
|
32724
32733
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
32725
32734
|
|
|
32726
|
-
// bazel-out/
|
|
32735
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
32727
32736
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
32728
32737
|
|
|
32729
|
-
// bazel-out/
|
|
32738
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
32730
32739
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
32731
32740
|
var CORE_MODULE2 = "@angular/core";
|
|
32732
32741
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -32981,7 +32990,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
32981
32990
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
32982
32991
|
}
|
|
32983
32992
|
|
|
32984
|
-
// bazel-out/
|
|
32993
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
32985
32994
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
32986
32995
|
const deps = [];
|
|
32987
32996
|
const errors = [];
|
|
@@ -33123,10 +33132,10 @@ function createUnsuitableInjectionTokenError(clazz, error2) {
|
|
|
33123
33132
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
33124
33133
|
}
|
|
33125
33134
|
|
|
33126
|
-
// bazel-out/
|
|
33135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
33127
33136
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
33128
33137
|
|
|
33129
|
-
// bazel-out/
|
|
33138
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
33130
33139
|
var MetaKind;
|
|
33131
33140
|
(function(MetaKind2) {
|
|
33132
33141
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -33139,10 +33148,10 @@ var MatchSource;
|
|
|
33139
33148
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
33140
33149
|
})(MatchSource || (MatchSource = {}));
|
|
33141
33150
|
|
|
33142
|
-
// bazel-out/
|
|
33151
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
33143
33152
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
33144
33153
|
|
|
33145
|
-
// bazel-out/
|
|
33154
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
33146
33155
|
var ClassPropertyMapping = class {
|
|
33147
33156
|
constructor(forwardMap) {
|
|
33148
33157
|
this.forwardMap = forwardMap;
|
|
@@ -33222,7 +33231,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
33222
33231
|
return reverseMap;
|
|
33223
33232
|
}
|
|
33224
33233
|
|
|
33225
|
-
// bazel-out/
|
|
33234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
33226
33235
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
33227
33236
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
33228
33237
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -33415,7 +33424,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
33415
33424
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
33416
33425
|
}
|
|
33417
33426
|
|
|
33418
|
-
// bazel-out/
|
|
33427
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
33419
33428
|
var DtsMetadataReader = class {
|
|
33420
33429
|
constructor(checker, reflector) {
|
|
33421
33430
|
this.checker = checker;
|
|
@@ -33598,7 +33607,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
33598
33607
|
return result.length > 0 ? result : null;
|
|
33599
33608
|
}
|
|
33600
33609
|
|
|
33601
|
-
// bazel-out/
|
|
33610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
33602
33611
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
33603
33612
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
33604
33613
|
if (topMeta === null) {
|
|
@@ -33661,7 +33670,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
33661
33670
|
});
|
|
33662
33671
|
}
|
|
33663
33672
|
|
|
33664
|
-
// bazel-out/
|
|
33673
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
33665
33674
|
var LocalMetadataRegistry = class {
|
|
33666
33675
|
constructor() {
|
|
33667
33676
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -33718,7 +33727,7 @@ var CompoundMetadataRegistry = class {
|
|
|
33718
33727
|
}
|
|
33719
33728
|
};
|
|
33720
33729
|
|
|
33721
|
-
// bazel-out/
|
|
33730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
33722
33731
|
var ResourceRegistry = class {
|
|
33723
33732
|
constructor() {
|
|
33724
33733
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -33783,7 +33792,7 @@ var ResourceRegistry = class {
|
|
|
33783
33792
|
}
|
|
33784
33793
|
};
|
|
33785
33794
|
|
|
33786
|
-
// bazel-out/
|
|
33795
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
33787
33796
|
var ExportedProviderStatusResolver = class {
|
|
33788
33797
|
constructor(metaReader) {
|
|
33789
33798
|
this.metaReader = metaReader;
|
|
@@ -33827,7 +33836,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
33827
33836
|
}
|
|
33828
33837
|
};
|
|
33829
33838
|
|
|
33830
|
-
// bazel-out/
|
|
33839
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
33831
33840
|
var EMPTY_ARRAY = [];
|
|
33832
33841
|
var HostDirectivesResolver = class {
|
|
33833
33842
|
constructor(metaReader) {
|
|
@@ -33892,10 +33901,10 @@ function resolveOutput(bindingName) {
|
|
|
33892
33901
|
return bindingName;
|
|
33893
33902
|
}
|
|
33894
33903
|
|
|
33895
|
-
// bazel-out/
|
|
33904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
33896
33905
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
33897
33906
|
|
|
33898
|
-
// bazel-out/
|
|
33907
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
33899
33908
|
var DynamicValue = class {
|
|
33900
33909
|
constructor(node, reason, code) {
|
|
33901
33910
|
this.node = node;
|
|
@@ -33985,7 +33994,7 @@ var DynamicValue = class {
|
|
|
33985
33994
|
}
|
|
33986
33995
|
};
|
|
33987
33996
|
|
|
33988
|
-
// bazel-out/
|
|
33997
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
33989
33998
|
var ResolvedModule = class {
|
|
33990
33999
|
constructor(exports, evaluate) {
|
|
33991
34000
|
this.exports = exports;
|
|
@@ -34015,7 +34024,7 @@ var EnumValue = class {
|
|
|
34015
34024
|
var KnownFn = class {
|
|
34016
34025
|
};
|
|
34017
34026
|
|
|
34018
|
-
// bazel-out/
|
|
34027
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
34019
34028
|
function describeResolvedType(value, maxDepth = 1) {
|
|
34020
34029
|
var _a2, _b2;
|
|
34021
34030
|
if (value === null) {
|
|
@@ -34144,10 +34153,10 @@ function getContainerNode(node) {
|
|
|
34144
34153
|
return node.getSourceFile();
|
|
34145
34154
|
}
|
|
34146
34155
|
|
|
34147
|
-
// bazel-out/
|
|
34156
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
34148
34157
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
34149
34158
|
|
|
34150
|
-
// bazel-out/
|
|
34159
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
34151
34160
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
34152
34161
|
constructor(lhs) {
|
|
34153
34162
|
super();
|
|
@@ -34199,14 +34208,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
34199
34208
|
}
|
|
34200
34209
|
};
|
|
34201
34210
|
|
|
34202
|
-
// bazel-out/
|
|
34211
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
34203
34212
|
var SyntheticValue = class {
|
|
34204
34213
|
constructor(value) {
|
|
34205
34214
|
this.value = value;
|
|
34206
34215
|
}
|
|
34207
34216
|
};
|
|
34208
34217
|
|
|
34209
|
-
// bazel-out/
|
|
34218
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
34210
34219
|
function literalBinaryOp(op) {
|
|
34211
34220
|
return { op, literal: true };
|
|
34212
34221
|
}
|
|
@@ -34781,7 +34790,7 @@ function owningModule(context, override = null) {
|
|
|
34781
34790
|
}
|
|
34782
34791
|
}
|
|
34783
34792
|
|
|
34784
|
-
// bazel-out/
|
|
34793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
34785
34794
|
var PartialEvaluator = class {
|
|
34786
34795
|
constructor(host, checker, dependencyTracker) {
|
|
34787
34796
|
this.host = host;
|
|
@@ -34801,7 +34810,7 @@ var PartialEvaluator = class {
|
|
|
34801
34810
|
}
|
|
34802
34811
|
};
|
|
34803
34812
|
|
|
34804
|
-
// bazel-out/
|
|
34813
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
34805
34814
|
var CompilationMode;
|
|
34806
34815
|
(function(CompilationMode2) {
|
|
34807
34816
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -34815,7 +34824,7 @@ var HandlerPrecedence;
|
|
|
34815
34824
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
34816
34825
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
34817
34826
|
|
|
34818
|
-
// bazel-out/
|
|
34827
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
34819
34828
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
34820
34829
|
function aliasTransformFactory(exportStatements) {
|
|
34821
34830
|
return () => {
|
|
@@ -34838,10 +34847,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
34838
34847
|
};
|
|
34839
34848
|
}
|
|
34840
34849
|
|
|
34841
|
-
// bazel-out/
|
|
34850
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
34842
34851
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
34843
34852
|
|
|
34844
|
-
// bazel-out/
|
|
34853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
34845
34854
|
var PerfPhase;
|
|
34846
34855
|
(function(PerfPhase2) {
|
|
34847
34856
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -34909,7 +34918,7 @@ var PerfCheckpoint;
|
|
|
34909
34918
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
34910
34919
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
34911
34920
|
|
|
34912
|
-
// bazel-out/
|
|
34921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
34913
34922
|
var NoopPerfRecorder = class {
|
|
34914
34923
|
eventCount() {
|
|
34915
34924
|
}
|
|
@@ -34926,7 +34935,7 @@ var NoopPerfRecorder = class {
|
|
|
34926
34935
|
};
|
|
34927
34936
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
34928
34937
|
|
|
34929
|
-
// bazel-out/
|
|
34938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
34930
34939
|
function mark() {
|
|
34931
34940
|
return process.hrtime();
|
|
34932
34941
|
}
|
|
@@ -34935,7 +34944,7 @@ function timeSinceInMicros(mark2) {
|
|
|
34935
34944
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
34936
34945
|
}
|
|
34937
34946
|
|
|
34938
|
-
// bazel-out/
|
|
34947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
34939
34948
|
var ActivePerfRecorder = class {
|
|
34940
34949
|
static zeroedToNow() {
|
|
34941
34950
|
return new ActivePerfRecorder(mark());
|
|
@@ -35029,7 +35038,7 @@ var DelegatingPerfRecorder = class {
|
|
|
35029
35038
|
}
|
|
35030
35039
|
};
|
|
35031
35040
|
|
|
35032
|
-
// bazel-out/
|
|
35041
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
35033
35042
|
var TraitState;
|
|
35034
35043
|
(function(TraitState2) {
|
|
35035
35044
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -35086,7 +35095,7 @@ var TraitImpl = class {
|
|
|
35086
35095
|
}
|
|
35087
35096
|
};
|
|
35088
35097
|
|
|
35089
|
-
// bazel-out/
|
|
35098
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
35090
35099
|
var TraitCompiler = class {
|
|
35091
35100
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
35092
35101
|
this.handlers = handlers;
|
|
@@ -35543,10 +35552,10 @@ function containsErrors(diagnostics) {
|
|
|
35543
35552
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
35544
35553
|
}
|
|
35545
35554
|
|
|
35546
|
-
// bazel-out/
|
|
35555
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
35547
35556
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
35548
35557
|
|
|
35549
|
-
// bazel-out/
|
|
35558
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
35550
35559
|
var Context = class {
|
|
35551
35560
|
constructor(isStatement) {
|
|
35552
35561
|
this.isStatement = isStatement;
|
|
@@ -35559,10 +35568,10 @@ var Context = class {
|
|
|
35559
35568
|
}
|
|
35560
35569
|
};
|
|
35561
35570
|
|
|
35562
|
-
// bazel-out/
|
|
35571
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
35563
35572
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
35564
35573
|
|
|
35565
|
-
// bazel-out/
|
|
35574
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
35566
35575
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
35567
35576
|
function createGenerateUniqueIdentifierHelper() {
|
|
35568
35577
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -35586,7 +35595,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
35586
35595
|
};
|
|
35587
35596
|
}
|
|
35588
35597
|
|
|
35589
|
-
// bazel-out/
|
|
35598
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
35590
35599
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
35591
35600
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
35592
35601
|
return (ctx) => {
|
|
@@ -35644,7 +35653,7 @@ function isImportStatement(stmt) {
|
|
|
35644
35653
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
35645
35654
|
}
|
|
35646
35655
|
|
|
35647
|
-
// bazel-out/
|
|
35656
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
35648
35657
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
35649
35658
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
35650
35659
|
const requestHash = hashImportRequest(request);
|
|
@@ -35671,7 +35680,7 @@ function hashImportRequest(req) {
|
|
|
35671
35680
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
|
|
35672
35681
|
}
|
|
35673
35682
|
|
|
35674
|
-
// bazel-out/
|
|
35683
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
35675
35684
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
35676
35685
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
35677
35686
|
let candidateImportToBeUpdated = null;
|
|
@@ -35724,7 +35733,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
35724
35733
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
35725
35734
|
}
|
|
35726
35735
|
|
|
35727
|
-
// bazel-out/
|
|
35736
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
35728
35737
|
var presetImportManagerForceNamespaceImports = {
|
|
35729
35738
|
disableOriginalSourceFileReuse: true,
|
|
35730
35739
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -35873,7 +35882,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
35873
35882
|
}
|
|
35874
35883
|
}
|
|
35875
35884
|
|
|
35876
|
-
// bazel-out/
|
|
35885
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
35877
35886
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
35878
35887
|
[UnaryOperator.Minus, "-"],
|
|
35879
35888
|
[UnaryOperator.Plus, "+"]
|
|
@@ -36118,7 +36127,7 @@ function createRange(span) {
|
|
|
36118
36127
|
};
|
|
36119
36128
|
}
|
|
36120
36129
|
|
|
36121
|
-
// bazel-out/
|
|
36130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
36122
36131
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
36123
36132
|
var INELIGIBLE = {};
|
|
36124
36133
|
function canEmitType(type, canEmit) {
|
|
@@ -36193,10 +36202,10 @@ var TypeEmitter = class {
|
|
|
36193
36202
|
}
|
|
36194
36203
|
};
|
|
36195
36204
|
|
|
36196
|
-
// bazel-out/
|
|
36205
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
36197
36206
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
36198
36207
|
|
|
36199
|
-
// bazel-out/
|
|
36208
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
36200
36209
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
36201
36210
|
function tsNumericExpression(value) {
|
|
36202
36211
|
if (value < 0) {
|
|
@@ -36206,7 +36215,7 @@ function tsNumericExpression(value) {
|
|
|
36206
36215
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
36207
36216
|
}
|
|
36208
36217
|
|
|
36209
|
-
// bazel-out/
|
|
36218
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
36210
36219
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
36211
36220
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
36212
36221
|
}
|
|
@@ -36423,7 +36432,7 @@ var TypeTranslatorVisitor = class {
|
|
|
36423
36432
|
}
|
|
36424
36433
|
};
|
|
36425
36434
|
|
|
36426
|
-
// bazel-out/
|
|
36435
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
36427
36436
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
36428
36437
|
var PureAnnotation;
|
|
36429
36438
|
(function(PureAnnotation2) {
|
|
@@ -36620,7 +36629,7 @@ function attachComments(statement, leadingComments) {
|
|
|
36620
36629
|
}
|
|
36621
36630
|
}
|
|
36622
36631
|
|
|
36623
|
-
// bazel-out/
|
|
36632
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
36624
36633
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
36625
36634
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
36626
36635
|
}
|
|
@@ -36628,7 +36637,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
36628
36637
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
36629
36638
|
}
|
|
36630
36639
|
|
|
36631
|
-
// bazel-out/
|
|
36640
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
36632
36641
|
var DtsTransformRegistry = class {
|
|
36633
36642
|
constructor() {
|
|
36634
36643
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -36774,10 +36783,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
36774
36783
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
36775
36784
|
}
|
|
36776
36785
|
|
|
36777
|
-
// bazel-out/
|
|
36786
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
36778
36787
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
36779
36788
|
|
|
36780
|
-
// bazel-out/
|
|
36789
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
36781
36790
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
36782
36791
|
function visit(node, visitor, context) {
|
|
36783
36792
|
return visitor._visit(node, context);
|
|
@@ -36838,7 +36847,7 @@ var Visitor = class {
|
|
|
36838
36847
|
}
|
|
36839
36848
|
};
|
|
36840
36849
|
|
|
36841
|
-
// bazel-out/
|
|
36850
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
36842
36851
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
36843
36852
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
36844
36853
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -37071,7 +37080,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
37071
37080
|
return array;
|
|
37072
37081
|
}
|
|
37073
37082
|
|
|
37074
|
-
// bazel-out/
|
|
37083
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
37075
37084
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
37076
37085
|
const context = [];
|
|
37077
37086
|
for (const decl of data) {
|
|
@@ -37278,7 +37287,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
37278
37287
|
}
|
|
37279
37288
|
}
|
|
37280
37289
|
|
|
37281
|
-
// bazel-out/
|
|
37290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
37282
37291
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
37283
37292
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
37284
37293
|
let resolved = null;
|
|
@@ -37328,7 +37337,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
37328
37337
|
return meta;
|
|
37329
37338
|
}
|
|
37330
37339
|
|
|
37331
|
-
// bazel-out/
|
|
37340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
37332
37341
|
function compileNgFactoryDefField(metadata) {
|
|
37333
37342
|
const res = compileFactoryFunction(metadata);
|
|
37334
37343
|
return {
|
|
@@ -37350,7 +37359,7 @@ function compileDeclareFactory(metadata) {
|
|
|
37350
37359
|
};
|
|
37351
37360
|
}
|
|
37352
37361
|
|
|
37353
|
-
// bazel-out/
|
|
37362
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
37354
37363
|
var InjectableClassRegistry = class {
|
|
37355
37364
|
constructor(host, isCore) {
|
|
37356
37365
|
this.host = host;
|
|
@@ -37376,7 +37385,7 @@ var InjectableClassRegistry = class {
|
|
|
37376
37385
|
}
|
|
37377
37386
|
};
|
|
37378
37387
|
|
|
37379
|
-
// bazel-out/
|
|
37388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
37380
37389
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
37381
37390
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
37382
37391
|
if (!reflection.isClass(clazz)) {
|
|
@@ -37460,7 +37469,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
37460
37469
|
return result.transformed[0];
|
|
37461
37470
|
}
|
|
37462
37471
|
|
|
37463
|
-
// bazel-out/
|
|
37472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
37464
37473
|
var path = __toESM(require("path"), 1);
|
|
37465
37474
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
37466
37475
|
if (!reflection.isClass(clazz)) {
|
|
@@ -37486,13 +37495,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
37486
37495
|
return null;
|
|
37487
37496
|
}
|
|
37488
37497
|
|
|
37489
|
-
// bazel-out/
|
|
37498
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
37490
37499
|
var NoopReferencesRegistry = class {
|
|
37491
37500
|
add(source, ...references) {
|
|
37492
37501
|
}
|
|
37493
37502
|
};
|
|
37494
37503
|
|
|
37495
|
-
// bazel-out/
|
|
37504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
37496
37505
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
37497
37506
|
const schemas = [];
|
|
37498
37507
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -37521,7 +37530,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
37521
37530
|
return schemas;
|
|
37522
37531
|
}
|
|
37523
37532
|
|
|
37524
|
-
// bazel-out/
|
|
37533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
37525
37534
|
function compileInputTransformFields(inputs) {
|
|
37526
37535
|
const extraFields = [];
|
|
37527
37536
|
for (const input of inputs) {
|
|
@@ -37538,10 +37547,10 @@ function compileInputTransformFields(inputs) {
|
|
|
37538
37547
|
return extraFields;
|
|
37539
37548
|
}
|
|
37540
37549
|
|
|
37541
|
-
// bazel-out/
|
|
37550
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
37542
37551
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
37543
37552
|
|
|
37544
|
-
// bazel-out/
|
|
37553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
37545
37554
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
37546
37555
|
var SemanticSymbol = class {
|
|
37547
37556
|
constructor(decl) {
|
|
@@ -37557,7 +37566,7 @@ function getSymbolIdentifier(decl) {
|
|
|
37557
37566
|
return decl.name.text;
|
|
37558
37567
|
}
|
|
37559
37568
|
|
|
37560
|
-
// bazel-out/
|
|
37569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
37561
37570
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
37562
37571
|
isPublicApiAffected() {
|
|
37563
37572
|
return false;
|
|
@@ -37699,10 +37708,10 @@ function getImportPath(expr) {
|
|
|
37699
37708
|
}
|
|
37700
37709
|
}
|
|
37701
37710
|
|
|
37702
|
-
// bazel-out/
|
|
37711
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
37703
37712
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
37704
37713
|
|
|
37705
|
-
// bazel-out/
|
|
37714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
37706
37715
|
function isSymbolEqual(a, b) {
|
|
37707
37716
|
if (a.decl === b.decl) {
|
|
37708
37717
|
return true;
|
|
@@ -37752,7 +37761,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
37752
37761
|
return true;
|
|
37753
37762
|
}
|
|
37754
37763
|
|
|
37755
|
-
// bazel-out/
|
|
37764
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
37756
37765
|
function extractSemanticTypeParameters(node) {
|
|
37757
37766
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
37758
37767
|
return null;
|
|
@@ -37772,14 +37781,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
37772
37781
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
37773
37782
|
}
|
|
37774
37783
|
|
|
37775
|
-
// bazel-out/
|
|
37784
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
37776
37785
|
var ComponentScopeKind;
|
|
37777
37786
|
(function(ComponentScopeKind2) {
|
|
37778
37787
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
37779
37788
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
37780
37789
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
37781
37790
|
|
|
37782
|
-
// bazel-out/
|
|
37791
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
37783
37792
|
var CompoundComponentScopeReader = class {
|
|
37784
37793
|
constructor(readers) {
|
|
37785
37794
|
this.readers = readers;
|
|
@@ -37804,7 +37813,7 @@ var CompoundComponentScopeReader = class {
|
|
|
37804
37813
|
}
|
|
37805
37814
|
};
|
|
37806
37815
|
|
|
37807
|
-
// bazel-out/
|
|
37816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
37808
37817
|
var MetadataDtsModuleScopeResolver = class {
|
|
37809
37818
|
constructor(dtsMetaReader, aliasingHost) {
|
|
37810
37819
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -37879,10 +37888,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
37879
37888
|
}
|
|
37880
37889
|
};
|
|
37881
37890
|
|
|
37882
|
-
// bazel-out/
|
|
37891
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
37883
37892
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
37884
37893
|
|
|
37885
|
-
// bazel-out/
|
|
37894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
37886
37895
|
function getDiagnosticNode(ref, rawExpr) {
|
|
37887
37896
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
37888
37897
|
}
|
|
@@ -37908,7 +37917,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
37908
37917
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
37909
37918
|
}
|
|
37910
37919
|
|
|
37911
|
-
// bazel-out/
|
|
37920
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
37912
37921
|
var LocalModuleScopeRegistry = class {
|
|
37913
37922
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
37914
37923
|
this.localReader = localReader;
|
|
@@ -38247,7 +38256,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
38247
38256
|
]);
|
|
38248
38257
|
}
|
|
38249
38258
|
|
|
38250
|
-
// bazel-out/
|
|
38259
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
38251
38260
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
38252
38261
|
var TypeCheckScopeRegistry = class {
|
|
38253
38262
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -38324,17 +38333,17 @@ var TypeCheckScopeRegistry = class {
|
|
|
38324
38333
|
}
|
|
38325
38334
|
};
|
|
38326
38335
|
|
|
38327
|
-
// bazel-out/
|
|
38336
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
38328
38337
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
38329
38338
|
|
|
38330
|
-
// bazel-out/
|
|
38339
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
38331
38340
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
38332
38341
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
38333
38342
|
throw new FatalDiagnosticError(ErrorCode.INITIALIZER_API_DISALLOWED_MEMBER_VISIBILITY, call2, makeDiagnosticChain(`Cannot use "${api.functionName}" on a class member that is declared as ${classMemberAccessLevelToString(member.accessLevel)}.`, [makeDiagnosticChain(`Update the class field to be either: ` + api.allowedAccessLevels.map((l) => classMemberAccessLevelToString(l)).join(", "))]));
|
|
38334
38343
|
}
|
|
38335
38344
|
}
|
|
38336
38345
|
|
|
38337
|
-
// bazel-out/
|
|
38346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
38338
38347
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
38339
38348
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
38340
38349
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -38403,7 +38412,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
38403
38412
|
return { api: matchingApi, apiReference, isRequired };
|
|
38404
38413
|
}
|
|
38405
38414
|
|
|
38406
|
-
// bazel-out/
|
|
38415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
38407
38416
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
38408
38417
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
38409
38418
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -38421,7 +38430,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
38421
38430
|
return { alias };
|
|
38422
38431
|
}
|
|
38423
38432
|
|
|
38424
|
-
// bazel-out/
|
|
38433
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
38425
38434
|
function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
38426
38435
|
var _a2;
|
|
38427
38436
|
if (member.value === null) {
|
|
@@ -38452,7 +38461,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
38452
38461
|
};
|
|
38453
38462
|
}
|
|
38454
38463
|
|
|
38455
|
-
// bazel-out/
|
|
38464
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
38456
38465
|
function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
38457
38466
|
var _a2;
|
|
38458
38467
|
if (member.value === null) {
|
|
@@ -38492,7 +38501,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
38492
38501
|
};
|
|
38493
38502
|
}
|
|
38494
38503
|
|
|
38495
|
-
// bazel-out/
|
|
38504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
38496
38505
|
var allowedAccessLevels = [
|
|
38497
38506
|
ClassMemberAccessLevel.PublicWritable,
|
|
38498
38507
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -38535,7 +38544,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
38535
38544
|
};
|
|
38536
38545
|
}
|
|
38537
38546
|
|
|
38538
|
-
// bazel-out/
|
|
38547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
38539
38548
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
38540
38549
|
var queryFunctionNames = ["viewChild", "viewChildren", "contentChild", "contentChildren"];
|
|
38541
38550
|
var initializerFns = queryFunctionNames.map((fnName) => ({
|
|
@@ -38614,7 +38623,7 @@ function parseDescendantsOption(value) {
|
|
|
38614
38623
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
38615
38624
|
}
|
|
38616
38625
|
|
|
38617
|
-
// bazel-out/
|
|
38626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
38618
38627
|
var EMPTY_OBJECT = {};
|
|
38619
38628
|
var queryDecoratorNames = ["ViewChild", "ViewChildren", "ContentChild", "ContentChildren"];
|
|
38620
38629
|
var QUERY_TYPES = new Set(queryDecoratorNames);
|
|
@@ -39409,7 +39418,7 @@ function toR3InputMetadata(mapping) {
|
|
|
39409
39418
|
};
|
|
39410
39419
|
}
|
|
39411
39420
|
|
|
39412
|
-
// bazel-out/
|
|
39421
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
39413
39422
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
39414
39423
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
39415
39424
|
super(decl);
|
|
@@ -39489,7 +39498,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
39489
39498
|
return isSymbolEqual(current, previous);
|
|
39490
39499
|
}
|
|
39491
39500
|
|
|
39492
|
-
// bazel-out/
|
|
39501
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
39493
39502
|
var FIELD_DECORATORS = [
|
|
39494
39503
|
"Input",
|
|
39495
39504
|
"Output",
|
|
@@ -39684,10 +39693,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
39684
39693
|
}
|
|
39685
39694
|
};
|
|
39686
39695
|
|
|
39687
|
-
// bazel-out/
|
|
39696
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
39688
39697
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
39689
39698
|
|
|
39690
|
-
// bazel-out/
|
|
39699
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
39691
39700
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
39692
39701
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
39693
39702
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -39759,7 +39768,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
39759
39768
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
39760
39769
|
}
|
|
39761
39770
|
|
|
39762
|
-
// bazel-out/
|
|
39771
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
39763
39772
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
39764
39773
|
constructor(decl, hasProviders) {
|
|
39765
39774
|
super(decl);
|
|
@@ -40366,7 +40375,7 @@ function isSyntheticReference(ref) {
|
|
|
40366
40375
|
return ref.synthetic;
|
|
40367
40376
|
}
|
|
40368
40377
|
|
|
40369
|
-
// bazel-out/
|
|
40378
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
40370
40379
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
40371
40380
|
const name = ref.debugName || "(unknown)";
|
|
40372
40381
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -40389,7 +40398,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
40389
40398
|
return null;
|
|
40390
40399
|
}
|
|
40391
40400
|
|
|
40392
|
-
// bazel-out/
|
|
40401
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
40393
40402
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
40394
40403
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
40395
40404
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -40736,7 +40745,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
40736
40745
|
return template2.styleUrls.map((url) => ({ url, source: 1, nodeForError }));
|
|
40737
40746
|
}
|
|
40738
40747
|
|
|
40739
|
-
// bazel-out/
|
|
40748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
40740
40749
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
40741
40750
|
constructor() {
|
|
40742
40751
|
super(...arguments);
|
|
@@ -40771,7 +40780,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
40771
40780
|
}
|
|
40772
40781
|
};
|
|
40773
40782
|
|
|
40774
|
-
// bazel-out/
|
|
40783
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
40775
40784
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
40776
40785
|
if (value instanceof Map) {
|
|
40777
40786
|
const name = value.get("name");
|
|
@@ -40848,7 +40857,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
40848
40857
|
return false;
|
|
40849
40858
|
}
|
|
40850
40859
|
|
|
40851
|
-
// bazel-out/
|
|
40860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
40852
40861
|
var EMPTY_ARRAY2 = [];
|
|
40853
40862
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
40854
40863
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -41841,7 +41850,7 @@ function isDefaultImport(node) {
|
|
|
41841
41850
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
41842
41851
|
}
|
|
41843
41852
|
|
|
41844
|
-
// bazel-out/
|
|
41853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
41845
41854
|
var import_typescript65 = __toESM(require("typescript"), 1);
|
|
41846
41855
|
var InjectableDecoratorHandler = class {
|
|
41847
41856
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -42072,7 +42081,7 @@ function getDep(dep, reflector) {
|
|
|
42072
42081
|
return meta;
|
|
42073
42082
|
}
|
|
42074
42083
|
|
|
42075
|
-
// bazel-out/
|
|
42084
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
42076
42085
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
42077
42086
|
var PipeSymbol = class extends SemanticSymbol {
|
|
42078
42087
|
constructor(decl, name) {
|
|
@@ -42228,13 +42237,13 @@ var PipeDecoratorHandler = class {
|
|
|
42228
42237
|
}
|
|
42229
42238
|
};
|
|
42230
42239
|
|
|
42231
|
-
// bazel-out/
|
|
42240
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
|
|
42232
42241
|
var import_typescript67 = __toESM(require("typescript"), 1);
|
|
42233
42242
|
|
|
42234
|
-
// bazel-out/
|
|
42243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
|
|
42235
42244
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
42236
42245
|
|
|
42237
|
-
// bazel-out/
|
|
42246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
42238
42247
|
var EmitFlags;
|
|
42239
42248
|
(function(EmitFlags2) {
|
|
42240
42249
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -42246,13 +42255,13 @@ var EmitFlags;
|
|
|
42246
42255
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
42247
42256
|
})(EmitFlags || (EmitFlags = {}));
|
|
42248
42257
|
|
|
42249
|
-
// bazel-out/
|
|
42258
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
42250
42259
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
42251
42260
|
|
|
42252
|
-
// bazel-out/
|
|
42261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
42253
42262
|
var import_typescript121 = __toESM(require("typescript"), 1);
|
|
42254
42263
|
|
|
42255
|
-
// bazel-out/
|
|
42264
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
42256
42265
|
var path2 = __toESM(require("path"), 1);
|
|
42257
42266
|
function i18nGetExtension(formatName) {
|
|
42258
42267
|
const format = formatName.toLowerCase();
|
|
@@ -42302,10 +42311,10 @@ function getPathNormalizer(basePath) {
|
|
|
42302
42311
|
};
|
|
42303
42312
|
}
|
|
42304
42313
|
|
|
42305
|
-
// bazel-out/
|
|
42314
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
42306
42315
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
42307
42316
|
|
|
42308
|
-
// bazel-out/
|
|
42317
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
42309
42318
|
function toNumbers(value) {
|
|
42310
42319
|
const suffixIndex = value.lastIndexOf("-");
|
|
42311
42320
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -42340,7 +42349,7 @@ function compareVersions(v1, v2) {
|
|
|
42340
42349
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
42341
42350
|
}
|
|
42342
42351
|
|
|
42343
|
-
// bazel-out/
|
|
42352
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
42344
42353
|
var MIN_TS_VERSION = "5.2.0";
|
|
42345
42354
|
var MAX_TS_VERSION = "5.5.0";
|
|
42346
42355
|
var tsVersion = import_typescript72.default.version;
|
|
@@ -42353,10 +42362,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
42353
42362
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
42354
42363
|
}
|
|
42355
42364
|
|
|
42356
|
-
// bazel-out/
|
|
42365
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
42357
42366
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
42358
42367
|
|
|
42359
|
-
// bazel-out/
|
|
42368
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
42360
42369
|
var CycleAnalyzer = class {
|
|
42361
42370
|
constructor(importGraph) {
|
|
42362
42371
|
this.importGraph = importGraph;
|
|
@@ -42427,7 +42436,7 @@ var Cycle = class {
|
|
|
42427
42436
|
}
|
|
42428
42437
|
};
|
|
42429
42438
|
|
|
42430
|
-
// bazel-out/
|
|
42439
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
42431
42440
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
42432
42441
|
var ImportGraph = class {
|
|
42433
42442
|
constructor(checker, perf) {
|
|
@@ -42519,13 +42528,13 @@ var Found = class {
|
|
|
42519
42528
|
}
|
|
42520
42529
|
};
|
|
42521
42530
|
|
|
42522
|
-
// bazel-out/
|
|
42531
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
42523
42532
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
42524
42533
|
|
|
42525
|
-
// bazel-out/
|
|
42534
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
42526
42535
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
42527
42536
|
|
|
42528
|
-
// bazel-out/
|
|
42537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
42529
42538
|
var EntryType;
|
|
42530
42539
|
(function(EntryType2) {
|
|
42531
42540
|
EntryType2["Block"] = "block";
|
|
@@ -42569,17 +42578,17 @@ var MemberTags;
|
|
|
42569
42578
|
MemberTags2["Inherited"] = "override";
|
|
42570
42579
|
})(MemberTags || (MemberTags = {}));
|
|
42571
42580
|
|
|
42572
|
-
// bazel-out/
|
|
42581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
42573
42582
|
function isAngularPrivateName(name) {
|
|
42574
42583
|
var _a2;
|
|
42575
42584
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
42576
42585
|
return firstChar === "\u0275" || firstChar === "_";
|
|
42577
42586
|
}
|
|
42578
42587
|
|
|
42579
|
-
// bazel-out/
|
|
42588
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
42580
42589
|
var import_typescript75 = __toESM(require("typescript"), 1);
|
|
42581
42590
|
|
|
42582
|
-
// bazel-out/
|
|
42591
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
42583
42592
|
function extractGenerics(declaration) {
|
|
42584
42593
|
var _a2, _b2;
|
|
42585
42594
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -42592,7 +42601,7 @@ function extractGenerics(declaration) {
|
|
|
42592
42601
|
})) != null ? _b2 : [];
|
|
42593
42602
|
}
|
|
42594
42603
|
|
|
42595
|
-
// bazel-out/
|
|
42604
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
42596
42605
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
42597
42606
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
|
|
42598
42607
|
function extractJsDocTags(node) {
|
|
@@ -42636,12 +42645,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
42636
42645
|
return comment.replace(/_NG_AT_/g, "@");
|
|
42637
42646
|
}
|
|
42638
42647
|
|
|
42639
|
-
// bazel-out/
|
|
42648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
42640
42649
|
function extractResolvedTypeString(node, checker) {
|
|
42641
42650
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
42642
42651
|
}
|
|
42643
42652
|
|
|
42644
|
-
// bazel-out/
|
|
42653
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
42645
42654
|
var FunctionExtractor = class {
|
|
42646
42655
|
constructor(name, declaration, typeChecker) {
|
|
42647
42656
|
this.name = name;
|
|
@@ -42697,7 +42706,7 @@ function extractAllParams(params, typeChecker) {
|
|
|
42697
42706
|
}));
|
|
42698
42707
|
}
|
|
42699
42708
|
|
|
42700
|
-
// bazel-out/
|
|
42709
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
42701
42710
|
var ClassExtractor = class {
|
|
42702
42711
|
constructor(declaration, typeChecker) {
|
|
42703
42712
|
this.declaration = declaration;
|
|
@@ -42952,7 +42961,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
42952
42961
|
return extractor.extract();
|
|
42953
42962
|
}
|
|
42954
42963
|
|
|
42955
|
-
// bazel-out/
|
|
42964
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
42956
42965
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
42957
42966
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
42958
42967
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -43010,7 +43019,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
43010
43019
|
});
|
|
43011
43020
|
}
|
|
43012
43021
|
|
|
43013
|
-
// bazel-out/
|
|
43022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
43014
43023
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
43015
43024
|
function extractorDecorator(declaration, typeChecker) {
|
|
43016
43025
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -43083,7 +43092,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
43083
43092
|
return callSignature;
|
|
43084
43093
|
}
|
|
43085
43094
|
|
|
43086
|
-
// bazel-out/
|
|
43095
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
43087
43096
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
43088
43097
|
function extractEnum(declaration, typeChecker) {
|
|
43089
43098
|
return {
|
|
@@ -43114,7 +43123,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
43114
43123
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
43115
43124
|
}
|
|
43116
43125
|
|
|
43117
|
-
// bazel-out/
|
|
43126
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
43118
43127
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
43119
43128
|
var initializerApiTag = "initializerApiFunction";
|
|
43120
43129
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -43251,7 +43260,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
43251
43260
|
return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript80.default.isFunctionDeclaration(s) && s.body !== void 0);
|
|
43252
43261
|
}
|
|
43253
43262
|
|
|
43254
|
-
// bazel-out/
|
|
43263
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
43255
43264
|
function extractTypeAlias(declaration) {
|
|
43256
43265
|
return {
|
|
43257
43266
|
name: declaration.name.getText(),
|
|
@@ -43263,7 +43272,7 @@ function extractTypeAlias(declaration) {
|
|
|
43263
43272
|
};
|
|
43264
43273
|
}
|
|
43265
43274
|
|
|
43266
|
-
// bazel-out/
|
|
43275
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
43267
43276
|
var DocsExtractor = class {
|
|
43268
43277
|
constructor(typeChecker, metadataReader) {
|
|
43269
43278
|
this.typeChecker = typeChecker;
|
|
@@ -43336,7 +43345,7 @@ function isIgnoredDocEntry(entry) {
|
|
|
43336
43345
|
return isDocsPrivate !== void 0;
|
|
43337
43346
|
}
|
|
43338
43347
|
|
|
43339
|
-
// bazel-out/
|
|
43348
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
43340
43349
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
43341
43350
|
var FlatIndexGenerator = class {
|
|
43342
43351
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -43361,7 +43370,7 @@ export * from '${relativeEntryPoint}';
|
|
|
43361
43370
|
}
|
|
43362
43371
|
};
|
|
43363
43372
|
|
|
43364
|
-
// bazel-out/
|
|
43373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
43365
43374
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
43366
43375
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
43367
43376
|
let resolvedEntryPoint = null;
|
|
@@ -43377,7 +43386,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
43377
43386
|
return resolvedEntryPoint;
|
|
43378
43387
|
}
|
|
43379
43388
|
|
|
43380
|
-
// bazel-out/
|
|
43389
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
43381
43390
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
43382
43391
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
43383
43392
|
const diagnostics = [];
|
|
@@ -43457,7 +43466,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
43457
43466
|
}
|
|
43458
43467
|
}
|
|
43459
43468
|
|
|
43460
|
-
// bazel-out/
|
|
43469
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
43461
43470
|
var ReferenceGraph = class {
|
|
43462
43471
|
constructor() {
|
|
43463
43472
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -43511,7 +43520,7 @@ var ReferenceGraph = class {
|
|
|
43511
43520
|
}
|
|
43512
43521
|
};
|
|
43513
43522
|
|
|
43514
|
-
// bazel-out/
|
|
43523
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
43515
43524
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
43516
43525
|
var UpdateMode;
|
|
43517
43526
|
(function(UpdateMode2) {
|
|
@@ -43519,13 +43528,13 @@ var UpdateMode;
|
|
|
43519
43528
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
43520
43529
|
})(UpdateMode || (UpdateMode = {}));
|
|
43521
43530
|
|
|
43522
|
-
// bazel-out/
|
|
43531
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
43523
43532
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
43524
43533
|
|
|
43525
|
-
// bazel-out/
|
|
43534
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
43526
43535
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
43527
43536
|
|
|
43528
|
-
// bazel-out/
|
|
43537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
43529
43538
|
var NgExtension = Symbol("NgExtension");
|
|
43530
43539
|
function isExtended(sf) {
|
|
43531
43540
|
return sf[NgExtension] !== void 0;
|
|
@@ -43585,13 +43594,13 @@ function retagTsFile(sf) {
|
|
|
43585
43594
|
}
|
|
43586
43595
|
}
|
|
43587
43596
|
|
|
43588
|
-
// bazel-out/
|
|
43597
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
43589
43598
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
43590
43599
|
function makeShimFileName(fileName, suffix) {
|
|
43591
43600
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
43592
43601
|
}
|
|
43593
43602
|
|
|
43594
|
-
// bazel-out/
|
|
43603
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
43595
43604
|
var ShimAdapter = class {
|
|
43596
43605
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
43597
43606
|
this.delegate = delegate;
|
|
@@ -43686,7 +43695,7 @@ var ShimAdapter = class {
|
|
|
43686
43695
|
}
|
|
43687
43696
|
};
|
|
43688
43697
|
|
|
43689
|
-
// bazel-out/
|
|
43698
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
43690
43699
|
var ShimReferenceTagger = class {
|
|
43691
43700
|
constructor(shimExtensions) {
|
|
43692
43701
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -43720,7 +43729,7 @@ var ShimReferenceTagger = class {
|
|
|
43720
43729
|
}
|
|
43721
43730
|
};
|
|
43722
43731
|
|
|
43723
|
-
// bazel-out/
|
|
43732
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
43724
43733
|
var DelegatingCompilerHost = class {
|
|
43725
43734
|
get jsDocParsingMode() {
|
|
43726
43735
|
return this.delegate.jsDocParsingMode;
|
|
@@ -43839,7 +43848,7 @@ var TsCreateProgramDriver = class {
|
|
|
43839
43848
|
}
|
|
43840
43849
|
};
|
|
43841
43850
|
|
|
43842
|
-
// bazel-out/
|
|
43851
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
43843
43852
|
var FileDependencyGraph = class {
|
|
43844
43853
|
constructor() {
|
|
43845
43854
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -43906,7 +43915,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
43906
43915
|
return false;
|
|
43907
43916
|
}
|
|
43908
43917
|
|
|
43909
|
-
// bazel-out/
|
|
43918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
43910
43919
|
var IncrementalStateKind;
|
|
43911
43920
|
(function(IncrementalStateKind2) {
|
|
43912
43921
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -43914,7 +43923,7 @@ var IncrementalStateKind;
|
|
|
43914
43923
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
43915
43924
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
43916
43925
|
|
|
43917
|
-
// bazel-out/
|
|
43926
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
43918
43927
|
var PhaseKind;
|
|
43919
43928
|
(function(PhaseKind2) {
|
|
43920
43929
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -44115,7 +44124,7 @@ function toOriginalSourceFile(sf) {
|
|
|
44115
44124
|
}
|
|
44116
44125
|
}
|
|
44117
44126
|
|
|
44118
|
-
// bazel-out/
|
|
44127
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
44119
44128
|
var TrackedIncrementalBuildStrategy = class {
|
|
44120
44129
|
constructor() {
|
|
44121
44130
|
this.state = null;
|
|
@@ -44136,7 +44145,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
44136
44145
|
};
|
|
44137
44146
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
44138
44147
|
|
|
44139
|
-
// bazel-out/
|
|
44148
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
44140
44149
|
var IdentifierKind;
|
|
44141
44150
|
(function(IdentifierKind2) {
|
|
44142
44151
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -44154,7 +44163,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
44154
44163
|
}
|
|
44155
44164
|
};
|
|
44156
44165
|
|
|
44157
|
-
// bazel-out/
|
|
44166
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
44158
44167
|
var IndexingContext = class {
|
|
44159
44168
|
constructor() {
|
|
44160
44169
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -44164,7 +44173,7 @@ var IndexingContext = class {
|
|
|
44164
44173
|
}
|
|
44165
44174
|
};
|
|
44166
44175
|
|
|
44167
|
-
// bazel-out/
|
|
44176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
44168
44177
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
44169
44178
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
44170
44179
|
super();
|
|
@@ -44445,7 +44454,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
44445
44454
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
44446
44455
|
}
|
|
44447
44456
|
|
|
44448
|
-
// bazel-out/
|
|
44457
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
44449
44458
|
function generateAnalysis(context) {
|
|
44450
44459
|
const analysis = /* @__PURE__ */ new Map();
|
|
44451
44460
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -44481,7 +44490,7 @@ function generateAnalysis(context) {
|
|
|
44481
44490
|
return analysis;
|
|
44482
44491
|
}
|
|
44483
44492
|
|
|
44484
|
-
// bazel-out/
|
|
44493
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
44485
44494
|
var NgModuleIndexImpl = class {
|
|
44486
44495
|
constructor(metaReader, localReader) {
|
|
44487
44496
|
this.metaReader = metaReader;
|
|
@@ -44570,7 +44579,7 @@ var NgModuleIndexImpl = class {
|
|
|
44570
44579
|
}
|
|
44571
44580
|
};
|
|
44572
44581
|
|
|
44573
|
-
// bazel-out/
|
|
44582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
44574
44583
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
44575
44584
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
44576
44585
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -44718,7 +44727,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
44718
44727
|
};
|
|
44719
44728
|
}
|
|
44720
44729
|
|
|
44721
|
-
// bazel-out/
|
|
44730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
44722
44731
|
var StandaloneComponentScopeReader = class {
|
|
44723
44732
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
44724
44733
|
this.metaReader = metaReader;
|
|
@@ -44814,21 +44823,21 @@ var StandaloneComponentScopeReader = class {
|
|
|
44814
44823
|
}
|
|
44815
44824
|
};
|
|
44816
44825
|
|
|
44817
|
-
// bazel-out/
|
|
44826
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
44818
44827
|
var OptimizeFor;
|
|
44819
44828
|
(function(OptimizeFor2) {
|
|
44820
44829
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
44821
44830
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
44822
44831
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
44823
44832
|
|
|
44824
|
-
// bazel-out/
|
|
44833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
44825
44834
|
var CompletionKind;
|
|
44826
44835
|
(function(CompletionKind2) {
|
|
44827
44836
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
44828
44837
|
CompletionKind2[CompletionKind2["Variable"] = 1] = "Variable";
|
|
44829
44838
|
})(CompletionKind || (CompletionKind = {}));
|
|
44830
44839
|
|
|
44831
|
-
// bazel-out/
|
|
44840
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
44832
44841
|
var PotentialImportKind;
|
|
44833
44842
|
(function(PotentialImportKind2) {
|
|
44834
44843
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -44840,7 +44849,7 @@ var PotentialImportMode;
|
|
|
44840
44849
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
44841
44850
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
44842
44851
|
|
|
44843
|
-
// bazel-out/
|
|
44852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
44844
44853
|
var SymbolKind;
|
|
44845
44854
|
(function(SymbolKind2) {
|
|
44846
44855
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -44856,7 +44865,7 @@ var SymbolKind;
|
|
|
44856
44865
|
SymbolKind2[SymbolKind2["Pipe"] = 10] = "Pipe";
|
|
44857
44866
|
})(SymbolKind || (SymbolKind = {}));
|
|
44858
44867
|
|
|
44859
|
-
// bazel-out/
|
|
44868
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
44860
44869
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
44861
44870
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
44862
44871
|
var _a2;
|
|
@@ -44963,7 +44972,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
44963
44972
|
return import_typescript92.default.createSourceFile(fileName, template2, import_typescript92.default.ScriptTarget.Latest, false, import_typescript92.default.ScriptKind.JSX);
|
|
44964
44973
|
}
|
|
44965
44974
|
|
|
44966
|
-
// bazel-out/
|
|
44975
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
44967
44976
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
44968
44977
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
44969
44978
|
function getTemplateId(clazz) {
|
|
@@ -44980,10 +44989,10 @@ function allocateTemplateId(sf) {
|
|
|
44980
44989
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
44981
44990
|
}
|
|
44982
44991
|
|
|
44983
|
-
// bazel-out/
|
|
44992
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
44984
44993
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
44985
44994
|
|
|
44986
|
-
// bazel-out/
|
|
44995
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
44987
44996
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
44988
44997
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
44989
44998
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -45113,7 +45122,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
45113
45122
|
}) || false;
|
|
45114
45123
|
}
|
|
45115
45124
|
|
|
45116
|
-
// bazel-out/
|
|
45125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
45117
45126
|
var CompletionEngine = class {
|
|
45118
45127
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
45119
45128
|
this.tcb = tcb;
|
|
@@ -46361,10 +46370,10 @@ var MagicString = class {
|
|
|
46361
46370
|
}
|
|
46362
46371
|
};
|
|
46363
46372
|
|
|
46364
|
-
// bazel-out/
|
|
46373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
46365
46374
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46366
46375
|
|
|
46367
|
-
// bazel-out/
|
|
46376
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
46368
46377
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
46369
46378
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
46370
46379
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -46416,10 +46425,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
46416
46425
|
}
|
|
46417
46426
|
};
|
|
46418
46427
|
|
|
46419
|
-
// bazel-out/
|
|
46428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
46420
46429
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
46421
46430
|
|
|
46422
|
-
// bazel-out/
|
|
46431
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
46423
46432
|
var ReferenceEmitEnvironment = class {
|
|
46424
46433
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
46425
46434
|
this.importManager = importManager;
|
|
@@ -46449,7 +46458,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
46449
46458
|
}
|
|
46450
46459
|
};
|
|
46451
46460
|
|
|
46452
|
-
// bazel-out/
|
|
46461
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
46453
46462
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
46454
46463
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
46455
46464
|
import_typescript96.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -46532,13 +46541,13 @@ function tsNumericExpression2(value) {
|
|
|
46532
46541
|
return import_typescript96.default.factory.createNumericLiteral(value);
|
|
46533
46542
|
}
|
|
46534
46543
|
|
|
46535
|
-
// bazel-out/
|
|
46544
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
46536
46545
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
46537
46546
|
|
|
46538
|
-
// bazel-out/
|
|
46547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
46539
46548
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
46540
46549
|
|
|
46541
|
-
// bazel-out/
|
|
46550
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
46542
46551
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
46543
46552
|
var TypeParameterEmitter = class {
|
|
46544
46553
|
constructor(typeParameters, reflector) {
|
|
@@ -46616,7 +46625,7 @@ var TypeParameterEmitter = class {
|
|
|
46616
46625
|
}
|
|
46617
46626
|
};
|
|
46618
46627
|
|
|
46619
|
-
// bazel-out/
|
|
46628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
46620
46629
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
46621
46630
|
Identifiers.InputSignalBrandWriteType
|
|
46622
46631
|
];
|
|
@@ -46708,7 +46717,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
46708
46717
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
46709
46718
|
}
|
|
46710
46719
|
|
|
46711
|
-
// bazel-out/
|
|
46720
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
46712
46721
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
46713
46722
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
46714
46723
|
const rawType = import_typescript100.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -46831,7 +46840,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
46831
46840
|
});
|
|
46832
46841
|
}
|
|
46833
46842
|
|
|
46834
|
-
// bazel-out/
|
|
46843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
46835
46844
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
46836
46845
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
46837
46846
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -46906,7 +46915,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
46906
46915
|
}
|
|
46907
46916
|
};
|
|
46908
46917
|
|
|
46909
|
-
// bazel-out/
|
|
46918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
46910
46919
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
46911
46920
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
46912
46921
|
constructor(resolver) {
|
|
@@ -47091,7 +47100,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
47091
47100
|
});
|
|
47092
47101
|
}
|
|
47093
47102
|
|
|
47094
|
-
// bazel-out/
|
|
47103
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
47095
47104
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
47096
47105
|
var TypeCheckShimGenerator = class {
|
|
47097
47106
|
constructor() {
|
|
@@ -47109,10 +47118,10 @@ var TypeCheckShimGenerator = class {
|
|
|
47109
47118
|
}
|
|
47110
47119
|
};
|
|
47111
47120
|
|
|
47112
|
-
// bazel-out/
|
|
47121
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
47113
47122
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
47114
47123
|
|
|
47115
|
-
// bazel-out/
|
|
47124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
47116
47125
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
47117
47126
|
function wrapForDiagnostics(expr) {
|
|
47118
47127
|
return import_typescript104.default.factory.createParenthesizedExpression(expr);
|
|
@@ -47157,7 +47166,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
47157
47166
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
47158
47167
|
}
|
|
47159
47168
|
|
|
47160
|
-
// bazel-out/
|
|
47169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
47161
47170
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
47162
47171
|
var NULL_AS_ANY = import_typescript105.default.factory.createAsExpression(import_typescript105.default.factory.createNull(), import_typescript105.default.factory.createKeywordTypeNode(import_typescript105.default.SyntaxKind.AnyKeyword));
|
|
47163
47172
|
var UNDEFINED = import_typescript105.default.factory.createIdentifier("undefined");
|
|
@@ -47489,7 +47498,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
47489
47498
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
47490
47499
|
})();
|
|
47491
47500
|
|
|
47492
|
-
// bazel-out/
|
|
47501
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
47493
47502
|
var TcbGenericContextBehavior;
|
|
47494
47503
|
(function(TcbGenericContextBehavior2) {
|
|
47495
47504
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -49010,7 +49019,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
49010
49019
|
}
|
|
49011
49020
|
};
|
|
49012
49021
|
|
|
49013
|
-
// bazel-out/
|
|
49022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
49014
49023
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
49015
49024
|
var TypeCheckFile = class extends Environment {
|
|
49016
49025
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -49058,7 +49067,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
49058
49067
|
}
|
|
49059
49068
|
};
|
|
49060
49069
|
|
|
49061
|
-
// bazel-out/
|
|
49070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
49062
49071
|
var InliningMode;
|
|
49063
49072
|
(function(InliningMode2) {
|
|
49064
49073
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -49310,7 +49319,7 @@ var TypeCtorOp = class {
|
|
|
49310
49319
|
}
|
|
49311
49320
|
};
|
|
49312
49321
|
|
|
49313
|
-
// bazel-out/
|
|
49322
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
49314
49323
|
var LF_CHAR = 10;
|
|
49315
49324
|
var CR_CHAR = 13;
|
|
49316
49325
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -49351,7 +49360,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
49351
49360
|
return low - 1;
|
|
49352
49361
|
}
|
|
49353
49362
|
|
|
49354
|
-
// bazel-out/
|
|
49363
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
49355
49364
|
var TemplateSource = class {
|
|
49356
49365
|
constructor(mapping, file) {
|
|
49357
49366
|
this.mapping = mapping;
|
|
@@ -49402,7 +49411,7 @@ var TemplateSourceManager = class {
|
|
|
49402
49411
|
}
|
|
49403
49412
|
};
|
|
49404
49413
|
|
|
49405
|
-
// bazel-out/
|
|
49414
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
49406
49415
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
49407
49416
|
var SymbolBuilder = class {
|
|
49408
49417
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -49913,7 +49922,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
49913
49922
|
};
|
|
49914
49923
|
}
|
|
49915
49924
|
|
|
49916
|
-
// bazel-out/
|
|
49925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
49917
49926
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
49918
49927
|
var TemplateTypeCheckerImpl = class {
|
|
49919
49928
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -50613,7 +50622,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
50613
50622
|
}
|
|
50614
50623
|
};
|
|
50615
50624
|
|
|
50616
|
-
// bazel-out/
|
|
50625
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
50617
50626
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
50618
50627
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
50619
50628
|
"WritableSignal",
|
|
@@ -50633,7 +50642,7 @@ function isSignalSymbol(symbol) {
|
|
|
50633
50642
|
});
|
|
50634
50643
|
}
|
|
50635
50644
|
|
|
50636
|
-
// bazel-out/
|
|
50645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
50637
50646
|
var TemplateCheckWithVisitor = class {
|
|
50638
50647
|
run(ctx, component, template2) {
|
|
50639
50648
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -50756,7 +50765,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
50756
50765
|
}
|
|
50757
50766
|
};
|
|
50758
50767
|
|
|
50759
|
-
// bazel-out/
|
|
50768
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
50760
50769
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
50761
50770
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
50762
50771
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -50800,7 +50809,7 @@ var factory = {
|
|
|
50800
50809
|
create: () => new InterpolatedSignalCheck()
|
|
50801
50810
|
};
|
|
50802
50811
|
|
|
50803
|
-
// bazel-out/
|
|
50812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
50804
50813
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
50805
50814
|
constructor() {
|
|
50806
50815
|
super(...arguments);
|
|
@@ -50825,7 +50834,7 @@ var factory2 = {
|
|
|
50825
50834
|
create: () => new InvalidBananaInBoxCheck()
|
|
50826
50835
|
};
|
|
50827
50836
|
|
|
50828
|
-
// bazel-out/
|
|
50837
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
50829
50838
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
50830
50839
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
50831
50840
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -50869,7 +50878,7 @@ var factory3 = {
|
|
|
50869
50878
|
}
|
|
50870
50879
|
};
|
|
50871
50880
|
|
|
50872
|
-
// bazel-out/
|
|
50881
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
50873
50882
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
50874
50883
|
constructor() {
|
|
50875
50884
|
super(...arguments);
|
|
@@ -50901,7 +50910,7 @@ var factory4 = {
|
|
|
50901
50910
|
create: () => new MissingNgForOfLetCheck()
|
|
50902
50911
|
};
|
|
50903
50912
|
|
|
50904
|
-
// bazel-out/
|
|
50913
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
50905
50914
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
50906
50915
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
50907
50916
|
constructor() {
|
|
@@ -50945,7 +50954,7 @@ var factory5 = {
|
|
|
50945
50954
|
}
|
|
50946
50955
|
};
|
|
50947
50956
|
|
|
50948
|
-
// bazel-out/
|
|
50957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
50949
50958
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
50950
50959
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
50951
50960
|
constructor() {
|
|
@@ -50990,7 +50999,7 @@ var factory6 = {
|
|
|
50990
50999
|
}
|
|
50991
51000
|
};
|
|
50992
51001
|
|
|
50993
|
-
// bazel-out/
|
|
51002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
50994
51003
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
50995
51004
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
50996
51005
|
constructor() {
|
|
@@ -51013,7 +51022,7 @@ var factory7 = {
|
|
|
51013
51022
|
create: () => new SuffixNotSupportedCheck()
|
|
51014
51023
|
};
|
|
51015
51024
|
|
|
51016
|
-
// bazel-out/
|
|
51025
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
51017
51026
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
51018
51027
|
constructor() {
|
|
51019
51028
|
super(...arguments);
|
|
@@ -51051,10 +51060,10 @@ var factory8 = {
|
|
|
51051
51060
|
create: () => new TextAttributeNotBindingSpec()
|
|
51052
51061
|
};
|
|
51053
51062
|
|
|
51054
|
-
// bazel-out/
|
|
51063
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
51055
51064
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
51056
51065
|
|
|
51057
|
-
// bazel-out/
|
|
51066
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
51058
51067
|
var DiagnosticCategoryLabel;
|
|
51059
51068
|
(function(DiagnosticCategoryLabel2) {
|
|
51060
51069
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -51062,7 +51071,7 @@ var DiagnosticCategoryLabel;
|
|
|
51062
51071
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
51063
51072
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
51064
51073
|
|
|
51065
|
-
// bazel-out/
|
|
51074
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
51066
51075
|
var ExtendedTemplateCheckerImpl = class {
|
|
51067
51076
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
51068
51077
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -51114,7 +51123,7 @@ function assertNever(value) {
|
|
|
51114
51123
|
${value}`);
|
|
51115
51124
|
}
|
|
51116
51125
|
|
|
51117
|
-
// bazel-out/
|
|
51126
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
51118
51127
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
51119
51128
|
factory2,
|
|
51120
51129
|
factory5,
|
|
@@ -51130,7 +51139,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
51130
51139
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory9) => factory9.name)
|
|
51131
51140
|
]);
|
|
51132
51141
|
|
|
51133
|
-
// bazel-out/
|
|
51142
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
51134
51143
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
51135
51144
|
var TemplateSemanticsCheckerImpl = class {
|
|
51136
51145
|
constructor(templateTypeChecker) {
|
|
@@ -51211,7 +51220,7 @@ function unwrapAstWithSource(ast) {
|
|
|
51211
51220
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
51212
51221
|
}
|
|
51213
51222
|
|
|
51214
|
-
// bazel-out/
|
|
51223
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
51215
51224
|
function coreHasSymbol(program, symbol) {
|
|
51216
51225
|
const checker = program.getTypeChecker();
|
|
51217
51226
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -51230,7 +51239,7 @@ function isMaybeCore(sf) {
|
|
|
51230
51239
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
51231
51240
|
}
|
|
51232
51241
|
|
|
51233
|
-
// bazel-out/
|
|
51242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
51234
51243
|
var import_semver = __toESM(require_semver2(), 1);
|
|
51235
51244
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
51236
51245
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -51239,7 +51248,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
51239
51248
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
51240
51249
|
}
|
|
51241
51250
|
|
|
51242
|
-
// bazel-out/
|
|
51251
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
51243
51252
|
var SHOULD_USE_TEMPLATE_PIPELINE = true;
|
|
51244
51253
|
var CompilationTicketKind;
|
|
51245
51254
|
(function(CompilationTicketKind2) {
|
|
@@ -52010,7 +52019,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
52010
52019
|
return versions;
|
|
52011
52020
|
}
|
|
52012
52021
|
|
|
52013
|
-
// bazel-out/
|
|
52022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
52014
52023
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
52015
52024
|
var DelegatingCompilerHost2 = class {
|
|
52016
52025
|
get jsDocParsingMode() {
|
|
@@ -52149,7 +52158,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
52149
52158
|
}
|
|
52150
52159
|
};
|
|
52151
52160
|
|
|
52152
|
-
// bazel-out/
|
|
52161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
52153
52162
|
var NgtscProgram = class {
|
|
52154
52163
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
52155
52164
|
this.options = options;
|
|
@@ -52376,18 +52385,18 @@ function mergeEmitResults(emitResults) {
|
|
|
52376
52385
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
52377
52386
|
}
|
|
52378
52387
|
|
|
52379
|
-
// bazel-out/
|
|
52388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
52380
52389
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
52381
52390
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
52382
52391
|
}
|
|
52383
52392
|
|
|
52384
|
-
// bazel-out/
|
|
52393
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
52385
52394
|
var import_typescript123 = __toESM(require("typescript"), 1);
|
|
52386
52395
|
|
|
52387
|
-
// bazel-out/
|
|
52396
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
52388
52397
|
var import_typescript122 = __toESM(require("typescript"), 1);
|
|
52389
52398
|
|
|
52390
|
-
// bazel-out/
|
|
52399
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
52391
52400
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
52392
52401
|
ngDevMode: false,
|
|
52393
52402
|
ngI18nClosureMode: false
|
|
@@ -52396,7 +52405,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
52396
52405
|
ngJitMode: false
|
|
52397
52406
|
});
|
|
52398
52407
|
|
|
52399
|
-
// bazel-out/
|
|
52408
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
52400
52409
|
var LogLevel;
|
|
52401
52410
|
(function(LogLevel2) {
|
|
52402
52411
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -52405,7 +52414,7 @@ var LogLevel;
|
|
|
52405
52414
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
52406
52415
|
})(LogLevel || (LogLevel = {}));
|
|
52407
52416
|
|
|
52408
|
-
// bazel-out/
|
|
52417
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
52409
52418
|
var RESET = "\x1B[0m";
|
|
52410
52419
|
var RED = "\x1B[31m";
|
|
52411
52420
|
var YELLOW = "\x1B[33m";
|
|
@@ -52414,18 +52423,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
52414
52423
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
52415
52424
|
var ERROR = `${RED}Error:${RESET}`;
|
|
52416
52425
|
|
|
52417
|
-
// bazel-out/
|
|
52426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
52418
52427
|
setFileSystem(new NodeJSFileSystem());
|
|
52419
52428
|
|
|
52420
|
-
// bazel-out/
|
|
52429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
52421
52430
|
var import_fs2 = require("fs");
|
|
52422
52431
|
var import_path8 = require("path");
|
|
52423
52432
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
52424
52433
|
|
|
52425
|
-
// bazel-out/
|
|
52434
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
52426
52435
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
52427
52436
|
|
|
52428
|
-
// bazel-out/
|
|
52437
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
52429
52438
|
var import_path4 = require("path");
|
|
52430
52439
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
52431
52440
|
var ImportManager2 = class {
|
|
@@ -52609,7 +52618,7 @@ ${text2}`;
|
|
|
52609
52618
|
}
|
|
52610
52619
|
};
|
|
52611
52620
|
|
|
52612
|
-
// bazel-out/
|
|
52621
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
52613
52622
|
var ChangeTracker = class {
|
|
52614
52623
|
constructor(_printer, _importRemapper) {
|
|
52615
52624
|
__publicField(this, "_printer");
|
|
@@ -52668,7 +52677,7 @@ function normalizePath(path4) {
|
|
|
52668
52677
|
return path4.replace(/\\/g, "/");
|
|
52669
52678
|
}
|
|
52670
52679
|
|
|
52671
|
-
// bazel-out/
|
|
52680
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
52672
52681
|
var import_core19 = require("@angular-devkit/core");
|
|
52673
52682
|
function getProjectTsConfigPaths(tree) {
|
|
52674
52683
|
return __async(this, null, function* () {
|
|
@@ -52748,11 +52757,11 @@ function getWorkspace(tree) {
|
|
|
52748
52757
|
});
|
|
52749
52758
|
}
|
|
52750
52759
|
|
|
52751
|
-
// bazel-out/
|
|
52760
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
52752
52761
|
var import_path5 = require("path");
|
|
52753
52762
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
52754
52763
|
|
|
52755
|
-
// bazel-out/
|
|
52764
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
52756
52765
|
var path3 = __toESM(require("path"), 1);
|
|
52757
52766
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
52758
52767
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -52769,7 +52778,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
52769
52778
|
return import_typescript126.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
52770
52779
|
}
|
|
52771
52780
|
|
|
52772
|
-
// bazel-out/
|
|
52781
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
52773
52782
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
52774
52783
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
52775
52784
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -52798,13 +52807,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
52798
52807
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
52799
52808
|
}
|
|
52800
52809
|
|
|
52801
|
-
// bazel-out/
|
|
52810
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
52802
52811
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
52803
52812
|
|
|
52804
|
-
// bazel-out/
|
|
52813
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
52805
52814
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
52806
52815
|
|
|
52807
|
-
// bazel-out/
|
|
52816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
52808
52817
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
52809
52818
|
function getImportOfIdentifier(typeChecker, node) {
|
|
52810
52819
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -52855,7 +52864,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
52855
52864
|
});
|
|
52856
52865
|
}
|
|
52857
52866
|
|
|
52858
|
-
// bazel-out/
|
|
52867
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
52859
52868
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
52860
52869
|
if (!import_typescript129.default.isCallExpression(decorator.expression) || !import_typescript129.default.isIdentifier(decorator.expression.expression)) {
|
|
52861
52870
|
return null;
|
|
@@ -52864,7 +52873,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
52864
52873
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
52865
52874
|
}
|
|
52866
52875
|
|
|
52867
|
-
// bazel-out/
|
|
52876
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
52868
52877
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
52869
52878
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
52870
52879
|
node,
|
|
@@ -52874,7 +52883,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
52874
52883
|
}));
|
|
52875
52884
|
}
|
|
52876
52885
|
|
|
52877
|
-
// bazel-out/
|
|
52886
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
52878
52887
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
52879
52888
|
function closestNode(node, predicate) {
|
|
52880
52889
|
let current = node.parent;
|
|
@@ -52887,7 +52896,7 @@ function closestNode(node, predicate) {
|
|
|
52887
52896
|
return null;
|
|
52888
52897
|
}
|
|
52889
52898
|
|
|
52890
|
-
// bazel-out/
|
|
52899
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
52891
52900
|
var import_path6 = require("path");
|
|
52892
52901
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
52893
52902
|
var UniqueItemTracker = class {
|
|
@@ -53063,7 +53072,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
53063
53072
|
}));
|
|
53064
53073
|
}
|
|
53065
53074
|
|
|
53066
|
-
// bazel-out/
|
|
53075
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
53067
53076
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
53068
53077
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
53069
53078
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -53262,14 +53271,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
53262
53271
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
53263
53272
|
}
|
|
53264
53273
|
|
|
53265
|
-
// bazel-out/
|
|
53274
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
53266
53275
|
var import_path7 = require("path");
|
|
53267
53276
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
53268
53277
|
|
|
53269
|
-
// bazel-out/
|
|
53278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
53270
53279
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
53271
53280
|
|
|
53272
|
-
// bazel-out/
|
|
53281
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
53273
53282
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
53274
53283
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
53275
53284
|
var _a2, _b2;
|
|
@@ -53278,7 +53287,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
53278
53287
|
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];
|
|
53279
53288
|
}
|
|
53280
53289
|
|
|
53281
|
-
// bazel-out/
|
|
53290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
53282
53291
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
53283
53292
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
53284
53293
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -53646,7 +53655,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
53646
53655
|
return metadata != null && metadata.isStandalone;
|
|
53647
53656
|
}
|
|
53648
53657
|
|
|
53649
|
-
// bazel-out/
|
|
53658
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
53650
53659
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
53651
53660
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
53652
53661
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -54023,7 +54032,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
54023
54032
|
return false;
|
|
54024
54033
|
}
|
|
54025
54034
|
|
|
54026
|
-
// bazel-out/
|
|
54035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
54027
54036
|
var MigrationMode;
|
|
54028
54037
|
(function(MigrationMode2) {
|
|
54029
54038
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|