@angular/core 18.2.12 → 18.2.14
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/application/create_application.mjs +10 -4
- package/esm2022/src/platform/platform.mjs +25 -12
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/application_error_handler.mjs +3 -3
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +34 -16
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +4 -4
- package/index.d.ts +6 -2
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/add-bootstrap-context-to-server-main/bundle.js +27129 -0
- package/schematics/migrations/after-render-phase/bundle.js +267 -267
- package/schematics/migrations/http-providers/bundle.js +284 -285
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +161 -161
- package/schematics/migrations.json +5 -0
- package/schematics/ng-generate/control-flow-migration/bundle.js +270 -270
- package/schematics/ng-generate/inject-migration/bundle.js +273 -273
- package/schematics/ng-generate/route-lazy-loading/bundle.js +269 -269
- package/schematics/ng-generate/standalone-migration/bundle.js +451 -451
- package/testing/index.d.ts +1 -1
|
@@ -1905,7 +1905,7 @@ var require_semver2 = __commonJS({
|
|
|
1905
1905
|
}
|
|
1906
1906
|
});
|
|
1907
1907
|
|
|
1908
|
-
// bazel-out/
|
|
1908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
1909
1909
|
var standalone_migration_exports = {};
|
|
1910
1910
|
__export(standalone_migration_exports, {
|
|
1911
1911
|
default: () => standalone_migration_default
|
|
@@ -1913,10 +1913,10 @@ __export(standalone_migration_exports, {
|
|
|
1913
1913
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
1914
1914
|
var import_schematics = require("@angular-devkit/schematics");
|
|
1915
1915
|
|
|
1916
|
-
// bazel-out/
|
|
1916
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
1917
1917
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
1918
1918
|
|
|
1919
|
-
// bazel-out/
|
|
1919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
1920
1920
|
var InvalidFileSystem = class {
|
|
1921
1921
|
exists(path4) {
|
|
1922
1922
|
throw makeError();
|
|
@@ -2004,7 +2004,7 @@ function makeError() {
|
|
|
2004
2004
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
2005
2005
|
}
|
|
2006
2006
|
|
|
2007
|
-
// bazel-out/
|
|
2007
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
2008
2008
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
2009
2009
|
function stripExtension(path4) {
|
|
2010
2010
|
return path4.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -2017,7 +2017,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
2017
2017
|
return sf;
|
|
2018
2018
|
}
|
|
2019
2019
|
|
|
2020
|
-
// bazel-out/
|
|
2020
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
2021
2021
|
var fs = new InvalidFileSystem();
|
|
2022
2022
|
function getFileSystem() {
|
|
2023
2023
|
return fs;
|
|
@@ -2061,7 +2061,7 @@ function toRelativeImport(relativePath) {
|
|
|
2061
2061
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
2062
2062
|
}
|
|
2063
2063
|
|
|
2064
|
-
// bazel-out/
|
|
2064
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
2065
2065
|
var LogicalProjectPath = {
|
|
2066
2066
|
relativePathBetween: function(from, to) {
|
|
2067
2067
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -2107,7 +2107,7 @@ function isWithinBasePath(base, path4) {
|
|
|
2107
2107
|
return isLocalRelativePath(relative(base, path4));
|
|
2108
2108
|
}
|
|
2109
2109
|
|
|
2110
|
-
// bazel-out/
|
|
2110
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
2111
2111
|
var import_fs = __toESM(require("fs"), 1);
|
|
2112
2112
|
var import_module = require("module");
|
|
2113
2113
|
var p = __toESM(require("path"), 1);
|
|
@@ -2215,7 +2215,7 @@ function toggleCase(str) {
|
|
|
2215
2215
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
2216
2216
|
}
|
|
2217
2217
|
|
|
2218
|
-
// bazel-out/
|
|
2218
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
2219
2219
|
var _SELECTOR_REGEXP = new RegExp(
|
|
2220
2220
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
2221
2221
|
"g"
|
|
@@ -2523,7 +2523,7 @@ var SelectorContext = class {
|
|
|
2523
2523
|
}
|
|
2524
2524
|
};
|
|
2525
2525
|
|
|
2526
|
-
// bazel-out/
|
|
2526
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
2527
2527
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
2528
2528
|
var ViewEncapsulation;
|
|
2529
2529
|
(function(ViewEncapsulation2) {
|
|
@@ -2592,7 +2592,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
2592
2592
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
2593
2593
|
}
|
|
2594
2594
|
|
|
2595
|
-
// bazel-out/
|
|
2595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
2596
2596
|
var output_ast_exports = {};
|
|
2597
2597
|
__export(output_ast_exports, {
|
|
2598
2598
|
ArrayType: () => ArrayType,
|
|
@@ -2680,7 +2680,7 @@ __export(output_ast_exports, {
|
|
|
2680
2680
|
variable: () => variable
|
|
2681
2681
|
});
|
|
2682
2682
|
|
|
2683
|
-
// bazel-out/
|
|
2683
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
2684
2684
|
var textEncoder;
|
|
2685
2685
|
function digest(message) {
|
|
2686
2686
|
return message.id || computeDigest(message);
|
|
@@ -2930,7 +2930,7 @@ function wordAt(bytes, index, endian) {
|
|
|
2930
2930
|
return word;
|
|
2931
2931
|
}
|
|
2932
2932
|
|
|
2933
|
-
// bazel-out/
|
|
2933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
2934
2934
|
var TypeModifier;
|
|
2935
2935
|
(function(TypeModifier2) {
|
|
2936
2936
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -4125,7 +4125,7 @@ function serializeTags(tags) {
|
|
|
4125
4125
|
return out;
|
|
4126
4126
|
}
|
|
4127
4127
|
|
|
4128
|
-
// bazel-out/
|
|
4128
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
4129
4129
|
var CONSTANT_PREFIX = "_c";
|
|
4130
4130
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
4131
4131
|
var KEY_CONTEXT = {};
|
|
@@ -4313,7 +4313,7 @@ function isLongStringLiteral(expr) {
|
|
|
4313
4313
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
4314
4314
|
}
|
|
4315
4315
|
|
|
4316
|
-
// bazel-out/
|
|
4316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
4317
4317
|
var CORE = "@angular/core";
|
|
4318
4318
|
var _Identifiers = class {
|
|
4319
4319
|
};
|
|
@@ -5210,7 +5210,7 @@ var Identifiers = _Identifiers;
|
|
|
5210
5210
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
5211
5211
|
})();
|
|
5212
5212
|
|
|
5213
|
-
// bazel-out/
|
|
5213
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
5214
5214
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
5215
5215
|
function dashCaseToCamelCase(input) {
|
|
5216
5216
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -5287,7 +5287,7 @@ var Version = class {
|
|
|
5287
5287
|
};
|
|
5288
5288
|
var _global = globalThis;
|
|
5289
5289
|
|
|
5290
|
-
// bazel-out/
|
|
5290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
5291
5291
|
var VERSION = 3;
|
|
5292
5292
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
5293
5293
|
var SourceMapGenerator = class {
|
|
@@ -5416,7 +5416,7 @@ function toBase64Digit(value) {
|
|
|
5416
5416
|
return B64_DIGITS[value];
|
|
5417
5417
|
}
|
|
5418
5418
|
|
|
5419
|
-
// bazel-out/
|
|
5419
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
5420
5420
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
5421
5421
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
5422
5422
|
var _INDENT_WITH = " ";
|
|
@@ -5904,7 +5904,7 @@ function _createIndent(count) {
|
|
|
5904
5904
|
return res;
|
|
5905
5905
|
}
|
|
5906
5906
|
|
|
5907
|
-
// bazel-out/
|
|
5907
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
5908
5908
|
function typeWithParameters(type, numParams) {
|
|
5909
5909
|
if (numParams === 0) {
|
|
5910
5910
|
return expressionType(type);
|
|
@@ -5962,7 +5962,7 @@ function generateForwardRef(expr) {
|
|
|
5962
5962
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
5963
5963
|
}
|
|
5964
5964
|
|
|
5965
|
-
// bazel-out/
|
|
5965
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
5966
5966
|
var R3FactoryDelegateType;
|
|
5967
5967
|
(function(R3FactoryDelegateType2) {
|
|
5968
5968
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -6107,7 +6107,7 @@ function getInjectFn(target) {
|
|
|
6107
6107
|
}
|
|
6108
6108
|
}
|
|
6109
6109
|
|
|
6110
|
-
// bazel-out/
|
|
6110
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
6111
6111
|
var ParserError = class {
|
|
6112
6112
|
constructor(message, input, errLocation, ctxLocation) {
|
|
6113
6113
|
this.input = input;
|
|
@@ -6545,7 +6545,7 @@ var BoundElementProperty = class {
|
|
|
6545
6545
|
}
|
|
6546
6546
|
};
|
|
6547
6547
|
|
|
6548
|
-
// bazel-out/
|
|
6548
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
6549
6549
|
var TagContentType;
|
|
6550
6550
|
(function(TagContentType2) {
|
|
6551
6551
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -6582,7 +6582,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
6582
6582
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
6583
6583
|
}
|
|
6584
6584
|
|
|
6585
|
-
// bazel-out/
|
|
6585
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
6586
6586
|
var Comment = class {
|
|
6587
6587
|
constructor(value, sourceSpan) {
|
|
6588
6588
|
this.value = value;
|
|
@@ -7052,7 +7052,7 @@ function visitAll(visitor, nodes) {
|
|
|
7052
7052
|
return result;
|
|
7053
7053
|
}
|
|
7054
7054
|
|
|
7055
|
-
// bazel-out/
|
|
7055
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
7056
7056
|
var Message = class {
|
|
7057
7057
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
7058
7058
|
this.nodes = nodes;
|
|
@@ -7243,7 +7243,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
7243
7243
|
}
|
|
7244
7244
|
};
|
|
7245
7245
|
|
|
7246
|
-
// bazel-out/
|
|
7246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
7247
7247
|
var Serializer = class {
|
|
7248
7248
|
createNameMapper(message) {
|
|
7249
7249
|
return null;
|
|
@@ -7300,7 +7300,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
7300
7300
|
}
|
|
7301
7301
|
};
|
|
7302
7302
|
|
|
7303
|
-
// bazel-out/
|
|
7303
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
7304
7304
|
var _Visitor = class {
|
|
7305
7305
|
visitTag(tag) {
|
|
7306
7306
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -7388,7 +7388,7 @@ function escapeXml(text2) {
|
|
|
7388
7388
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
7389
7389
|
}
|
|
7390
7390
|
|
|
7391
|
-
// bazel-out/
|
|
7391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
7392
7392
|
var _XMB_HANDLER = "angular";
|
|
7393
7393
|
var _MESSAGES_TAG = "messagebundle";
|
|
7394
7394
|
var _MESSAGE_TAG = "msg";
|
|
@@ -7554,7 +7554,7 @@ function toPublicName(internalName) {
|
|
|
7554
7554
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
7555
7555
|
}
|
|
7556
7556
|
|
|
7557
|
-
// bazel-out/
|
|
7557
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
7558
7558
|
var I18N_ATTR = "i18n";
|
|
7559
7559
|
var I18N_ATTR_PREFIX = "i18n-";
|
|
7560
7560
|
var I18N_ICU_VAR_PREFIX = "VAR_";
|
|
@@ -7594,7 +7594,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
|
|
|
7594
7594
|
return postfix ? `${raw}_${postfix}` : raw;
|
|
7595
7595
|
}
|
|
7596
7596
|
|
|
7597
|
-
// bazel-out/
|
|
7597
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
7598
7598
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
7599
7599
|
var TEMPORARY_NAME = "_t";
|
|
7600
7600
|
var CONTEXT_NAME = "ctx";
|
|
@@ -7721,7 +7721,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
|
|
|
7721
7721
|
return attributesMap;
|
|
7722
7722
|
}
|
|
7723
7723
|
|
|
7724
|
-
// bazel-out/
|
|
7724
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
7725
7725
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
7726
7726
|
let result = null;
|
|
7727
7727
|
const factoryMeta = {
|
|
@@ -7809,7 +7809,7 @@ function createFactoryFunction(type) {
|
|
|
7809
7809
|
return arrowFn([t], type.prop("\u0275fac").callFn([variable(t.name)]));
|
|
7810
7810
|
}
|
|
7811
7811
|
|
|
7812
|
-
// bazel-out/
|
|
7812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
7813
7813
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
7814
7814
|
/@/,
|
|
7815
7815
|
/^\s*$/,
|
|
@@ -7832,7 +7832,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
7832
7832
|
}
|
|
7833
7833
|
}
|
|
7834
7834
|
|
|
7835
|
-
// bazel-out/
|
|
7835
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
7836
7836
|
var InterpolationConfig = class {
|
|
7837
7837
|
static fromArray(markers) {
|
|
7838
7838
|
if (!markers) {
|
|
@@ -7849,7 +7849,7 @@ var InterpolationConfig = class {
|
|
|
7849
7849
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
7850
7850
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
7851
7851
|
|
|
7852
|
-
// bazel-out/
|
|
7852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
7853
7853
|
var $EOF = 0;
|
|
7854
7854
|
var $BSPACE = 8;
|
|
7855
7855
|
var $TAB = 9;
|
|
@@ -7931,7 +7931,7 @@ function isQuote(code) {
|
|
|
7931
7931
|
return code === $SQ || code === $DQ || code === $BT;
|
|
7932
7932
|
}
|
|
7933
7933
|
|
|
7934
|
-
// bazel-out/
|
|
7934
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
7935
7935
|
var ParseLocation = class {
|
|
7936
7936
|
constructor(file, offset, line, col) {
|
|
7937
7937
|
this.file = file;
|
|
@@ -8078,7 +8078,7 @@ function sanitizeIdentifier(name) {
|
|
|
8078
8078
|
return name.replace(/\W/g, "_");
|
|
8079
8079
|
}
|
|
8080
8080
|
|
|
8081
|
-
// bazel-out/
|
|
8081
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
8082
8082
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
8083
8083
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
8084
8084
|
constructor() {
|
|
@@ -8171,7 +8171,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
8171
8171
|
}
|
|
8172
8172
|
};
|
|
8173
8173
|
|
|
8174
|
-
// bazel-out/
|
|
8174
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
8175
8175
|
var policy;
|
|
8176
8176
|
function getPolicy() {
|
|
8177
8177
|
if (policy === void 0) {
|
|
@@ -8209,7 +8209,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
8209
8209
|
return fn2.bind(_global);
|
|
8210
8210
|
}
|
|
8211
8211
|
|
|
8212
|
-
// bazel-out/
|
|
8212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
8213
8213
|
var JitEvaluator = class {
|
|
8214
8214
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
8215
8215
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -8297,7 +8297,7 @@ function isUseStrictStatement(statement) {
|
|
|
8297
8297
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
8298
8298
|
}
|
|
8299
8299
|
|
|
8300
|
-
// bazel-out/
|
|
8300
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
8301
8301
|
function compileInjector(meta) {
|
|
8302
8302
|
const definitionMap = new DefinitionMap();
|
|
8303
8303
|
if (meta.providers !== null) {
|
|
@@ -8314,7 +8314,7 @@ function createInjectorType(meta) {
|
|
|
8314
8314
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
8315
8315
|
}
|
|
8316
8316
|
|
|
8317
|
-
// bazel-out/
|
|
8317
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
8318
8318
|
var R3JitReflector = class {
|
|
8319
8319
|
constructor(context) {
|
|
8320
8320
|
this.context = context;
|
|
@@ -8330,7 +8330,7 @@ var R3JitReflector = class {
|
|
|
8330
8330
|
}
|
|
8331
8331
|
};
|
|
8332
8332
|
|
|
8333
|
-
// bazel-out/
|
|
8333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
8334
8334
|
var R3SelectorScopeMode;
|
|
8335
8335
|
(function(R3SelectorScopeMode2) {
|
|
8336
8336
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -8465,7 +8465,7 @@ function tupleOfTypes(types) {
|
|
|
8465
8465
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
8466
8466
|
}
|
|
8467
8467
|
|
|
8468
|
-
// bazel-out/
|
|
8468
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
8469
8469
|
function compilePipeFromMetadata(metadata) {
|
|
8470
8470
|
const definitionMapValues = [];
|
|
8471
8471
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -8486,7 +8486,7 @@ function createPipeType(metadata) {
|
|
|
8486
8486
|
]));
|
|
8487
8487
|
}
|
|
8488
8488
|
|
|
8489
|
-
// bazel-out/
|
|
8489
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
8490
8490
|
var R3TemplateDependencyKind;
|
|
8491
8491
|
(function(R3TemplateDependencyKind2) {
|
|
8492
8492
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -8494,7 +8494,7 @@ var R3TemplateDependencyKind;
|
|
|
8494
8494
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
8495
8495
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
8496
8496
|
|
|
8497
|
-
// bazel-out/
|
|
8497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
8498
8498
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
8499
8499
|
"inherit",
|
|
8500
8500
|
"initial",
|
|
@@ -8974,7 +8974,7 @@ function repeatGroups(groups, multiples) {
|
|
|
8974
8974
|
}
|
|
8975
8975
|
}
|
|
8976
8976
|
|
|
8977
|
-
// bazel-out/
|
|
8977
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
8978
8978
|
var OpKind;
|
|
8979
8979
|
(function(OpKind2) {
|
|
8980
8980
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -9132,7 +9132,7 @@ var TemplateKind;
|
|
|
9132
9132
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
9133
9133
|
})(TemplateKind || (TemplateKind = {}));
|
|
9134
9134
|
|
|
9135
|
-
// bazel-out/
|
|
9135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
9136
9136
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
9137
9137
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
9138
9138
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -9160,7 +9160,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
9160
9160
|
return expr[UsesVarOffset] === true;
|
|
9161
9161
|
}
|
|
9162
9162
|
|
|
9163
|
-
// bazel-out/
|
|
9163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
9164
9164
|
function createStatementOp(statement) {
|
|
9165
9165
|
return __spreadValues({
|
|
9166
9166
|
kind: OpKind.Statement,
|
|
@@ -9182,7 +9182,7 @@ var NEW_OP = {
|
|
|
9182
9182
|
next: null
|
|
9183
9183
|
};
|
|
9184
9184
|
|
|
9185
|
-
// bazel-out/
|
|
9185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
9186
9186
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
9187
9187
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
9188
9188
|
kind: OpKind.InterpolateText,
|
|
@@ -9371,7 +9371,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
|
|
|
9371
9371
|
}, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
|
|
9372
9372
|
}
|
|
9373
9373
|
|
|
9374
|
-
// bazel-out/
|
|
9374
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
9375
9375
|
var _a;
|
|
9376
9376
|
var _b;
|
|
9377
9377
|
var _c;
|
|
@@ -10289,7 +10289,7 @@ function isStringLiteral(expr) {
|
|
|
10289
10289
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
10290
10290
|
}
|
|
10291
10291
|
|
|
10292
|
-
// bazel-out/
|
|
10292
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
10293
10293
|
var _OpList = class {
|
|
10294
10294
|
constructor() {
|
|
10295
10295
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -10480,14 +10480,14 @@ var OpList = _OpList;
|
|
|
10480
10480
|
_OpList.nextListId = 0;
|
|
10481
10481
|
})();
|
|
10482
10482
|
|
|
10483
|
-
// bazel-out/
|
|
10483
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
10484
10484
|
var SlotHandle = class {
|
|
10485
10485
|
constructor() {
|
|
10486
10486
|
this.slot = null;
|
|
10487
10487
|
}
|
|
10488
10488
|
};
|
|
10489
10489
|
|
|
10490
|
-
// bazel-out/
|
|
10490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
10491
10491
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
10492
10492
|
OpKind.Element,
|
|
10493
10493
|
OpKind.ElementStart,
|
|
@@ -10800,7 +10800,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
10800
10800
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
10801
10801
|
}
|
|
10802
10802
|
|
|
10803
|
-
// bazel-out/
|
|
10803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
10804
10804
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
10805
10805
|
return __spreadValues(__spreadValues({
|
|
10806
10806
|
kind: OpKind.HostProperty,
|
|
@@ -10814,10 +10814,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
10814
10814
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
10815
10815
|
}
|
|
10816
10816
|
|
|
10817
|
-
// bazel-out/
|
|
10817
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
10818
10818
|
var CTX_REF = "CTX_REF_MARKER";
|
|
10819
10819
|
|
|
10820
|
-
// bazel-out/
|
|
10820
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
10821
10821
|
var CompilationJobKind;
|
|
10822
10822
|
(function(CompilationJobKind2) {
|
|
10823
10823
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -10925,7 +10925,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
10925
10925
|
}
|
|
10926
10926
|
};
|
|
10927
10927
|
|
|
10928
|
-
// bazel-out/
|
|
10928
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
10929
10929
|
function deleteAnyCasts(job) {
|
|
10930
10930
|
for (const unit of job.units) {
|
|
10931
10931
|
for (const op of unit.ops()) {
|
|
@@ -10943,7 +10943,7 @@ function removeAnys(e) {
|
|
|
10943
10943
|
return e;
|
|
10944
10944
|
}
|
|
10945
10945
|
|
|
10946
|
-
// bazel-out/
|
|
10946
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
10947
10947
|
function applyI18nExpressions(job) {
|
|
10948
10948
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
10949
10949
|
for (const unit of job.units) {
|
|
@@ -10986,7 +10986,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
10986
10986
|
return false;
|
|
10987
10987
|
}
|
|
10988
10988
|
|
|
10989
|
-
// bazel-out/
|
|
10989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
10990
10990
|
function assignI18nSlotDependencies(job) {
|
|
10991
10991
|
for (const unit of job.units) {
|
|
10992
10992
|
let updateOp = unit.update.head;
|
|
@@ -11031,7 +11031,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
11031
11031
|
}
|
|
11032
11032
|
}
|
|
11033
11033
|
|
|
11034
|
-
// bazel-out/
|
|
11034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
11035
11035
|
function createOpXrefMap(unit) {
|
|
11036
11036
|
const map = /* @__PURE__ */ new Map();
|
|
11037
11037
|
for (const op of unit.create) {
|
|
@@ -11046,7 +11046,7 @@ function createOpXrefMap(unit) {
|
|
|
11046
11046
|
return map;
|
|
11047
11047
|
}
|
|
11048
11048
|
|
|
11049
|
-
// bazel-out/
|
|
11049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
11050
11050
|
function extractAttributes(job) {
|
|
11051
11051
|
for (const unit of job.units) {
|
|
11052
11052
|
const elements = createOpXrefMap(unit);
|
|
@@ -11175,7 +11175,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
11175
11175
|
}
|
|
11176
11176
|
}
|
|
11177
11177
|
|
|
11178
|
-
// bazel-out/
|
|
11178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
11179
11179
|
function lookupElement2(elements, xref) {
|
|
11180
11180
|
const el = elements.get(xref);
|
|
11181
11181
|
if (el === void 0) {
|
|
@@ -11232,7 +11232,7 @@ function specializeBindings(job) {
|
|
|
11232
11232
|
}
|
|
11233
11233
|
}
|
|
11234
11234
|
|
|
11235
|
-
// bazel-out/
|
|
11235
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
11236
11236
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
11237
11237
|
Identifiers.attribute,
|
|
11238
11238
|
Identifiers.classProp,
|
|
@@ -11304,7 +11304,7 @@ function chainOperationsInList(opList) {
|
|
|
11304
11304
|
}
|
|
11305
11305
|
}
|
|
11306
11306
|
|
|
11307
|
-
// bazel-out/
|
|
11307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
11308
11308
|
function collapseSingletonInterpolations(job) {
|
|
11309
11309
|
for (const unit of job.units) {
|
|
11310
11310
|
for (const op of unit.update) {
|
|
@@ -11316,7 +11316,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
11316
11316
|
}
|
|
11317
11317
|
}
|
|
11318
11318
|
|
|
11319
|
-
// bazel-out/
|
|
11319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
11320
11320
|
function generateConditionalExpressions(job) {
|
|
11321
11321
|
for (const unit of job.units) {
|
|
11322
11322
|
for (const op of unit.ops()) {
|
|
@@ -11353,7 +11353,7 @@ function generateConditionalExpressions(job) {
|
|
|
11353
11353
|
}
|
|
11354
11354
|
}
|
|
11355
11355
|
|
|
11356
|
-
// bazel-out/
|
|
11356
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
11357
11357
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
11358
11358
|
["&&", BinaryOperator.And],
|
|
11359
11359
|
[">", BinaryOperator.Bigger],
|
|
@@ -11410,7 +11410,7 @@ function literalOrArrayLiteral(value) {
|
|
|
11410
11410
|
return literal(value);
|
|
11411
11411
|
}
|
|
11412
11412
|
|
|
11413
|
-
// bazel-out/
|
|
11413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
11414
11414
|
function collectElementConsts(job) {
|
|
11415
11415
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
11416
11416
|
for (const unit of job.units) {
|
|
@@ -11579,7 +11579,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
11579
11579
|
return literalArr(attrArray);
|
|
11580
11580
|
}
|
|
11581
11581
|
|
|
11582
|
-
// bazel-out/
|
|
11582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
11583
11583
|
function convertI18nBindings(job) {
|
|
11584
11584
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
11585
11585
|
for (const unit of job.units) {
|
|
@@ -11620,7 +11620,7 @@ function convertI18nBindings(job) {
|
|
|
11620
11620
|
}
|
|
11621
11621
|
}
|
|
11622
11622
|
|
|
11623
|
-
// bazel-out/
|
|
11623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
11624
11624
|
function resolveDeferDepsFns(job) {
|
|
11625
11625
|
var _a2;
|
|
11626
11626
|
for (const unit of job.units) {
|
|
@@ -11645,7 +11645,7 @@ function resolveDeferDepsFns(job) {
|
|
|
11645
11645
|
}
|
|
11646
11646
|
}
|
|
11647
11647
|
|
|
11648
|
-
// bazel-out/
|
|
11648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
11649
11649
|
function createI18nContexts(job) {
|
|
11650
11650
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
11651
11651
|
for (const unit of job.units) {
|
|
@@ -11723,7 +11723,7 @@ function createI18nContexts(job) {
|
|
|
11723
11723
|
}
|
|
11724
11724
|
}
|
|
11725
11725
|
|
|
11726
|
-
// bazel-out/
|
|
11726
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
11727
11727
|
function deduplicateTextBindings(job) {
|
|
11728
11728
|
const seen = /* @__PURE__ */ new Map();
|
|
11729
11729
|
for (const unit of job.units) {
|
|
@@ -11745,7 +11745,7 @@ function deduplicateTextBindings(job) {
|
|
|
11745
11745
|
}
|
|
11746
11746
|
}
|
|
11747
11747
|
|
|
11748
|
-
// bazel-out/
|
|
11748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
11749
11749
|
function configureDeferInstructions(job) {
|
|
11750
11750
|
for (const unit of job.units) {
|
|
11751
11751
|
for (const op of unit.create) {
|
|
@@ -11762,7 +11762,7 @@ function configureDeferInstructions(job) {
|
|
|
11762
11762
|
}
|
|
11763
11763
|
}
|
|
11764
11764
|
|
|
11765
|
-
// bazel-out/
|
|
11765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
11766
11766
|
function resolveDeferTargetNames(job) {
|
|
11767
11767
|
const scopes = /* @__PURE__ */ new Map();
|
|
11768
11768
|
function getScopeForView2(view) {
|
|
@@ -11856,7 +11856,7 @@ var Scope = class {
|
|
|
11856
11856
|
}
|
|
11857
11857
|
};
|
|
11858
11858
|
|
|
11859
|
-
// bazel-out/
|
|
11859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
11860
11860
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
11861
11861
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
11862
11862
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -11883,7 +11883,7 @@ function collapseEmptyInstructions(job) {
|
|
|
11883
11883
|
}
|
|
11884
11884
|
}
|
|
11885
11885
|
|
|
11886
|
-
// bazel-out/
|
|
11886
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
11887
11887
|
function expandSafeReads(job) {
|
|
11888
11888
|
for (const unit of job.units) {
|
|
11889
11889
|
for (const op of unit.ops()) {
|
|
@@ -12019,7 +12019,7 @@ function ternaryTransform(e) {
|
|
|
12019
12019
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
12020
12020
|
}
|
|
12021
12021
|
|
|
12022
|
-
// bazel-out/
|
|
12022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
12023
12023
|
var ESCAPE = "\uFFFD";
|
|
12024
12024
|
var ELEMENT_MARKER = "#";
|
|
12025
12025
|
var TEMPLATE_MARKER = "*";
|
|
@@ -12155,7 +12155,7 @@ function formatValue(value) {
|
|
|
12155
12155
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
12156
12156
|
}
|
|
12157
12157
|
|
|
12158
|
-
// bazel-out/
|
|
12158
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
12159
12159
|
function generateAdvance(job) {
|
|
12160
12160
|
for (const unit of job.units) {
|
|
12161
12161
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -12198,7 +12198,7 @@ function generateAdvance(job) {
|
|
|
12198
12198
|
}
|
|
12199
12199
|
}
|
|
12200
12200
|
|
|
12201
|
-
// bazel-out/
|
|
12201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
12202
12202
|
function generateProjectionDefs(job) {
|
|
12203
12203
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
12204
12204
|
const selectors = [];
|
|
@@ -12222,7 +12222,7 @@ function generateProjectionDefs(job) {
|
|
|
12222
12222
|
}
|
|
12223
12223
|
}
|
|
12224
12224
|
|
|
12225
|
-
// bazel-out/
|
|
12225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
12226
12226
|
function generateVariables(job) {
|
|
12227
12227
|
recursivelyProcessView(job.root, null);
|
|
12228
12228
|
}
|
|
@@ -12340,7 +12340,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
|
|
|
12340
12340
|
return newOps;
|
|
12341
12341
|
}
|
|
12342
12342
|
|
|
12343
|
-
// bazel-out/
|
|
12343
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
12344
12344
|
function collectConstExpressions(job) {
|
|
12345
12345
|
for (const unit of job.units) {
|
|
12346
12346
|
for (const op of unit.ops()) {
|
|
@@ -12354,7 +12354,7 @@ function collectConstExpressions(job) {
|
|
|
12354
12354
|
}
|
|
12355
12355
|
}
|
|
12356
12356
|
|
|
12357
|
-
// bazel-out/
|
|
12357
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
12358
12358
|
var STYLE_DOT = "style.";
|
|
12359
12359
|
var CLASS_DOT = "class.";
|
|
12360
12360
|
var STYLE_BANG = "style!";
|
|
@@ -12412,7 +12412,7 @@ function parseProperty(name) {
|
|
|
12412
12412
|
return { property: property2, suffix };
|
|
12413
12413
|
}
|
|
12414
12414
|
|
|
12415
|
-
// bazel-out/
|
|
12415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12416
12416
|
function mapLiteral(obj, quoted = false) {
|
|
12417
12417
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12418
12418
|
key,
|
|
@@ -12421,7 +12421,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12421
12421
|
})));
|
|
12422
12422
|
}
|
|
12423
12423
|
|
|
12424
|
-
// bazel-out/
|
|
12424
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
12425
12425
|
var IcuSerializerVisitor = class {
|
|
12426
12426
|
visitText(text2) {
|
|
12427
12427
|
return text2.value;
|
|
@@ -12455,7 +12455,7 @@ function serializeIcuNode(icu) {
|
|
|
12455
12455
|
return icu.visit(serializer);
|
|
12456
12456
|
}
|
|
12457
12457
|
|
|
12458
|
-
// bazel-out/
|
|
12458
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
12459
12459
|
var NodeWithI18n = class {
|
|
12460
12460
|
constructor(sourceSpan, i18n2) {
|
|
12461
12461
|
this.sourceSpan = sourceSpan;
|
|
@@ -12578,7 +12578,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
12578
12578
|
return result;
|
|
12579
12579
|
}
|
|
12580
12580
|
|
|
12581
|
-
// bazel-out/
|
|
12581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12582
12582
|
var NAMED_ENTITIES = {
|
|
12583
12583
|
"AElig": "\xC6",
|
|
12584
12584
|
"AMP": "&",
|
|
@@ -14709,7 +14709,7 @@ var NAMED_ENTITIES = {
|
|
|
14709
14709
|
var NGSP_UNICODE = "\uE500";
|
|
14710
14710
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14711
14711
|
|
|
14712
|
-
// bazel-out/
|
|
14712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14713
14713
|
var TokenError = class extends ParseError {
|
|
14714
14714
|
constructor(errorMsg, tokenType, span) {
|
|
14715
14715
|
super(span, errorMsg);
|
|
@@ -15699,7 +15699,7 @@ var CursorError = class {
|
|
|
15699
15699
|
}
|
|
15700
15700
|
};
|
|
15701
15701
|
|
|
15702
|
-
// bazel-out/
|
|
15702
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15703
15703
|
var TreeError = class extends ParseError {
|
|
15704
15704
|
static create(elementName, span, msg) {
|
|
15705
15705
|
return new TreeError(elementName, span, msg);
|
|
@@ -16127,7 +16127,7 @@ function decodeEntity(match, entity) {
|
|
|
16127
16127
|
return match;
|
|
16128
16128
|
}
|
|
16129
16129
|
|
|
16130
|
-
// bazel-out/
|
|
16130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
16131
16131
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
16132
16132
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
16133
16133
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -16267,7 +16267,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
16267
16267
|
return result;
|
|
16268
16268
|
}
|
|
16269
16269
|
|
|
16270
|
-
// bazel-out/
|
|
16270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
16271
16271
|
var TokenType;
|
|
16272
16272
|
(function(TokenType2) {
|
|
16273
16273
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -16628,7 +16628,7 @@ function parseIntAutoRadix(text2) {
|
|
|
16628
16628
|
return result;
|
|
16629
16629
|
}
|
|
16630
16630
|
|
|
16631
|
-
// bazel-out/
|
|
16631
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
16632
16632
|
var SplitInterpolation = class {
|
|
16633
16633
|
constructor(strings, expressions, offsets) {
|
|
16634
16634
|
this.strings = strings;
|
|
@@ -17512,7 +17512,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
17512
17512
|
return offsetMap;
|
|
17513
17513
|
}
|
|
17514
17514
|
|
|
17515
|
-
// bazel-out/
|
|
17515
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
17516
17516
|
var _SECURITY_SCHEMA;
|
|
17517
17517
|
function SECURITY_SCHEMA() {
|
|
17518
17518
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -17573,11 +17573,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
17573
17573
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
17574
17574
|
}
|
|
17575
17575
|
|
|
17576
|
-
// bazel-out/
|
|
17576
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
17577
17577
|
var ElementSchemaRegistry = class {
|
|
17578
17578
|
};
|
|
17579
17579
|
|
|
17580
|
-
// bazel-out/
|
|
17580
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
17581
17581
|
var BOOLEAN = "boolean";
|
|
17582
17582
|
var NUMBER = "number";
|
|
17583
17583
|
var STRING = "string";
|
|
@@ -17960,7 +17960,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
17960
17960
|
}
|
|
17961
17961
|
}
|
|
17962
17962
|
|
|
17963
|
-
// bazel-out/
|
|
17963
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
17964
17964
|
var HtmlTagDefinition = class {
|
|
17965
17965
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
17966
17966
|
this.closedByChildren = {};
|
|
@@ -18096,7 +18096,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
18096
18096
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
18097
18097
|
}
|
|
18098
18098
|
|
|
18099
|
-
// bazel-out/
|
|
18099
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
18100
18100
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
18101
18101
|
"A": "LINK",
|
|
18102
18102
|
"B": "BOLD_TEXT",
|
|
@@ -18218,7 +18218,7 @@ var PlaceholderRegistry = class {
|
|
|
18218
18218
|
}
|
|
18219
18219
|
};
|
|
18220
18220
|
|
|
18221
|
-
// bazel-out/
|
|
18221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
18222
18222
|
var _expParser = new Parser2(new Lexer());
|
|
18223
18223
|
function createI18nMessageFactory(interpolationConfig, containerBlocks, retainEmptyTokens) {
|
|
18224
18224
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks, retainEmptyTokens);
|
|
@@ -18413,14 +18413,14 @@ function extractPlaceholderName(input) {
|
|
|
18413
18413
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
18414
18414
|
}
|
|
18415
18415
|
|
|
18416
|
-
// bazel-out/
|
|
18416
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
18417
18417
|
var I18nError = class extends ParseError {
|
|
18418
18418
|
constructor(span, msg) {
|
|
18419
18419
|
super(span, msg);
|
|
18420
18420
|
}
|
|
18421
18421
|
};
|
|
18422
18422
|
|
|
18423
|
-
// bazel-out/
|
|
18423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
18424
18424
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
18425
18425
|
"iframe|srcdoc",
|
|
18426
18426
|
"*|innerhtml",
|
|
@@ -18435,7 +18435,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
18435
18435
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
18436
18436
|
}
|
|
18437
18437
|
|
|
18438
|
-
// bazel-out/
|
|
18438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
18439
18439
|
var setI18nRefs = (originalNodeMap) => {
|
|
18440
18440
|
return (trimmedNode, i18nNode) => {
|
|
18441
18441
|
var _a2;
|
|
@@ -18609,7 +18609,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
18609
18609
|
return jsDocComment(tags);
|
|
18610
18610
|
}
|
|
18611
18611
|
|
|
18612
|
-
// bazel-out/
|
|
18612
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
18613
18613
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
18614
18614
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
18615
18615
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -18660,7 +18660,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
18660
18660
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
18661
18661
|
}
|
|
18662
18662
|
|
|
18663
|
-
// bazel-out/
|
|
18663
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
18664
18664
|
function createLocalizeStatements(variable2, message, params) {
|
|
18665
18665
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
18666
18666
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -18749,7 +18749,7 @@ function createEmptyMessagePart(location) {
|
|
|
18749
18749
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
18750
18750
|
}
|
|
18751
18751
|
|
|
18752
|
-
// bazel-out/
|
|
18752
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
18753
18753
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
18754
18754
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
18755
18755
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -18920,7 +18920,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
18920
18920
|
return variable(name);
|
|
18921
18921
|
}
|
|
18922
18922
|
|
|
18923
|
-
// bazel-out/
|
|
18923
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
18924
18924
|
function convertI18nText(job) {
|
|
18925
18925
|
var _a2, _b2, _c2;
|
|
18926
18926
|
for (const unit of job.units) {
|
|
@@ -18990,7 +18990,7 @@ function convertI18nText(job) {
|
|
|
18990
18990
|
}
|
|
18991
18991
|
}
|
|
18992
18992
|
|
|
18993
|
-
// bazel-out/
|
|
18993
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
18994
18994
|
function liftLocalRefs(job) {
|
|
18995
18995
|
for (const unit of job.units) {
|
|
18996
18996
|
for (const op of unit.create) {
|
|
@@ -19020,7 +19020,7 @@ function serializeLocalRefs(refs) {
|
|
|
19020
19020
|
return literalArr(constRefs);
|
|
19021
19021
|
}
|
|
19022
19022
|
|
|
19023
|
-
// bazel-out/
|
|
19023
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
19024
19024
|
function emitNamespaceChanges(job) {
|
|
19025
19025
|
for (const unit of job.units) {
|
|
19026
19026
|
let activeNamespace = Namespace.HTML;
|
|
@@ -19036,7 +19036,7 @@ function emitNamespaceChanges(job) {
|
|
|
19036
19036
|
}
|
|
19037
19037
|
}
|
|
19038
19038
|
|
|
19039
|
-
// bazel-out/
|
|
19039
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
19040
19040
|
function parse(value) {
|
|
19041
19041
|
const styles = [];
|
|
19042
19042
|
let i = 0;
|
|
@@ -19130,7 +19130,7 @@ function parseExtractedStyles(job) {
|
|
|
19130
19130
|
}
|
|
19131
19131
|
}
|
|
19132
19132
|
|
|
19133
|
-
// bazel-out/
|
|
19133
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
19134
19134
|
function nameFunctionsAndVariables(job) {
|
|
19135
19135
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
19136
19136
|
}
|
|
@@ -19274,7 +19274,7 @@ function stripImportant(name) {
|
|
|
19274
19274
|
return name;
|
|
19275
19275
|
}
|
|
19276
19276
|
|
|
19277
|
-
// bazel-out/
|
|
19277
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
19278
19278
|
function mergeNextContextExpressions(job) {
|
|
19279
19279
|
for (const unit of job.units) {
|
|
19280
19280
|
for (const op of unit.create) {
|
|
@@ -19321,7 +19321,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
19321
19321
|
}
|
|
19322
19322
|
}
|
|
19323
19323
|
|
|
19324
|
-
// bazel-out/
|
|
19324
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
19325
19325
|
var CONTAINER_TAG = "ng-container";
|
|
19326
19326
|
function generateNgContainerOps(job) {
|
|
19327
19327
|
for (const unit of job.units) {
|
|
@@ -19338,7 +19338,7 @@ function generateNgContainerOps(job) {
|
|
|
19338
19338
|
}
|
|
19339
19339
|
}
|
|
19340
19340
|
|
|
19341
|
-
// bazel-out/
|
|
19341
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
19342
19342
|
function lookupElement3(elements, xref) {
|
|
19343
19343
|
const el = elements.get(xref);
|
|
19344
19344
|
if (el === void 0) {
|
|
@@ -19368,7 +19368,7 @@ function disableBindings(job) {
|
|
|
19368
19368
|
}
|
|
19369
19369
|
}
|
|
19370
19370
|
|
|
19371
|
-
// bazel-out/
|
|
19371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
19372
19372
|
function generateNullishCoalesceExpressions(job) {
|
|
19373
19373
|
for (const unit of job.units) {
|
|
19374
19374
|
for (const op of unit.ops()) {
|
|
@@ -19384,7 +19384,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
19384
19384
|
}
|
|
19385
19385
|
}
|
|
19386
19386
|
|
|
19387
|
-
// bazel-out/
|
|
19387
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
19388
19388
|
function kindTest(kind) {
|
|
19389
19389
|
return (op) => op.kind === kind;
|
|
19390
19390
|
}
|
|
@@ -19474,7 +19474,7 @@ function keepLast(ops) {
|
|
|
19474
19474
|
return ops.slice(ops.length - 1);
|
|
19475
19475
|
}
|
|
19476
19476
|
|
|
19477
|
-
// bazel-out/
|
|
19477
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
19478
19478
|
function removeContentSelectors(job) {
|
|
19479
19479
|
for (const unit of job.units) {
|
|
19480
19480
|
const elements = createOpXrefMap(unit);
|
|
@@ -19501,7 +19501,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
19501
19501
|
return el;
|
|
19502
19502
|
}
|
|
19503
19503
|
|
|
19504
|
-
// bazel-out/
|
|
19504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
19505
19505
|
function createPipes(job) {
|
|
19506
19506
|
for (const unit of job.units) {
|
|
19507
19507
|
processPipeBindingsInView(unit);
|
|
@@ -19549,7 +19549,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
19549
19549
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
19550
19550
|
}
|
|
19551
19551
|
|
|
19552
|
-
// bazel-out/
|
|
19552
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
19553
19553
|
function createVariadicPipes(job) {
|
|
19554
19554
|
for (const unit of job.units) {
|
|
19555
19555
|
for (const op of unit.update) {
|
|
@@ -19566,7 +19566,7 @@ function createVariadicPipes(job) {
|
|
|
19566
19566
|
}
|
|
19567
19567
|
}
|
|
19568
19568
|
|
|
19569
|
-
// bazel-out/
|
|
19569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
19570
19570
|
function propagateI18nBlocks(job) {
|
|
19571
19571
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
19572
19572
|
}
|
|
@@ -19620,7 +19620,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
19620
19620
|
}
|
|
19621
19621
|
}
|
|
19622
19622
|
|
|
19623
|
-
// bazel-out/
|
|
19623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
19624
19624
|
function extractPureFunctions(job) {
|
|
19625
19625
|
for (const view of job.units) {
|
|
19626
19626
|
for (const op of view.ops()) {
|
|
@@ -19662,7 +19662,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
19662
19662
|
}
|
|
19663
19663
|
};
|
|
19664
19664
|
|
|
19665
|
-
// bazel-out/
|
|
19665
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
19666
19666
|
function generatePureLiteralStructures(job) {
|
|
19667
19667
|
for (const unit of job.units) {
|
|
19668
19668
|
for (const op of unit.update) {
|
|
@@ -19709,7 +19709,7 @@ function transformLiteralMap(expr) {
|
|
|
19709
19709
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
19710
19710
|
}
|
|
19711
19711
|
|
|
19712
|
-
// bazel-out/
|
|
19712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
19713
19713
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
19714
19714
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
19715
19715
|
}
|
|
@@ -20241,7 +20241,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
20241
20241
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
20242
20242
|
}
|
|
20243
20243
|
|
|
20244
|
-
// bazel-out/
|
|
20244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
20245
20245
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
20246
20246
|
["window", Identifiers.resolveWindow],
|
|
20247
20247
|
["document", Identifiers.resolveDocument],
|
|
@@ -20606,7 +20606,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
20606
20606
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
20607
20607
|
}
|
|
20608
20608
|
|
|
20609
|
-
// bazel-out/
|
|
20609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
20610
20610
|
function removeEmptyBindings(job) {
|
|
20611
20611
|
for (const unit of job.units) {
|
|
20612
20612
|
for (const op of unit.update) {
|
|
@@ -20627,7 +20627,7 @@ function removeEmptyBindings(job) {
|
|
|
20627
20627
|
}
|
|
20628
20628
|
}
|
|
20629
20629
|
|
|
20630
|
-
// bazel-out/
|
|
20630
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
20631
20631
|
function removeI18nContexts(job) {
|
|
20632
20632
|
for (const unit of job.units) {
|
|
20633
20633
|
for (const op of unit.create) {
|
|
@@ -20643,7 +20643,7 @@ function removeI18nContexts(job) {
|
|
|
20643
20643
|
}
|
|
20644
20644
|
}
|
|
20645
20645
|
|
|
20646
|
-
// bazel-out/
|
|
20646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
20647
20647
|
function removeUnusedI18nAttributesOps(job) {
|
|
20648
20648
|
for (const unit of job.units) {
|
|
20649
20649
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -20665,7 +20665,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
20665
20665
|
}
|
|
20666
20666
|
}
|
|
20667
20667
|
|
|
20668
|
-
// bazel-out/
|
|
20668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
20669
20669
|
function resolveContexts(job) {
|
|
20670
20670
|
for (const unit of job.units) {
|
|
20671
20671
|
processLexicalScope(unit, unit.create);
|
|
@@ -20707,7 +20707,7 @@ function processLexicalScope(view, ops) {
|
|
|
20707
20707
|
}
|
|
20708
20708
|
}
|
|
20709
20709
|
|
|
20710
|
-
// bazel-out/
|
|
20710
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
20711
20711
|
function resolveDollarEvent(job) {
|
|
20712
20712
|
for (const unit of job.units) {
|
|
20713
20713
|
transformDollarEvent(unit.create);
|
|
@@ -20730,7 +20730,7 @@ function transformDollarEvent(ops) {
|
|
|
20730
20730
|
}
|
|
20731
20731
|
}
|
|
20732
20732
|
|
|
20733
|
-
// bazel-out/
|
|
20733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
20734
20734
|
function resolveI18nElementPlaceholders(job) {
|
|
20735
20735
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
20736
20736
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -20909,7 +20909,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
20909
20909
|
params.set(placeholder, values);
|
|
20910
20910
|
}
|
|
20911
20911
|
|
|
20912
|
-
// bazel-out/
|
|
20912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
20913
20913
|
function resolveI18nExpressionPlaceholders(job) {
|
|
20914
20914
|
var _a2;
|
|
20915
20915
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -20962,7 +20962,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
20962
20962
|
}
|
|
20963
20963
|
}
|
|
20964
20964
|
|
|
20965
|
-
// bazel-out/
|
|
20965
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
20966
20966
|
function resolveNames(job) {
|
|
20967
20967
|
for (const unit of job.units) {
|
|
20968
20968
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -21040,7 +21040,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
21040
21040
|
}
|
|
21041
21041
|
}
|
|
21042
21042
|
|
|
21043
|
-
// bazel-out/
|
|
21043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
21044
21044
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
21045
21045
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
21046
21046
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -21110,7 +21110,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
21110
21110
|
return securityContext;
|
|
21111
21111
|
}
|
|
21112
21112
|
|
|
21113
|
-
// bazel-out/
|
|
21113
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
21114
21114
|
function transformTwoWayBindingSet(job) {
|
|
21115
21115
|
for (const unit of job.units) {
|
|
21116
21116
|
for (const op of unit.create) {
|
|
@@ -21133,7 +21133,7 @@ function transformTwoWayBindingSet(job) {
|
|
|
21133
21133
|
}
|
|
21134
21134
|
}
|
|
21135
21135
|
|
|
21136
|
-
// bazel-out/
|
|
21136
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
21137
21137
|
function saveAndRestoreView(job) {
|
|
21138
21138
|
for (const unit of job.units) {
|
|
21139
21139
|
unit.create.prepend([
|
|
@@ -21178,7 +21178,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
21178
21178
|
}
|
|
21179
21179
|
}
|
|
21180
21180
|
|
|
21181
|
-
// bazel-out/
|
|
21181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
21182
21182
|
function allocateSlots(job) {
|
|
21183
21183
|
const slotMap = /* @__PURE__ */ new Map();
|
|
21184
21184
|
for (const unit of job.units) {
|
|
@@ -21203,7 +21203,7 @@ function allocateSlots(job) {
|
|
|
21203
21203
|
}
|
|
21204
21204
|
}
|
|
21205
21205
|
|
|
21206
|
-
// bazel-out/
|
|
21206
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
21207
21207
|
function specializeStyleBindings(job) {
|
|
21208
21208
|
for (const unit of job.units) {
|
|
21209
21209
|
for (const op of unit.update) {
|
|
@@ -21233,7 +21233,7 @@ function specializeStyleBindings(job) {
|
|
|
21233
21233
|
}
|
|
21234
21234
|
}
|
|
21235
21235
|
|
|
21236
|
-
// bazel-out/
|
|
21236
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
21237
21237
|
function generateTemporaryVariables(job) {
|
|
21238
21238
|
for (const unit of job.units) {
|
|
21239
21239
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -21291,7 +21291,7 @@ function assignName(names, expr) {
|
|
|
21291
21291
|
expr.name = name;
|
|
21292
21292
|
}
|
|
21293
21293
|
|
|
21294
|
-
// bazel-out/
|
|
21294
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
21295
21295
|
function generateTrackFns(job) {
|
|
21296
21296
|
for (const unit of job.units) {
|
|
21297
21297
|
for (const op of unit.create) {
|
|
@@ -21324,7 +21324,7 @@ function generateTrackFns(job) {
|
|
|
21324
21324
|
}
|
|
21325
21325
|
}
|
|
21326
21326
|
|
|
21327
|
-
// bazel-out/
|
|
21327
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
21328
21328
|
function optimizeTrackFns(job) {
|
|
21329
21329
|
for (const unit of job.units) {
|
|
21330
21330
|
for (const op of unit.create) {
|
|
@@ -21374,7 +21374,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
21374
21374
|
return true;
|
|
21375
21375
|
}
|
|
21376
21376
|
|
|
21377
|
-
// bazel-out/
|
|
21377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
21378
21378
|
function generateTrackVariables(job) {
|
|
21379
21379
|
for (const unit of job.units) {
|
|
21380
21380
|
for (const op of unit.create) {
|
|
@@ -21395,7 +21395,7 @@ function generateTrackVariables(job) {
|
|
|
21395
21395
|
}
|
|
21396
21396
|
}
|
|
21397
21397
|
|
|
21398
|
-
// bazel-out/
|
|
21398
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
21399
21399
|
function countVariables(job) {
|
|
21400
21400
|
for (const unit of job.units) {
|
|
21401
21401
|
let varCount = 0;
|
|
@@ -21508,7 +21508,7 @@ function isSingletonInterpolation(expr) {
|
|
|
21508
21508
|
return true;
|
|
21509
21509
|
}
|
|
21510
21510
|
|
|
21511
|
-
// bazel-out/
|
|
21511
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
21512
21512
|
function optimizeVariables(job) {
|
|
21513
21513
|
for (const unit of job.units) {
|
|
21514
21514
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -21760,7 +21760,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
21760
21760
|
}
|
|
21761
21761
|
}
|
|
21762
21762
|
|
|
21763
|
-
// bazel-out/
|
|
21763
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
21764
21764
|
function wrapI18nIcus(job) {
|
|
21765
21765
|
for (const unit of job.units) {
|
|
21766
21766
|
let currentI18nOp = null;
|
|
@@ -21790,7 +21790,7 @@ function wrapI18nIcus(job) {
|
|
|
21790
21790
|
}
|
|
21791
21791
|
}
|
|
21792
21792
|
|
|
21793
|
-
// bazel-out/
|
|
21793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
|
|
21794
21794
|
function optimizeStoreLet(job) {
|
|
21795
21795
|
const letUsedExternally = /* @__PURE__ */ new Set();
|
|
21796
21796
|
for (const unit of job.units) {
|
|
@@ -21809,7 +21809,7 @@ function optimizeStoreLet(job) {
|
|
|
21809
21809
|
}
|
|
21810
21810
|
}
|
|
21811
21811
|
|
|
21812
|
-
// bazel-out/
|
|
21812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
|
|
21813
21813
|
function removeIllegalLetReferences(job) {
|
|
21814
21814
|
for (const unit of job.units) {
|
|
21815
21815
|
for (const op of unit.update) {
|
|
@@ -21826,7 +21826,7 @@ function removeIllegalLetReferences(job) {
|
|
|
21826
21826
|
}
|
|
21827
21827
|
}
|
|
21828
21828
|
|
|
21829
|
-
// bazel-out/
|
|
21829
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
|
|
21830
21830
|
function generateLocalLetReferences(job) {
|
|
21831
21831
|
for (const unit of job.units) {
|
|
21832
21832
|
for (const op of unit.update) {
|
|
@@ -21844,7 +21844,7 @@ function generateLocalLetReferences(job) {
|
|
|
21844
21844
|
}
|
|
21845
21845
|
}
|
|
21846
21846
|
|
|
21847
|
-
// bazel-out/
|
|
21847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
21848
21848
|
var phases = [
|
|
21849
21849
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
21850
21850
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -22001,7 +22001,7 @@ function emitHostBindingFunction(job) {
|
|
|
22001
22001
|
);
|
|
22002
22002
|
}
|
|
22003
22003
|
|
|
22004
|
-
// bazel-out/
|
|
22004
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
22005
22005
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
22006
22006
|
var domSchema = new DomElementSchemaRegistry();
|
|
22007
22007
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -22759,7 +22759,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
22759
22759
|
return null;
|
|
22760
22760
|
}
|
|
22761
22761
|
|
|
22762
|
-
// bazel-out/
|
|
22762
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
22763
22763
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
22764
22764
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
22765
22765
|
}
|
|
@@ -22879,7 +22879,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
22879
22879
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
22880
22880
|
}
|
|
22881
22881
|
|
|
22882
|
-
// bazel-out/
|
|
22882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
22883
22883
|
var HtmlParser = class extends Parser {
|
|
22884
22884
|
constructor() {
|
|
22885
22885
|
super(getHtmlTagDefinition);
|
|
@@ -22889,7 +22889,7 @@ var HtmlParser = class extends Parser {
|
|
|
22889
22889
|
}
|
|
22890
22890
|
};
|
|
22891
22891
|
|
|
22892
|
-
// bazel-out/
|
|
22892
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
22893
22893
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
22894
22894
|
var ATTRIBUTE_PREFIX = "attr";
|
|
22895
22895
|
var CLASS_PREFIX = "class";
|
|
@@ -23243,7 +23243,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
23243
23243
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
23244
23244
|
}
|
|
23245
23245
|
|
|
23246
|
-
// bazel-out/
|
|
23246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
23247
23247
|
function isStyleUrlResolvable(url) {
|
|
23248
23248
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
23249
23249
|
return false;
|
|
@@ -23252,7 +23252,7 @@ function isStyleUrlResolvable(url) {
|
|
|
23252
23252
|
}
|
|
23253
23253
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
23254
23254
|
|
|
23255
|
-
// bazel-out/
|
|
23255
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
23256
23256
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
23257
23257
|
var LINK_ELEMENT = "link";
|
|
23258
23258
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -23322,7 +23322,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
23322
23322
|
return selectAttr;
|
|
23323
23323
|
}
|
|
23324
23324
|
|
|
23325
|
-
// bazel-out/
|
|
23325
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
23326
23326
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
23327
23327
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
23328
23328
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -23645,7 +23645,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
23645
23645
|
return expression.slice(start, end);
|
|
23646
23646
|
}
|
|
23647
23647
|
|
|
23648
|
-
// bazel-out/
|
|
23648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
23649
23649
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
23650
23650
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
23651
23651
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -23909,7 +23909,7 @@ function parseDeferredTime(value) {
|
|
|
23909
23909
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
23910
23910
|
}
|
|
23911
23911
|
|
|
23912
|
-
// bazel-out/
|
|
23912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
23913
23913
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
23914
23914
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
23915
23915
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -24044,7 +24044,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
24044
24044
|
return { triggers, prefetchTriggers };
|
|
24045
24045
|
}
|
|
24046
24046
|
|
|
24047
|
-
// bazel-out/
|
|
24047
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
24048
24048
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
24049
24049
|
var KW_BIND_IDX = 1;
|
|
24050
24050
|
var KW_LET_IDX = 2;
|
|
@@ -24511,7 +24511,7 @@ function textContents(node) {
|
|
|
24511
24511
|
}
|
|
24512
24512
|
}
|
|
24513
24513
|
|
|
24514
|
-
// bazel-out/
|
|
24514
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
24515
24515
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
24516
24516
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
24517
24517
|
var _a2, _b2, _c2;
|
|
@@ -24605,7 +24605,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
|
|
|
24605
24605
|
return new BindingParser(new Parser2(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
|
|
24606
24606
|
}
|
|
24607
24607
|
|
|
24608
|
-
// bazel-out/
|
|
24608
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24609
24609
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24610
24610
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
24611
24611
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -24996,7 +24996,7 @@ function compileDeferResolverFunction(meta) {
|
|
|
24996
24996
|
return arrowFn([], literalArr(depExpressions));
|
|
24997
24997
|
}
|
|
24998
24998
|
|
|
24999
|
-
// bazel-out/
|
|
24999
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
25000
25000
|
var R3TargetBinder = class {
|
|
25001
25001
|
constructor(directiveMatcher) {
|
|
25002
25002
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25643,11 +25643,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25643
25643
|
return templateEntities;
|
|
25644
25644
|
}
|
|
25645
25645
|
|
|
25646
|
-
// bazel-out/
|
|
25646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25647
25647
|
var ResourceLoader = class {
|
|
25648
25648
|
};
|
|
25649
25649
|
|
|
25650
|
-
// bazel-out/
|
|
25650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25651
25651
|
var CompilerFacadeImpl = class {
|
|
25652
25652
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
25653
25653
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -26225,10 +26225,10 @@ function publishFacade(global) {
|
|
|
26225
26225
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26226
26226
|
}
|
|
26227
26227
|
|
|
26228
|
-
// bazel-out/
|
|
26229
|
-
var VERSION2 = new Version("18.2.
|
|
26228
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26229
|
+
var VERSION2 = new Version("18.2.14");
|
|
26230
26230
|
|
|
26231
|
-
// bazel-out/
|
|
26231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26232
26232
|
var _I18N_ATTR = "i18n";
|
|
26233
26233
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26234
26234
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26544,7 +26544,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26544
26544
|
return { meaning, description, id: id.trim() };
|
|
26545
26545
|
}
|
|
26546
26546
|
|
|
26547
|
-
// bazel-out/
|
|
26547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26548
26548
|
var XmlTagDefinition = class {
|
|
26549
26549
|
constructor() {
|
|
26550
26550
|
this.closedByParent = false;
|
|
@@ -26569,7 +26569,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26569
26569
|
return _TAG_DEFINITION;
|
|
26570
26570
|
}
|
|
26571
26571
|
|
|
26572
|
-
// bazel-out/
|
|
26572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26573
26573
|
var XmlParser = class extends Parser {
|
|
26574
26574
|
constructor() {
|
|
26575
26575
|
super(getXmlTagDefinition);
|
|
@@ -26579,7 +26579,7 @@ var XmlParser = class extends Parser {
|
|
|
26579
26579
|
}
|
|
26580
26580
|
};
|
|
26581
26581
|
|
|
26582
|
-
// bazel-out/
|
|
26582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26583
26583
|
var _VERSION = "1.2";
|
|
26584
26584
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26585
26585
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -26861,7 +26861,7 @@ function getCtypeForTag(tag) {
|
|
|
26861
26861
|
}
|
|
26862
26862
|
}
|
|
26863
26863
|
|
|
26864
|
-
// bazel-out/
|
|
26864
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
26865
26865
|
var _VERSION2 = "2.0";
|
|
26866
26866
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
26867
26867
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27192,7 +27192,7 @@ function getTypeForTag(tag) {
|
|
|
27192
27192
|
}
|
|
27193
27193
|
}
|
|
27194
27194
|
|
|
27195
|
-
// bazel-out/
|
|
27195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27196
27196
|
var MessageBundle = class {
|
|
27197
27197
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null, _preserveWhitespace = true) {
|
|
27198
27198
|
this._htmlParser = _htmlParser;
|
|
@@ -27276,7 +27276,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27276
27276
|
}
|
|
27277
27277
|
};
|
|
27278
27278
|
|
|
27279
|
-
// bazel-out/
|
|
27279
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27280
27280
|
var FactoryTarget2;
|
|
27281
27281
|
(function(FactoryTarget3) {
|
|
27282
27282
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27286,7 +27286,7 @@ var FactoryTarget2;
|
|
|
27286
27286
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27287
27287
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27288
27288
|
|
|
27289
|
-
// bazel-out/
|
|
27289
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27290
27290
|
function compileClassMetadata(metadata) {
|
|
27291
27291
|
const fnCall = internalCompileClassMetadata(metadata);
|
|
27292
27292
|
return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
|
|
@@ -27320,7 +27320,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
|
|
|
27320
27320
|
return arrowFn([], literalArr(dynamicImports));
|
|
27321
27321
|
}
|
|
27322
27322
|
|
|
27323
|
-
// bazel-out/
|
|
27323
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27324
27324
|
function compileClassDebugInfo(debugInfo) {
|
|
27325
27325
|
const debugInfoObject = {
|
|
27326
27326
|
className: debugInfo.className
|
|
@@ -27337,13 +27337,13 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27337
27337
|
return iife.callFn([]);
|
|
27338
27338
|
}
|
|
27339
27339
|
|
|
27340
|
-
// bazel-out/
|
|
27340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27341
27341
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27342
27342
|
var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
|
|
27343
27343
|
function compileDeclareClassMetadata(metadata) {
|
|
27344
27344
|
const definitionMap = new DefinitionMap();
|
|
27345
27345
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27346
|
-
definitionMap.set("version", literal("18.2.
|
|
27346
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27347
27347
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27348
27348
|
definitionMap.set("type", metadata.type);
|
|
27349
27349
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27362,7 +27362,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27362
27362
|
callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
|
|
27363
27363
|
callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
|
|
27364
27364
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
27365
|
-
definitionMap.set("version", literal("18.2.
|
|
27365
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27366
27366
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27367
27367
|
definitionMap.set("type", metadata.type);
|
|
27368
27368
|
definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -27370,7 +27370,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27370
27370
|
return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
|
|
27371
27371
|
}
|
|
27372
27372
|
|
|
27373
|
-
// bazel-out/
|
|
27373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27374
27374
|
function toOptionalLiteralArray(values, mapper) {
|
|
27375
27375
|
if (values === null || values.length === 0) {
|
|
27376
27376
|
return null;
|
|
@@ -27418,7 +27418,7 @@ function compileDependency(dep) {
|
|
|
27418
27418
|
return depMeta.toLiteralMap();
|
|
27419
27419
|
}
|
|
27420
27420
|
|
|
27421
|
-
// bazel-out/
|
|
27421
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27422
27422
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27423
27423
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27424
27424
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27430,7 +27430,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27430
27430
|
const definitionMap = new DefinitionMap();
|
|
27431
27431
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27432
27432
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27433
|
-
definitionMap.set("version", literal("18.2.
|
|
27433
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27434
27434
|
definitionMap.set("type", meta.type.value);
|
|
27435
27435
|
if (meta.isStandalone) {
|
|
27436
27436
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27592,7 +27592,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27592
27592
|
}));
|
|
27593
27593
|
}
|
|
27594
27594
|
|
|
27595
|
-
// bazel-out/
|
|
27595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27596
27596
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27597
27597
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27598
27598
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27743,12 +27743,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27743
27743
|
}
|
|
27744
27744
|
};
|
|
27745
27745
|
|
|
27746
|
-
// bazel-out/
|
|
27746
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27747
27747
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27748
27748
|
function compileDeclareFactoryFunction(meta) {
|
|
27749
27749
|
const definitionMap = new DefinitionMap();
|
|
27750
27750
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27751
|
-
definitionMap.set("version", literal("18.2.
|
|
27751
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27752
27752
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27753
27753
|
definitionMap.set("type", meta.type.value);
|
|
27754
27754
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27760,7 +27760,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27760
27760
|
};
|
|
27761
27761
|
}
|
|
27762
27762
|
|
|
27763
|
-
// bazel-out/
|
|
27763
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27764
27764
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27765
27765
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27766
27766
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27771,7 +27771,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27771
27771
|
function createInjectableDefinitionMap(meta) {
|
|
27772
27772
|
const definitionMap = new DefinitionMap();
|
|
27773
27773
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27774
|
-
definitionMap.set("version", literal("18.2.
|
|
27774
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27775
27775
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27776
27776
|
definitionMap.set("type", meta.type.value);
|
|
27777
27777
|
if (meta.providedIn !== void 0) {
|
|
@@ -27798,7 +27798,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27798
27798
|
return definitionMap;
|
|
27799
27799
|
}
|
|
27800
27800
|
|
|
27801
|
-
// bazel-out/
|
|
27801
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27802
27802
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27803
27803
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27804
27804
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27809,7 +27809,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27809
27809
|
function createInjectorDefinitionMap(meta) {
|
|
27810
27810
|
const definitionMap = new DefinitionMap();
|
|
27811
27811
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27812
|
-
definitionMap.set("version", literal("18.2.
|
|
27812
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27813
27813
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27814
27814
|
definitionMap.set("type", meta.type.value);
|
|
27815
27815
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27819,7 +27819,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27819
27819
|
return definitionMap;
|
|
27820
27820
|
}
|
|
27821
27821
|
|
|
27822
|
-
// bazel-out/
|
|
27822
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27823
27823
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27824
27824
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27825
27825
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -27833,7 +27833,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27833
27833
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
27834
27834
|
}
|
|
27835
27835
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
27836
|
-
definitionMap.set("version", literal("18.2.
|
|
27836
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27837
27837
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27838
27838
|
definitionMap.set("type", meta.type.value);
|
|
27839
27839
|
if (meta.bootstrap.length > 0) {
|
|
@@ -27857,7 +27857,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27857
27857
|
return definitionMap;
|
|
27858
27858
|
}
|
|
27859
27859
|
|
|
27860
|
-
// bazel-out/
|
|
27860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
27861
27861
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
27862
27862
|
function compileDeclarePipeFromMetadata(meta) {
|
|
27863
27863
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -27868,7 +27868,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
27868
27868
|
function createPipeDefinitionMap(meta) {
|
|
27869
27869
|
const definitionMap = new DefinitionMap();
|
|
27870
27870
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
27871
|
-
definitionMap.set("version", literal("18.2.
|
|
27871
|
+
definitionMap.set("version", literal("18.2.14"));
|
|
27872
27872
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27873
27873
|
definitionMap.set("type", meta.type.value);
|
|
27874
27874
|
if (meta.isStandalone) {
|
|
@@ -27881,16 +27881,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
27881
27881
|
return definitionMap;
|
|
27882
27882
|
}
|
|
27883
27883
|
|
|
27884
|
-
// bazel-out/
|
|
27884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
27885
27885
|
publishFacade(_global);
|
|
27886
27886
|
|
|
27887
|
-
// bazel-out/
|
|
27888
|
-
var VERSION3 = new Version("18.2.
|
|
27887
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
27888
|
+
var VERSION3 = new Version("18.2.14");
|
|
27889
27889
|
|
|
27890
|
-
// bazel-out/
|
|
27890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
27891
27891
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
27892
27892
|
|
|
27893
|
-
// bazel-out/
|
|
27893
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
27894
27894
|
var ErrorCode;
|
|
27895
27895
|
(function(ErrorCode2) {
|
|
27896
27896
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -27985,7 +27985,7 @@ var ErrorCode;
|
|
|
27985
27985
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
27986
27986
|
})(ErrorCode || (ErrorCode = {}));
|
|
27987
27987
|
|
|
27988
|
-
// bazel-out/
|
|
27988
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
27989
27989
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
27990
27990
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
27991
27991
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -27997,15 +27997,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
27997
27997
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
27998
27998
|
]);
|
|
27999
27999
|
|
|
28000
|
-
// bazel-out/
|
|
28000
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28001
28001
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
28002
28002
|
|
|
28003
|
-
// bazel-out/
|
|
28003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
28004
28004
|
function ngErrorCode(code) {
|
|
28005
28005
|
return parseInt("-99" + code);
|
|
28006
28006
|
}
|
|
28007
28007
|
|
|
28008
|
-
// bazel-out/
|
|
28008
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28009
28009
|
var FatalDiagnosticError = class extends Error {
|
|
28010
28010
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
28011
28011
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -28066,10 +28066,10 @@ function isFatalDiagnosticError(err) {
|
|
|
28066
28066
|
return err._isFatalDiagnosticError === true;
|
|
28067
28067
|
}
|
|
28068
28068
|
|
|
28069
|
-
// bazel-out/
|
|
28069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
28070
28070
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
28071
28071
|
|
|
28072
|
-
// bazel-out/
|
|
28072
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
28073
28073
|
var ExtendedTemplateDiagnosticName;
|
|
28074
28074
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
28075
28075
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -28086,7 +28086,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
28086
28086
|
ExtendedTemplateDiagnosticName2["UNUSED_LET_DECLARATION"] = "unusedLetDeclaration";
|
|
28087
28087
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
28088
28088
|
|
|
28089
|
-
// bazel-out/
|
|
28089
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
28090
28090
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
28091
28091
|
var TS = /\.tsx?$/i;
|
|
28092
28092
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28187,7 +28187,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28187
28187
|
return redirectInfo.unredirected;
|
|
28188
28188
|
}
|
|
28189
28189
|
|
|
28190
|
-
// bazel-out/
|
|
28190
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28191
28191
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28192
28192
|
const exports = reflector.getExportsOfModule(file);
|
|
28193
28193
|
if (exports === null) {
|
|
@@ -28207,7 +28207,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28207
28207
|
return foundExportName;
|
|
28208
28208
|
}
|
|
28209
28209
|
|
|
28210
|
-
// bazel-out/
|
|
28210
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28211
28211
|
var ImportFlags;
|
|
28212
28212
|
(function(ImportFlags2) {
|
|
28213
28213
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28438,7 +28438,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28438
28438
|
}
|
|
28439
28439
|
};
|
|
28440
28440
|
|
|
28441
|
-
// bazel-out/
|
|
28441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28442
28442
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28443
28443
|
var UnifiedModulesAliasingHost = class {
|
|
28444
28444
|
constructor(unifiedModulesHost) {
|
|
@@ -28505,7 +28505,7 @@ var AliasStrategy = class {
|
|
|
28505
28505
|
}
|
|
28506
28506
|
};
|
|
28507
28507
|
|
|
28508
|
-
// bazel-out/
|
|
28508
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28509
28509
|
function relativePathBetween(from, to) {
|
|
28510
28510
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28511
28511
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28514,7 +28514,7 @@ function normalizeSeparators2(path4) {
|
|
|
28514
28514
|
return path4.replace(/\\/g, "/");
|
|
28515
28515
|
}
|
|
28516
28516
|
|
|
28517
|
-
// bazel-out/
|
|
28517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28518
28518
|
var NoopImportRewriter = class {
|
|
28519
28519
|
rewriteSymbol(symbol, specifier) {
|
|
28520
28520
|
return symbol;
|
|
@@ -28567,7 +28567,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28567
28567
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28568
28568
|
}
|
|
28569
28569
|
|
|
28570
|
-
// bazel-out/
|
|
28570
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28571
28571
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28572
28572
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28573
28573
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28602,7 +28602,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28602
28602
|
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.");
|
|
28603
28603
|
}
|
|
28604
28604
|
|
|
28605
|
-
// bazel-out/
|
|
28605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28606
28606
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28607
28607
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28608
28608
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28643,13 +28643,13 @@ var DefaultImportTracker = class {
|
|
|
28643
28643
|
}
|
|
28644
28644
|
};
|
|
28645
28645
|
|
|
28646
|
-
// bazel-out/
|
|
28646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28647
28647
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
28648
28648
|
|
|
28649
|
-
// bazel-out/
|
|
28649
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28650
28650
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28651
28651
|
|
|
28652
|
-
// bazel-out/
|
|
28652
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28653
28653
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28654
28654
|
function isDecoratorIdentifier(exp) {
|
|
28655
28655
|
return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
|
|
@@ -28672,7 +28672,7 @@ var ClassMemberAccessLevel;
|
|
|
28672
28672
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
28673
28673
|
var AmbientImport = {};
|
|
28674
28674
|
|
|
28675
|
-
// bazel-out/
|
|
28675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28676
28676
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
28677
28677
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28678
28678
|
var _a2, _b2;
|
|
@@ -28856,7 +28856,7 @@ function extractModuleName(node) {
|
|
|
28856
28856
|
return node.moduleSpecifier.text;
|
|
28857
28857
|
}
|
|
28858
28858
|
|
|
28859
|
-
// bazel-out/
|
|
28859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
28860
28860
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28861
28861
|
function isNamedClassDeclaration(node) {
|
|
28862
28862
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -28880,7 +28880,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
28880
28880
|
}
|
|
28881
28881
|
}
|
|
28882
28882
|
|
|
28883
|
-
// bazel-out/
|
|
28883
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28884
28884
|
var TypeScriptReflectionHost = class {
|
|
28885
28885
|
constructor(checker, isLocalCompilation = false) {
|
|
28886
28886
|
this.checker = checker;
|
|
@@ -29367,7 +29367,7 @@ function getExportedName(decl, originalId) {
|
|
|
29367
29367
|
}
|
|
29368
29368
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29369
29369
|
|
|
29370
|
-
// bazel-out/
|
|
29370
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29371
29371
|
var AssumeEager = "AssumeEager";
|
|
29372
29372
|
var DeferredSymbolTracker = class {
|
|
29373
29373
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29487,7 +29487,7 @@ var DeferredSymbolTracker = class {
|
|
|
29487
29487
|
}
|
|
29488
29488
|
};
|
|
29489
29489
|
|
|
29490
|
-
// bazel-out/
|
|
29490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
29491
29491
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
29492
29492
|
var ImportedSymbolsTracker = class {
|
|
29493
29493
|
constructor() {
|
|
@@ -29557,7 +29557,7 @@ var ImportedSymbolsTracker = class {
|
|
|
29557
29557
|
}
|
|
29558
29558
|
};
|
|
29559
29559
|
|
|
29560
|
-
// bazel-out/
|
|
29560
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
29561
29561
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
29562
29562
|
var LocalCompilationExtraImportsTracker = class {
|
|
29563
29563
|
constructor(typeChecker) {
|
|
@@ -29608,7 +29608,7 @@ function removeQuotations(s) {
|
|
|
29608
29608
|
return s.substring(1, s.length - 1).trim();
|
|
29609
29609
|
}
|
|
29610
29610
|
|
|
29611
|
-
// bazel-out/
|
|
29611
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29612
29612
|
var Reference2 = class {
|
|
29613
29613
|
constructor(node, bestGuessOwningModule = null) {
|
|
29614
29614
|
this.node = node;
|
|
@@ -29677,7 +29677,7 @@ var Reference2 = class {
|
|
|
29677
29677
|
}
|
|
29678
29678
|
};
|
|
29679
29679
|
|
|
29680
|
-
// bazel-out/
|
|
29680
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29681
29681
|
var ModuleResolver = class {
|
|
29682
29682
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29683
29683
|
this.program = program;
|
|
@@ -29694,7 +29694,7 @@ var ModuleResolver = class {
|
|
|
29694
29694
|
}
|
|
29695
29695
|
};
|
|
29696
29696
|
|
|
29697
|
-
// bazel-out/
|
|
29697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.mjs
|
|
29698
29698
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
29699
29699
|
function isAngularDecorator(decorator, isCore) {
|
|
29700
29700
|
return isCore || decorator.import !== null && decorator.import.from === "@angular/core";
|
|
@@ -29999,13 +29999,13 @@ function cloneClassElementWithModifiers(node, modifiers) {
|
|
|
29999
29999
|
return import_typescript21.default.setOriginalNode(clone, node);
|
|
30000
30000
|
}
|
|
30001
30001
|
|
|
30002
|
-
// bazel-out/
|
|
30002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
30003
30003
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
30004
30004
|
|
|
30005
|
-
// bazel-out/
|
|
30005
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30006
30006
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
30007
30007
|
|
|
30008
|
-
// bazel-out/
|
|
30008
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
30009
30009
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
30010
30010
|
var CORE_MODULE2 = "@angular/core";
|
|
30011
30011
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -30263,7 +30263,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
30263
30263
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
30264
30264
|
}
|
|
30265
30265
|
|
|
30266
|
-
// bazel-out/
|
|
30266
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30267
30267
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
30268
30268
|
const deps = [];
|
|
30269
30269
|
const errors = [];
|
|
@@ -30407,10 +30407,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
30407
30407
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
30408
30408
|
}
|
|
30409
30409
|
|
|
30410
|
-
// bazel-out/
|
|
30410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
30411
30411
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
30412
30412
|
|
|
30413
|
-
// bazel-out/
|
|
30413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
30414
30414
|
var MetaKind;
|
|
30415
30415
|
(function(MetaKind2) {
|
|
30416
30416
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -30423,10 +30423,10 @@ var MatchSource;
|
|
|
30423
30423
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
30424
30424
|
})(MatchSource || (MatchSource = {}));
|
|
30425
30425
|
|
|
30426
|
-
// bazel-out/
|
|
30426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30427
30427
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
30428
30428
|
|
|
30429
|
-
// bazel-out/
|
|
30429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
30430
30430
|
var ClassPropertyMapping = class {
|
|
30431
30431
|
constructor(forwardMap) {
|
|
30432
30432
|
this.forwardMap = forwardMap;
|
|
@@ -30506,7 +30506,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30506
30506
|
return reverseMap;
|
|
30507
30507
|
}
|
|
30508
30508
|
|
|
30509
|
-
// bazel-out/
|
|
30509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30510
30510
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30511
30511
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30512
30512
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -30702,7 +30702,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
30702
30702
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
30703
30703
|
}
|
|
30704
30704
|
|
|
30705
|
-
// bazel-out/
|
|
30705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30706
30706
|
var DtsMetadataReader = class {
|
|
30707
30707
|
constructor(checker, reflector) {
|
|
30708
30708
|
this.checker = checker;
|
|
@@ -30886,7 +30886,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30886
30886
|
return result.length > 0 ? result : null;
|
|
30887
30887
|
}
|
|
30888
30888
|
|
|
30889
|
-
// bazel-out/
|
|
30889
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30890
30890
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30891
30891
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30892
30892
|
if (topMeta === null) {
|
|
@@ -30949,7 +30949,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30949
30949
|
});
|
|
30950
30950
|
}
|
|
30951
30951
|
|
|
30952
|
-
// bazel-out/
|
|
30952
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30953
30953
|
var LocalMetadataRegistry = class {
|
|
30954
30954
|
constructor() {
|
|
30955
30955
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -31006,7 +31006,7 @@ var CompoundMetadataRegistry = class {
|
|
|
31006
31006
|
}
|
|
31007
31007
|
};
|
|
31008
31008
|
|
|
31009
|
-
// bazel-out/
|
|
31009
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
31010
31010
|
var ResourceRegistry = class {
|
|
31011
31011
|
constructor() {
|
|
31012
31012
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -31071,7 +31071,7 @@ var ResourceRegistry = class {
|
|
|
31071
31071
|
}
|
|
31072
31072
|
};
|
|
31073
31073
|
|
|
31074
|
-
// bazel-out/
|
|
31074
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
31075
31075
|
var ExportedProviderStatusResolver = class {
|
|
31076
31076
|
constructor(metaReader) {
|
|
31077
31077
|
this.metaReader = metaReader;
|
|
@@ -31115,7 +31115,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
31115
31115
|
}
|
|
31116
31116
|
};
|
|
31117
31117
|
|
|
31118
|
-
// bazel-out/
|
|
31118
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
31119
31119
|
var EMPTY_ARRAY = [];
|
|
31120
31120
|
var HostDirectivesResolver = class {
|
|
31121
31121
|
constructor(metaReader) {
|
|
@@ -31180,10 +31180,10 @@ function resolveOutput(bindingName) {
|
|
|
31180
31180
|
return bindingName;
|
|
31181
31181
|
}
|
|
31182
31182
|
|
|
31183
|
-
// bazel-out/
|
|
31183
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31184
31184
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
31185
31185
|
|
|
31186
|
-
// bazel-out/
|
|
31186
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
31187
31187
|
var DynamicValue = class {
|
|
31188
31188
|
constructor(node, reason, code) {
|
|
31189
31189
|
this.node = node;
|
|
@@ -31273,7 +31273,7 @@ var DynamicValue = class {
|
|
|
31273
31273
|
}
|
|
31274
31274
|
};
|
|
31275
31275
|
|
|
31276
|
-
// bazel-out/
|
|
31276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
31277
31277
|
var ResolvedModule = class {
|
|
31278
31278
|
constructor(exports, evaluate) {
|
|
31279
31279
|
this.exports = exports;
|
|
@@ -31303,7 +31303,7 @@ var EnumValue = class {
|
|
|
31303
31303
|
var KnownFn = class {
|
|
31304
31304
|
};
|
|
31305
31305
|
|
|
31306
|
-
// bazel-out/
|
|
31306
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31307
31307
|
function describeResolvedType(value, maxDepth = 1) {
|
|
31308
31308
|
var _a2, _b2;
|
|
31309
31309
|
if (value === null) {
|
|
@@ -31436,10 +31436,10 @@ function getContainerNode(node) {
|
|
|
31436
31436
|
return node.getSourceFile();
|
|
31437
31437
|
}
|
|
31438
31438
|
|
|
31439
|
-
// bazel-out/
|
|
31439
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31440
31440
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
31441
31441
|
|
|
31442
|
-
// bazel-out/
|
|
31442
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
31443
31443
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
31444
31444
|
constructor(lhs) {
|
|
31445
31445
|
super();
|
|
@@ -31491,14 +31491,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31491
31491
|
}
|
|
31492
31492
|
};
|
|
31493
31493
|
|
|
31494
|
-
// bazel-out/
|
|
31494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31495
31495
|
var SyntheticValue = class {
|
|
31496
31496
|
constructor(value) {
|
|
31497
31497
|
this.value = value;
|
|
31498
31498
|
}
|
|
31499
31499
|
};
|
|
31500
31500
|
|
|
31501
|
-
// bazel-out/
|
|
31501
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31502
31502
|
function literalBinaryOp(op) {
|
|
31503
31503
|
return { op, literal: true };
|
|
31504
31504
|
}
|
|
@@ -32073,7 +32073,7 @@ function owningModule(context, override = null) {
|
|
|
32073
32073
|
}
|
|
32074
32074
|
}
|
|
32075
32075
|
|
|
32076
|
-
// bazel-out/
|
|
32076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
32077
32077
|
var PartialEvaluator = class {
|
|
32078
32078
|
constructor(host, checker, dependencyTracker) {
|
|
32079
32079
|
this.host = host;
|
|
@@ -32093,7 +32093,7 @@ var PartialEvaluator = class {
|
|
|
32093
32093
|
}
|
|
32094
32094
|
};
|
|
32095
32095
|
|
|
32096
|
-
// bazel-out/
|
|
32096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
32097
32097
|
var CompilationMode;
|
|
32098
32098
|
(function(CompilationMode2) {
|
|
32099
32099
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -32107,7 +32107,7 @@ var HandlerPrecedence;
|
|
|
32107
32107
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
32108
32108
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
32109
32109
|
|
|
32110
|
-
// bazel-out/
|
|
32110
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
32111
32111
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
32112
32112
|
function aliasTransformFactory(exportStatements) {
|
|
32113
32113
|
return () => {
|
|
@@ -32132,10 +32132,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
32132
32132
|
};
|
|
32133
32133
|
}
|
|
32134
32134
|
|
|
32135
|
-
// bazel-out/
|
|
32135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32136
32136
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
32137
32137
|
|
|
32138
|
-
// bazel-out/
|
|
32138
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
32139
32139
|
var PerfPhase;
|
|
32140
32140
|
(function(PerfPhase2) {
|
|
32141
32141
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -32205,7 +32205,7 @@ var PerfCheckpoint;
|
|
|
32205
32205
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
32206
32206
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
32207
32207
|
|
|
32208
|
-
// bazel-out/
|
|
32208
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
32209
32209
|
var NoopPerfRecorder = class {
|
|
32210
32210
|
eventCount() {
|
|
32211
32211
|
}
|
|
@@ -32222,7 +32222,7 @@ var NoopPerfRecorder = class {
|
|
|
32222
32222
|
};
|
|
32223
32223
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
32224
32224
|
|
|
32225
|
-
// bazel-out/
|
|
32225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
32226
32226
|
function mark() {
|
|
32227
32227
|
return process.hrtime();
|
|
32228
32228
|
}
|
|
@@ -32231,7 +32231,7 @@ function timeSinceInMicros(mark2) {
|
|
|
32231
32231
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
32232
32232
|
}
|
|
32233
32233
|
|
|
32234
|
-
// bazel-out/
|
|
32234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
32235
32235
|
var ActivePerfRecorder = class {
|
|
32236
32236
|
static zeroedToNow() {
|
|
32237
32237
|
return new ActivePerfRecorder(mark());
|
|
@@ -32325,7 +32325,7 @@ var DelegatingPerfRecorder = class {
|
|
|
32325
32325
|
}
|
|
32326
32326
|
};
|
|
32327
32327
|
|
|
32328
|
-
// bazel-out/
|
|
32328
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
32329
32329
|
var TraitState;
|
|
32330
32330
|
(function(TraitState2) {
|
|
32331
32331
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -32382,7 +32382,7 @@ var TraitImpl = class {
|
|
|
32382
32382
|
}
|
|
32383
32383
|
};
|
|
32384
32384
|
|
|
32385
|
-
// bazel-out/
|
|
32385
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32386
32386
|
var TraitCompiler = class {
|
|
32387
32387
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
32388
32388
|
this.handlers = handlers;
|
|
@@ -32841,10 +32841,10 @@ function containsErrors(diagnostics) {
|
|
|
32841
32841
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
32842
32842
|
}
|
|
32843
32843
|
|
|
32844
|
-
// bazel-out/
|
|
32844
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
32845
32845
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
32846
32846
|
|
|
32847
|
-
// bazel-out/
|
|
32847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
32848
32848
|
var Context = class {
|
|
32849
32849
|
constructor(isStatement) {
|
|
32850
32850
|
this.isStatement = isStatement;
|
|
@@ -32857,10 +32857,10 @@ var Context = class {
|
|
|
32857
32857
|
}
|
|
32858
32858
|
};
|
|
32859
32859
|
|
|
32860
|
-
// bazel-out/
|
|
32860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32861
32861
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
32862
32862
|
|
|
32863
|
-
// bazel-out/
|
|
32863
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
32864
32864
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32865
32865
|
function createGenerateUniqueIdentifierHelper() {
|
|
32866
32866
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -32886,7 +32886,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
32886
32886
|
};
|
|
32887
32887
|
}
|
|
32888
32888
|
|
|
32889
|
-
// bazel-out/
|
|
32889
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
32890
32890
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32891
32891
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
32892
32892
|
return (ctx) => {
|
|
@@ -32953,7 +32953,7 @@ function isImportStatement(stmt) {
|
|
|
32953
32953
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
32954
32954
|
}
|
|
32955
32955
|
|
|
32956
|
-
// bazel-out/
|
|
32956
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
32957
32957
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
32958
32958
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
32959
32959
|
const requestHash = hashImportRequest(request);
|
|
@@ -32980,7 +32980,7 @@ function hashImportRequest(req) {
|
|
|
32980
32980
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}${req.unsafeAliasOverride ? ":" + req.unsafeAliasOverride : ""}`;
|
|
32981
32981
|
}
|
|
32982
32982
|
|
|
32983
|
-
// bazel-out/
|
|
32983
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
32984
32984
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
32985
32985
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
32986
32986
|
let candidateImportToBeUpdated = null;
|
|
@@ -33040,7 +33040,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
33040
33040
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
33041
33041
|
}
|
|
33042
33042
|
|
|
33043
|
-
// bazel-out/
|
|
33043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
33044
33044
|
var presetImportManagerForceNamespaceImports = {
|
|
33045
33045
|
disableOriginalSourceFileReuse: true,
|
|
33046
33046
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -33258,7 +33258,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
33258
33258
|
}
|
|
33259
33259
|
}
|
|
33260
33260
|
|
|
33261
|
-
// bazel-out/
|
|
33261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
33262
33262
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
33263
33263
|
[UnaryOperator.Minus, "-"],
|
|
33264
33264
|
[UnaryOperator.Plus, "+"]
|
|
@@ -33503,7 +33503,7 @@ function createRange(span) {
|
|
|
33503
33503
|
};
|
|
33504
33504
|
}
|
|
33505
33505
|
|
|
33506
|
-
// bazel-out/
|
|
33506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
33507
33507
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
33508
33508
|
var INELIGIBLE = {};
|
|
33509
33509
|
function canEmitType(type, canEmit) {
|
|
@@ -33578,10 +33578,10 @@ var TypeEmitter = class {
|
|
|
33578
33578
|
}
|
|
33579
33579
|
};
|
|
33580
33580
|
|
|
33581
|
-
// bazel-out/
|
|
33581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33582
33582
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33583
33583
|
|
|
33584
|
-
// bazel-out/
|
|
33584
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
33585
33585
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
33586
33586
|
function tsNumericExpression(value) {
|
|
33587
33587
|
if (value < 0) {
|
|
@@ -33591,7 +33591,7 @@ function tsNumericExpression(value) {
|
|
|
33591
33591
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
33592
33592
|
}
|
|
33593
33593
|
|
|
33594
|
-
// bazel-out/
|
|
33594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33595
33595
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
33596
33596
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
33597
33597
|
}
|
|
@@ -33808,7 +33808,7 @@ var TypeTranslatorVisitor = class {
|
|
|
33808
33808
|
}
|
|
33809
33809
|
};
|
|
33810
33810
|
|
|
33811
|
-
// bazel-out/
|
|
33811
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
33812
33812
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
33813
33813
|
var PureAnnotation;
|
|
33814
33814
|
(function(PureAnnotation2) {
|
|
@@ -34011,7 +34011,7 @@ function attachComments(statement, leadingComments) {
|
|
|
34011
34011
|
}
|
|
34012
34012
|
}
|
|
34013
34013
|
|
|
34014
|
-
// bazel-out/
|
|
34014
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
34015
34015
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
34016
34016
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
34017
34017
|
}
|
|
@@ -34019,7 +34019,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
34019
34019
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
34020
34020
|
}
|
|
34021
34021
|
|
|
34022
|
-
// bazel-out/
|
|
34022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
34023
34023
|
var DtsTransformRegistry = class {
|
|
34024
34024
|
constructor() {
|
|
34025
34025
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -34167,10 +34167,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
34167
34167
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
34168
34168
|
}
|
|
34169
34169
|
|
|
34170
|
-
// bazel-out/
|
|
34170
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34171
34171
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
34172
34172
|
|
|
34173
|
-
// bazel-out/
|
|
34173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
34174
34174
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
34175
34175
|
function visit(node, visitor, context) {
|
|
34176
34176
|
return visitor._visit(node, context);
|
|
@@ -34231,7 +34231,7 @@ var Visitor = class {
|
|
|
34231
34231
|
}
|
|
34232
34232
|
};
|
|
34233
34233
|
|
|
34234
|
-
// bazel-out/
|
|
34234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34235
34235
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
34236
34236
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
34237
34237
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -34466,7 +34466,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
34466
34466
|
return array;
|
|
34467
34467
|
}
|
|
34468
34468
|
|
|
34469
|
-
// bazel-out/
|
|
34469
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
34470
34470
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
34471
34471
|
const context = [];
|
|
34472
34472
|
for (const decl of data) {
|
|
@@ -34675,7 +34675,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
34675
34675
|
}
|
|
34676
34676
|
}
|
|
34677
34677
|
|
|
34678
|
-
// bazel-out/
|
|
34678
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
34679
34679
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34680
34680
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
34681
34681
|
let resolved = null;
|
|
@@ -34725,7 +34725,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
34725
34725
|
return meta;
|
|
34726
34726
|
}
|
|
34727
34727
|
|
|
34728
|
-
// bazel-out/
|
|
34728
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
34729
34729
|
function compileNgFactoryDefField(metadata) {
|
|
34730
34730
|
const res = compileFactoryFunction(metadata);
|
|
34731
34731
|
return {
|
|
@@ -34747,7 +34747,7 @@ function compileDeclareFactory(metadata) {
|
|
|
34747
34747
|
};
|
|
34748
34748
|
}
|
|
34749
34749
|
|
|
34750
|
-
// bazel-out/
|
|
34750
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
34751
34751
|
var InjectableClassRegistry = class {
|
|
34752
34752
|
constructor(host, isCore) {
|
|
34753
34753
|
this.host = host;
|
|
@@ -34773,7 +34773,7 @@ var InjectableClassRegistry = class {
|
|
|
34773
34773
|
}
|
|
34774
34774
|
};
|
|
34775
34775
|
|
|
34776
|
-
// bazel-out/
|
|
34776
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
34777
34777
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34778
34778
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
34779
34779
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34859,7 +34859,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
34859
34859
|
return result.transformed[0];
|
|
34860
34860
|
}
|
|
34861
34861
|
|
|
34862
|
-
// bazel-out/
|
|
34862
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
34863
34863
|
var path = __toESM(require("path"), 1);
|
|
34864
34864
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
34865
34865
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34885,13 +34885,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
34885
34885
|
return null;
|
|
34886
34886
|
}
|
|
34887
34887
|
|
|
34888
|
-
// bazel-out/
|
|
34888
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
34889
34889
|
var NoopReferencesRegistry = class {
|
|
34890
34890
|
add(source, ...references) {
|
|
34891
34891
|
}
|
|
34892
34892
|
};
|
|
34893
34893
|
|
|
34894
|
-
// bazel-out/
|
|
34894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
34895
34895
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
34896
34896
|
const schemas = [];
|
|
34897
34897
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -34920,7 +34920,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
34920
34920
|
return schemas;
|
|
34921
34921
|
}
|
|
34922
34922
|
|
|
34923
|
-
// bazel-out/
|
|
34923
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
34924
34924
|
function compileInputTransformFields(inputs) {
|
|
34925
34925
|
const extraFields = [];
|
|
34926
34926
|
for (const input of inputs) {
|
|
@@ -34937,17 +34937,17 @@ function compileInputTransformFields(inputs) {
|
|
|
34937
34937
|
return extraFields;
|
|
34938
34938
|
}
|
|
34939
34939
|
|
|
34940
|
-
// bazel-out/
|
|
34940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/jit_declaration_registry.mjs
|
|
34941
34941
|
var JitDeclarationRegistry = class {
|
|
34942
34942
|
constructor() {
|
|
34943
34943
|
this.jitDeclarations = /* @__PURE__ */ new Set();
|
|
34944
34944
|
}
|
|
34945
34945
|
};
|
|
34946
34946
|
|
|
34947
|
-
// bazel-out/
|
|
34947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
34948
34948
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
34949
34949
|
|
|
34950
|
-
// bazel-out/
|
|
34950
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
34951
34951
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
34952
34952
|
var SemanticSymbol = class {
|
|
34953
34953
|
constructor(decl) {
|
|
@@ -34963,7 +34963,7 @@ function getSymbolIdentifier(decl) {
|
|
|
34963
34963
|
return decl.name.text;
|
|
34964
34964
|
}
|
|
34965
34965
|
|
|
34966
|
-
// bazel-out/
|
|
34966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
34967
34967
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
34968
34968
|
isPublicApiAffected() {
|
|
34969
34969
|
return false;
|
|
@@ -35105,10 +35105,10 @@ function getImportPath(expr) {
|
|
|
35105
35105
|
}
|
|
35106
35106
|
}
|
|
35107
35107
|
|
|
35108
|
-
// bazel-out/
|
|
35108
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35109
35109
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
35110
35110
|
|
|
35111
|
-
// bazel-out/
|
|
35111
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
35112
35112
|
function isSymbolEqual(a, b) {
|
|
35113
35113
|
if (a.decl === b.decl) {
|
|
35114
35114
|
return true;
|
|
@@ -35158,7 +35158,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
35158
35158
|
return true;
|
|
35159
35159
|
}
|
|
35160
35160
|
|
|
35161
|
-
// bazel-out/
|
|
35161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35162
35162
|
function extractSemanticTypeParameters(node) {
|
|
35163
35163
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
35164
35164
|
return null;
|
|
@@ -35180,14 +35180,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
35180
35180
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
35181
35181
|
}
|
|
35182
35182
|
|
|
35183
|
-
// bazel-out/
|
|
35183
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
35184
35184
|
var ComponentScopeKind;
|
|
35185
35185
|
(function(ComponentScopeKind2) {
|
|
35186
35186
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
35187
35187
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
35188
35188
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
35189
35189
|
|
|
35190
|
-
// bazel-out/
|
|
35190
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
35191
35191
|
var CompoundComponentScopeReader = class {
|
|
35192
35192
|
constructor(readers) {
|
|
35193
35193
|
this.readers = readers;
|
|
@@ -35212,7 +35212,7 @@ var CompoundComponentScopeReader = class {
|
|
|
35212
35212
|
}
|
|
35213
35213
|
};
|
|
35214
35214
|
|
|
35215
|
-
// bazel-out/
|
|
35215
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
35216
35216
|
var MetadataDtsModuleScopeResolver = class {
|
|
35217
35217
|
constructor(dtsMetaReader, aliasingHost) {
|
|
35218
35218
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -35287,10 +35287,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
35287
35287
|
}
|
|
35288
35288
|
};
|
|
35289
35289
|
|
|
35290
|
-
// bazel-out/
|
|
35290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35291
35291
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
35292
35292
|
|
|
35293
|
-
// bazel-out/
|
|
35293
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
35294
35294
|
function getDiagnosticNode(ref, rawExpr) {
|
|
35295
35295
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
35296
35296
|
}
|
|
@@ -35316,7 +35316,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
35316
35316
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
35317
35317
|
}
|
|
35318
35318
|
|
|
35319
|
-
// bazel-out/
|
|
35319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35320
35320
|
var IN_PROGRESS_RESOLUTION = {};
|
|
35321
35321
|
var LocalModuleScopeRegistry = class {
|
|
35322
35322
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
@@ -35670,7 +35670,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
35670
35670
|
]);
|
|
35671
35671
|
}
|
|
35672
35672
|
|
|
35673
|
-
// bazel-out/
|
|
35673
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
35674
35674
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
35675
35675
|
var TypeCheckScopeRegistry = class {
|
|
35676
35676
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -35750,10 +35750,10 @@ var TypeCheckScopeRegistry = class {
|
|
|
35750
35750
|
}
|
|
35751
35751
|
};
|
|
35752
35752
|
|
|
35753
|
-
// bazel-out/
|
|
35753
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35754
35754
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
35755
35755
|
|
|
35756
|
-
// bazel-out/
|
|
35756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
35757
35757
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
35758
35758
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
35759
35759
|
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)}.`, [
|
|
@@ -35762,7 +35762,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
|
35762
35762
|
}
|
|
35763
35763
|
}
|
|
35764
35764
|
|
|
35765
|
-
// bazel-out/
|
|
35765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
35766
35766
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
35767
35767
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
35768
35768
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -35831,7 +35831,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
35831
35831
|
return { api: matchingApi, apiReference, isRequired };
|
|
35832
35832
|
}
|
|
35833
35833
|
|
|
35834
|
-
// bazel-out/
|
|
35834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
35835
35835
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
35836
35836
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
35837
35837
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -35849,7 +35849,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
35849
35849
|
return { alias };
|
|
35850
35850
|
}
|
|
35851
35851
|
|
|
35852
|
-
// bazel-out/
|
|
35852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35853
35853
|
var INPUT_INITIALIZER_FN = {
|
|
35854
35854
|
functionName: "input",
|
|
35855
35855
|
owningModule: "@angular/core",
|
|
@@ -35881,7 +35881,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
35881
35881
|
};
|
|
35882
35882
|
}
|
|
35883
35883
|
|
|
35884
|
-
// bazel-out/
|
|
35884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
35885
35885
|
var MODEL_INITIALIZER_FN = {
|
|
35886
35886
|
functionName: "model",
|
|
35887
35887
|
owningModule: "@angular/core",
|
|
@@ -35922,7 +35922,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
35922
35922
|
};
|
|
35923
35923
|
}
|
|
35924
35924
|
|
|
35925
|
-
// bazel-out/
|
|
35925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
35926
35926
|
var allowedAccessLevels = [
|
|
35927
35927
|
ClassMemberAccessLevel.PublicWritable,
|
|
35928
35928
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -35966,7 +35966,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
35966
35966
|
};
|
|
35967
35967
|
}
|
|
35968
35968
|
|
|
35969
|
-
// bazel-out/
|
|
35969
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
35970
35970
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
35971
35971
|
var queryFunctionNames = [
|
|
35972
35972
|
"viewChild",
|
|
@@ -36050,7 +36050,7 @@ function parseDescendantsOption(value) {
|
|
|
36050
36050
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
36051
36051
|
}
|
|
36052
36052
|
|
|
36053
|
-
// bazel-out/
|
|
36053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
36054
36054
|
var EMPTY_OBJECT = {};
|
|
36055
36055
|
var queryDecoratorNames = [
|
|
36056
36056
|
"ViewChild",
|
|
@@ -36850,7 +36850,7 @@ function toR3InputMetadata(mapping) {
|
|
|
36850
36850
|
};
|
|
36851
36851
|
}
|
|
36852
36852
|
|
|
36853
|
-
// bazel-out/
|
|
36853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
36854
36854
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
36855
36855
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
36856
36856
|
super(decl);
|
|
@@ -36930,7 +36930,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
36930
36930
|
return isSymbolEqual(current, previous);
|
|
36931
36931
|
}
|
|
36932
36932
|
|
|
36933
|
-
// bazel-out/
|
|
36933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
36934
36934
|
var FIELD_DECORATORS = [
|
|
36935
36935
|
"Input",
|
|
36936
36936
|
"Output",
|
|
@@ -37126,10 +37126,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
37126
37126
|
}
|
|
37127
37127
|
};
|
|
37128
37128
|
|
|
37129
|
-
// bazel-out/
|
|
37129
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37130
37130
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
37131
37131
|
|
|
37132
|
-
// bazel-out/
|
|
37132
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
37133
37133
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
37134
37134
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
37135
37135
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -37201,7 +37201,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
37201
37201
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
37202
37202
|
}
|
|
37203
37203
|
|
|
37204
|
-
// bazel-out/
|
|
37204
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37205
37205
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
37206
37206
|
constructor(decl, hasProviders) {
|
|
37207
37207
|
super(decl);
|
|
@@ -37816,7 +37816,7 @@ function isSyntheticReference(ref) {
|
|
|
37816
37816
|
return ref.synthetic;
|
|
37817
37817
|
}
|
|
37818
37818
|
|
|
37819
|
-
// bazel-out/
|
|
37819
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
37820
37820
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
37821
37821
|
const name = ref.debugName || "(unknown)";
|
|
37822
37822
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -37839,7 +37839,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
37839
37839
|
return null;
|
|
37840
37840
|
}
|
|
37841
37841
|
|
|
37842
|
-
// bazel-out/
|
|
37842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
37843
37843
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
37844
37844
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
37845
37845
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -38193,7 +38193,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
38193
38193
|
}));
|
|
38194
38194
|
}
|
|
38195
38195
|
|
|
38196
|
-
// bazel-out/
|
|
38196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
38197
38197
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
38198
38198
|
constructor() {
|
|
38199
38199
|
super(...arguments);
|
|
@@ -38228,7 +38228,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
38228
38228
|
}
|
|
38229
38229
|
};
|
|
38230
38230
|
|
|
38231
|
-
// bazel-out/
|
|
38231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
38232
38232
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
38233
38233
|
if (value instanceof Map) {
|
|
38234
38234
|
const name = value.get("name");
|
|
@@ -38305,7 +38305,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
38305
38305
|
return false;
|
|
38306
38306
|
}
|
|
38307
38307
|
|
|
38308
|
-
// bazel-out/
|
|
38308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
38309
38309
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
38310
38310
|
var UpdateMode;
|
|
38311
38311
|
(function(UpdateMode2) {
|
|
@@ -38313,13 +38313,13 @@ var UpdateMode;
|
|
|
38313
38313
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
38314
38314
|
})(UpdateMode || (UpdateMode = {}));
|
|
38315
38315
|
|
|
38316
|
-
// bazel-out/
|
|
38316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38317
38317
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
38318
38318
|
|
|
38319
|
-
// bazel-out/
|
|
38319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38320
38320
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
38321
38321
|
|
|
38322
|
-
// bazel-out/
|
|
38322
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
38323
38323
|
var NgExtension = Symbol("NgExtension");
|
|
38324
38324
|
function isExtended(sf) {
|
|
38325
38325
|
return sf[NgExtension] !== void 0;
|
|
@@ -38379,13 +38379,13 @@ function retagTsFile(sf) {
|
|
|
38379
38379
|
}
|
|
38380
38380
|
}
|
|
38381
38381
|
|
|
38382
|
-
// bazel-out/
|
|
38382
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
38383
38383
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
38384
38384
|
function makeShimFileName(fileName, suffix) {
|
|
38385
38385
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
38386
38386
|
}
|
|
38387
38387
|
|
|
38388
|
-
// bazel-out/
|
|
38388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38389
38389
|
var ShimAdapter = class {
|
|
38390
38390
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
38391
38391
|
this.delegate = delegate;
|
|
@@ -38480,7 +38480,7 @@ var ShimAdapter = class {
|
|
|
38480
38480
|
}
|
|
38481
38481
|
};
|
|
38482
38482
|
|
|
38483
|
-
// bazel-out/
|
|
38483
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
38484
38484
|
var ShimReferenceTagger = class {
|
|
38485
38485
|
constructor(shimExtensions) {
|
|
38486
38486
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -38514,7 +38514,7 @@ var ShimReferenceTagger = class {
|
|
|
38514
38514
|
}
|
|
38515
38515
|
};
|
|
38516
38516
|
|
|
38517
|
-
// bazel-out/
|
|
38517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38518
38518
|
var DelegatingCompilerHost = class {
|
|
38519
38519
|
get jsDocParsingMode() {
|
|
38520
38520
|
return this.delegate.jsDocParsingMode;
|
|
@@ -38632,14 +38632,14 @@ var TsCreateProgramDriver = class {
|
|
|
38632
38632
|
}
|
|
38633
38633
|
};
|
|
38634
38634
|
|
|
38635
|
-
// bazel-out/
|
|
38635
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
38636
38636
|
var OptimizeFor;
|
|
38637
38637
|
(function(OptimizeFor2) {
|
|
38638
38638
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
38639
38639
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
38640
38640
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
38641
38641
|
|
|
38642
|
-
// bazel-out/
|
|
38642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
38643
38643
|
var CompletionKind;
|
|
38644
38644
|
(function(CompletionKind2) {
|
|
38645
38645
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -38647,7 +38647,7 @@ var CompletionKind;
|
|
|
38647
38647
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
38648
38648
|
})(CompletionKind || (CompletionKind = {}));
|
|
38649
38649
|
|
|
38650
|
-
// bazel-out/
|
|
38650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
38651
38651
|
var PotentialImportKind;
|
|
38652
38652
|
(function(PotentialImportKind2) {
|
|
38653
38653
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -38659,7 +38659,7 @@ var PotentialImportMode;
|
|
|
38659
38659
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
38660
38660
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
38661
38661
|
|
|
38662
|
-
// bazel-out/
|
|
38662
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
38663
38663
|
var SymbolKind;
|
|
38664
38664
|
(function(SymbolKind2) {
|
|
38665
38665
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -38676,7 +38676,7 @@ var SymbolKind;
|
|
|
38676
38676
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
38677
38677
|
})(SymbolKind || (SymbolKind = {}));
|
|
38678
38678
|
|
|
38679
|
-
// bazel-out/
|
|
38679
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
38680
38680
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
38681
38681
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
38682
38682
|
var _a2;
|
|
@@ -38787,7 +38787,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
38787
38787
|
);
|
|
38788
38788
|
}
|
|
38789
38789
|
|
|
38790
|
-
// bazel-out/
|
|
38790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
38791
38791
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
38792
38792
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
38793
38793
|
function getTemplateId(clazz) {
|
|
@@ -38804,10 +38804,10 @@ function allocateTemplateId(sf) {
|
|
|
38804
38804
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
38805
38805
|
}
|
|
38806
38806
|
|
|
38807
|
-
// bazel-out/
|
|
38807
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38808
38808
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
38809
38809
|
|
|
38810
|
-
// bazel-out/
|
|
38810
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
38811
38811
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
38812
38812
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
38813
38813
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -38937,7 +38937,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
38937
38937
|
}) || false;
|
|
38938
38938
|
}
|
|
38939
38939
|
|
|
38940
|
-
// bazel-out/
|
|
38940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38941
38941
|
var CompletionEngine = class {
|
|
38942
38942
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
38943
38943
|
this.tcb = tcb;
|
|
@@ -40214,10 +40214,10 @@ var MagicString = class {
|
|
|
40214
40214
|
}
|
|
40215
40215
|
};
|
|
40216
40216
|
|
|
40217
|
-
// bazel-out/
|
|
40217
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
40218
40218
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
40219
40219
|
|
|
40220
|
-
// bazel-out/
|
|
40220
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
40221
40221
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
40222
40222
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
40223
40223
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -40269,10 +40269,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
40269
40269
|
}
|
|
40270
40270
|
};
|
|
40271
40271
|
|
|
40272
|
-
// bazel-out/
|
|
40272
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40273
40273
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
40274
40274
|
|
|
40275
|
-
// bazel-out/
|
|
40275
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
40276
40276
|
var ReferenceEmitEnvironment = class {
|
|
40277
40277
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
40278
40278
|
this.importManager = importManager;
|
|
@@ -40302,7 +40302,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
40302
40302
|
}
|
|
40303
40303
|
};
|
|
40304
40304
|
|
|
40305
|
-
// bazel-out/
|
|
40305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
40306
40306
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
40307
40307
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
40308
40308
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -40385,13 +40385,13 @@ function tsNumericExpression2(value) {
|
|
|
40385
40385
|
return import_typescript72.default.factory.createNumericLiteral(value);
|
|
40386
40386
|
}
|
|
40387
40387
|
|
|
40388
|
-
// bazel-out/
|
|
40388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40389
40389
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
40390
40390
|
|
|
40391
|
-
// bazel-out/
|
|
40391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40392
40392
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
40393
40393
|
|
|
40394
|
-
// bazel-out/
|
|
40394
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
40395
40395
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
40396
40396
|
var TypeParameterEmitter = class {
|
|
40397
40397
|
constructor(typeParameters, reflector) {
|
|
@@ -40469,7 +40469,7 @@ var TypeParameterEmitter = class {
|
|
|
40469
40469
|
}
|
|
40470
40470
|
};
|
|
40471
40471
|
|
|
40472
|
-
// bazel-out/
|
|
40472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40473
40473
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
40474
40474
|
Identifiers.InputSignalBrandWriteType
|
|
40475
40475
|
];
|
|
@@ -40561,7 +40561,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
40561
40561
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
40562
40562
|
}
|
|
40563
40563
|
|
|
40564
|
-
// bazel-out/
|
|
40564
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40565
40565
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
40566
40566
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
40567
40567
|
const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -40684,7 +40684,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
40684
40684
|
});
|
|
40685
40685
|
}
|
|
40686
40686
|
|
|
40687
|
-
// bazel-out/
|
|
40687
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40688
40688
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
40689
40689
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
40690
40690
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -40756,7 +40756,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
40756
40756
|
}
|
|
40757
40757
|
};
|
|
40758
40758
|
|
|
40759
|
-
// bazel-out/
|
|
40759
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
40760
40760
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40761
40761
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
40762
40762
|
constructor(resolver) {
|
|
@@ -40956,7 +40956,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
40956
40956
|
});
|
|
40957
40957
|
}
|
|
40958
40958
|
|
|
40959
|
-
// bazel-out/
|
|
40959
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
40960
40960
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40961
40961
|
var TypeCheckShimGenerator = class {
|
|
40962
40962
|
constructor() {
|
|
@@ -40974,10 +40974,10 @@ var TypeCheckShimGenerator = class {
|
|
|
40974
40974
|
}
|
|
40975
40975
|
};
|
|
40976
40976
|
|
|
40977
|
-
// bazel-out/
|
|
40977
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40978
40978
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
40979
40979
|
|
|
40980
|
-
// bazel-out/
|
|
40980
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
40981
40981
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
40982
40982
|
function wrapForDiagnostics(expr) {
|
|
40983
40983
|
return import_typescript80.default.factory.createParenthesizedExpression(expr);
|
|
@@ -41032,7 +41032,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
41032
41032
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
41033
41033
|
}
|
|
41034
41034
|
|
|
41035
|
-
// bazel-out/
|
|
41035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
41036
41036
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
41037
41037
|
var ANY_EXPRESSION = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNumericLiteral("0"), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
|
|
41038
41038
|
var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
|
|
@@ -41364,7 +41364,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
41364
41364
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
41365
41365
|
})();
|
|
41366
41366
|
|
|
41367
|
-
// bazel-out/
|
|
41367
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
41368
41368
|
var TcbGenericContextBehavior;
|
|
41369
41369
|
(function(TcbGenericContextBehavior2) {
|
|
41370
41370
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -42954,7 +42954,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
42954
42954
|
}
|
|
42955
42955
|
};
|
|
42956
42956
|
|
|
42957
|
-
// bazel-out/
|
|
42957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
42958
42958
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
42959
42959
|
var TypeCheckFile = class extends Environment {
|
|
42960
42960
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -43002,7 +43002,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
43002
43002
|
}
|
|
43003
43003
|
};
|
|
43004
43004
|
|
|
43005
|
-
// bazel-out/
|
|
43005
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
43006
43006
|
var InliningMode;
|
|
43007
43007
|
(function(InliningMode2) {
|
|
43008
43008
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -43254,7 +43254,7 @@ var TypeCtorOp = class {
|
|
|
43254
43254
|
}
|
|
43255
43255
|
};
|
|
43256
43256
|
|
|
43257
|
-
// bazel-out/
|
|
43257
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
43258
43258
|
var LF_CHAR = 10;
|
|
43259
43259
|
var CR_CHAR = 13;
|
|
43260
43260
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -43295,7 +43295,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
43295
43295
|
return low - 1;
|
|
43296
43296
|
}
|
|
43297
43297
|
|
|
43298
|
-
// bazel-out/
|
|
43298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
43299
43299
|
var TemplateSource = class {
|
|
43300
43300
|
constructor(mapping, file) {
|
|
43301
43301
|
this.mapping = mapping;
|
|
@@ -43346,7 +43346,7 @@ var TemplateSourceManager = class {
|
|
|
43346
43346
|
}
|
|
43347
43347
|
};
|
|
43348
43348
|
|
|
43349
|
-
// bazel-out/
|
|
43349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
43350
43350
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
43351
43351
|
var SymbolBuilder = class {
|
|
43352
43352
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -43915,7 +43915,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
43915
43915
|
};
|
|
43916
43916
|
}
|
|
43917
43917
|
|
|
43918
|
-
// bazel-out/
|
|
43918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
43919
43919
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
43920
43920
|
var TemplateTypeCheckerImpl = class {
|
|
43921
43921
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -44613,7 +44613,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
44613
44613
|
}
|
|
44614
44614
|
};
|
|
44615
44615
|
|
|
44616
|
-
// bazel-out/
|
|
44616
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
44617
44617
|
var EMPTY_ARRAY2 = [];
|
|
44618
44618
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
44619
44619
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -45639,7 +45639,7 @@ function isDefaultImport(node) {
|
|
|
45639
45639
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
45640
45640
|
}
|
|
45641
45641
|
|
|
45642
|
-
// bazel-out/
|
|
45642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
45643
45643
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
45644
45644
|
var InjectableDecoratorHandler = class {
|
|
45645
45645
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -45870,7 +45870,7 @@ function getDep(dep, reflector) {
|
|
|
45870
45870
|
return meta;
|
|
45871
45871
|
}
|
|
45872
45872
|
|
|
45873
|
-
// bazel-out/
|
|
45873
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
45874
45874
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
45875
45875
|
var PipeSymbol = class extends SemanticSymbol {
|
|
45876
45876
|
constructor(decl, name) {
|
|
@@ -46026,7 +46026,7 @@ var PipeDecoratorHandler = class {
|
|
|
46026
46026
|
}
|
|
46027
46027
|
};
|
|
46028
46028
|
|
|
46029
|
-
// bazel-out/
|
|
46029
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform_api.mjs
|
|
46030
46030
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
46031
46031
|
function createSyntheticAngularCoreDecoratorAccess(factory11, importManager, ngClassDecorator, sourceFile, decoratorName) {
|
|
46032
46032
|
const classDecoratorIdentifier = import_typescript92.default.isIdentifier(ngClassDecorator.identifier) ? ngClassDecorator.identifier : ngClassDecorator.identifier.expression;
|
|
@@ -46043,7 +46043,7 @@ function castAsAny(factory11, expr) {
|
|
|
46043
46043
|
return factory11.createAsExpression(expr, factory11.createKeywordTypeNode(import_typescript92.default.SyntaxKind.AnyKeyword));
|
|
46044
46044
|
}
|
|
46045
46045
|
|
|
46046
|
-
// bazel-out/
|
|
46046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/input_function.mjs
|
|
46047
46047
|
var signalInputsTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46048
46048
|
var _a2, _b2;
|
|
46049
46049
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Input", isCore))) {
|
|
@@ -46065,7 +46065,7 @@ var signalInputsTransform = (member, sourceFile, host, factory11, importTracker,
|
|
|
46065
46065
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_b2 = member.node.modifiers) != null ? _b2 : []], member.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46066
46066
|
};
|
|
46067
46067
|
|
|
46068
|
-
// bazel-out/
|
|
46068
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/model_function.mjs
|
|
46069
46069
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
46070
46070
|
var signalModelTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46071
46071
|
var _a2, _b2;
|
|
@@ -46099,7 +46099,7 @@ function createDecorator(name, config, classDecorator, factory11, sourceFile, im
|
|
|
46099
46099
|
return factory11.createDecorator(factory11.createCallExpression(callTarget, void 0, [config]));
|
|
46100
46100
|
}
|
|
46101
46101
|
|
|
46102
|
-
// bazel-out/
|
|
46102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/output_function.mjs
|
|
46103
46103
|
var initializerApiOutputTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46104
46104
|
var _a2, _b2;
|
|
46105
46105
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Output", isCore))) {
|
|
@@ -46113,7 +46113,7 @@ var initializerApiOutputTransform = (member, sourceFile, host, factory11, import
|
|
|
46113
46113
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_b2 = member.node.modifiers) != null ? _b2 : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46114
46114
|
};
|
|
46115
46115
|
|
|
46116
|
-
// bazel-out/
|
|
46116
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/query_functions.mjs
|
|
46117
46117
|
var queryFunctionToDecorator = {
|
|
46118
46118
|
viewChild: "ViewChild",
|
|
46119
46119
|
viewChildren: "ViewChildren",
|
|
@@ -46146,7 +46146,7 @@ var queryFunctionsTransforms = (member, sourceFile, host, factory11, importTrack
|
|
|
46146
46146
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_a2 = member.node.modifiers) != null ? _a2 : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46147
46147
|
};
|
|
46148
46148
|
|
|
46149
|
-
// bazel-out/
|
|
46149
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
46150
46150
|
var decoratorsWithInputs = ["Directive", "Component"];
|
|
46151
46151
|
var propertyTransforms = [
|
|
46152
46152
|
signalInputsTransform,
|
|
@@ -46199,7 +46199,7 @@ function createTransformVisitor(ctx, host, importManager, importTracker, isCore,
|
|
|
46199
46199
|
return visitor;
|
|
46200
46200
|
}
|
|
46201
46201
|
|
|
46202
|
-
// bazel-out/
|
|
46202
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/index.mjs
|
|
46203
46203
|
function angularJitApplicationTransform(program, isCore = false, shouldTransformClass) {
|
|
46204
46204
|
const typeChecker = program.getTypeChecker();
|
|
46205
46205
|
const reflectionHost = new TypeScriptReflectionHost(typeChecker);
|
|
@@ -46222,7 +46222,7 @@ function angularJitApplicationTransform(program, isCore = false, shouldTransform
|
|
|
46222
46222
|
};
|
|
46223
46223
|
}
|
|
46224
46224
|
|
|
46225
|
-
// bazel-out/
|
|
46225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
46226
46226
|
var EmitFlags;
|
|
46227
46227
|
(function(EmitFlags2) {
|
|
46228
46228
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -46234,13 +46234,13 @@ var EmitFlags;
|
|
|
46234
46234
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
46235
46235
|
})(EmitFlags || (EmitFlags = {}));
|
|
46236
46236
|
|
|
46237
|
-
// bazel-out/
|
|
46237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
46238
46238
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
46239
46239
|
|
|
46240
|
-
// bazel-out/
|
|
46240
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
46241
46241
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
46242
46242
|
|
|
46243
|
-
// bazel-out/
|
|
46243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
46244
46244
|
var path2 = __toESM(require("path"), 1);
|
|
46245
46245
|
function i18nGetExtension(formatName) {
|
|
46246
46246
|
const format = formatName.toLowerCase();
|
|
@@ -46292,10 +46292,10 @@ function getPathNormalizer(basePath) {
|
|
|
46292
46292
|
};
|
|
46293
46293
|
}
|
|
46294
46294
|
|
|
46295
|
-
// bazel-out/
|
|
46295
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46296
46296
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
46297
46297
|
|
|
46298
|
-
// bazel-out/
|
|
46298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
46299
46299
|
function toNumbers(value) {
|
|
46300
46300
|
const suffixIndex = value.lastIndexOf("-");
|
|
46301
46301
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -46330,7 +46330,7 @@ function compareVersions(v1, v2) {
|
|
|
46330
46330
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
46331
46331
|
}
|
|
46332
46332
|
|
|
46333
|
-
// bazel-out/
|
|
46333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46334
46334
|
var MIN_TS_VERSION = "5.4.0";
|
|
46335
46335
|
var MAX_TS_VERSION = "5.6.0";
|
|
46336
46336
|
var tsVersion = import_typescript97.default.version;
|
|
@@ -46343,10 +46343,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
46343
46343
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
46344
46344
|
}
|
|
46345
46345
|
|
|
46346
|
-
// bazel-out/
|
|
46346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
46347
46347
|
var import_typescript120 = __toESM(require("typescript"), 1);
|
|
46348
46348
|
|
|
46349
|
-
// bazel-out/
|
|
46349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
46350
46350
|
var CycleAnalyzer = class {
|
|
46351
46351
|
constructor(importGraph) {
|
|
46352
46352
|
this.importGraph = importGraph;
|
|
@@ -46417,7 +46417,7 @@ var Cycle = class {
|
|
|
46417
46417
|
}
|
|
46418
46418
|
};
|
|
46419
46419
|
|
|
46420
|
-
// bazel-out/
|
|
46420
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
46421
46421
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
46422
46422
|
var ImportGraph = class {
|
|
46423
46423
|
constructor(checker, perf) {
|
|
@@ -46509,13 +46509,13 @@ var Found = class {
|
|
|
46509
46509
|
}
|
|
46510
46510
|
};
|
|
46511
46511
|
|
|
46512
|
-
// bazel-out/
|
|
46512
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
46513
46513
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46514
46514
|
|
|
46515
|
-
// bazel-out/
|
|
46515
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46516
46516
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
46517
46517
|
|
|
46518
|
-
// bazel-out/
|
|
46518
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
46519
46519
|
var EntryType;
|
|
46520
46520
|
(function(EntryType2) {
|
|
46521
46521
|
EntryType2["Block"] = "block";
|
|
@@ -46559,17 +46559,17 @@ var MemberTags;
|
|
|
46559
46559
|
MemberTags2["Inherited"] = "override";
|
|
46560
46560
|
})(MemberTags || (MemberTags = {}));
|
|
46561
46561
|
|
|
46562
|
-
// bazel-out/
|
|
46562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
46563
46563
|
function isAngularPrivateName(name) {
|
|
46564
46564
|
var _a2;
|
|
46565
46565
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
46566
46566
|
return firstChar === "\u0275" || firstChar === "_";
|
|
46567
46567
|
}
|
|
46568
46568
|
|
|
46569
|
-
// bazel-out/
|
|
46569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46570
46570
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
46571
46571
|
|
|
46572
|
-
// bazel-out/
|
|
46572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
46573
46573
|
function extractGenerics(declaration) {
|
|
46574
46574
|
var _a2, _b2;
|
|
46575
46575
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -46582,7 +46582,7 @@ function extractGenerics(declaration) {
|
|
|
46582
46582
|
})) != null ? _b2 : [];
|
|
46583
46583
|
}
|
|
46584
46584
|
|
|
46585
|
-
// bazel-out/
|
|
46585
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
46586
46586
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
46587
46587
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
46588
46588
|
function extractJsDocTags(node) {
|
|
@@ -46626,12 +46626,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
46626
46626
|
return comment.replace(/_NG_AT_/g, "@");
|
|
46627
46627
|
}
|
|
46628
46628
|
|
|
46629
|
-
// bazel-out/
|
|
46629
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
46630
46630
|
function extractResolvedTypeString(node, checker) {
|
|
46631
46631
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
46632
46632
|
}
|
|
46633
46633
|
|
|
46634
|
-
// bazel-out/
|
|
46634
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46635
46635
|
var FunctionExtractor = class {
|
|
46636
46636
|
constructor(name, exportDeclaration, typeChecker) {
|
|
46637
46637
|
this.name = name;
|
|
@@ -46719,7 +46719,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
46719
46719
|
return implementation;
|
|
46720
46720
|
}
|
|
46721
46721
|
|
|
46722
|
-
// bazel-out/
|
|
46722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
|
|
46723
46723
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
46724
46724
|
function isInternal(member) {
|
|
46725
46725
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -46738,7 +46738,7 @@ function hasLeadingInternalComment(member) {
|
|
|
46738
46738
|
)) != null ? _a2 : false;
|
|
46739
46739
|
}
|
|
46740
46740
|
|
|
46741
|
-
// bazel-out/
|
|
46741
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46742
46742
|
var ClassExtractor = class {
|
|
46743
46743
|
constructor(declaration, typeChecker) {
|
|
46744
46744
|
this.declaration = declaration;
|
|
@@ -47029,7 +47029,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
47029
47029
|
return extractor.extract();
|
|
47030
47030
|
}
|
|
47031
47031
|
|
|
47032
|
-
// bazel-out/
|
|
47032
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
47033
47033
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
47034
47034
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
47035
47035
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -47087,7 +47087,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
47087
47087
|
});
|
|
47088
47088
|
}
|
|
47089
47089
|
|
|
47090
|
-
// bazel-out/
|
|
47090
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
47091
47091
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
47092
47092
|
function extractorDecorator(declaration, typeChecker) {
|
|
47093
47093
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -47160,7 +47160,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
47160
47160
|
return callSignature;
|
|
47161
47161
|
}
|
|
47162
47162
|
|
|
47163
|
-
// bazel-out/
|
|
47163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
47164
47164
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
47165
47165
|
function extractEnum(declaration, typeChecker) {
|
|
47166
47166
|
return {
|
|
@@ -47191,7 +47191,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
47191
47191
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
47192
47192
|
}
|
|
47193
47193
|
|
|
47194
|
-
// bazel-out/
|
|
47194
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
47195
47195
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
47196
47196
|
var initializerApiTag = "initializerApiFunction";
|
|
47197
47197
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -47300,7 +47300,7 @@ function extractFunctionWithOverloads(name, type, typeChecker) {
|
|
|
47300
47300
|
};
|
|
47301
47301
|
}
|
|
47302
47302
|
|
|
47303
|
-
// bazel-out/
|
|
47303
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
47304
47304
|
function extractTypeAlias(declaration) {
|
|
47305
47305
|
return {
|
|
47306
47306
|
name: declaration.name.getText(),
|
|
@@ -47313,7 +47313,7 @@ function extractTypeAlias(declaration) {
|
|
|
47313
47313
|
};
|
|
47314
47314
|
}
|
|
47315
47315
|
|
|
47316
|
-
// bazel-out/
|
|
47316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/import_extractor.mjs
|
|
47317
47317
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
47318
47318
|
function getImportedSymbols(sourceFile) {
|
|
47319
47319
|
const importSpecifiers = /* @__PURE__ */ new Map();
|
|
@@ -47338,7 +47338,7 @@ function getImportedSymbols(sourceFile) {
|
|
|
47338
47338
|
return importSpecifiers;
|
|
47339
47339
|
}
|
|
47340
47340
|
|
|
47341
|
-
// bazel-out/
|
|
47341
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
47342
47342
|
var DocsExtractor = class {
|
|
47343
47343
|
constructor(typeChecker, metadataReader) {
|
|
47344
47344
|
this.typeChecker = typeChecker;
|
|
@@ -47424,7 +47424,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
47424
47424
|
return relativePath;
|
|
47425
47425
|
}
|
|
47426
47426
|
|
|
47427
|
-
// bazel-out/
|
|
47427
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
47428
47428
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
47429
47429
|
var FlatIndexGenerator = class {
|
|
47430
47430
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -47449,7 +47449,7 @@ export * from '${relativeEntryPoint}';
|
|
|
47449
47449
|
}
|
|
47450
47450
|
};
|
|
47451
47451
|
|
|
47452
|
-
// bazel-out/
|
|
47452
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
47453
47453
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
47454
47454
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
47455
47455
|
let resolvedEntryPoint = null;
|
|
@@ -47465,7 +47465,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
47465
47465
|
return resolvedEntryPoint;
|
|
47466
47466
|
}
|
|
47467
47467
|
|
|
47468
|
-
// bazel-out/
|
|
47468
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
47469
47469
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
47470
47470
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
47471
47471
|
const diagnostics = [];
|
|
@@ -47545,7 +47545,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
47545
47545
|
}
|
|
47546
47546
|
}
|
|
47547
47547
|
|
|
47548
|
-
// bazel-out/
|
|
47548
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
47549
47549
|
var ReferenceGraph = class {
|
|
47550
47550
|
constructor() {
|
|
47551
47551
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -47599,7 +47599,7 @@ var ReferenceGraph = class {
|
|
|
47599
47599
|
}
|
|
47600
47600
|
};
|
|
47601
47601
|
|
|
47602
|
-
// bazel-out/
|
|
47602
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
47603
47603
|
var FileDependencyGraph = class {
|
|
47604
47604
|
constructor() {
|
|
47605
47605
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -47666,7 +47666,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
47666
47666
|
return false;
|
|
47667
47667
|
}
|
|
47668
47668
|
|
|
47669
|
-
// bazel-out/
|
|
47669
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
47670
47670
|
var IncrementalStateKind;
|
|
47671
47671
|
(function(IncrementalStateKind2) {
|
|
47672
47672
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -47674,7 +47674,7 @@ var IncrementalStateKind;
|
|
|
47674
47674
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
47675
47675
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
47676
47676
|
|
|
47677
|
-
// bazel-out/
|
|
47677
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
47678
47678
|
var PhaseKind;
|
|
47679
47679
|
(function(PhaseKind2) {
|
|
47680
47680
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -47875,7 +47875,7 @@ function toOriginalSourceFile(sf) {
|
|
|
47875
47875
|
}
|
|
47876
47876
|
}
|
|
47877
47877
|
|
|
47878
|
-
// bazel-out/
|
|
47878
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
47879
47879
|
var TrackedIncrementalBuildStrategy = class {
|
|
47880
47880
|
constructor() {
|
|
47881
47881
|
this.state = null;
|
|
@@ -47896,7 +47896,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
47896
47896
|
};
|
|
47897
47897
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
47898
47898
|
|
|
47899
|
-
// bazel-out/
|
|
47899
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
47900
47900
|
var IdentifierKind;
|
|
47901
47901
|
(function(IdentifierKind2) {
|
|
47902
47902
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -47915,7 +47915,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
47915
47915
|
}
|
|
47916
47916
|
};
|
|
47917
47917
|
|
|
47918
|
-
// bazel-out/
|
|
47918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
47919
47919
|
var IndexingContext = class {
|
|
47920
47920
|
constructor() {
|
|
47921
47921
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -47925,7 +47925,7 @@ var IndexingContext = class {
|
|
|
47925
47925
|
}
|
|
47926
47926
|
};
|
|
47927
47927
|
|
|
47928
|
-
// bazel-out/
|
|
47928
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
47929
47929
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
47930
47930
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
47931
47931
|
super();
|
|
@@ -48219,7 +48219,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
48219
48219
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
48220
48220
|
}
|
|
48221
48221
|
|
|
48222
|
-
// bazel-out/
|
|
48222
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
48223
48223
|
function generateAnalysis(context) {
|
|
48224
48224
|
const analysis = /* @__PURE__ */ new Map();
|
|
48225
48225
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -48255,7 +48255,7 @@ function generateAnalysis(context) {
|
|
|
48255
48255
|
return analysis;
|
|
48256
48256
|
}
|
|
48257
48257
|
|
|
48258
|
-
// bazel-out/
|
|
48258
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
48259
48259
|
var NgModuleIndexImpl = class {
|
|
48260
48260
|
constructor(metaReader, localReader) {
|
|
48261
48261
|
this.metaReader = metaReader;
|
|
@@ -48344,7 +48344,7 @@ var NgModuleIndexImpl = class {
|
|
|
48344
48344
|
}
|
|
48345
48345
|
};
|
|
48346
48346
|
|
|
48347
|
-
// bazel-out/
|
|
48347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
48348
48348
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
48349
48349
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
48350
48350
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -48496,7 +48496,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
48496
48496
|
};
|
|
48497
48497
|
}
|
|
48498
48498
|
|
|
48499
|
-
// bazel-out/
|
|
48499
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
48500
48500
|
var StandaloneComponentScopeReader = class {
|
|
48501
48501
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
48502
48502
|
this.metaReader = metaReader;
|
|
@@ -48592,7 +48592,7 @@ var StandaloneComponentScopeReader = class {
|
|
|
48592
48592
|
}
|
|
48593
48593
|
};
|
|
48594
48594
|
|
|
48595
|
-
// bazel-out/
|
|
48595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
48596
48596
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
48597
48597
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
48598
48598
|
"WritableSignal",
|
|
@@ -48612,7 +48612,7 @@ function isSignalSymbol(symbol) {
|
|
|
48612
48612
|
});
|
|
48613
48613
|
}
|
|
48614
48614
|
|
|
48615
|
-
// bazel-out/
|
|
48615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
48616
48616
|
var TemplateCheckWithVisitor = class {
|
|
48617
48617
|
constructor() {
|
|
48618
48618
|
this.canVisitStructuralAttributes = true;
|
|
@@ -48747,7 +48747,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
48747
48747
|
}
|
|
48748
48748
|
};
|
|
48749
48749
|
|
|
48750
|
-
// bazel-out/
|
|
48750
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
48751
48751
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
48752
48752
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
48753
48753
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -48799,7 +48799,7 @@ var factory = {
|
|
|
48799
48799
|
create: () => new InterpolatedSignalCheck()
|
|
48800
48800
|
};
|
|
48801
48801
|
|
|
48802
|
-
// bazel-out/
|
|
48802
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
48803
48803
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
48804
48804
|
constructor() {
|
|
48805
48805
|
super(...arguments);
|
|
@@ -48824,7 +48824,7 @@ var factory2 = {
|
|
|
48824
48824
|
create: () => new InvalidBananaInBoxCheck()
|
|
48825
48825
|
};
|
|
48826
48826
|
|
|
48827
|
-
// bazel-out/
|
|
48827
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
48828
48828
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
48829
48829
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
48830
48830
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -48868,7 +48868,7 @@ var factory3 = {
|
|
|
48868
48868
|
}
|
|
48869
48869
|
};
|
|
48870
48870
|
|
|
48871
|
-
// bazel-out/
|
|
48871
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
48872
48872
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
48873
48873
|
constructor() {
|
|
48874
48874
|
super(...arguments);
|
|
@@ -48900,7 +48900,7 @@ var factory4 = {
|
|
|
48900
48900
|
create: () => new MissingNgForOfLetCheck()
|
|
48901
48901
|
};
|
|
48902
48902
|
|
|
48903
|
-
// bazel-out/
|
|
48903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
48904
48904
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
48905
48905
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48906
48906
|
constructor() {
|
|
@@ -48945,7 +48945,7 @@ var factory5 = {
|
|
|
48945
48945
|
}
|
|
48946
48946
|
};
|
|
48947
48947
|
|
|
48948
|
-
// bazel-out/
|
|
48948
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
48949
48949
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
48950
48950
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48951
48951
|
constructor() {
|
|
@@ -48991,7 +48991,7 @@ var factory6 = {
|
|
|
48991
48991
|
}
|
|
48992
48992
|
};
|
|
48993
48993
|
|
|
48994
|
-
// bazel-out/
|
|
48994
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
48995
48995
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
48996
48996
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
48997
48997
|
constructor() {
|
|
@@ -49014,7 +49014,7 @@ var factory7 = {
|
|
|
49014
49014
|
create: () => new SuffixNotSupportedCheck()
|
|
49015
49015
|
};
|
|
49016
49016
|
|
|
49017
|
-
// bazel-out/
|
|
49017
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
49018
49018
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
49019
49019
|
constructor() {
|
|
49020
49020
|
super(...arguments);
|
|
@@ -49052,7 +49052,7 @@ var factory8 = {
|
|
|
49052
49052
|
create: () => new TextAttributeNotBindingSpec()
|
|
49053
49053
|
};
|
|
49054
49054
|
|
|
49055
|
-
// bazel-out/
|
|
49055
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
|
|
49056
49056
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
49057
49057
|
constructor() {
|
|
49058
49058
|
super(...arguments);
|
|
@@ -49103,7 +49103,7 @@ var factory9 = {
|
|
|
49103
49103
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
49104
49104
|
};
|
|
49105
49105
|
|
|
49106
|
-
// bazel-out/
|
|
49106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unused_let_declaration/index.mjs
|
|
49107
49107
|
var UnusedLetDeclarationCheck = class extends TemplateCheckWithVisitor {
|
|
49108
49108
|
constructor() {
|
|
49109
49109
|
super(...arguments);
|
|
@@ -49147,10 +49147,10 @@ var factory10 = {
|
|
|
49147
49147
|
create: () => new UnusedLetDeclarationCheck()
|
|
49148
49148
|
};
|
|
49149
49149
|
|
|
49150
|
-
// bazel-out/
|
|
49150
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49151
49151
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
49152
49152
|
|
|
49153
|
-
// bazel-out/
|
|
49153
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
49154
49154
|
var DiagnosticCategoryLabel;
|
|
49155
49155
|
(function(DiagnosticCategoryLabel2) {
|
|
49156
49156
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -49158,7 +49158,7 @@ var DiagnosticCategoryLabel;
|
|
|
49158
49158
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
49159
49159
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
49160
49160
|
|
|
49161
|
-
// bazel-out/
|
|
49161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49162
49162
|
var ExtendedTemplateCheckerImpl = class {
|
|
49163
49163
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
49164
49164
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -49210,7 +49210,7 @@ function assertNever(value) {
|
|
|
49210
49210
|
${value}`);
|
|
49211
49211
|
}
|
|
49212
49212
|
|
|
49213
|
-
// bazel-out/
|
|
49213
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
49214
49214
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
49215
49215
|
factory2,
|
|
49216
49216
|
factory5,
|
|
@@ -49228,7 +49228,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
49228
49228
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory11) => factory11.name)
|
|
49229
49229
|
]);
|
|
49230
49230
|
|
|
49231
|
-
// bazel-out/
|
|
49231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
49232
49232
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
49233
49233
|
var TemplateSemanticsCheckerImpl = class {
|
|
49234
49234
|
constructor(templateTypeChecker) {
|
|
@@ -49318,7 +49318,7 @@ function unwrapAstWithSource(ast) {
|
|
|
49318
49318
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
49319
49319
|
}
|
|
49320
49320
|
|
|
49321
|
-
// bazel-out/
|
|
49321
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
|
|
49322
49322
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
49323
49323
|
var APIS_TO_CHECK = [
|
|
49324
49324
|
INPUT_INITIALIZER_FN,
|
|
@@ -49369,7 +49369,7 @@ var InitializerApiUsageRule = class {
|
|
|
49369
49369
|
}
|
|
49370
49370
|
};
|
|
49371
49371
|
|
|
49372
|
-
// bazel-out/
|
|
49372
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
|
|
49373
49373
|
var SourceFileValidator = class {
|
|
49374
49374
|
constructor(reflector, importedSymbolsTracker) {
|
|
49375
49375
|
this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
|
|
@@ -49407,7 +49407,7 @@ var SourceFileValidator = class {
|
|
|
49407
49407
|
}
|
|
49408
49408
|
};
|
|
49409
49409
|
|
|
49410
|
-
// bazel-out/
|
|
49410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
49411
49411
|
function coreHasSymbol(program, symbol) {
|
|
49412
49412
|
const checker = program.getTypeChecker();
|
|
49413
49413
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -49426,7 +49426,7 @@ function isMaybeCore(sf) {
|
|
|
49426
49426
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
49427
49427
|
}
|
|
49428
49428
|
|
|
49429
|
-
// bazel-out/
|
|
49429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
49430
49430
|
var import_semver = __toESM(require_semver2(), 1);
|
|
49431
49431
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
49432
49432
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -49435,7 +49435,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
49435
49435
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
49436
49436
|
}
|
|
49437
49437
|
|
|
49438
|
-
// bazel-out/
|
|
49438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
49439
49439
|
var CompilationTicketKind;
|
|
49440
49440
|
(function(CompilationTicketKind2) {
|
|
49441
49441
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -50242,7 +50242,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
50242
50242
|
return versions;
|
|
50243
50243
|
}
|
|
50244
50244
|
|
|
50245
|
-
// bazel-out/
|
|
50245
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
50246
50246
|
var import_typescript122 = __toESM(require("typescript"), 1);
|
|
50247
50247
|
var DelegatingCompilerHost2 = class {
|
|
50248
50248
|
get jsDocParsingMode() {
|
|
@@ -50381,7 +50381,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
50381
50381
|
}
|
|
50382
50382
|
};
|
|
50383
50383
|
|
|
50384
|
-
// bazel-out/
|
|
50384
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
50385
50385
|
var NgtscProgram = class {
|
|
50386
50386
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
50387
50387
|
this.options = options;
|
|
@@ -50607,18 +50607,18 @@ function mergeEmitResults(emitResults) {
|
|
|
50607
50607
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
50608
50608
|
}
|
|
50609
50609
|
|
|
50610
|
-
// bazel-out/
|
|
50610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
50611
50611
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
50612
50612
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
50613
50613
|
}
|
|
50614
50614
|
|
|
50615
|
-
// bazel-out/
|
|
50615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
50616
50616
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
50617
50617
|
|
|
50618
|
-
// bazel-out/
|
|
50618
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
50619
50619
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
50620
50620
|
|
|
50621
|
-
// bazel-out/
|
|
50621
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
50622
50622
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
50623
50623
|
ngDevMode: false,
|
|
50624
50624
|
ngI18nClosureMode: false
|
|
@@ -50627,7 +50627,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
50627
50627
|
ngJitMode: false
|
|
50628
50628
|
});
|
|
50629
50629
|
|
|
50630
|
-
// bazel-out/
|
|
50630
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
50631
50631
|
var LogLevel;
|
|
50632
50632
|
(function(LogLevel2) {
|
|
50633
50633
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -50636,7 +50636,7 @@ var LogLevel;
|
|
|
50636
50636
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
50637
50637
|
})(LogLevel || (LogLevel = {}));
|
|
50638
50638
|
|
|
50639
|
-
// bazel-out/
|
|
50639
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
50640
50640
|
var RESET = "\x1B[0m";
|
|
50641
50641
|
var RED = "\x1B[31m";
|
|
50642
50642
|
var YELLOW = "\x1B[33m";
|
|
@@ -50645,15 +50645,15 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
50645
50645
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
50646
50646
|
var ERROR = `${RED}Error:${RESET}`;
|
|
50647
50647
|
|
|
50648
|
-
// bazel-out/
|
|
50648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
50649
50649
|
setFileSystem(new NodeJSFileSystem());
|
|
50650
50650
|
|
|
50651
|
-
// bazel-out/
|
|
50651
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
50652
50652
|
var import_fs2 = require("fs");
|
|
50653
50653
|
var import_path7 = require("path");
|
|
50654
50654
|
var import_typescript138 = __toESM(require("typescript"), 1);
|
|
50655
50655
|
|
|
50656
|
-
// bazel-out/
|
|
50656
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
50657
50657
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
50658
50658
|
var ChangeTracker = class {
|
|
50659
50659
|
constructor(_printer, _importRemapper) {
|
|
@@ -50772,7 +50772,7 @@ function normalizePath(path4) {
|
|
|
50772
50772
|
return path4.replace(/\\/g, "/");
|
|
50773
50773
|
}
|
|
50774
50774
|
|
|
50775
|
-
// bazel-out/
|
|
50775
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
50776
50776
|
var import_core19 = require("@angular-devkit/core");
|
|
50777
50777
|
function getProjectTsConfigPaths(tree) {
|
|
50778
50778
|
return __async(this, null, function* () {
|
|
@@ -50852,11 +50852,11 @@ function getWorkspace(tree) {
|
|
|
50852
50852
|
});
|
|
50853
50853
|
}
|
|
50854
50854
|
|
|
50855
|
-
// bazel-out/
|
|
50855
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50856
50856
|
var import_path4 = require("path");
|
|
50857
50857
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
50858
50858
|
|
|
50859
|
-
// bazel-out/
|
|
50859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
50860
50860
|
var path3 = __toESM(require("path"), 1);
|
|
50861
50861
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
50862
50862
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -50873,7 +50873,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
50873
50873
|
return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
50874
50874
|
}
|
|
50875
50875
|
|
|
50876
|
-
// bazel-out/
|
|
50876
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50877
50877
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
50878
50878
|
tsconfigPath = (0, import_path4.resolve)(basePath, tsconfigPath);
|
|
50879
50879
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path4.dirname)(tsconfigPath));
|
|
@@ -50902,13 +50902,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
50902
50902
|
return !(0, import_path4.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
50903
50903
|
}
|
|
50904
50904
|
|
|
50905
|
-
// bazel-out/
|
|
50905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50906
50906
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
50907
50907
|
|
|
50908
|
-
// bazel-out/
|
|
50908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50909
50909
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
50910
50910
|
|
|
50911
|
-
// bazel-out/
|
|
50911
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
50912
50912
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
50913
50913
|
function getImportOfIdentifier(typeChecker, node) {
|
|
50914
50914
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -50968,7 +50968,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
50968
50968
|
});
|
|
50969
50969
|
}
|
|
50970
50970
|
|
|
50971
|
-
// bazel-out/
|
|
50971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50972
50972
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
50973
50973
|
if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
|
|
50974
50974
|
return null;
|
|
@@ -50977,7 +50977,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
50977
50977
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
50978
50978
|
}
|
|
50979
50979
|
|
|
50980
|
-
// bazel-out/
|
|
50980
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
50981
50981
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
50982
50982
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
50983
50983
|
node,
|
|
@@ -50987,7 +50987,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
50987
50987
|
}));
|
|
50988
50988
|
}
|
|
50989
50989
|
|
|
50990
|
-
// bazel-out/
|
|
50990
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
50991
50991
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
50992
50992
|
function closestNode(node, predicate) {
|
|
50993
50993
|
let current = node.parent;
|
|
@@ -51000,7 +51000,7 @@ function closestNode(node, predicate) {
|
|
|
51000
51000
|
return null;
|
|
51001
51001
|
}
|
|
51002
51002
|
|
|
51003
|
-
// bazel-out/
|
|
51003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
51004
51004
|
var import_path5 = require("path");
|
|
51005
51005
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
51006
51006
|
var UniqueItemTracker = class {
|
|
@@ -51178,10 +51178,10 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
51178
51178
|
}));
|
|
51179
51179
|
}
|
|
51180
51180
|
|
|
51181
|
-
// bazel-out/
|
|
51181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51182
51182
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
51183
51183
|
|
|
51184
|
-
// bazel-out/
|
|
51184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
51185
51185
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
51186
51186
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
51187
51187
|
var _a2, _b2;
|
|
@@ -51193,7 +51193,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
51193
51193
|
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];
|
|
51194
51194
|
}
|
|
51195
51195
|
|
|
51196
|
-
// bazel-out/
|
|
51196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51197
51197
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
51198
51198
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
51199
51199
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -51571,7 +51571,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
51571
51571
|
return metadata != null && metadata.isStandalone;
|
|
51572
51572
|
}
|
|
51573
51573
|
|
|
51574
|
-
// bazel-out/
|
|
51574
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
51575
51575
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
51576
51576
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
51577
51577
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -51831,7 +51831,7 @@ function isInImportsArray(closestAssignment, closestArray) {
|
|
|
51831
51831
|
return closestAssignment.initializer === closestArray && (import_typescript136.default.isIdentifier(closestAssignment.name) || import_typescript136.default.isStringLiteralLike(closestAssignment.name)) && closestAssignment.name.text === "imports";
|
|
51832
51832
|
}
|
|
51833
51833
|
|
|
51834
|
-
// bazel-out/
|
|
51834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
51835
51835
|
var import_path6 = require("path");
|
|
51836
51836
|
var import_typescript137 = __toESM(require("typescript"), 1);
|
|
51837
51837
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
@@ -52210,7 +52210,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
52210
52210
|
return false;
|
|
52211
52211
|
}
|
|
52212
52212
|
|
|
52213
|
-
// bazel-out/
|
|
52213
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
52214
52214
|
var MigrationMode;
|
|
52215
52215
|
(function(MigrationMode2) {
|
|
52216
52216
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|