@angular/core 18.2.8 → 18.2.10
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/event_emitter.mjs +4 -1
- package/esm2022/src/interface/type.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/definition.mjs +1 -1
- package/esm2022/src/render3/features/input_transforms_feature.mjs +1 -1
- package/esm2022/src/render3/util/change_detection_utils.mjs +1 -2
- package/esm2022/src/render3/util/discovery_utils.mjs +1 -10
- 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 +6 -13
- 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 +3 -19
- 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/after-render-phase/bundle.js +288 -330
- package/schematics/migrations/http-providers/bundle.js +291 -333
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +182 -224
- package/schematics/ng-generate/control-flow-migration/bundle.js +291 -333
- package/schematics/ng-generate/inject-migration/bundle.js +294 -336
- package/schematics/ng-generate/route-lazy-loading/bundle.js +290 -332
- package/schematics/ng-generate/standalone-migration/bundle.js +500 -523
- 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",
|
|
@@ -8640,7 +8640,7 @@ var ShadowCss = class {
|
|
|
8640
8640
|
});
|
|
8641
8641
|
}
|
|
8642
8642
|
_convertColonHostContext(cssText) {
|
|
8643
|
-
return cssText.replace(_cssColonHostContextReGlobal, (selectorText
|
|
8643
|
+
return cssText.replace(_cssColonHostContextReGlobal, (selectorText) => {
|
|
8644
8644
|
var _a2;
|
|
8645
8645
|
const contextSelectorGroups = [[]];
|
|
8646
8646
|
let match;
|
|
@@ -8655,7 +8655,7 @@ var ShadowCss = class {
|
|
|
8655
8655
|
}
|
|
8656
8656
|
selectorText = match[2];
|
|
8657
8657
|
}
|
|
8658
|
-
return contextSelectorGroups.map((contextSelectors) =>
|
|
8658
|
+
return contextSelectorGroups.map((contextSelectors) => combineHostContextSelectors(contextSelectors, selectorText)).join(", ");
|
|
8659
8659
|
});
|
|
8660
8660
|
}
|
|
8661
8661
|
_convertShadowDOMSelectors(cssText) {
|
|
@@ -8666,12 +8666,7 @@ var ShadowCss = class {
|
|
|
8666
8666
|
let selector = rule.selector;
|
|
8667
8667
|
let content = rule.content;
|
|
8668
8668
|
if (rule.selector[0] !== "@") {
|
|
8669
|
-
selector = this._scopeSelector(
|
|
8670
|
-
selector,
|
|
8671
|
-
scopeSelector,
|
|
8672
|
-
hostSelector,
|
|
8673
|
-
isParentSelector: true
|
|
8674
|
-
});
|
|
8669
|
+
selector = this._scopeSelector(rule.selector, scopeSelector, hostSelector);
|
|
8675
8670
|
} else if (scopedAtRuleIdentifiers.some((atRule) => rule.selector.startsWith(atRule))) {
|
|
8676
8671
|
content = this._scopeSelectors(rule.content, scopeSelector, hostSelector);
|
|
8677
8672
|
} else if (rule.selector.startsWith("@font-face") || rule.selector.startsWith("@page")) {
|
|
@@ -8686,18 +8681,12 @@ var ShadowCss = class {
|
|
|
8686
8681
|
return new CssRule(selector, rule.content);
|
|
8687
8682
|
});
|
|
8688
8683
|
}
|
|
8689
|
-
_scopeSelector(
|
|
8690
|
-
|
|
8691
|
-
return selector.split(selectorSplitRe).map((part) => part.split(_shadowDeepSelectors)).map((deepParts) => {
|
|
8684
|
+
_scopeSelector(selector, scopeSelector, hostSelector) {
|
|
8685
|
+
return selector.split(/ ?, ?/).map((part) => part.split(_shadowDeepSelectors)).map((deepParts) => {
|
|
8692
8686
|
const [shallowPart, ...otherParts] = deepParts;
|
|
8693
8687
|
const applyScope = (shallowPart2) => {
|
|
8694
8688
|
if (this._selectorNeedsScoping(shallowPart2, scopeSelector)) {
|
|
8695
|
-
return this._applySelectorScope(
|
|
8696
|
-
selector: shallowPart2,
|
|
8697
|
-
scopeSelector,
|
|
8698
|
-
hostSelector,
|
|
8699
|
-
isParentSelector
|
|
8700
|
-
});
|
|
8689
|
+
return this._applySelectorScope(shallowPart2, scopeSelector, hostSelector);
|
|
8701
8690
|
} else {
|
|
8702
8691
|
return shallowPart2;
|
|
8703
8692
|
}
|
|
@@ -8719,15 +8708,15 @@ var ShadowCss = class {
|
|
|
8719
8708
|
_polyfillHostRe.lastIndex = 0;
|
|
8720
8709
|
if (_polyfillHostRe.test(selector)) {
|
|
8721
8710
|
const replaceBy = `[${hostSelector}]`;
|
|
8722
|
-
return selector.replace(
|
|
8723
|
-
return selector2.replace(/([
|
|
8711
|
+
return selector.replace(_polyfillHostNoCombinatorRe, (hnc, selector2) => {
|
|
8712
|
+
return selector2.replace(/([^:]*)(:*)(.*)/, (_, before, colon, after) => {
|
|
8724
8713
|
return before + replaceBy + colon + after;
|
|
8725
8714
|
});
|
|
8726
8715
|
}).replace(_polyfillHostRe, replaceBy + " ");
|
|
8727
8716
|
}
|
|
8728
8717
|
return scopeSelector + " " + selector;
|
|
8729
8718
|
}
|
|
8730
|
-
_applySelectorScope(
|
|
8719
|
+
_applySelectorScope(selector, scopeSelector, hostSelector) {
|
|
8731
8720
|
var _a2;
|
|
8732
8721
|
const isRe = /\[is=([^\]]*)\]/g;
|
|
8733
8722
|
scopeSelector = scopeSelector.replace(isRe, (_, ...parts) => parts[0]);
|
|
@@ -8739,10 +8728,6 @@ var ShadowCss = class {
|
|
|
8739
8728
|
}
|
|
8740
8729
|
if (p2.includes(_polyfillHostNoCombinator)) {
|
|
8741
8730
|
scopedP = this._applySimpleSelectorScope(p2, scopeSelector, hostSelector);
|
|
8742
|
-
if (_polyfillHostNoCombinatorWithinPseudoFunction.test(p2)) {
|
|
8743
|
-
const [_, before, colon, after] = scopedP.match(/([^:]*)(:*)(.*)/);
|
|
8744
|
-
scopedP = before + attrName + colon + after;
|
|
8745
|
-
}
|
|
8746
8731
|
} else {
|
|
8747
8732
|
const t = p2.replace(_polyfillHostRe, "");
|
|
8748
8733
|
if (t.length > 0) {
|
|
@@ -8754,52 +8739,29 @@ var ShadowCss = class {
|
|
|
8754
8739
|
}
|
|
8755
8740
|
return scopedP;
|
|
8756
8741
|
};
|
|
8757
|
-
const
|
|
8758
|
-
|
|
8759
|
-
const cssPrefixWithPseudoSelectorFunctionMatch = selectorPart.match(_cssPrefixWithPseudoSelectorFunction);
|
|
8760
|
-
if (cssPrefixWithPseudoSelectorFunctionMatch) {
|
|
8761
|
-
const [cssPseudoSelectorFunction] = cssPrefixWithPseudoSelectorFunctionMatch;
|
|
8762
|
-
const selectorToScope = selectorPart.slice(cssPseudoSelectorFunction.length, -1);
|
|
8763
|
-
if (selectorToScope.includes(_polyfillHostNoCombinator)) {
|
|
8764
|
-
this._shouldScopeIndicator = true;
|
|
8765
|
-
}
|
|
8766
|
-
const scopedInnerPart = this._scopeSelector({
|
|
8767
|
-
selector: selectorToScope,
|
|
8768
|
-
scopeSelector,
|
|
8769
|
-
hostSelector
|
|
8770
|
-
});
|
|
8771
|
-
scopedPart = `${cssPseudoSelectorFunction}${scopedInnerPart})`;
|
|
8772
|
-
} else {
|
|
8773
|
-
this._shouldScopeIndicator = this._shouldScopeIndicator || selectorPart.includes(_polyfillHostNoCombinator);
|
|
8774
|
-
scopedPart = this._shouldScopeIndicator ? _scopeSelectorPart(selectorPart) : selectorPart;
|
|
8775
|
-
}
|
|
8776
|
-
return scopedPart;
|
|
8777
|
-
};
|
|
8778
|
-
if (isParentSelector) {
|
|
8779
|
-
this._safeSelector = new SafeSelector(selector);
|
|
8780
|
-
selector = this._safeSelector.content();
|
|
8781
|
-
}
|
|
8742
|
+
const safeContent = new SafeSelector(selector);
|
|
8743
|
+
selector = safeContent.content();
|
|
8782
8744
|
let scopedSelector = "";
|
|
8783
8745
|
let startIndex = 0;
|
|
8784
8746
|
let res;
|
|
8785
|
-
const sep2 = /( |>|\+|~(?!=))
|
|
8747
|
+
const sep2 = /( |>|\+|~(?!=))\s*/g;
|
|
8786
8748
|
const hasHost = selector.includes(_polyfillHostNoCombinator);
|
|
8787
|
-
|
|
8788
|
-
this._shouldScopeIndicator = !hasHost;
|
|
8789
|
-
}
|
|
8749
|
+
let shouldScope = !hasHost;
|
|
8790
8750
|
while ((res = sep2.exec(selector)) !== null) {
|
|
8791
8751
|
const separator = res[1];
|
|
8792
8752
|
const part2 = selector.slice(startIndex, res.index);
|
|
8793
8753
|
if (part2.match(/__esc-ph-(\d+)__/) && ((_a2 = selector[res.index + 1]) == null ? void 0 : _a2.match(/[a-fA-F\d]/))) {
|
|
8794
8754
|
continue;
|
|
8795
8755
|
}
|
|
8796
|
-
|
|
8756
|
+
shouldScope = shouldScope || part2.includes(_polyfillHostNoCombinator);
|
|
8757
|
+
const scopedPart = shouldScope ? _scopeSelectorPart(part2) : part2;
|
|
8797
8758
|
scopedSelector += `${scopedPart} ${separator} `;
|
|
8798
8759
|
startIndex = sep2.lastIndex;
|
|
8799
8760
|
}
|
|
8800
8761
|
const part = selector.substring(startIndex);
|
|
8801
|
-
|
|
8802
|
-
|
|
8762
|
+
shouldScope = shouldScope || part.includes(_polyfillHostNoCombinator);
|
|
8763
|
+
scopedSelector += shouldScope ? _scopeSelectorPart(part) : part;
|
|
8764
|
+
return safeContent.restore(scopedSelector);
|
|
8803
8765
|
}
|
|
8804
8766
|
_insertPolyfillHostInCssText(selector) {
|
|
8805
8767
|
return selector.replace(_colonHostContextRe, _polyfillHostContext).replace(_colonHostRe, _polyfillHost);
|
|
@@ -8838,8 +8800,6 @@ var SafeSelector = class {
|
|
|
8838
8800
|
});
|
|
8839
8801
|
}
|
|
8840
8802
|
};
|
|
8841
|
-
var _cssScopedPseudoFunctionPrefix = "(:(where|is)\\()?";
|
|
8842
|
-
var _cssPrefixWithPseudoSelectorFunction = /^:(where|is)\(/i;
|
|
8843
8803
|
var _cssContentNextSelectorRe = /polyfill-next-selector[^}]*content:[\s]*?(['"])(.*?)\1[;\s]*}([^{]*?){/gim;
|
|
8844
8804
|
var _cssContentRuleRe = /(polyfill-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim;
|
|
8845
8805
|
var _cssContentUnscopedRuleRe = /(polyfill-unscoped-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim;
|
|
@@ -8847,12 +8807,10 @@ var _polyfillHost = "-shadowcsshost";
|
|
|
8847
8807
|
var _polyfillHostContext = "-shadowcsscontext";
|
|
8848
8808
|
var _parenSuffix = "(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)";
|
|
8849
8809
|
var _cssColonHostRe = new RegExp(_polyfillHost + _parenSuffix, "gim");
|
|
8850
|
-
var _cssColonHostContextReGlobal = new RegExp(
|
|
8810
|
+
var _cssColonHostContextReGlobal = new RegExp(_polyfillHostContext + _parenSuffix, "gim");
|
|
8851
8811
|
var _cssColonHostContextRe = new RegExp(_polyfillHostContext + _parenSuffix, "im");
|
|
8852
8812
|
var _polyfillHostNoCombinator = _polyfillHost + "-no-combinator";
|
|
8853
|
-
var _polyfillHostNoCombinatorWithinPseudoFunction = new RegExp(`:.*\\(.*${_polyfillHostNoCombinator}.*\\)`);
|
|
8854
8813
|
var _polyfillHostNoCombinatorRe = /-shadowcsshost-no-combinator([^\s]*)/;
|
|
8855
|
-
var _polyfillHostNoCombinatorReGlobal = new RegExp(_polyfillHostNoCombinatorRe, "g");
|
|
8856
8814
|
var _shadowDOMSelectorsRe = [
|
|
8857
8815
|
/::shadow/g,
|
|
8858
8816
|
/::content/g,
|
|
@@ -8987,7 +8945,7 @@ function unescapeInStrings(input) {
|
|
|
8987
8945
|
function unescapeQuotes(str, isQuoted) {
|
|
8988
8946
|
return !isQuoted ? str : str.replace(/((?:^|[^\\])(?:\\\\)*)\\(?=['"])/g, "$1");
|
|
8989
8947
|
}
|
|
8990
|
-
function
|
|
8948
|
+
function combineHostContextSelectors(contextSelectors, otherSelectors) {
|
|
8991
8949
|
const hostMarker = _polyfillHostNoCombinator;
|
|
8992
8950
|
_polyfillHostRe.lastIndex = 0;
|
|
8993
8951
|
const otherSelectorsHasHost = _polyfillHostRe.test(otherSelectors);
|
|
@@ -9005,7 +8963,7 @@ function _combineHostContextSelectors(contextSelectors, otherSelectors, pseudoPr
|
|
|
9005
8963
|
combined[i] = contextSelector + previousSelectors;
|
|
9006
8964
|
}
|
|
9007
8965
|
}
|
|
9008
|
-
return combined.map((s) => otherSelectorsHasHost ? `${
|
|
8966
|
+
return combined.map((s) => otherSelectorsHasHost ? `${s}${otherSelectors}` : `${s}${hostMarker}${otherSelectors}, ${s} ${hostMarker}${otherSelectors}`).join(",");
|
|
9009
8967
|
}
|
|
9010
8968
|
function repeatGroups(groups, multiples) {
|
|
9011
8969
|
const length = groups.length;
|
|
@@ -9016,7 +8974,7 @@ function repeatGroups(groups, multiples) {
|
|
|
9016
8974
|
}
|
|
9017
8975
|
}
|
|
9018
8976
|
|
|
9019
|
-
// bazel-out/
|
|
8977
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
9020
8978
|
var OpKind;
|
|
9021
8979
|
(function(OpKind2) {
|
|
9022
8980
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -9174,7 +9132,7 @@ var TemplateKind;
|
|
|
9174
9132
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
9175
9133
|
})(TemplateKind || (TemplateKind = {}));
|
|
9176
9134
|
|
|
9177
|
-
// bazel-out/
|
|
9135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
9178
9136
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
9179
9137
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
9180
9138
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -9202,7 +9160,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
9202
9160
|
return expr[UsesVarOffset] === true;
|
|
9203
9161
|
}
|
|
9204
9162
|
|
|
9205
|
-
// bazel-out/
|
|
9163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
9206
9164
|
function createStatementOp(statement) {
|
|
9207
9165
|
return __spreadValues({
|
|
9208
9166
|
kind: OpKind.Statement,
|
|
@@ -9224,7 +9182,7 @@ var NEW_OP = {
|
|
|
9224
9182
|
next: null
|
|
9225
9183
|
};
|
|
9226
9184
|
|
|
9227
|
-
// bazel-out/
|
|
9185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
9228
9186
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
9229
9187
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
9230
9188
|
kind: OpKind.InterpolateText,
|
|
@@ -9413,7 +9371,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
|
|
|
9413
9371
|
}, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
|
|
9414
9372
|
}
|
|
9415
9373
|
|
|
9416
|
-
// bazel-out/
|
|
9374
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
9417
9375
|
var _a;
|
|
9418
9376
|
var _b;
|
|
9419
9377
|
var _c;
|
|
@@ -10331,7 +10289,7 @@ function isStringLiteral(expr) {
|
|
|
10331
10289
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
10332
10290
|
}
|
|
10333
10291
|
|
|
10334
|
-
// bazel-out/
|
|
10292
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
10335
10293
|
var _OpList = class {
|
|
10336
10294
|
constructor() {
|
|
10337
10295
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -10522,14 +10480,14 @@ var OpList = _OpList;
|
|
|
10522
10480
|
_OpList.nextListId = 0;
|
|
10523
10481
|
})();
|
|
10524
10482
|
|
|
10525
|
-
// bazel-out/
|
|
10483
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
10526
10484
|
var SlotHandle = class {
|
|
10527
10485
|
constructor() {
|
|
10528
10486
|
this.slot = null;
|
|
10529
10487
|
}
|
|
10530
10488
|
};
|
|
10531
10489
|
|
|
10532
|
-
// bazel-out/
|
|
10490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
10533
10491
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
10534
10492
|
OpKind.Element,
|
|
10535
10493
|
OpKind.ElementStart,
|
|
@@ -10842,7 +10800,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
10842
10800
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
10843
10801
|
}
|
|
10844
10802
|
|
|
10845
|
-
// bazel-out/
|
|
10803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
10846
10804
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
10847
10805
|
return __spreadValues(__spreadValues({
|
|
10848
10806
|
kind: OpKind.HostProperty,
|
|
@@ -10856,10 +10814,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
10856
10814
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
10857
10815
|
}
|
|
10858
10816
|
|
|
10859
|
-
// bazel-out/
|
|
10817
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
10860
10818
|
var CTX_REF = "CTX_REF_MARKER";
|
|
10861
10819
|
|
|
10862
|
-
// bazel-out/
|
|
10820
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
10863
10821
|
var CompilationJobKind;
|
|
10864
10822
|
(function(CompilationJobKind2) {
|
|
10865
10823
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -10967,7 +10925,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
10967
10925
|
}
|
|
10968
10926
|
};
|
|
10969
10927
|
|
|
10970
|
-
// bazel-out/
|
|
10928
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
10971
10929
|
function deleteAnyCasts(job) {
|
|
10972
10930
|
for (const unit of job.units) {
|
|
10973
10931
|
for (const op of unit.ops()) {
|
|
@@ -10985,7 +10943,7 @@ function removeAnys(e) {
|
|
|
10985
10943
|
return e;
|
|
10986
10944
|
}
|
|
10987
10945
|
|
|
10988
|
-
// bazel-out/
|
|
10946
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
10989
10947
|
function applyI18nExpressions(job) {
|
|
10990
10948
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
10991
10949
|
for (const unit of job.units) {
|
|
@@ -11028,7 +10986,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
11028
10986
|
return false;
|
|
11029
10987
|
}
|
|
11030
10988
|
|
|
11031
|
-
// bazel-out/
|
|
10989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
11032
10990
|
function assignI18nSlotDependencies(job) {
|
|
11033
10991
|
for (const unit of job.units) {
|
|
11034
10992
|
let updateOp = unit.update.head;
|
|
@@ -11073,7 +11031,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
11073
11031
|
}
|
|
11074
11032
|
}
|
|
11075
11033
|
|
|
11076
|
-
// bazel-out/
|
|
11034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
11077
11035
|
function createOpXrefMap(unit) {
|
|
11078
11036
|
const map = /* @__PURE__ */ new Map();
|
|
11079
11037
|
for (const op of unit.create) {
|
|
@@ -11088,7 +11046,7 @@ function createOpXrefMap(unit) {
|
|
|
11088
11046
|
return map;
|
|
11089
11047
|
}
|
|
11090
11048
|
|
|
11091
|
-
// bazel-out/
|
|
11049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
11092
11050
|
function extractAttributes(job) {
|
|
11093
11051
|
for (const unit of job.units) {
|
|
11094
11052
|
const elements = createOpXrefMap(unit);
|
|
@@ -11217,7 +11175,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
11217
11175
|
}
|
|
11218
11176
|
}
|
|
11219
11177
|
|
|
11220
|
-
// bazel-out/
|
|
11178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
11221
11179
|
function lookupElement2(elements, xref) {
|
|
11222
11180
|
const el = elements.get(xref);
|
|
11223
11181
|
if (el === void 0) {
|
|
@@ -11274,7 +11232,7 @@ function specializeBindings(job) {
|
|
|
11274
11232
|
}
|
|
11275
11233
|
}
|
|
11276
11234
|
|
|
11277
|
-
// bazel-out/
|
|
11235
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
11278
11236
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
11279
11237
|
Identifiers.attribute,
|
|
11280
11238
|
Identifiers.classProp,
|
|
@@ -11346,7 +11304,7 @@ function chainOperationsInList(opList) {
|
|
|
11346
11304
|
}
|
|
11347
11305
|
}
|
|
11348
11306
|
|
|
11349
|
-
// bazel-out/
|
|
11307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
11350
11308
|
function collapseSingletonInterpolations(job) {
|
|
11351
11309
|
for (const unit of job.units) {
|
|
11352
11310
|
for (const op of unit.update) {
|
|
@@ -11358,7 +11316,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
11358
11316
|
}
|
|
11359
11317
|
}
|
|
11360
11318
|
|
|
11361
|
-
// bazel-out/
|
|
11319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
11362
11320
|
function generateConditionalExpressions(job) {
|
|
11363
11321
|
for (const unit of job.units) {
|
|
11364
11322
|
for (const op of unit.ops()) {
|
|
@@ -11395,7 +11353,7 @@ function generateConditionalExpressions(job) {
|
|
|
11395
11353
|
}
|
|
11396
11354
|
}
|
|
11397
11355
|
|
|
11398
|
-
// bazel-out/
|
|
11356
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
11399
11357
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
11400
11358
|
["&&", BinaryOperator.And],
|
|
11401
11359
|
[">", BinaryOperator.Bigger],
|
|
@@ -11452,7 +11410,7 @@ function literalOrArrayLiteral(value) {
|
|
|
11452
11410
|
return literal(value);
|
|
11453
11411
|
}
|
|
11454
11412
|
|
|
11455
|
-
// bazel-out/
|
|
11413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
11456
11414
|
function collectElementConsts(job) {
|
|
11457
11415
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
11458
11416
|
for (const unit of job.units) {
|
|
@@ -11621,7 +11579,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
11621
11579
|
return literalArr(attrArray);
|
|
11622
11580
|
}
|
|
11623
11581
|
|
|
11624
|
-
// bazel-out/
|
|
11582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
11625
11583
|
function convertI18nBindings(job) {
|
|
11626
11584
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
11627
11585
|
for (const unit of job.units) {
|
|
@@ -11662,7 +11620,7 @@ function convertI18nBindings(job) {
|
|
|
11662
11620
|
}
|
|
11663
11621
|
}
|
|
11664
11622
|
|
|
11665
|
-
// bazel-out/
|
|
11623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
11666
11624
|
function resolveDeferDepsFns(job) {
|
|
11667
11625
|
var _a2;
|
|
11668
11626
|
for (const unit of job.units) {
|
|
@@ -11687,7 +11645,7 @@ function resolveDeferDepsFns(job) {
|
|
|
11687
11645
|
}
|
|
11688
11646
|
}
|
|
11689
11647
|
|
|
11690
|
-
// bazel-out/
|
|
11648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
11691
11649
|
function createI18nContexts(job) {
|
|
11692
11650
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
11693
11651
|
for (const unit of job.units) {
|
|
@@ -11765,7 +11723,7 @@ function createI18nContexts(job) {
|
|
|
11765
11723
|
}
|
|
11766
11724
|
}
|
|
11767
11725
|
|
|
11768
|
-
// bazel-out/
|
|
11726
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
11769
11727
|
function deduplicateTextBindings(job) {
|
|
11770
11728
|
const seen = /* @__PURE__ */ new Map();
|
|
11771
11729
|
for (const unit of job.units) {
|
|
@@ -11787,7 +11745,7 @@ function deduplicateTextBindings(job) {
|
|
|
11787
11745
|
}
|
|
11788
11746
|
}
|
|
11789
11747
|
|
|
11790
|
-
// bazel-out/
|
|
11748
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
11791
11749
|
function configureDeferInstructions(job) {
|
|
11792
11750
|
for (const unit of job.units) {
|
|
11793
11751
|
for (const op of unit.create) {
|
|
@@ -11804,7 +11762,7 @@ function configureDeferInstructions(job) {
|
|
|
11804
11762
|
}
|
|
11805
11763
|
}
|
|
11806
11764
|
|
|
11807
|
-
// bazel-out/
|
|
11765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
11808
11766
|
function resolveDeferTargetNames(job) {
|
|
11809
11767
|
const scopes = /* @__PURE__ */ new Map();
|
|
11810
11768
|
function getScopeForView2(view) {
|
|
@@ -11898,7 +11856,7 @@ var Scope = class {
|
|
|
11898
11856
|
}
|
|
11899
11857
|
};
|
|
11900
11858
|
|
|
11901
|
-
// bazel-out/
|
|
11859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
11902
11860
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
11903
11861
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
11904
11862
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -11925,7 +11883,7 @@ function collapseEmptyInstructions(job) {
|
|
|
11925
11883
|
}
|
|
11926
11884
|
}
|
|
11927
11885
|
|
|
11928
|
-
// bazel-out/
|
|
11886
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
11929
11887
|
function expandSafeReads(job) {
|
|
11930
11888
|
for (const unit of job.units) {
|
|
11931
11889
|
for (const op of unit.ops()) {
|
|
@@ -12061,7 +12019,7 @@ function ternaryTransform(e) {
|
|
|
12061
12019
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
12062
12020
|
}
|
|
12063
12021
|
|
|
12064
|
-
// bazel-out/
|
|
12022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
12065
12023
|
var ESCAPE = "\uFFFD";
|
|
12066
12024
|
var ELEMENT_MARKER = "#";
|
|
12067
12025
|
var TEMPLATE_MARKER = "*";
|
|
@@ -12197,7 +12155,7 @@ function formatValue(value) {
|
|
|
12197
12155
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
12198
12156
|
}
|
|
12199
12157
|
|
|
12200
|
-
// bazel-out/
|
|
12158
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
12201
12159
|
function generateAdvance(job) {
|
|
12202
12160
|
for (const unit of job.units) {
|
|
12203
12161
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -12240,7 +12198,7 @@ function generateAdvance(job) {
|
|
|
12240
12198
|
}
|
|
12241
12199
|
}
|
|
12242
12200
|
|
|
12243
|
-
// bazel-out/
|
|
12201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
12244
12202
|
function generateProjectionDefs(job) {
|
|
12245
12203
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
12246
12204
|
const selectors = [];
|
|
@@ -12264,7 +12222,7 @@ function generateProjectionDefs(job) {
|
|
|
12264
12222
|
}
|
|
12265
12223
|
}
|
|
12266
12224
|
|
|
12267
|
-
// bazel-out/
|
|
12225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
12268
12226
|
function generateVariables(job) {
|
|
12269
12227
|
recursivelyProcessView(job.root, null);
|
|
12270
12228
|
}
|
|
@@ -12382,7 +12340,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
|
|
|
12382
12340
|
return newOps;
|
|
12383
12341
|
}
|
|
12384
12342
|
|
|
12385
|
-
// bazel-out/
|
|
12343
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
12386
12344
|
function collectConstExpressions(job) {
|
|
12387
12345
|
for (const unit of job.units) {
|
|
12388
12346
|
for (const op of unit.ops()) {
|
|
@@ -12396,7 +12354,7 @@ function collectConstExpressions(job) {
|
|
|
12396
12354
|
}
|
|
12397
12355
|
}
|
|
12398
12356
|
|
|
12399
|
-
// bazel-out/
|
|
12357
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
12400
12358
|
var STYLE_DOT = "style.";
|
|
12401
12359
|
var CLASS_DOT = "class.";
|
|
12402
12360
|
var STYLE_BANG = "style!";
|
|
@@ -12454,7 +12412,7 @@ function parseProperty(name) {
|
|
|
12454
12412
|
return { property: property2, suffix };
|
|
12455
12413
|
}
|
|
12456
12414
|
|
|
12457
|
-
// bazel-out/
|
|
12415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12458
12416
|
function mapLiteral(obj, quoted = false) {
|
|
12459
12417
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12460
12418
|
key,
|
|
@@ -12463,7 +12421,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12463
12421
|
})));
|
|
12464
12422
|
}
|
|
12465
12423
|
|
|
12466
|
-
// bazel-out/
|
|
12424
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
12467
12425
|
var IcuSerializerVisitor = class {
|
|
12468
12426
|
visitText(text2) {
|
|
12469
12427
|
return text2.value;
|
|
@@ -12497,7 +12455,7 @@ function serializeIcuNode(icu) {
|
|
|
12497
12455
|
return icu.visit(serializer);
|
|
12498
12456
|
}
|
|
12499
12457
|
|
|
12500
|
-
// bazel-out/
|
|
12458
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
12501
12459
|
var NodeWithI18n = class {
|
|
12502
12460
|
constructor(sourceSpan, i18n2) {
|
|
12503
12461
|
this.sourceSpan = sourceSpan;
|
|
@@ -12620,7 +12578,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
12620
12578
|
return result;
|
|
12621
12579
|
}
|
|
12622
12580
|
|
|
12623
|
-
// bazel-out/
|
|
12581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12624
12582
|
var NAMED_ENTITIES = {
|
|
12625
12583
|
"AElig": "\xC6",
|
|
12626
12584
|
"AMP": "&",
|
|
@@ -14751,7 +14709,7 @@ var NAMED_ENTITIES = {
|
|
|
14751
14709
|
var NGSP_UNICODE = "\uE500";
|
|
14752
14710
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14753
14711
|
|
|
14754
|
-
// bazel-out/
|
|
14712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14755
14713
|
var TokenError = class extends ParseError {
|
|
14756
14714
|
constructor(errorMsg, tokenType, span) {
|
|
14757
14715
|
super(span, errorMsg);
|
|
@@ -15741,7 +15699,7 @@ var CursorError = class {
|
|
|
15741
15699
|
}
|
|
15742
15700
|
};
|
|
15743
15701
|
|
|
15744
|
-
// bazel-out/
|
|
15702
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15745
15703
|
var TreeError = class extends ParseError {
|
|
15746
15704
|
static create(elementName, span, msg) {
|
|
15747
15705
|
return new TreeError(elementName, span, msg);
|
|
@@ -16169,7 +16127,7 @@ function decodeEntity(match, entity) {
|
|
|
16169
16127
|
return match;
|
|
16170
16128
|
}
|
|
16171
16129
|
|
|
16172
|
-
// bazel-out/
|
|
16130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
16173
16131
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
16174
16132
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
16175
16133
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -16309,7 +16267,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
16309
16267
|
return result;
|
|
16310
16268
|
}
|
|
16311
16269
|
|
|
16312
|
-
// bazel-out/
|
|
16270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
16313
16271
|
var TokenType;
|
|
16314
16272
|
(function(TokenType2) {
|
|
16315
16273
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -16670,7 +16628,7 @@ function parseIntAutoRadix(text2) {
|
|
|
16670
16628
|
return result;
|
|
16671
16629
|
}
|
|
16672
16630
|
|
|
16673
|
-
// bazel-out/
|
|
16631
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
16674
16632
|
var SplitInterpolation = class {
|
|
16675
16633
|
constructor(strings, expressions, offsets) {
|
|
16676
16634
|
this.strings = strings;
|
|
@@ -17554,7 +17512,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
17554
17512
|
return offsetMap;
|
|
17555
17513
|
}
|
|
17556
17514
|
|
|
17557
|
-
// bazel-out/
|
|
17515
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
17558
17516
|
var _SECURITY_SCHEMA;
|
|
17559
17517
|
function SECURITY_SCHEMA() {
|
|
17560
17518
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -17615,11 +17573,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
17615
17573
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
17616
17574
|
}
|
|
17617
17575
|
|
|
17618
|
-
// bazel-out/
|
|
17576
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
17619
17577
|
var ElementSchemaRegistry = class {
|
|
17620
17578
|
};
|
|
17621
17579
|
|
|
17622
|
-
// bazel-out/
|
|
17580
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
17623
17581
|
var BOOLEAN = "boolean";
|
|
17624
17582
|
var NUMBER = "number";
|
|
17625
17583
|
var STRING = "string";
|
|
@@ -18002,7 +17960,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
18002
17960
|
}
|
|
18003
17961
|
}
|
|
18004
17962
|
|
|
18005
|
-
// bazel-out/
|
|
17963
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
18006
17964
|
var HtmlTagDefinition = class {
|
|
18007
17965
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
18008
17966
|
this.closedByChildren = {};
|
|
@@ -18138,7 +18096,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
18138
18096
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
18139
18097
|
}
|
|
18140
18098
|
|
|
18141
|
-
// bazel-out/
|
|
18099
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
18142
18100
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
18143
18101
|
"A": "LINK",
|
|
18144
18102
|
"B": "BOLD_TEXT",
|
|
@@ -18260,7 +18218,7 @@ var PlaceholderRegistry = class {
|
|
|
18260
18218
|
}
|
|
18261
18219
|
};
|
|
18262
18220
|
|
|
18263
|
-
// bazel-out/
|
|
18221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
18264
18222
|
var _expParser = new Parser2(new Lexer());
|
|
18265
18223
|
function createI18nMessageFactory(interpolationConfig, containerBlocks, retainEmptyTokens) {
|
|
18266
18224
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks, retainEmptyTokens);
|
|
@@ -18455,14 +18413,14 @@ function extractPlaceholderName(input) {
|
|
|
18455
18413
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
18456
18414
|
}
|
|
18457
18415
|
|
|
18458
|
-
// bazel-out/
|
|
18416
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
18459
18417
|
var I18nError = class extends ParseError {
|
|
18460
18418
|
constructor(span, msg) {
|
|
18461
18419
|
super(span, msg);
|
|
18462
18420
|
}
|
|
18463
18421
|
};
|
|
18464
18422
|
|
|
18465
|
-
// bazel-out/
|
|
18423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
18466
18424
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
18467
18425
|
"iframe|srcdoc",
|
|
18468
18426
|
"*|innerhtml",
|
|
@@ -18477,7 +18435,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
18477
18435
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
18478
18436
|
}
|
|
18479
18437
|
|
|
18480
|
-
// bazel-out/
|
|
18438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
18481
18439
|
var setI18nRefs = (originalNodeMap) => {
|
|
18482
18440
|
return (trimmedNode, i18nNode) => {
|
|
18483
18441
|
var _a2;
|
|
@@ -18651,7 +18609,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
18651
18609
|
return jsDocComment(tags);
|
|
18652
18610
|
}
|
|
18653
18611
|
|
|
18654
|
-
// bazel-out/
|
|
18612
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
18655
18613
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
18656
18614
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
18657
18615
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -18702,7 +18660,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
18702
18660
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
18703
18661
|
}
|
|
18704
18662
|
|
|
18705
|
-
// bazel-out/
|
|
18663
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
18706
18664
|
function createLocalizeStatements(variable2, message, params) {
|
|
18707
18665
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
18708
18666
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -18791,7 +18749,7 @@ function createEmptyMessagePart(location) {
|
|
|
18791
18749
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
18792
18750
|
}
|
|
18793
18751
|
|
|
18794
|
-
// bazel-out/
|
|
18752
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
18795
18753
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
18796
18754
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
18797
18755
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -18962,7 +18920,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
18962
18920
|
return variable(name);
|
|
18963
18921
|
}
|
|
18964
18922
|
|
|
18965
|
-
// bazel-out/
|
|
18923
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
18966
18924
|
function convertI18nText(job) {
|
|
18967
18925
|
var _a2, _b2, _c2;
|
|
18968
18926
|
for (const unit of job.units) {
|
|
@@ -19032,7 +18990,7 @@ function convertI18nText(job) {
|
|
|
19032
18990
|
}
|
|
19033
18991
|
}
|
|
19034
18992
|
|
|
19035
|
-
// bazel-out/
|
|
18993
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
19036
18994
|
function liftLocalRefs(job) {
|
|
19037
18995
|
for (const unit of job.units) {
|
|
19038
18996
|
for (const op of unit.create) {
|
|
@@ -19062,7 +19020,7 @@ function serializeLocalRefs(refs) {
|
|
|
19062
19020
|
return literalArr(constRefs);
|
|
19063
19021
|
}
|
|
19064
19022
|
|
|
19065
|
-
// bazel-out/
|
|
19023
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
19066
19024
|
function emitNamespaceChanges(job) {
|
|
19067
19025
|
for (const unit of job.units) {
|
|
19068
19026
|
let activeNamespace = Namespace.HTML;
|
|
@@ -19078,7 +19036,7 @@ function emitNamespaceChanges(job) {
|
|
|
19078
19036
|
}
|
|
19079
19037
|
}
|
|
19080
19038
|
|
|
19081
|
-
// bazel-out/
|
|
19039
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
19082
19040
|
function parse(value) {
|
|
19083
19041
|
const styles = [];
|
|
19084
19042
|
let i = 0;
|
|
@@ -19172,7 +19130,7 @@ function parseExtractedStyles(job) {
|
|
|
19172
19130
|
}
|
|
19173
19131
|
}
|
|
19174
19132
|
|
|
19175
|
-
// bazel-out/
|
|
19133
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
19176
19134
|
function nameFunctionsAndVariables(job) {
|
|
19177
19135
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
19178
19136
|
}
|
|
@@ -19316,7 +19274,7 @@ function stripImportant(name) {
|
|
|
19316
19274
|
return name;
|
|
19317
19275
|
}
|
|
19318
19276
|
|
|
19319
|
-
// bazel-out/
|
|
19277
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
19320
19278
|
function mergeNextContextExpressions(job) {
|
|
19321
19279
|
for (const unit of job.units) {
|
|
19322
19280
|
for (const op of unit.create) {
|
|
@@ -19363,7 +19321,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
19363
19321
|
}
|
|
19364
19322
|
}
|
|
19365
19323
|
|
|
19366
|
-
// bazel-out/
|
|
19324
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
19367
19325
|
var CONTAINER_TAG = "ng-container";
|
|
19368
19326
|
function generateNgContainerOps(job) {
|
|
19369
19327
|
for (const unit of job.units) {
|
|
@@ -19380,7 +19338,7 @@ function generateNgContainerOps(job) {
|
|
|
19380
19338
|
}
|
|
19381
19339
|
}
|
|
19382
19340
|
|
|
19383
|
-
// bazel-out/
|
|
19341
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
19384
19342
|
function lookupElement3(elements, xref) {
|
|
19385
19343
|
const el = elements.get(xref);
|
|
19386
19344
|
if (el === void 0) {
|
|
@@ -19410,7 +19368,7 @@ function disableBindings(job) {
|
|
|
19410
19368
|
}
|
|
19411
19369
|
}
|
|
19412
19370
|
|
|
19413
|
-
// bazel-out/
|
|
19371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
19414
19372
|
function generateNullishCoalesceExpressions(job) {
|
|
19415
19373
|
for (const unit of job.units) {
|
|
19416
19374
|
for (const op of unit.ops()) {
|
|
@@ -19426,7 +19384,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
19426
19384
|
}
|
|
19427
19385
|
}
|
|
19428
19386
|
|
|
19429
|
-
// bazel-out/
|
|
19387
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
19430
19388
|
function kindTest(kind) {
|
|
19431
19389
|
return (op) => op.kind === kind;
|
|
19432
19390
|
}
|
|
@@ -19516,7 +19474,7 @@ function keepLast(ops) {
|
|
|
19516
19474
|
return ops.slice(ops.length - 1);
|
|
19517
19475
|
}
|
|
19518
19476
|
|
|
19519
|
-
// bazel-out/
|
|
19477
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
19520
19478
|
function removeContentSelectors(job) {
|
|
19521
19479
|
for (const unit of job.units) {
|
|
19522
19480
|
const elements = createOpXrefMap(unit);
|
|
@@ -19543,7 +19501,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
19543
19501
|
return el;
|
|
19544
19502
|
}
|
|
19545
19503
|
|
|
19546
|
-
// bazel-out/
|
|
19504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
19547
19505
|
function createPipes(job) {
|
|
19548
19506
|
for (const unit of job.units) {
|
|
19549
19507
|
processPipeBindingsInView(unit);
|
|
@@ -19591,7 +19549,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
19591
19549
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
19592
19550
|
}
|
|
19593
19551
|
|
|
19594
|
-
// bazel-out/
|
|
19552
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
19595
19553
|
function createVariadicPipes(job) {
|
|
19596
19554
|
for (const unit of job.units) {
|
|
19597
19555
|
for (const op of unit.update) {
|
|
@@ -19608,7 +19566,7 @@ function createVariadicPipes(job) {
|
|
|
19608
19566
|
}
|
|
19609
19567
|
}
|
|
19610
19568
|
|
|
19611
|
-
// bazel-out/
|
|
19569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
19612
19570
|
function propagateI18nBlocks(job) {
|
|
19613
19571
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
19614
19572
|
}
|
|
@@ -19662,7 +19620,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
19662
19620
|
}
|
|
19663
19621
|
}
|
|
19664
19622
|
|
|
19665
|
-
// bazel-out/
|
|
19623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
19666
19624
|
function extractPureFunctions(job) {
|
|
19667
19625
|
for (const view of job.units) {
|
|
19668
19626
|
for (const op of view.ops()) {
|
|
@@ -19704,7 +19662,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
19704
19662
|
}
|
|
19705
19663
|
};
|
|
19706
19664
|
|
|
19707
|
-
// bazel-out/
|
|
19665
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
19708
19666
|
function generatePureLiteralStructures(job) {
|
|
19709
19667
|
for (const unit of job.units) {
|
|
19710
19668
|
for (const op of unit.update) {
|
|
@@ -19751,7 +19709,7 @@ function transformLiteralMap(expr) {
|
|
|
19751
19709
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
19752
19710
|
}
|
|
19753
19711
|
|
|
19754
|
-
// bazel-out/
|
|
19712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
19755
19713
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
19756
19714
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
19757
19715
|
}
|
|
@@ -20283,7 +20241,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
20283
20241
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
20284
20242
|
}
|
|
20285
20243
|
|
|
20286
|
-
// bazel-out/
|
|
20244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
20287
20245
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
20288
20246
|
["window", Identifiers.resolveWindow],
|
|
20289
20247
|
["document", Identifiers.resolveDocument],
|
|
@@ -20648,7 +20606,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
20648
20606
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
20649
20607
|
}
|
|
20650
20608
|
|
|
20651
|
-
// bazel-out/
|
|
20609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
20652
20610
|
function removeEmptyBindings(job) {
|
|
20653
20611
|
for (const unit of job.units) {
|
|
20654
20612
|
for (const op of unit.update) {
|
|
@@ -20669,7 +20627,7 @@ function removeEmptyBindings(job) {
|
|
|
20669
20627
|
}
|
|
20670
20628
|
}
|
|
20671
20629
|
|
|
20672
|
-
// bazel-out/
|
|
20630
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
20673
20631
|
function removeI18nContexts(job) {
|
|
20674
20632
|
for (const unit of job.units) {
|
|
20675
20633
|
for (const op of unit.create) {
|
|
@@ -20685,7 +20643,7 @@ function removeI18nContexts(job) {
|
|
|
20685
20643
|
}
|
|
20686
20644
|
}
|
|
20687
20645
|
|
|
20688
|
-
// bazel-out/
|
|
20646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
20689
20647
|
function removeUnusedI18nAttributesOps(job) {
|
|
20690
20648
|
for (const unit of job.units) {
|
|
20691
20649
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -20707,7 +20665,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
20707
20665
|
}
|
|
20708
20666
|
}
|
|
20709
20667
|
|
|
20710
|
-
// bazel-out/
|
|
20668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
20711
20669
|
function resolveContexts(job) {
|
|
20712
20670
|
for (const unit of job.units) {
|
|
20713
20671
|
processLexicalScope(unit, unit.create);
|
|
@@ -20749,7 +20707,7 @@ function processLexicalScope(view, ops) {
|
|
|
20749
20707
|
}
|
|
20750
20708
|
}
|
|
20751
20709
|
|
|
20752
|
-
// bazel-out/
|
|
20710
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
20753
20711
|
function resolveDollarEvent(job) {
|
|
20754
20712
|
for (const unit of job.units) {
|
|
20755
20713
|
transformDollarEvent(unit.create);
|
|
@@ -20772,7 +20730,7 @@ function transformDollarEvent(ops) {
|
|
|
20772
20730
|
}
|
|
20773
20731
|
}
|
|
20774
20732
|
|
|
20775
|
-
// bazel-out/
|
|
20733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
20776
20734
|
function resolveI18nElementPlaceholders(job) {
|
|
20777
20735
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
20778
20736
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -20951,7 +20909,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
20951
20909
|
params.set(placeholder, values);
|
|
20952
20910
|
}
|
|
20953
20911
|
|
|
20954
|
-
// bazel-out/
|
|
20912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
20955
20913
|
function resolveI18nExpressionPlaceholders(job) {
|
|
20956
20914
|
var _a2;
|
|
20957
20915
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -21004,7 +20962,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
21004
20962
|
}
|
|
21005
20963
|
}
|
|
21006
20964
|
|
|
21007
|
-
// bazel-out/
|
|
20965
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
21008
20966
|
function resolveNames(job) {
|
|
21009
20967
|
for (const unit of job.units) {
|
|
21010
20968
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -21082,7 +21040,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
21082
21040
|
}
|
|
21083
21041
|
}
|
|
21084
21042
|
|
|
21085
|
-
// bazel-out/
|
|
21043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
21086
21044
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
21087
21045
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
21088
21046
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -21152,7 +21110,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
21152
21110
|
return securityContext;
|
|
21153
21111
|
}
|
|
21154
21112
|
|
|
21155
|
-
// bazel-out/
|
|
21113
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
21156
21114
|
function transformTwoWayBindingSet(job) {
|
|
21157
21115
|
for (const unit of job.units) {
|
|
21158
21116
|
for (const op of unit.create) {
|
|
@@ -21175,7 +21133,7 @@ function transformTwoWayBindingSet(job) {
|
|
|
21175
21133
|
}
|
|
21176
21134
|
}
|
|
21177
21135
|
|
|
21178
|
-
// bazel-out/
|
|
21136
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
21179
21137
|
function saveAndRestoreView(job) {
|
|
21180
21138
|
for (const unit of job.units) {
|
|
21181
21139
|
unit.create.prepend([
|
|
@@ -21220,7 +21178,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
21220
21178
|
}
|
|
21221
21179
|
}
|
|
21222
21180
|
|
|
21223
|
-
// bazel-out/
|
|
21181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
21224
21182
|
function allocateSlots(job) {
|
|
21225
21183
|
const slotMap = /* @__PURE__ */ new Map();
|
|
21226
21184
|
for (const unit of job.units) {
|
|
@@ -21245,7 +21203,7 @@ function allocateSlots(job) {
|
|
|
21245
21203
|
}
|
|
21246
21204
|
}
|
|
21247
21205
|
|
|
21248
|
-
// bazel-out/
|
|
21206
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
21249
21207
|
function specializeStyleBindings(job) {
|
|
21250
21208
|
for (const unit of job.units) {
|
|
21251
21209
|
for (const op of unit.update) {
|
|
@@ -21275,7 +21233,7 @@ function specializeStyleBindings(job) {
|
|
|
21275
21233
|
}
|
|
21276
21234
|
}
|
|
21277
21235
|
|
|
21278
|
-
// bazel-out/
|
|
21236
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
21279
21237
|
function generateTemporaryVariables(job) {
|
|
21280
21238
|
for (const unit of job.units) {
|
|
21281
21239
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -21333,7 +21291,7 @@ function assignName(names, expr) {
|
|
|
21333
21291
|
expr.name = name;
|
|
21334
21292
|
}
|
|
21335
21293
|
|
|
21336
|
-
// bazel-out/
|
|
21294
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
21337
21295
|
function generateTrackFns(job) {
|
|
21338
21296
|
for (const unit of job.units) {
|
|
21339
21297
|
for (const op of unit.create) {
|
|
@@ -21366,7 +21324,7 @@ function generateTrackFns(job) {
|
|
|
21366
21324
|
}
|
|
21367
21325
|
}
|
|
21368
21326
|
|
|
21369
|
-
// bazel-out/
|
|
21327
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
21370
21328
|
function optimizeTrackFns(job) {
|
|
21371
21329
|
for (const unit of job.units) {
|
|
21372
21330
|
for (const op of unit.create) {
|
|
@@ -21416,7 +21374,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
21416
21374
|
return true;
|
|
21417
21375
|
}
|
|
21418
21376
|
|
|
21419
|
-
// bazel-out/
|
|
21377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
21420
21378
|
function generateTrackVariables(job) {
|
|
21421
21379
|
for (const unit of job.units) {
|
|
21422
21380
|
for (const op of unit.create) {
|
|
@@ -21437,7 +21395,7 @@ function generateTrackVariables(job) {
|
|
|
21437
21395
|
}
|
|
21438
21396
|
}
|
|
21439
21397
|
|
|
21440
|
-
// bazel-out/
|
|
21398
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
21441
21399
|
function countVariables(job) {
|
|
21442
21400
|
for (const unit of job.units) {
|
|
21443
21401
|
let varCount = 0;
|
|
@@ -21550,7 +21508,7 @@ function isSingletonInterpolation(expr) {
|
|
|
21550
21508
|
return true;
|
|
21551
21509
|
}
|
|
21552
21510
|
|
|
21553
|
-
// bazel-out/
|
|
21511
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
21554
21512
|
function optimizeVariables(job) {
|
|
21555
21513
|
for (const unit of job.units) {
|
|
21556
21514
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -21802,7 +21760,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
21802
21760
|
}
|
|
21803
21761
|
}
|
|
21804
21762
|
|
|
21805
|
-
// bazel-out/
|
|
21763
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
21806
21764
|
function wrapI18nIcus(job) {
|
|
21807
21765
|
for (const unit of job.units) {
|
|
21808
21766
|
let currentI18nOp = null;
|
|
@@ -21832,7 +21790,7 @@ function wrapI18nIcus(job) {
|
|
|
21832
21790
|
}
|
|
21833
21791
|
}
|
|
21834
21792
|
|
|
21835
|
-
// bazel-out/
|
|
21793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
|
|
21836
21794
|
function optimizeStoreLet(job) {
|
|
21837
21795
|
const letUsedExternally = /* @__PURE__ */ new Set();
|
|
21838
21796
|
for (const unit of job.units) {
|
|
@@ -21851,7 +21809,7 @@ function optimizeStoreLet(job) {
|
|
|
21851
21809
|
}
|
|
21852
21810
|
}
|
|
21853
21811
|
|
|
21854
|
-
// bazel-out/
|
|
21812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
|
|
21855
21813
|
function removeIllegalLetReferences(job) {
|
|
21856
21814
|
for (const unit of job.units) {
|
|
21857
21815
|
for (const op of unit.update) {
|
|
@@ -21868,7 +21826,7 @@ function removeIllegalLetReferences(job) {
|
|
|
21868
21826
|
}
|
|
21869
21827
|
}
|
|
21870
21828
|
|
|
21871
|
-
// bazel-out/
|
|
21829
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
|
|
21872
21830
|
function generateLocalLetReferences(job) {
|
|
21873
21831
|
for (const unit of job.units) {
|
|
21874
21832
|
for (const op of unit.update) {
|
|
@@ -21886,7 +21844,7 @@ function generateLocalLetReferences(job) {
|
|
|
21886
21844
|
}
|
|
21887
21845
|
}
|
|
21888
21846
|
|
|
21889
|
-
// bazel-out/
|
|
21847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
21890
21848
|
var phases = [
|
|
21891
21849
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
21892
21850
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -22043,7 +22001,7 @@ function emitHostBindingFunction(job) {
|
|
|
22043
22001
|
);
|
|
22044
22002
|
}
|
|
22045
22003
|
|
|
22046
|
-
// bazel-out/
|
|
22004
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
22047
22005
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
22048
22006
|
var domSchema = new DomElementSchemaRegistry();
|
|
22049
22007
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -22801,7 +22759,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
22801
22759
|
return null;
|
|
22802
22760
|
}
|
|
22803
22761
|
|
|
22804
|
-
// bazel-out/
|
|
22762
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
22805
22763
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
22806
22764
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
22807
22765
|
}
|
|
@@ -22921,7 +22879,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
22921
22879
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
22922
22880
|
}
|
|
22923
22881
|
|
|
22924
|
-
// bazel-out/
|
|
22882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
22925
22883
|
var HtmlParser = class extends Parser {
|
|
22926
22884
|
constructor() {
|
|
22927
22885
|
super(getHtmlTagDefinition);
|
|
@@ -22931,7 +22889,7 @@ var HtmlParser = class extends Parser {
|
|
|
22931
22889
|
}
|
|
22932
22890
|
};
|
|
22933
22891
|
|
|
22934
|
-
// bazel-out/
|
|
22892
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
22935
22893
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
22936
22894
|
var ATTRIBUTE_PREFIX = "attr";
|
|
22937
22895
|
var CLASS_PREFIX = "class";
|
|
@@ -23285,7 +23243,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
23285
23243
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
23286
23244
|
}
|
|
23287
23245
|
|
|
23288
|
-
// bazel-out/
|
|
23246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
23289
23247
|
function isStyleUrlResolvable(url) {
|
|
23290
23248
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
23291
23249
|
return false;
|
|
@@ -23294,7 +23252,7 @@ function isStyleUrlResolvable(url) {
|
|
|
23294
23252
|
}
|
|
23295
23253
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
23296
23254
|
|
|
23297
|
-
// bazel-out/
|
|
23255
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
23298
23256
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
23299
23257
|
var LINK_ELEMENT = "link";
|
|
23300
23258
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -23364,7 +23322,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
23364
23322
|
return selectAttr;
|
|
23365
23323
|
}
|
|
23366
23324
|
|
|
23367
|
-
// bazel-out/
|
|
23325
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
23368
23326
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
23369
23327
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
23370
23328
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -23687,7 +23645,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
23687
23645
|
return expression.slice(start, end);
|
|
23688
23646
|
}
|
|
23689
23647
|
|
|
23690
|
-
// bazel-out/
|
|
23648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
23691
23649
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
23692
23650
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
23693
23651
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -23951,7 +23909,7 @@ function parseDeferredTime(value) {
|
|
|
23951
23909
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
23952
23910
|
}
|
|
23953
23911
|
|
|
23954
|
-
// bazel-out/
|
|
23912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
23955
23913
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
23956
23914
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
23957
23915
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -24086,7 +24044,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
24086
24044
|
return { triggers, prefetchTriggers };
|
|
24087
24045
|
}
|
|
24088
24046
|
|
|
24089
|
-
// bazel-out/
|
|
24047
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
24090
24048
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
24091
24049
|
var KW_BIND_IDX = 1;
|
|
24092
24050
|
var KW_LET_IDX = 2;
|
|
@@ -24553,7 +24511,7 @@ function textContents(node) {
|
|
|
24553
24511
|
}
|
|
24554
24512
|
}
|
|
24555
24513
|
|
|
24556
|
-
// bazel-out/
|
|
24514
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
24557
24515
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
24558
24516
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
24559
24517
|
var _a2, _b2, _c2;
|
|
@@ -24647,7 +24605,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
|
|
|
24647
24605
|
return new BindingParser(new Parser2(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
|
|
24648
24606
|
}
|
|
24649
24607
|
|
|
24650
|
-
// bazel-out/
|
|
24608
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24651
24609
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24652
24610
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
24653
24611
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -25038,7 +24996,7 @@ function compileDeferResolverFunction(meta) {
|
|
|
25038
24996
|
return arrowFn([], literalArr(depExpressions));
|
|
25039
24997
|
}
|
|
25040
24998
|
|
|
25041
|
-
// bazel-out/
|
|
24999
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
25042
25000
|
var R3TargetBinder = class {
|
|
25043
25001
|
constructor(directiveMatcher) {
|
|
25044
25002
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25685,11 +25643,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25685
25643
|
return templateEntities;
|
|
25686
25644
|
}
|
|
25687
25645
|
|
|
25688
|
-
// bazel-out/
|
|
25646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25689
25647
|
var ResourceLoader = class {
|
|
25690
25648
|
};
|
|
25691
25649
|
|
|
25692
|
-
// bazel-out/
|
|
25650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25693
25651
|
var CompilerFacadeImpl = class {
|
|
25694
25652
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
25695
25653
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -26267,10 +26225,10 @@ function publishFacade(global) {
|
|
|
26267
26225
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26268
26226
|
}
|
|
26269
26227
|
|
|
26270
|
-
// bazel-out/
|
|
26271
|
-
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.10");
|
|
26272
26230
|
|
|
26273
|
-
// bazel-out/
|
|
26231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26274
26232
|
var _I18N_ATTR = "i18n";
|
|
26275
26233
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26276
26234
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26586,7 +26544,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26586
26544
|
return { meaning, description, id: id.trim() };
|
|
26587
26545
|
}
|
|
26588
26546
|
|
|
26589
|
-
// bazel-out/
|
|
26547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26590
26548
|
var XmlTagDefinition = class {
|
|
26591
26549
|
constructor() {
|
|
26592
26550
|
this.closedByParent = false;
|
|
@@ -26611,7 +26569,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26611
26569
|
return _TAG_DEFINITION;
|
|
26612
26570
|
}
|
|
26613
26571
|
|
|
26614
|
-
// bazel-out/
|
|
26572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26615
26573
|
var XmlParser = class extends Parser {
|
|
26616
26574
|
constructor() {
|
|
26617
26575
|
super(getXmlTagDefinition);
|
|
@@ -26621,7 +26579,7 @@ var XmlParser = class extends Parser {
|
|
|
26621
26579
|
}
|
|
26622
26580
|
};
|
|
26623
26581
|
|
|
26624
|
-
// bazel-out/
|
|
26582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26625
26583
|
var _VERSION = "1.2";
|
|
26626
26584
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26627
26585
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -26903,7 +26861,7 @@ function getCtypeForTag(tag) {
|
|
|
26903
26861
|
}
|
|
26904
26862
|
}
|
|
26905
26863
|
|
|
26906
|
-
// bazel-out/
|
|
26864
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
26907
26865
|
var _VERSION2 = "2.0";
|
|
26908
26866
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
26909
26867
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27234,7 +27192,7 @@ function getTypeForTag(tag) {
|
|
|
27234
27192
|
}
|
|
27235
27193
|
}
|
|
27236
27194
|
|
|
27237
|
-
// bazel-out/
|
|
27195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27238
27196
|
var MessageBundle = class {
|
|
27239
27197
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null, _preserveWhitespace = true) {
|
|
27240
27198
|
this._htmlParser = _htmlParser;
|
|
@@ -27318,7 +27276,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27318
27276
|
}
|
|
27319
27277
|
};
|
|
27320
27278
|
|
|
27321
|
-
// bazel-out/
|
|
27279
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27322
27280
|
var FactoryTarget2;
|
|
27323
27281
|
(function(FactoryTarget3) {
|
|
27324
27282
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27328,7 +27286,7 @@ var FactoryTarget2;
|
|
|
27328
27286
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27329
27287
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27330
27288
|
|
|
27331
|
-
// bazel-out/
|
|
27289
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27332
27290
|
function compileClassMetadata(metadata) {
|
|
27333
27291
|
const fnCall = internalCompileClassMetadata(metadata);
|
|
27334
27292
|
return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
|
|
@@ -27362,7 +27320,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
|
|
|
27362
27320
|
return arrowFn([], literalArr(dynamicImports));
|
|
27363
27321
|
}
|
|
27364
27322
|
|
|
27365
|
-
// bazel-out/
|
|
27323
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27366
27324
|
function compileClassDebugInfo(debugInfo) {
|
|
27367
27325
|
const debugInfoObject = {
|
|
27368
27326
|
className: debugInfo.className
|
|
@@ -27379,13 +27337,13 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27379
27337
|
return iife.callFn([]);
|
|
27380
27338
|
}
|
|
27381
27339
|
|
|
27382
|
-
// bazel-out/
|
|
27340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27383
27341
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27384
27342
|
var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
|
|
27385
27343
|
function compileDeclareClassMetadata(metadata) {
|
|
27386
27344
|
const definitionMap = new DefinitionMap();
|
|
27387
27345
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27388
|
-
definitionMap.set("version", literal("18.2.
|
|
27346
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27389
27347
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27390
27348
|
definitionMap.set("type", metadata.type);
|
|
27391
27349
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27404,7 +27362,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27404
27362
|
callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
|
|
27405
27363
|
callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
|
|
27406
27364
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
27407
|
-
definitionMap.set("version", literal("18.2.
|
|
27365
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27408
27366
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27409
27367
|
definitionMap.set("type", metadata.type);
|
|
27410
27368
|
definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -27412,7 +27370,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27412
27370
|
return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
|
|
27413
27371
|
}
|
|
27414
27372
|
|
|
27415
|
-
// bazel-out/
|
|
27373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27416
27374
|
function toOptionalLiteralArray(values, mapper) {
|
|
27417
27375
|
if (values === null || values.length === 0) {
|
|
27418
27376
|
return null;
|
|
@@ -27460,7 +27418,7 @@ function compileDependency(dep) {
|
|
|
27460
27418
|
return depMeta.toLiteralMap();
|
|
27461
27419
|
}
|
|
27462
27420
|
|
|
27463
|
-
// bazel-out/
|
|
27421
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27464
27422
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27465
27423
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27466
27424
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27472,7 +27430,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27472
27430
|
const definitionMap = new DefinitionMap();
|
|
27473
27431
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27474
27432
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27475
|
-
definitionMap.set("version", literal("18.2.
|
|
27433
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27476
27434
|
definitionMap.set("type", meta.type.value);
|
|
27477
27435
|
if (meta.isStandalone) {
|
|
27478
27436
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27634,7 +27592,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27634
27592
|
}));
|
|
27635
27593
|
}
|
|
27636
27594
|
|
|
27637
|
-
// bazel-out/
|
|
27595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27638
27596
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27639
27597
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27640
27598
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27785,12 +27743,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27785
27743
|
}
|
|
27786
27744
|
};
|
|
27787
27745
|
|
|
27788
|
-
// bazel-out/
|
|
27746
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27789
27747
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27790
27748
|
function compileDeclareFactoryFunction(meta) {
|
|
27791
27749
|
const definitionMap = new DefinitionMap();
|
|
27792
27750
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27793
|
-
definitionMap.set("version", literal("18.2.
|
|
27751
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27794
27752
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27795
27753
|
definitionMap.set("type", meta.type.value);
|
|
27796
27754
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27802,7 +27760,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27802
27760
|
};
|
|
27803
27761
|
}
|
|
27804
27762
|
|
|
27805
|
-
// bazel-out/
|
|
27763
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27806
27764
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27807
27765
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27808
27766
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27813,7 +27771,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27813
27771
|
function createInjectableDefinitionMap(meta) {
|
|
27814
27772
|
const definitionMap = new DefinitionMap();
|
|
27815
27773
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27816
|
-
definitionMap.set("version", literal("18.2.
|
|
27774
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27817
27775
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27818
27776
|
definitionMap.set("type", meta.type.value);
|
|
27819
27777
|
if (meta.providedIn !== void 0) {
|
|
@@ -27840,7 +27798,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27840
27798
|
return definitionMap;
|
|
27841
27799
|
}
|
|
27842
27800
|
|
|
27843
|
-
// bazel-out/
|
|
27801
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27844
27802
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27845
27803
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27846
27804
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27851,7 +27809,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27851
27809
|
function createInjectorDefinitionMap(meta) {
|
|
27852
27810
|
const definitionMap = new DefinitionMap();
|
|
27853
27811
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27854
|
-
definitionMap.set("version", literal("18.2.
|
|
27812
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27855
27813
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27856
27814
|
definitionMap.set("type", meta.type.value);
|
|
27857
27815
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27861,7 +27819,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27861
27819
|
return definitionMap;
|
|
27862
27820
|
}
|
|
27863
27821
|
|
|
27864
|
-
// bazel-out/
|
|
27822
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27865
27823
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27866
27824
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27867
27825
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -27875,7 +27833,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27875
27833
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
27876
27834
|
}
|
|
27877
27835
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
27878
|
-
definitionMap.set("version", literal("18.2.
|
|
27836
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27879
27837
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27880
27838
|
definitionMap.set("type", meta.type.value);
|
|
27881
27839
|
if (meta.bootstrap.length > 0) {
|
|
@@ -27899,7 +27857,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27899
27857
|
return definitionMap;
|
|
27900
27858
|
}
|
|
27901
27859
|
|
|
27902
|
-
// bazel-out/
|
|
27860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
27903
27861
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
27904
27862
|
function compileDeclarePipeFromMetadata(meta) {
|
|
27905
27863
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -27910,7 +27868,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
27910
27868
|
function createPipeDefinitionMap(meta) {
|
|
27911
27869
|
const definitionMap = new DefinitionMap();
|
|
27912
27870
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
27913
|
-
definitionMap.set("version", literal("18.2.
|
|
27871
|
+
definitionMap.set("version", literal("18.2.10"));
|
|
27914
27872
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27915
27873
|
definitionMap.set("type", meta.type.value);
|
|
27916
27874
|
if (meta.isStandalone) {
|
|
@@ -27923,16 +27881,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
27923
27881
|
return definitionMap;
|
|
27924
27882
|
}
|
|
27925
27883
|
|
|
27926
|
-
// bazel-out/
|
|
27884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
27927
27885
|
publishFacade(_global);
|
|
27928
27886
|
|
|
27929
|
-
// bazel-out/
|
|
27930
|
-
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.10");
|
|
27931
27889
|
|
|
27932
|
-
// bazel-out/
|
|
27890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
27933
27891
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
27934
27892
|
|
|
27935
|
-
// bazel-out/
|
|
27893
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
27936
27894
|
var ErrorCode;
|
|
27937
27895
|
(function(ErrorCode2) {
|
|
27938
27896
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -28027,7 +27985,7 @@ var ErrorCode;
|
|
|
28027
27985
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
28028
27986
|
})(ErrorCode || (ErrorCode = {}));
|
|
28029
27987
|
|
|
28030
|
-
// bazel-out/
|
|
27988
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
28031
27989
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
28032
27990
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
28033
27991
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -28039,15 +27997,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
28039
27997
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
28040
27998
|
]);
|
|
28041
27999
|
|
|
28042
|
-
// bazel-out/
|
|
28000
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28043
28001
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
28044
28002
|
|
|
28045
|
-
// bazel-out/
|
|
28003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
28046
28004
|
function ngErrorCode(code) {
|
|
28047
28005
|
return parseInt("-99" + code);
|
|
28048
28006
|
}
|
|
28049
28007
|
|
|
28050
|
-
// bazel-out/
|
|
28008
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28051
28009
|
var FatalDiagnosticError = class extends Error {
|
|
28052
28010
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
28053
28011
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -28108,10 +28066,10 @@ function isFatalDiagnosticError(err) {
|
|
|
28108
28066
|
return err._isFatalDiagnosticError === true;
|
|
28109
28067
|
}
|
|
28110
28068
|
|
|
28111
|
-
// bazel-out/
|
|
28069
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
28112
28070
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
28113
28071
|
|
|
28114
|
-
// bazel-out/
|
|
28072
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
28115
28073
|
var ExtendedTemplateDiagnosticName;
|
|
28116
28074
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
28117
28075
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -28128,7 +28086,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
28128
28086
|
ExtendedTemplateDiagnosticName2["UNUSED_LET_DECLARATION"] = "unusedLetDeclaration";
|
|
28129
28087
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
28130
28088
|
|
|
28131
|
-
// bazel-out/
|
|
28089
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
28132
28090
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
28133
28091
|
var TS = /\.tsx?$/i;
|
|
28134
28092
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28229,7 +28187,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28229
28187
|
return redirectInfo.unredirected;
|
|
28230
28188
|
}
|
|
28231
28189
|
|
|
28232
|
-
// bazel-out/
|
|
28190
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28233
28191
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28234
28192
|
const exports = reflector.getExportsOfModule(file);
|
|
28235
28193
|
if (exports === null) {
|
|
@@ -28249,7 +28207,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28249
28207
|
return foundExportName;
|
|
28250
28208
|
}
|
|
28251
28209
|
|
|
28252
|
-
// bazel-out/
|
|
28210
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28253
28211
|
var ImportFlags;
|
|
28254
28212
|
(function(ImportFlags2) {
|
|
28255
28213
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28480,7 +28438,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28480
28438
|
}
|
|
28481
28439
|
};
|
|
28482
28440
|
|
|
28483
|
-
// bazel-out/
|
|
28441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28484
28442
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28485
28443
|
var UnifiedModulesAliasingHost = class {
|
|
28486
28444
|
constructor(unifiedModulesHost) {
|
|
@@ -28547,7 +28505,7 @@ var AliasStrategy = class {
|
|
|
28547
28505
|
}
|
|
28548
28506
|
};
|
|
28549
28507
|
|
|
28550
|
-
// bazel-out/
|
|
28508
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28551
28509
|
function relativePathBetween(from, to) {
|
|
28552
28510
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28553
28511
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28556,7 +28514,7 @@ function normalizeSeparators2(path4) {
|
|
|
28556
28514
|
return path4.replace(/\\/g, "/");
|
|
28557
28515
|
}
|
|
28558
28516
|
|
|
28559
|
-
// bazel-out/
|
|
28517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28560
28518
|
var NoopImportRewriter = class {
|
|
28561
28519
|
rewriteSymbol(symbol, specifier) {
|
|
28562
28520
|
return symbol;
|
|
@@ -28609,7 +28567,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28609
28567
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28610
28568
|
}
|
|
28611
28569
|
|
|
28612
|
-
// bazel-out/
|
|
28570
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28613
28571
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28614
28572
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28615
28573
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28644,7 +28602,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28644
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.");
|
|
28645
28603
|
}
|
|
28646
28604
|
|
|
28647
|
-
// bazel-out/
|
|
28605
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28648
28606
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28649
28607
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28650
28608
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28685,13 +28643,13 @@ var DefaultImportTracker = class {
|
|
|
28685
28643
|
}
|
|
28686
28644
|
};
|
|
28687
28645
|
|
|
28688
|
-
// bazel-out/
|
|
28646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28689
28647
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
28690
28648
|
|
|
28691
|
-
// bazel-out/
|
|
28649
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28692
28650
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28693
28651
|
|
|
28694
|
-
// bazel-out/
|
|
28652
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28695
28653
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28696
28654
|
function isDecoratorIdentifier(exp) {
|
|
28697
28655
|
return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
|
|
@@ -28714,7 +28672,7 @@ var ClassMemberAccessLevel;
|
|
|
28714
28672
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
28715
28673
|
var AmbientImport = {};
|
|
28716
28674
|
|
|
28717
|
-
// bazel-out/
|
|
28675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28718
28676
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
28719
28677
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28720
28678
|
var _a2, _b2;
|
|
@@ -28898,7 +28856,7 @@ function extractModuleName(node) {
|
|
|
28898
28856
|
return node.moduleSpecifier.text;
|
|
28899
28857
|
}
|
|
28900
28858
|
|
|
28901
|
-
// bazel-out/
|
|
28859
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
28902
28860
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28903
28861
|
function isNamedClassDeclaration(node) {
|
|
28904
28862
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -28922,7 +28880,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
28922
28880
|
}
|
|
28923
28881
|
}
|
|
28924
28882
|
|
|
28925
|
-
// bazel-out/
|
|
28883
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28926
28884
|
var TypeScriptReflectionHost = class {
|
|
28927
28885
|
constructor(checker, isLocalCompilation = false) {
|
|
28928
28886
|
this.checker = checker;
|
|
@@ -29409,7 +29367,7 @@ function getExportedName(decl, originalId) {
|
|
|
29409
29367
|
}
|
|
29410
29368
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29411
29369
|
|
|
29412
|
-
// bazel-out/
|
|
29370
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29413
29371
|
var AssumeEager = "AssumeEager";
|
|
29414
29372
|
var DeferredSymbolTracker = class {
|
|
29415
29373
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29529,7 +29487,7 @@ var DeferredSymbolTracker = class {
|
|
|
29529
29487
|
}
|
|
29530
29488
|
};
|
|
29531
29489
|
|
|
29532
|
-
// bazel-out/
|
|
29490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
29533
29491
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
29534
29492
|
var ImportedSymbolsTracker = class {
|
|
29535
29493
|
constructor() {
|
|
@@ -29599,7 +29557,7 @@ var ImportedSymbolsTracker = class {
|
|
|
29599
29557
|
}
|
|
29600
29558
|
};
|
|
29601
29559
|
|
|
29602
|
-
// bazel-out/
|
|
29560
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
29603
29561
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
29604
29562
|
var LocalCompilationExtraImportsTracker = class {
|
|
29605
29563
|
constructor(typeChecker) {
|
|
@@ -29650,7 +29608,7 @@ function removeQuotations(s) {
|
|
|
29650
29608
|
return s.substring(1, s.length - 1).trim();
|
|
29651
29609
|
}
|
|
29652
29610
|
|
|
29653
|
-
// bazel-out/
|
|
29611
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29654
29612
|
var Reference2 = class {
|
|
29655
29613
|
constructor(node, bestGuessOwningModule = null) {
|
|
29656
29614
|
this.node = node;
|
|
@@ -29719,7 +29677,7 @@ var Reference2 = class {
|
|
|
29719
29677
|
}
|
|
29720
29678
|
};
|
|
29721
29679
|
|
|
29722
|
-
// bazel-out/
|
|
29680
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29723
29681
|
var ModuleResolver = class {
|
|
29724
29682
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29725
29683
|
this.program = program;
|
|
@@ -29736,7 +29694,7 @@ var ModuleResolver = class {
|
|
|
29736
29694
|
}
|
|
29737
29695
|
};
|
|
29738
29696
|
|
|
29739
|
-
// bazel-out/
|
|
29697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.mjs
|
|
29740
29698
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
29741
29699
|
function isAngularDecorator(decorator, isCore) {
|
|
29742
29700
|
return isCore || decorator.import !== null && decorator.import.from === "@angular/core";
|
|
@@ -30041,13 +29999,13 @@ function cloneClassElementWithModifiers(node, modifiers) {
|
|
|
30041
29999
|
return import_typescript21.default.setOriginalNode(clone, node);
|
|
30042
30000
|
}
|
|
30043
30001
|
|
|
30044
|
-
// bazel-out/
|
|
30002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
30045
30003
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
30046
30004
|
|
|
30047
|
-
// bazel-out/
|
|
30005
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30048
30006
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
30049
30007
|
|
|
30050
|
-
// bazel-out/
|
|
30008
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
30051
30009
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
30052
30010
|
var CORE_MODULE2 = "@angular/core";
|
|
30053
30011
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -30305,7 +30263,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
30305
30263
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
30306
30264
|
}
|
|
30307
30265
|
|
|
30308
|
-
// bazel-out/
|
|
30266
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30309
30267
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
30310
30268
|
const deps = [];
|
|
30311
30269
|
const errors = [];
|
|
@@ -30449,10 +30407,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
30449
30407
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
30450
30408
|
}
|
|
30451
30409
|
|
|
30452
|
-
// bazel-out/
|
|
30410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
30453
30411
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
30454
30412
|
|
|
30455
|
-
// bazel-out/
|
|
30413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
30456
30414
|
var MetaKind;
|
|
30457
30415
|
(function(MetaKind2) {
|
|
30458
30416
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -30465,10 +30423,10 @@ var MatchSource;
|
|
|
30465
30423
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
30466
30424
|
})(MatchSource || (MatchSource = {}));
|
|
30467
30425
|
|
|
30468
|
-
// bazel-out/
|
|
30426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30469
30427
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
30470
30428
|
|
|
30471
|
-
// bazel-out/
|
|
30429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
30472
30430
|
var ClassPropertyMapping = class {
|
|
30473
30431
|
constructor(forwardMap) {
|
|
30474
30432
|
this.forwardMap = forwardMap;
|
|
@@ -30548,7 +30506,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30548
30506
|
return reverseMap;
|
|
30549
30507
|
}
|
|
30550
30508
|
|
|
30551
|
-
// bazel-out/
|
|
30509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30552
30510
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30553
30511
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30554
30512
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -30744,7 +30702,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
30744
30702
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
30745
30703
|
}
|
|
30746
30704
|
|
|
30747
|
-
// bazel-out/
|
|
30705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30748
30706
|
var DtsMetadataReader = class {
|
|
30749
30707
|
constructor(checker, reflector) {
|
|
30750
30708
|
this.checker = checker;
|
|
@@ -30928,7 +30886,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30928
30886
|
return result.length > 0 ? result : null;
|
|
30929
30887
|
}
|
|
30930
30888
|
|
|
30931
|
-
// bazel-out/
|
|
30889
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30932
30890
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30933
30891
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30934
30892
|
if (topMeta === null) {
|
|
@@ -30991,7 +30949,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30991
30949
|
});
|
|
30992
30950
|
}
|
|
30993
30951
|
|
|
30994
|
-
// bazel-out/
|
|
30952
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30995
30953
|
var LocalMetadataRegistry = class {
|
|
30996
30954
|
constructor() {
|
|
30997
30955
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -31048,7 +31006,7 @@ var CompoundMetadataRegistry = class {
|
|
|
31048
31006
|
}
|
|
31049
31007
|
};
|
|
31050
31008
|
|
|
31051
|
-
// bazel-out/
|
|
31009
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
31052
31010
|
var ResourceRegistry = class {
|
|
31053
31011
|
constructor() {
|
|
31054
31012
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -31113,7 +31071,7 @@ var ResourceRegistry = class {
|
|
|
31113
31071
|
}
|
|
31114
31072
|
};
|
|
31115
31073
|
|
|
31116
|
-
// bazel-out/
|
|
31074
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
31117
31075
|
var ExportedProviderStatusResolver = class {
|
|
31118
31076
|
constructor(metaReader) {
|
|
31119
31077
|
this.metaReader = metaReader;
|
|
@@ -31157,7 +31115,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
31157
31115
|
}
|
|
31158
31116
|
};
|
|
31159
31117
|
|
|
31160
|
-
// bazel-out/
|
|
31118
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
31161
31119
|
var EMPTY_ARRAY = [];
|
|
31162
31120
|
var HostDirectivesResolver = class {
|
|
31163
31121
|
constructor(metaReader) {
|
|
@@ -31222,10 +31180,10 @@ function resolveOutput(bindingName) {
|
|
|
31222
31180
|
return bindingName;
|
|
31223
31181
|
}
|
|
31224
31182
|
|
|
31225
|
-
// bazel-out/
|
|
31183
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31226
31184
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
31227
31185
|
|
|
31228
|
-
// bazel-out/
|
|
31186
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
31229
31187
|
var DynamicValue = class {
|
|
31230
31188
|
constructor(node, reason, code) {
|
|
31231
31189
|
this.node = node;
|
|
@@ -31315,7 +31273,7 @@ var DynamicValue = class {
|
|
|
31315
31273
|
}
|
|
31316
31274
|
};
|
|
31317
31275
|
|
|
31318
|
-
// bazel-out/
|
|
31276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
31319
31277
|
var ResolvedModule = class {
|
|
31320
31278
|
constructor(exports, evaluate) {
|
|
31321
31279
|
this.exports = exports;
|
|
@@ -31345,7 +31303,7 @@ var EnumValue = class {
|
|
|
31345
31303
|
var KnownFn = class {
|
|
31346
31304
|
};
|
|
31347
31305
|
|
|
31348
|
-
// bazel-out/
|
|
31306
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31349
31307
|
function describeResolvedType(value, maxDepth = 1) {
|
|
31350
31308
|
var _a2, _b2;
|
|
31351
31309
|
if (value === null) {
|
|
@@ -31478,10 +31436,10 @@ function getContainerNode(node) {
|
|
|
31478
31436
|
return node.getSourceFile();
|
|
31479
31437
|
}
|
|
31480
31438
|
|
|
31481
|
-
// bazel-out/
|
|
31439
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31482
31440
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
31483
31441
|
|
|
31484
|
-
// bazel-out/
|
|
31442
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
31485
31443
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
31486
31444
|
constructor(lhs) {
|
|
31487
31445
|
super();
|
|
@@ -31533,14 +31491,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31533
31491
|
}
|
|
31534
31492
|
};
|
|
31535
31493
|
|
|
31536
|
-
// bazel-out/
|
|
31494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31537
31495
|
var SyntheticValue = class {
|
|
31538
31496
|
constructor(value) {
|
|
31539
31497
|
this.value = value;
|
|
31540
31498
|
}
|
|
31541
31499
|
};
|
|
31542
31500
|
|
|
31543
|
-
// bazel-out/
|
|
31501
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31544
31502
|
function literalBinaryOp(op) {
|
|
31545
31503
|
return { op, literal: true };
|
|
31546
31504
|
}
|
|
@@ -32115,7 +32073,7 @@ function owningModule(context, override = null) {
|
|
|
32115
32073
|
}
|
|
32116
32074
|
}
|
|
32117
32075
|
|
|
32118
|
-
// bazel-out/
|
|
32076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
32119
32077
|
var PartialEvaluator = class {
|
|
32120
32078
|
constructor(host, checker, dependencyTracker) {
|
|
32121
32079
|
this.host = host;
|
|
@@ -32135,7 +32093,7 @@ var PartialEvaluator = class {
|
|
|
32135
32093
|
}
|
|
32136
32094
|
};
|
|
32137
32095
|
|
|
32138
|
-
// bazel-out/
|
|
32096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
32139
32097
|
var CompilationMode;
|
|
32140
32098
|
(function(CompilationMode2) {
|
|
32141
32099
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -32149,7 +32107,7 @@ var HandlerPrecedence;
|
|
|
32149
32107
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
32150
32108
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
32151
32109
|
|
|
32152
|
-
// bazel-out/
|
|
32110
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
32153
32111
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
32154
32112
|
function aliasTransformFactory(exportStatements) {
|
|
32155
32113
|
return () => {
|
|
@@ -32174,10 +32132,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
32174
32132
|
};
|
|
32175
32133
|
}
|
|
32176
32134
|
|
|
32177
|
-
// bazel-out/
|
|
32135
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32178
32136
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
32179
32137
|
|
|
32180
|
-
// bazel-out/
|
|
32138
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
32181
32139
|
var PerfPhase;
|
|
32182
32140
|
(function(PerfPhase2) {
|
|
32183
32141
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -32247,7 +32205,7 @@ var PerfCheckpoint;
|
|
|
32247
32205
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
32248
32206
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
32249
32207
|
|
|
32250
|
-
// bazel-out/
|
|
32208
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
32251
32209
|
var NoopPerfRecorder = class {
|
|
32252
32210
|
eventCount() {
|
|
32253
32211
|
}
|
|
@@ -32264,7 +32222,7 @@ var NoopPerfRecorder = class {
|
|
|
32264
32222
|
};
|
|
32265
32223
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
32266
32224
|
|
|
32267
|
-
// bazel-out/
|
|
32225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
32268
32226
|
function mark() {
|
|
32269
32227
|
return process.hrtime();
|
|
32270
32228
|
}
|
|
@@ -32273,7 +32231,7 @@ function timeSinceInMicros(mark2) {
|
|
|
32273
32231
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
32274
32232
|
}
|
|
32275
32233
|
|
|
32276
|
-
// bazel-out/
|
|
32234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
32277
32235
|
var ActivePerfRecorder = class {
|
|
32278
32236
|
static zeroedToNow() {
|
|
32279
32237
|
return new ActivePerfRecorder(mark());
|
|
@@ -32367,7 +32325,7 @@ var DelegatingPerfRecorder = class {
|
|
|
32367
32325
|
}
|
|
32368
32326
|
};
|
|
32369
32327
|
|
|
32370
|
-
// bazel-out/
|
|
32328
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
32371
32329
|
var TraitState;
|
|
32372
32330
|
(function(TraitState2) {
|
|
32373
32331
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -32424,7 +32382,7 @@ var TraitImpl = class {
|
|
|
32424
32382
|
}
|
|
32425
32383
|
};
|
|
32426
32384
|
|
|
32427
|
-
// bazel-out/
|
|
32385
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32428
32386
|
var TraitCompiler = class {
|
|
32429
32387
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
32430
32388
|
this.handlers = handlers;
|
|
@@ -32883,10 +32841,10 @@ function containsErrors(diagnostics) {
|
|
|
32883
32841
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
32884
32842
|
}
|
|
32885
32843
|
|
|
32886
|
-
// bazel-out/
|
|
32844
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
32887
32845
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
32888
32846
|
|
|
32889
|
-
// bazel-out/
|
|
32847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
32890
32848
|
var Context = class {
|
|
32891
32849
|
constructor(isStatement) {
|
|
32892
32850
|
this.isStatement = isStatement;
|
|
@@ -32899,10 +32857,10 @@ var Context = class {
|
|
|
32899
32857
|
}
|
|
32900
32858
|
};
|
|
32901
32859
|
|
|
32902
|
-
// bazel-out/
|
|
32860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32903
32861
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
32904
32862
|
|
|
32905
|
-
// bazel-out/
|
|
32863
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
32906
32864
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32907
32865
|
function createGenerateUniqueIdentifierHelper() {
|
|
32908
32866
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -32928,7 +32886,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
32928
32886
|
};
|
|
32929
32887
|
}
|
|
32930
32888
|
|
|
32931
|
-
// bazel-out/
|
|
32889
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
32932
32890
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32933
32891
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
32934
32892
|
return (ctx) => {
|
|
@@ -32995,7 +32953,7 @@ function isImportStatement(stmt) {
|
|
|
32995
32953
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
32996
32954
|
}
|
|
32997
32955
|
|
|
32998
|
-
// bazel-out/
|
|
32956
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
32999
32957
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
33000
32958
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
33001
32959
|
const requestHash = hashImportRequest(request);
|
|
@@ -33022,7 +32980,7 @@ function hashImportRequest(req) {
|
|
|
33022
32980
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}${req.unsafeAliasOverride ? ":" + req.unsafeAliasOverride : ""}`;
|
|
33023
32981
|
}
|
|
33024
32982
|
|
|
33025
|
-
// bazel-out/
|
|
32983
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
33026
32984
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
33027
32985
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
33028
32986
|
let candidateImportToBeUpdated = null;
|
|
@@ -33082,7 +33040,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
33082
33040
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
33083
33041
|
}
|
|
33084
33042
|
|
|
33085
|
-
// bazel-out/
|
|
33043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
33086
33044
|
var presetImportManagerForceNamespaceImports = {
|
|
33087
33045
|
disableOriginalSourceFileReuse: true,
|
|
33088
33046
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -33300,7 +33258,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
33300
33258
|
}
|
|
33301
33259
|
}
|
|
33302
33260
|
|
|
33303
|
-
// bazel-out/
|
|
33261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
33304
33262
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
33305
33263
|
[UnaryOperator.Minus, "-"],
|
|
33306
33264
|
[UnaryOperator.Plus, "+"]
|
|
@@ -33545,7 +33503,7 @@ function createRange(span) {
|
|
|
33545
33503
|
};
|
|
33546
33504
|
}
|
|
33547
33505
|
|
|
33548
|
-
// bazel-out/
|
|
33506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
33549
33507
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
33550
33508
|
var INELIGIBLE = {};
|
|
33551
33509
|
function canEmitType(type, canEmit) {
|
|
@@ -33620,10 +33578,10 @@ var TypeEmitter = class {
|
|
|
33620
33578
|
}
|
|
33621
33579
|
};
|
|
33622
33580
|
|
|
33623
|
-
// bazel-out/
|
|
33581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33624
33582
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33625
33583
|
|
|
33626
|
-
// bazel-out/
|
|
33584
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
33627
33585
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
33628
33586
|
function tsNumericExpression(value) {
|
|
33629
33587
|
if (value < 0) {
|
|
@@ -33633,7 +33591,7 @@ function tsNumericExpression(value) {
|
|
|
33633
33591
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
33634
33592
|
}
|
|
33635
33593
|
|
|
33636
|
-
// bazel-out/
|
|
33594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33637
33595
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
33638
33596
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
33639
33597
|
}
|
|
@@ -33850,7 +33808,7 @@ var TypeTranslatorVisitor = class {
|
|
|
33850
33808
|
}
|
|
33851
33809
|
};
|
|
33852
33810
|
|
|
33853
|
-
// bazel-out/
|
|
33811
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
33854
33812
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
33855
33813
|
var PureAnnotation;
|
|
33856
33814
|
(function(PureAnnotation2) {
|
|
@@ -34053,7 +34011,7 @@ function attachComments(statement, leadingComments) {
|
|
|
34053
34011
|
}
|
|
34054
34012
|
}
|
|
34055
34013
|
|
|
34056
|
-
// bazel-out/
|
|
34014
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
34057
34015
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
34058
34016
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
34059
34017
|
}
|
|
@@ -34061,7 +34019,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
34061
34019
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
34062
34020
|
}
|
|
34063
34021
|
|
|
34064
|
-
// bazel-out/
|
|
34022
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
34065
34023
|
var DtsTransformRegistry = class {
|
|
34066
34024
|
constructor() {
|
|
34067
34025
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -34209,10 +34167,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
34209
34167
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
34210
34168
|
}
|
|
34211
34169
|
|
|
34212
|
-
// bazel-out/
|
|
34170
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34213
34171
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
34214
34172
|
|
|
34215
|
-
// bazel-out/
|
|
34173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
34216
34174
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
34217
34175
|
function visit(node, visitor, context) {
|
|
34218
34176
|
return visitor._visit(node, context);
|
|
@@ -34273,7 +34231,7 @@ var Visitor = class {
|
|
|
34273
34231
|
}
|
|
34274
34232
|
};
|
|
34275
34233
|
|
|
34276
|
-
// bazel-out/
|
|
34234
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34277
34235
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
34278
34236
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
34279
34237
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -34508,7 +34466,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
34508
34466
|
return array;
|
|
34509
34467
|
}
|
|
34510
34468
|
|
|
34511
|
-
// bazel-out/
|
|
34469
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
34512
34470
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
34513
34471
|
const context = [];
|
|
34514
34472
|
for (const decl of data) {
|
|
@@ -34717,7 +34675,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
34717
34675
|
}
|
|
34718
34676
|
}
|
|
34719
34677
|
|
|
34720
|
-
// bazel-out/
|
|
34678
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
34721
34679
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34722
34680
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
34723
34681
|
let resolved = null;
|
|
@@ -34767,7 +34725,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
34767
34725
|
return meta;
|
|
34768
34726
|
}
|
|
34769
34727
|
|
|
34770
|
-
// bazel-out/
|
|
34728
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
34771
34729
|
function compileNgFactoryDefField(metadata) {
|
|
34772
34730
|
const res = compileFactoryFunction(metadata);
|
|
34773
34731
|
return {
|
|
@@ -34789,7 +34747,7 @@ function compileDeclareFactory(metadata) {
|
|
|
34789
34747
|
};
|
|
34790
34748
|
}
|
|
34791
34749
|
|
|
34792
|
-
// bazel-out/
|
|
34750
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
34793
34751
|
var InjectableClassRegistry = class {
|
|
34794
34752
|
constructor(host, isCore) {
|
|
34795
34753
|
this.host = host;
|
|
@@ -34815,7 +34773,7 @@ var InjectableClassRegistry = class {
|
|
|
34815
34773
|
}
|
|
34816
34774
|
};
|
|
34817
34775
|
|
|
34818
|
-
// bazel-out/
|
|
34776
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
34819
34777
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34820
34778
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
34821
34779
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34901,7 +34859,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
34901
34859
|
return result.transformed[0];
|
|
34902
34860
|
}
|
|
34903
34861
|
|
|
34904
|
-
// bazel-out/
|
|
34862
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
34905
34863
|
var path = __toESM(require("path"), 1);
|
|
34906
34864
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
34907
34865
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34927,13 +34885,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
34927
34885
|
return null;
|
|
34928
34886
|
}
|
|
34929
34887
|
|
|
34930
|
-
// bazel-out/
|
|
34888
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
34931
34889
|
var NoopReferencesRegistry = class {
|
|
34932
34890
|
add(source, ...references) {
|
|
34933
34891
|
}
|
|
34934
34892
|
};
|
|
34935
34893
|
|
|
34936
|
-
// bazel-out/
|
|
34894
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
34937
34895
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
34938
34896
|
const schemas = [];
|
|
34939
34897
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -34962,7 +34920,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
34962
34920
|
return schemas;
|
|
34963
34921
|
}
|
|
34964
34922
|
|
|
34965
|
-
// bazel-out/
|
|
34923
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
34966
34924
|
function compileInputTransformFields(inputs) {
|
|
34967
34925
|
const extraFields = [];
|
|
34968
34926
|
for (const input of inputs) {
|
|
@@ -34979,17 +34937,17 @@ function compileInputTransformFields(inputs) {
|
|
|
34979
34937
|
return extraFields;
|
|
34980
34938
|
}
|
|
34981
34939
|
|
|
34982
|
-
// bazel-out/
|
|
34940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/jit_declaration_registry.mjs
|
|
34983
34941
|
var JitDeclarationRegistry = class {
|
|
34984
34942
|
constructor() {
|
|
34985
34943
|
this.jitDeclarations = /* @__PURE__ */ new Set();
|
|
34986
34944
|
}
|
|
34987
34945
|
};
|
|
34988
34946
|
|
|
34989
|
-
// bazel-out/
|
|
34947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
34990
34948
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
34991
34949
|
|
|
34992
|
-
// bazel-out/
|
|
34950
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
34993
34951
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
34994
34952
|
var SemanticSymbol = class {
|
|
34995
34953
|
constructor(decl) {
|
|
@@ -35005,7 +34963,7 @@ function getSymbolIdentifier(decl) {
|
|
|
35005
34963
|
return decl.name.text;
|
|
35006
34964
|
}
|
|
35007
34965
|
|
|
35008
|
-
// bazel-out/
|
|
34966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
35009
34967
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
35010
34968
|
isPublicApiAffected() {
|
|
35011
34969
|
return false;
|
|
@@ -35147,10 +35105,10 @@ function getImportPath(expr) {
|
|
|
35147
35105
|
}
|
|
35148
35106
|
}
|
|
35149
35107
|
|
|
35150
|
-
// bazel-out/
|
|
35108
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35151
35109
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
35152
35110
|
|
|
35153
|
-
// bazel-out/
|
|
35111
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
35154
35112
|
function isSymbolEqual(a, b) {
|
|
35155
35113
|
if (a.decl === b.decl) {
|
|
35156
35114
|
return true;
|
|
@@ -35200,7 +35158,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
35200
35158
|
return true;
|
|
35201
35159
|
}
|
|
35202
35160
|
|
|
35203
|
-
// bazel-out/
|
|
35161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35204
35162
|
function extractSemanticTypeParameters(node) {
|
|
35205
35163
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
35206
35164
|
return null;
|
|
@@ -35222,14 +35180,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
35222
35180
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
35223
35181
|
}
|
|
35224
35182
|
|
|
35225
|
-
// bazel-out/
|
|
35183
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
35226
35184
|
var ComponentScopeKind;
|
|
35227
35185
|
(function(ComponentScopeKind2) {
|
|
35228
35186
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
35229
35187
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
35230
35188
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
35231
35189
|
|
|
35232
|
-
// bazel-out/
|
|
35190
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
35233
35191
|
var CompoundComponentScopeReader = class {
|
|
35234
35192
|
constructor(readers) {
|
|
35235
35193
|
this.readers = readers;
|
|
@@ -35254,7 +35212,7 @@ var CompoundComponentScopeReader = class {
|
|
|
35254
35212
|
}
|
|
35255
35213
|
};
|
|
35256
35214
|
|
|
35257
|
-
// bazel-out/
|
|
35215
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
35258
35216
|
var MetadataDtsModuleScopeResolver = class {
|
|
35259
35217
|
constructor(dtsMetaReader, aliasingHost) {
|
|
35260
35218
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -35329,10 +35287,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
35329
35287
|
}
|
|
35330
35288
|
};
|
|
35331
35289
|
|
|
35332
|
-
// bazel-out/
|
|
35290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35333
35291
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
35334
35292
|
|
|
35335
|
-
// bazel-out/
|
|
35293
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
35336
35294
|
function getDiagnosticNode(ref, rawExpr) {
|
|
35337
35295
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
35338
35296
|
}
|
|
@@ -35358,7 +35316,8 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
35358
35316
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
35359
35317
|
}
|
|
35360
35318
|
|
|
35361
|
-
// bazel-out/
|
|
35319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35320
|
+
var IN_PROGRESS_RESOLUTION = {};
|
|
35362
35321
|
var LocalModuleScopeRegistry = class {
|
|
35363
35322
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
35364
35323
|
this.localReader = localReader;
|
|
@@ -35431,8 +35390,12 @@ var LocalModuleScopeRegistry = class {
|
|
|
35431
35390
|
}
|
|
35432
35391
|
getScopeOfModuleReference(ref) {
|
|
35433
35392
|
if (this.cache.has(ref.node)) {
|
|
35434
|
-
|
|
35393
|
+
const cachedValue = this.cache.get(ref.node);
|
|
35394
|
+
if (cachedValue !== IN_PROGRESS_RESOLUTION) {
|
|
35395
|
+
return cachedValue;
|
|
35396
|
+
}
|
|
35435
35397
|
}
|
|
35398
|
+
this.cache.set(ref.node, IN_PROGRESS_RESOLUTION);
|
|
35436
35399
|
this.sealed = true;
|
|
35437
35400
|
const ngModule = this.localReader.getNgModuleMetadata(ref);
|
|
35438
35401
|
if (ngModule === null) {
|
|
@@ -35452,10 +35415,12 @@ var LocalModuleScopeRegistry = class {
|
|
|
35452
35415
|
for (const decl of ngModule.imports) {
|
|
35453
35416
|
const importScope = this.getExportedScope(decl, diagnostics, ref.node, "import");
|
|
35454
35417
|
if (importScope !== null) {
|
|
35455
|
-
if (importScope === "invalid" || importScope.exported.isPoisoned) {
|
|
35456
|
-
diagnostics.push(invalidTransitiveNgModuleRef(decl, ngModule.rawImports, "import"));
|
|
35418
|
+
if (importScope === "invalid" || importScope === "cycle" || importScope.exported.isPoisoned) {
|
|
35457
35419
|
isPoisoned = true;
|
|
35458
|
-
if (importScope
|
|
35420
|
+
if (importScope !== "cycle") {
|
|
35421
|
+
diagnostics.push(invalidTransitiveNgModuleRef(decl, ngModule.rawImports, "import"));
|
|
35422
|
+
}
|
|
35423
|
+
if (importScope === "invalid" || importScope === "cycle") {
|
|
35459
35424
|
continue;
|
|
35460
35425
|
}
|
|
35461
35426
|
}
|
|
@@ -35522,10 +35487,12 @@ var LocalModuleScopeRegistry = class {
|
|
|
35522
35487
|
}
|
|
35523
35488
|
for (const decl of ngModule.exports) {
|
|
35524
35489
|
const exportScope = this.getExportedScope(decl, diagnostics, ref.node, "export");
|
|
35525
|
-
if (exportScope === "invalid" || exportScope !== null && exportScope.exported.isPoisoned) {
|
|
35526
|
-
diagnostics.push(invalidTransitiveNgModuleRef(decl, ngModule.rawExports, "export"));
|
|
35490
|
+
if (exportScope === "invalid" || exportScope === "cycle" || exportScope !== null && exportScope.exported.isPoisoned) {
|
|
35527
35491
|
isPoisoned = true;
|
|
35528
|
-
if (exportScope
|
|
35492
|
+
if (exportScope !== "cycle") {
|
|
35493
|
+
diagnostics.push(invalidTransitiveNgModuleRef(decl, ngModule.rawExports, "export"));
|
|
35494
|
+
}
|
|
35495
|
+
if (exportScope === "invalid" || exportScope === "cycle") {
|
|
35529
35496
|
continue;
|
|
35530
35497
|
}
|
|
35531
35498
|
} else if (exportScope !== null) {
|
|
@@ -35593,6 +35560,10 @@ var LocalModuleScopeRegistry = class {
|
|
|
35593
35560
|
}
|
|
35594
35561
|
return this.dependencyScopeReader.resolve(ref);
|
|
35595
35562
|
} else {
|
|
35563
|
+
if (this.cache.get(ref.node) === IN_PROGRESS_RESOLUTION) {
|
|
35564
|
+
diagnostics.push(makeDiagnostic(type === "import" ? ErrorCode.NGMODULE_INVALID_IMPORT : ErrorCode.NGMODULE_INVALID_EXPORT, identifierOfNode(ref.node) || ref.node, `NgModule "${type}" field contains a cycle`));
|
|
35565
|
+
return "cycle";
|
|
35566
|
+
}
|
|
35596
35567
|
return this.getScopeOfModuleReference(ref);
|
|
35597
35568
|
}
|
|
35598
35569
|
}
|
|
@@ -35699,7 +35670,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
35699
35670
|
]);
|
|
35700
35671
|
}
|
|
35701
35672
|
|
|
35702
|
-
// bazel-out/
|
|
35673
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
35703
35674
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
35704
35675
|
var TypeCheckScopeRegistry = class {
|
|
35705
35676
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -35779,10 +35750,10 @@ var TypeCheckScopeRegistry = class {
|
|
|
35779
35750
|
}
|
|
35780
35751
|
};
|
|
35781
35752
|
|
|
35782
|
-
// bazel-out/
|
|
35753
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35783
35754
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
35784
35755
|
|
|
35785
|
-
// bazel-out/
|
|
35756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
35786
35757
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
35787
35758
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
35788
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)}.`, [
|
|
@@ -35791,7 +35762,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
|
35791
35762
|
}
|
|
35792
35763
|
}
|
|
35793
35764
|
|
|
35794
|
-
// bazel-out/
|
|
35765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
35795
35766
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
35796
35767
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
35797
35768
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -35860,7 +35831,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
35860
35831
|
return { api: matchingApi, apiReference, isRequired };
|
|
35861
35832
|
}
|
|
35862
35833
|
|
|
35863
|
-
// bazel-out/
|
|
35834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
35864
35835
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
35865
35836
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
35866
35837
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -35878,7 +35849,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
35878
35849
|
return { alias };
|
|
35879
35850
|
}
|
|
35880
35851
|
|
|
35881
|
-
// bazel-out/
|
|
35852
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35882
35853
|
var INPUT_INITIALIZER_FN = {
|
|
35883
35854
|
functionName: "input",
|
|
35884
35855
|
owningModule: "@angular/core",
|
|
@@ -35910,7 +35881,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
35910
35881
|
};
|
|
35911
35882
|
}
|
|
35912
35883
|
|
|
35913
|
-
// bazel-out/
|
|
35884
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
35914
35885
|
var MODEL_INITIALIZER_FN = {
|
|
35915
35886
|
functionName: "model",
|
|
35916
35887
|
owningModule: "@angular/core",
|
|
@@ -35951,7 +35922,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
35951
35922
|
};
|
|
35952
35923
|
}
|
|
35953
35924
|
|
|
35954
|
-
// bazel-out/
|
|
35925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
35955
35926
|
var allowedAccessLevels = [
|
|
35956
35927
|
ClassMemberAccessLevel.PublicWritable,
|
|
35957
35928
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -35995,7 +35966,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
35995
35966
|
};
|
|
35996
35967
|
}
|
|
35997
35968
|
|
|
35998
|
-
// bazel-out/
|
|
35969
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
35999
35970
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
36000
35971
|
var queryFunctionNames = [
|
|
36001
35972
|
"viewChild",
|
|
@@ -36079,7 +36050,7 @@ function parseDescendantsOption(value) {
|
|
|
36079
36050
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
36080
36051
|
}
|
|
36081
36052
|
|
|
36082
|
-
// bazel-out/
|
|
36053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
36083
36054
|
var EMPTY_OBJECT = {};
|
|
36084
36055
|
var queryDecoratorNames = [
|
|
36085
36056
|
"ViewChild",
|
|
@@ -36879,7 +36850,7 @@ function toR3InputMetadata(mapping) {
|
|
|
36879
36850
|
};
|
|
36880
36851
|
}
|
|
36881
36852
|
|
|
36882
|
-
// bazel-out/
|
|
36853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
36883
36854
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
36884
36855
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
36885
36856
|
super(decl);
|
|
@@ -36959,7 +36930,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
36959
36930
|
return isSymbolEqual(current, previous);
|
|
36960
36931
|
}
|
|
36961
36932
|
|
|
36962
|
-
// bazel-out/
|
|
36933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
36963
36934
|
var FIELD_DECORATORS = [
|
|
36964
36935
|
"Input",
|
|
36965
36936
|
"Output",
|
|
@@ -37155,10 +37126,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
37155
37126
|
}
|
|
37156
37127
|
};
|
|
37157
37128
|
|
|
37158
|
-
// bazel-out/
|
|
37129
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37159
37130
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
37160
37131
|
|
|
37161
|
-
// bazel-out/
|
|
37132
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
37162
37133
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
37163
37134
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
37164
37135
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -37230,7 +37201,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
37230
37201
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
37231
37202
|
}
|
|
37232
37203
|
|
|
37233
|
-
// bazel-out/
|
|
37204
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37234
37205
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
37235
37206
|
constructor(decl, hasProviders) {
|
|
37236
37207
|
super(decl);
|
|
@@ -37845,7 +37816,7 @@ function isSyntheticReference(ref) {
|
|
|
37845
37816
|
return ref.synthetic;
|
|
37846
37817
|
}
|
|
37847
37818
|
|
|
37848
|
-
// bazel-out/
|
|
37819
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
37849
37820
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
37850
37821
|
const name = ref.debugName || "(unknown)";
|
|
37851
37822
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -37868,7 +37839,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
37868
37839
|
return null;
|
|
37869
37840
|
}
|
|
37870
37841
|
|
|
37871
|
-
// bazel-out/
|
|
37842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
37872
37843
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
37873
37844
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
37874
37845
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -38222,7 +38193,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
38222
38193
|
}));
|
|
38223
38194
|
}
|
|
38224
38195
|
|
|
38225
|
-
// bazel-out/
|
|
38196
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
38226
38197
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
38227
38198
|
constructor() {
|
|
38228
38199
|
super(...arguments);
|
|
@@ -38257,7 +38228,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
38257
38228
|
}
|
|
38258
38229
|
};
|
|
38259
38230
|
|
|
38260
|
-
// bazel-out/
|
|
38231
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
38261
38232
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
38262
38233
|
if (value instanceof Map) {
|
|
38263
38234
|
const name = value.get("name");
|
|
@@ -38334,7 +38305,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
38334
38305
|
return false;
|
|
38335
38306
|
}
|
|
38336
38307
|
|
|
38337
|
-
// bazel-out/
|
|
38308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
38338
38309
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
38339
38310
|
var UpdateMode;
|
|
38340
38311
|
(function(UpdateMode2) {
|
|
@@ -38342,13 +38313,13 @@ var UpdateMode;
|
|
|
38342
38313
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
38343
38314
|
})(UpdateMode || (UpdateMode = {}));
|
|
38344
38315
|
|
|
38345
|
-
// bazel-out/
|
|
38316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38346
38317
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
38347
38318
|
|
|
38348
|
-
// bazel-out/
|
|
38319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38349
38320
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
38350
38321
|
|
|
38351
|
-
// bazel-out/
|
|
38322
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
38352
38323
|
var NgExtension = Symbol("NgExtension");
|
|
38353
38324
|
function isExtended(sf) {
|
|
38354
38325
|
return sf[NgExtension] !== void 0;
|
|
@@ -38408,13 +38379,13 @@ function retagTsFile(sf) {
|
|
|
38408
38379
|
}
|
|
38409
38380
|
}
|
|
38410
38381
|
|
|
38411
|
-
// bazel-out/
|
|
38382
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
38412
38383
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
38413
38384
|
function makeShimFileName(fileName, suffix) {
|
|
38414
38385
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
38415
38386
|
}
|
|
38416
38387
|
|
|
38417
|
-
// bazel-out/
|
|
38388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38418
38389
|
var ShimAdapter = class {
|
|
38419
38390
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
38420
38391
|
this.delegate = delegate;
|
|
@@ -38509,7 +38480,7 @@ var ShimAdapter = class {
|
|
|
38509
38480
|
}
|
|
38510
38481
|
};
|
|
38511
38482
|
|
|
38512
|
-
// bazel-out/
|
|
38483
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
38513
38484
|
var ShimReferenceTagger = class {
|
|
38514
38485
|
constructor(shimExtensions) {
|
|
38515
38486
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -38543,7 +38514,7 @@ var ShimReferenceTagger = class {
|
|
|
38543
38514
|
}
|
|
38544
38515
|
};
|
|
38545
38516
|
|
|
38546
|
-
// bazel-out/
|
|
38517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38547
38518
|
var DelegatingCompilerHost = class {
|
|
38548
38519
|
get jsDocParsingMode() {
|
|
38549
38520
|
return this.delegate.jsDocParsingMode;
|
|
@@ -38661,14 +38632,14 @@ var TsCreateProgramDriver = class {
|
|
|
38661
38632
|
}
|
|
38662
38633
|
};
|
|
38663
38634
|
|
|
38664
|
-
// bazel-out/
|
|
38635
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
38665
38636
|
var OptimizeFor;
|
|
38666
38637
|
(function(OptimizeFor2) {
|
|
38667
38638
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
38668
38639
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
38669
38640
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
38670
38641
|
|
|
38671
|
-
// bazel-out/
|
|
38642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
38672
38643
|
var CompletionKind;
|
|
38673
38644
|
(function(CompletionKind2) {
|
|
38674
38645
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -38676,7 +38647,7 @@ var CompletionKind;
|
|
|
38676
38647
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
38677
38648
|
})(CompletionKind || (CompletionKind = {}));
|
|
38678
38649
|
|
|
38679
|
-
// bazel-out/
|
|
38650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
38680
38651
|
var PotentialImportKind;
|
|
38681
38652
|
(function(PotentialImportKind2) {
|
|
38682
38653
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -38688,7 +38659,7 @@ var PotentialImportMode;
|
|
|
38688
38659
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
38689
38660
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
38690
38661
|
|
|
38691
|
-
// bazel-out/
|
|
38662
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
38692
38663
|
var SymbolKind;
|
|
38693
38664
|
(function(SymbolKind2) {
|
|
38694
38665
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -38705,7 +38676,7 @@ var SymbolKind;
|
|
|
38705
38676
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
38706
38677
|
})(SymbolKind || (SymbolKind = {}));
|
|
38707
38678
|
|
|
38708
|
-
// bazel-out/
|
|
38679
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
38709
38680
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
38710
38681
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
38711
38682
|
var _a2;
|
|
@@ -38816,7 +38787,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
38816
38787
|
);
|
|
38817
38788
|
}
|
|
38818
38789
|
|
|
38819
|
-
// bazel-out/
|
|
38790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
38820
38791
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
38821
38792
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
38822
38793
|
function getTemplateId(clazz) {
|
|
@@ -38833,10 +38804,10 @@ function allocateTemplateId(sf) {
|
|
|
38833
38804
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
38834
38805
|
}
|
|
38835
38806
|
|
|
38836
|
-
// bazel-out/
|
|
38807
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38837
38808
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
38838
38809
|
|
|
38839
|
-
// bazel-out/
|
|
38810
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
38840
38811
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
38841
38812
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
38842
38813
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -38966,7 +38937,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
38966
38937
|
}) || false;
|
|
38967
38938
|
}
|
|
38968
38939
|
|
|
38969
|
-
// bazel-out/
|
|
38940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38970
38941
|
var CompletionEngine = class {
|
|
38971
38942
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
38972
38943
|
this.tcb = tcb;
|
|
@@ -40243,10 +40214,10 @@ var MagicString = class {
|
|
|
40243
40214
|
}
|
|
40244
40215
|
};
|
|
40245
40216
|
|
|
40246
|
-
// bazel-out/
|
|
40217
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
40247
40218
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
40248
40219
|
|
|
40249
|
-
// bazel-out/
|
|
40220
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
40250
40221
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
40251
40222
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
40252
40223
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -40298,10 +40269,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
40298
40269
|
}
|
|
40299
40270
|
};
|
|
40300
40271
|
|
|
40301
|
-
// bazel-out/
|
|
40272
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40302
40273
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
40303
40274
|
|
|
40304
|
-
// bazel-out/
|
|
40275
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
40305
40276
|
var ReferenceEmitEnvironment = class {
|
|
40306
40277
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
40307
40278
|
this.importManager = importManager;
|
|
@@ -40331,7 +40302,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
40331
40302
|
}
|
|
40332
40303
|
};
|
|
40333
40304
|
|
|
40334
|
-
// bazel-out/
|
|
40305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
40335
40306
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
40336
40307
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
40337
40308
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -40414,13 +40385,13 @@ function tsNumericExpression2(value) {
|
|
|
40414
40385
|
return import_typescript72.default.factory.createNumericLiteral(value);
|
|
40415
40386
|
}
|
|
40416
40387
|
|
|
40417
|
-
// bazel-out/
|
|
40388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40418
40389
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
40419
40390
|
|
|
40420
|
-
// bazel-out/
|
|
40391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40421
40392
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
40422
40393
|
|
|
40423
|
-
// bazel-out/
|
|
40394
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
40424
40395
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
40425
40396
|
var TypeParameterEmitter = class {
|
|
40426
40397
|
constructor(typeParameters, reflector) {
|
|
@@ -40498,7 +40469,7 @@ var TypeParameterEmitter = class {
|
|
|
40498
40469
|
}
|
|
40499
40470
|
};
|
|
40500
40471
|
|
|
40501
|
-
// bazel-out/
|
|
40472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40502
40473
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
40503
40474
|
Identifiers.InputSignalBrandWriteType
|
|
40504
40475
|
];
|
|
@@ -40590,7 +40561,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
40590
40561
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
40591
40562
|
}
|
|
40592
40563
|
|
|
40593
|
-
// bazel-out/
|
|
40564
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40594
40565
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
40595
40566
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
40596
40567
|
const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -40713,7 +40684,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
40713
40684
|
});
|
|
40714
40685
|
}
|
|
40715
40686
|
|
|
40716
|
-
// bazel-out/
|
|
40687
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40717
40688
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
40718
40689
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
40719
40690
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -40785,7 +40756,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
40785
40756
|
}
|
|
40786
40757
|
};
|
|
40787
40758
|
|
|
40788
|
-
// bazel-out/
|
|
40759
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
40789
40760
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40790
40761
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
40791
40762
|
constructor(resolver) {
|
|
@@ -40985,7 +40956,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
40985
40956
|
});
|
|
40986
40957
|
}
|
|
40987
40958
|
|
|
40988
|
-
// bazel-out/
|
|
40959
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
40989
40960
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40990
40961
|
var TypeCheckShimGenerator = class {
|
|
40991
40962
|
constructor() {
|
|
@@ -41003,10 +40974,10 @@ var TypeCheckShimGenerator = class {
|
|
|
41003
40974
|
}
|
|
41004
40975
|
};
|
|
41005
40976
|
|
|
41006
|
-
// bazel-out/
|
|
40977
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
41007
40978
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
41008
40979
|
|
|
41009
|
-
// bazel-out/
|
|
40980
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
41010
40981
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
41011
40982
|
function wrapForDiagnostics(expr) {
|
|
41012
40983
|
return import_typescript80.default.factory.createParenthesizedExpression(expr);
|
|
@@ -41061,7 +41032,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
41061
41032
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
41062
41033
|
}
|
|
41063
41034
|
|
|
41064
|
-
// bazel-out/
|
|
41035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
41065
41036
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
41066
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));
|
|
41067
41038
|
var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
|
|
@@ -41393,7 +41364,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
41393
41364
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
41394
41365
|
})();
|
|
41395
41366
|
|
|
41396
|
-
// bazel-out/
|
|
41367
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
41397
41368
|
var TcbGenericContextBehavior;
|
|
41398
41369
|
(function(TcbGenericContextBehavior2) {
|
|
41399
41370
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -42983,7 +42954,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
42983
42954
|
}
|
|
42984
42955
|
};
|
|
42985
42956
|
|
|
42986
|
-
// bazel-out/
|
|
42957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
42987
42958
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
42988
42959
|
var TypeCheckFile = class extends Environment {
|
|
42989
42960
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -43031,7 +43002,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
43031
43002
|
}
|
|
43032
43003
|
};
|
|
43033
43004
|
|
|
43034
|
-
// bazel-out/
|
|
43005
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
43035
43006
|
var InliningMode;
|
|
43036
43007
|
(function(InliningMode2) {
|
|
43037
43008
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -43283,7 +43254,7 @@ var TypeCtorOp = class {
|
|
|
43283
43254
|
}
|
|
43284
43255
|
};
|
|
43285
43256
|
|
|
43286
|
-
// bazel-out/
|
|
43257
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
43287
43258
|
var LF_CHAR = 10;
|
|
43288
43259
|
var CR_CHAR = 13;
|
|
43289
43260
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -43324,7 +43295,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
43324
43295
|
return low - 1;
|
|
43325
43296
|
}
|
|
43326
43297
|
|
|
43327
|
-
// bazel-out/
|
|
43298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
43328
43299
|
var TemplateSource = class {
|
|
43329
43300
|
constructor(mapping, file) {
|
|
43330
43301
|
this.mapping = mapping;
|
|
@@ -43375,7 +43346,7 @@ var TemplateSourceManager = class {
|
|
|
43375
43346
|
}
|
|
43376
43347
|
};
|
|
43377
43348
|
|
|
43378
|
-
// bazel-out/
|
|
43349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
43379
43350
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
43380
43351
|
var SymbolBuilder = class {
|
|
43381
43352
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -43944,7 +43915,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
43944
43915
|
};
|
|
43945
43916
|
}
|
|
43946
43917
|
|
|
43947
|
-
// bazel-out/
|
|
43918
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
43948
43919
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
43949
43920
|
var TemplateTypeCheckerImpl = class {
|
|
43950
43921
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -44642,7 +44613,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
44642
44613
|
}
|
|
44643
44614
|
};
|
|
44644
44615
|
|
|
44645
|
-
// bazel-out/
|
|
44616
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
44646
44617
|
var EMPTY_ARRAY2 = [];
|
|
44647
44618
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
44648
44619
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -45668,7 +45639,7 @@ function isDefaultImport(node) {
|
|
|
45668
45639
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
45669
45640
|
}
|
|
45670
45641
|
|
|
45671
|
-
// bazel-out/
|
|
45642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
45672
45643
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
45673
45644
|
var InjectableDecoratorHandler = class {
|
|
45674
45645
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -45899,7 +45870,7 @@ function getDep(dep, reflector) {
|
|
|
45899
45870
|
return meta;
|
|
45900
45871
|
}
|
|
45901
45872
|
|
|
45902
|
-
// bazel-out/
|
|
45873
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
45903
45874
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
45904
45875
|
var PipeSymbol = class extends SemanticSymbol {
|
|
45905
45876
|
constructor(decl, name) {
|
|
@@ -46055,7 +46026,7 @@ var PipeDecoratorHandler = class {
|
|
|
46055
46026
|
}
|
|
46056
46027
|
};
|
|
46057
46028
|
|
|
46058
|
-
// bazel-out/
|
|
46029
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform_api.mjs
|
|
46059
46030
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
46060
46031
|
function createSyntheticAngularCoreDecoratorAccess(factory11, importManager, ngClassDecorator, sourceFile, decoratorName) {
|
|
46061
46032
|
const classDecoratorIdentifier = import_typescript92.default.isIdentifier(ngClassDecorator.identifier) ? ngClassDecorator.identifier : ngClassDecorator.identifier.expression;
|
|
@@ -46072,7 +46043,7 @@ function castAsAny(factory11, expr) {
|
|
|
46072
46043
|
return factory11.createAsExpression(expr, factory11.createKeywordTypeNode(import_typescript92.default.SyntaxKind.AnyKeyword));
|
|
46073
46044
|
}
|
|
46074
46045
|
|
|
46075
|
-
// bazel-out/
|
|
46046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/input_function.mjs
|
|
46076
46047
|
var signalInputsTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46077
46048
|
var _a2, _b2;
|
|
46078
46049
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Input", isCore))) {
|
|
@@ -46094,7 +46065,7 @@ var signalInputsTransform = (member, sourceFile, host, factory11, importTracker,
|
|
|
46094
46065
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_b2 = member.node.modifiers) != null ? _b2 : []], member.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46095
46066
|
};
|
|
46096
46067
|
|
|
46097
|
-
// bazel-out/
|
|
46068
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/model_function.mjs
|
|
46098
46069
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
46099
46070
|
var signalModelTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46100
46071
|
var _a2, _b2;
|
|
@@ -46128,7 +46099,7 @@ function createDecorator(name, config, classDecorator, factory11, sourceFile, im
|
|
|
46128
46099
|
return factory11.createDecorator(factory11.createCallExpression(callTarget, void 0, [config]));
|
|
46129
46100
|
}
|
|
46130
46101
|
|
|
46131
|
-
// bazel-out/
|
|
46102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/output_function.mjs
|
|
46132
46103
|
var initializerApiOutputTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46133
46104
|
var _a2, _b2;
|
|
46134
46105
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Output", isCore))) {
|
|
@@ -46142,7 +46113,7 @@ var initializerApiOutputTransform = (member, sourceFile, host, factory11, import
|
|
|
46142
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);
|
|
46143
46114
|
};
|
|
46144
46115
|
|
|
46145
|
-
// bazel-out/
|
|
46116
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/query_functions.mjs
|
|
46146
46117
|
var queryFunctionToDecorator = {
|
|
46147
46118
|
viewChild: "ViewChild",
|
|
46148
46119
|
viewChildren: "ViewChildren",
|
|
@@ -46175,7 +46146,7 @@ var queryFunctionsTransforms = (member, sourceFile, host, factory11, importTrack
|
|
|
46175
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);
|
|
46176
46147
|
};
|
|
46177
46148
|
|
|
46178
|
-
// bazel-out/
|
|
46149
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
46179
46150
|
var decoratorsWithInputs = ["Directive", "Component"];
|
|
46180
46151
|
var propertyTransforms = [
|
|
46181
46152
|
signalInputsTransform,
|
|
@@ -46228,7 +46199,7 @@ function createTransformVisitor(ctx, host, importManager, importTracker, isCore,
|
|
|
46228
46199
|
return visitor;
|
|
46229
46200
|
}
|
|
46230
46201
|
|
|
46231
|
-
// bazel-out/
|
|
46202
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/index.mjs
|
|
46232
46203
|
function angularJitApplicationTransform(program, isCore = false, shouldTransformClass) {
|
|
46233
46204
|
const typeChecker = program.getTypeChecker();
|
|
46234
46205
|
const reflectionHost = new TypeScriptReflectionHost(typeChecker);
|
|
@@ -46251,7 +46222,7 @@ function angularJitApplicationTransform(program, isCore = false, shouldTransform
|
|
|
46251
46222
|
};
|
|
46252
46223
|
}
|
|
46253
46224
|
|
|
46254
|
-
// bazel-out/
|
|
46225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
46255
46226
|
var EmitFlags;
|
|
46256
46227
|
(function(EmitFlags2) {
|
|
46257
46228
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -46263,13 +46234,13 @@ var EmitFlags;
|
|
|
46263
46234
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
46264
46235
|
})(EmitFlags || (EmitFlags = {}));
|
|
46265
46236
|
|
|
46266
|
-
// bazel-out/
|
|
46237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
46267
46238
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
46268
46239
|
|
|
46269
|
-
// bazel-out/
|
|
46240
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
46270
46241
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
46271
46242
|
|
|
46272
|
-
// bazel-out/
|
|
46243
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
46273
46244
|
var path2 = __toESM(require("path"), 1);
|
|
46274
46245
|
function i18nGetExtension(formatName) {
|
|
46275
46246
|
const format = formatName.toLowerCase();
|
|
@@ -46321,10 +46292,10 @@ function getPathNormalizer(basePath) {
|
|
|
46321
46292
|
};
|
|
46322
46293
|
}
|
|
46323
46294
|
|
|
46324
|
-
// bazel-out/
|
|
46295
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46325
46296
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
46326
46297
|
|
|
46327
|
-
// bazel-out/
|
|
46298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
46328
46299
|
function toNumbers(value) {
|
|
46329
46300
|
const suffixIndex = value.lastIndexOf("-");
|
|
46330
46301
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -46359,7 +46330,7 @@ function compareVersions(v1, v2) {
|
|
|
46359
46330
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
46360
46331
|
}
|
|
46361
46332
|
|
|
46362
|
-
// bazel-out/
|
|
46333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46363
46334
|
var MIN_TS_VERSION = "5.4.0";
|
|
46364
46335
|
var MAX_TS_VERSION = "5.6.0";
|
|
46365
46336
|
var tsVersion = import_typescript97.default.version;
|
|
@@ -46372,10 +46343,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
46372
46343
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
46373
46344
|
}
|
|
46374
46345
|
|
|
46375
|
-
// bazel-out/
|
|
46346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
46376
46347
|
var import_typescript120 = __toESM(require("typescript"), 1);
|
|
46377
46348
|
|
|
46378
|
-
// bazel-out/
|
|
46349
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
46379
46350
|
var CycleAnalyzer = class {
|
|
46380
46351
|
constructor(importGraph) {
|
|
46381
46352
|
this.importGraph = importGraph;
|
|
@@ -46446,7 +46417,7 @@ var Cycle = class {
|
|
|
46446
46417
|
}
|
|
46447
46418
|
};
|
|
46448
46419
|
|
|
46449
|
-
// bazel-out/
|
|
46420
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
46450
46421
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
46451
46422
|
var ImportGraph = class {
|
|
46452
46423
|
constructor(checker, perf) {
|
|
@@ -46538,13 +46509,13 @@ var Found = class {
|
|
|
46538
46509
|
}
|
|
46539
46510
|
};
|
|
46540
46511
|
|
|
46541
|
-
// bazel-out/
|
|
46512
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
46542
46513
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46543
46514
|
|
|
46544
|
-
// bazel-out/
|
|
46515
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46545
46516
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
46546
46517
|
|
|
46547
|
-
// bazel-out/
|
|
46518
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
46548
46519
|
var EntryType;
|
|
46549
46520
|
(function(EntryType2) {
|
|
46550
46521
|
EntryType2["Block"] = "block";
|
|
@@ -46588,17 +46559,17 @@ var MemberTags;
|
|
|
46588
46559
|
MemberTags2["Inherited"] = "override";
|
|
46589
46560
|
})(MemberTags || (MemberTags = {}));
|
|
46590
46561
|
|
|
46591
|
-
// bazel-out/
|
|
46562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
46592
46563
|
function isAngularPrivateName(name) {
|
|
46593
46564
|
var _a2;
|
|
46594
46565
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
46595
46566
|
return firstChar === "\u0275" || firstChar === "_";
|
|
46596
46567
|
}
|
|
46597
46568
|
|
|
46598
|
-
// bazel-out/
|
|
46569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46599
46570
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
46600
46571
|
|
|
46601
|
-
// bazel-out/
|
|
46572
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
46602
46573
|
function extractGenerics(declaration) {
|
|
46603
46574
|
var _a2, _b2;
|
|
46604
46575
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -46611,7 +46582,7 @@ function extractGenerics(declaration) {
|
|
|
46611
46582
|
})) != null ? _b2 : [];
|
|
46612
46583
|
}
|
|
46613
46584
|
|
|
46614
|
-
// bazel-out/
|
|
46585
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
46615
46586
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
46616
46587
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
46617
46588
|
function extractJsDocTags(node) {
|
|
@@ -46655,12 +46626,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
46655
46626
|
return comment.replace(/_NG_AT_/g, "@");
|
|
46656
46627
|
}
|
|
46657
46628
|
|
|
46658
|
-
// bazel-out/
|
|
46629
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
46659
46630
|
function extractResolvedTypeString(node, checker) {
|
|
46660
46631
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
46661
46632
|
}
|
|
46662
46633
|
|
|
46663
|
-
// bazel-out/
|
|
46634
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46664
46635
|
var FunctionExtractor = class {
|
|
46665
46636
|
constructor(name, exportDeclaration, typeChecker) {
|
|
46666
46637
|
this.name = name;
|
|
@@ -46748,7 +46719,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
46748
46719
|
return implementation;
|
|
46749
46720
|
}
|
|
46750
46721
|
|
|
46751
|
-
// bazel-out/
|
|
46722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
|
|
46752
46723
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
46753
46724
|
function isInternal(member) {
|
|
46754
46725
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -46767,7 +46738,7 @@ function hasLeadingInternalComment(member) {
|
|
|
46767
46738
|
)) != null ? _a2 : false;
|
|
46768
46739
|
}
|
|
46769
46740
|
|
|
46770
|
-
// bazel-out/
|
|
46741
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46771
46742
|
var ClassExtractor = class {
|
|
46772
46743
|
constructor(declaration, typeChecker) {
|
|
46773
46744
|
this.declaration = declaration;
|
|
@@ -46902,9 +46873,15 @@ var ClassExtractor = class {
|
|
|
46902
46873
|
return result;
|
|
46903
46874
|
}
|
|
46904
46875
|
filterMethodOverloads(declarations) {
|
|
46905
|
-
return declarations.filter((declaration) => {
|
|
46876
|
+
return declarations.filter((declaration, index) => {
|
|
46877
|
+
var _a2;
|
|
46906
46878
|
if (import_typescript102.default.isFunctionDeclaration(declaration) || import_typescript102.default.isMethodDeclaration(declaration)) {
|
|
46907
|
-
|
|
46879
|
+
if (import_typescript102.default.getCombinedModifierFlags(declaration) & import_typescript102.default.ModifierFlags.Abstract) {
|
|
46880
|
+
const previousDeclaration = declarations[index - 1];
|
|
46881
|
+
const samePreviousAbstractMethod = previousDeclaration && import_typescript102.default.isMethodDeclaration(previousDeclaration) && import_typescript102.default.getCombinedModifierFlags(previousDeclaration) & import_typescript102.default.ModifierFlags.Abstract && previousDeclaration.name.getText() === ((_a2 = declaration.name) == null ? void 0 : _a2.getText());
|
|
46882
|
+
return !samePreviousAbstractMethod;
|
|
46883
|
+
}
|
|
46884
|
+
return !!declaration.body;
|
|
46908
46885
|
}
|
|
46909
46886
|
return true;
|
|
46910
46887
|
});
|
|
@@ -47052,7 +47029,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
47052
47029
|
return extractor.extract();
|
|
47053
47030
|
}
|
|
47054
47031
|
|
|
47055
|
-
// bazel-out/
|
|
47032
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
47056
47033
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
47057
47034
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
47058
47035
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -47110,7 +47087,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
47110
47087
|
});
|
|
47111
47088
|
}
|
|
47112
47089
|
|
|
47113
|
-
// bazel-out/
|
|
47090
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
47114
47091
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
47115
47092
|
function extractorDecorator(declaration, typeChecker) {
|
|
47116
47093
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -47183,7 +47160,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
47183
47160
|
return callSignature;
|
|
47184
47161
|
}
|
|
47185
47162
|
|
|
47186
|
-
// bazel-out/
|
|
47163
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
47187
47164
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
47188
47165
|
function extractEnum(declaration, typeChecker) {
|
|
47189
47166
|
return {
|
|
@@ -47214,7 +47191,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
47214
47191
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
47215
47192
|
}
|
|
47216
47193
|
|
|
47217
|
-
// bazel-out/
|
|
47194
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
47218
47195
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
47219
47196
|
var initializerApiTag = "initializerApiFunction";
|
|
47220
47197
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -47323,7 +47300,7 @@ function extractFunctionWithOverloads(name, type, typeChecker) {
|
|
|
47323
47300
|
};
|
|
47324
47301
|
}
|
|
47325
47302
|
|
|
47326
|
-
// bazel-out/
|
|
47303
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
47327
47304
|
function extractTypeAlias(declaration) {
|
|
47328
47305
|
return {
|
|
47329
47306
|
name: declaration.name.getText(),
|
|
@@ -47335,7 +47312,7 @@ function extractTypeAlias(declaration) {
|
|
|
47335
47312
|
};
|
|
47336
47313
|
}
|
|
47337
47314
|
|
|
47338
|
-
// bazel-out/
|
|
47315
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/import_extractor.mjs
|
|
47339
47316
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
47340
47317
|
function getImportedSymbols(sourceFile) {
|
|
47341
47318
|
const importSpecifiers = /* @__PURE__ */ new Map();
|
|
@@ -47360,7 +47337,7 @@ function getImportedSymbols(sourceFile) {
|
|
|
47360
47337
|
return importSpecifiers;
|
|
47361
47338
|
}
|
|
47362
47339
|
|
|
47363
|
-
// bazel-out/
|
|
47340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
47364
47341
|
var DocsExtractor = class {
|
|
47365
47342
|
constructor(typeChecker, metadataReader) {
|
|
47366
47343
|
this.typeChecker = typeChecker;
|
|
@@ -47446,7 +47423,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
47446
47423
|
return relativePath;
|
|
47447
47424
|
}
|
|
47448
47425
|
|
|
47449
|
-
// bazel-out/
|
|
47426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
47450
47427
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
47451
47428
|
var FlatIndexGenerator = class {
|
|
47452
47429
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -47471,7 +47448,7 @@ export * from '${relativeEntryPoint}';
|
|
|
47471
47448
|
}
|
|
47472
47449
|
};
|
|
47473
47450
|
|
|
47474
|
-
// bazel-out/
|
|
47451
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
47475
47452
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
47476
47453
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
47477
47454
|
let resolvedEntryPoint = null;
|
|
@@ -47487,7 +47464,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
47487
47464
|
return resolvedEntryPoint;
|
|
47488
47465
|
}
|
|
47489
47466
|
|
|
47490
|
-
// bazel-out/
|
|
47467
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
47491
47468
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
47492
47469
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
47493
47470
|
const diagnostics = [];
|
|
@@ -47567,7 +47544,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
47567
47544
|
}
|
|
47568
47545
|
}
|
|
47569
47546
|
|
|
47570
|
-
// bazel-out/
|
|
47547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
47571
47548
|
var ReferenceGraph = class {
|
|
47572
47549
|
constructor() {
|
|
47573
47550
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -47621,7 +47598,7 @@ var ReferenceGraph = class {
|
|
|
47621
47598
|
}
|
|
47622
47599
|
};
|
|
47623
47600
|
|
|
47624
|
-
// bazel-out/
|
|
47601
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
47625
47602
|
var FileDependencyGraph = class {
|
|
47626
47603
|
constructor() {
|
|
47627
47604
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -47688,7 +47665,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
47688
47665
|
return false;
|
|
47689
47666
|
}
|
|
47690
47667
|
|
|
47691
|
-
// bazel-out/
|
|
47668
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
47692
47669
|
var IncrementalStateKind;
|
|
47693
47670
|
(function(IncrementalStateKind2) {
|
|
47694
47671
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -47696,7 +47673,7 @@ var IncrementalStateKind;
|
|
|
47696
47673
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
47697
47674
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
47698
47675
|
|
|
47699
|
-
// bazel-out/
|
|
47676
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
47700
47677
|
var PhaseKind;
|
|
47701
47678
|
(function(PhaseKind2) {
|
|
47702
47679
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -47897,7 +47874,7 @@ function toOriginalSourceFile(sf) {
|
|
|
47897
47874
|
}
|
|
47898
47875
|
}
|
|
47899
47876
|
|
|
47900
|
-
// bazel-out/
|
|
47877
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
47901
47878
|
var TrackedIncrementalBuildStrategy = class {
|
|
47902
47879
|
constructor() {
|
|
47903
47880
|
this.state = null;
|
|
@@ -47918,7 +47895,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
47918
47895
|
};
|
|
47919
47896
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
47920
47897
|
|
|
47921
|
-
// bazel-out/
|
|
47898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
47922
47899
|
var IdentifierKind;
|
|
47923
47900
|
(function(IdentifierKind2) {
|
|
47924
47901
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -47937,7 +47914,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
47937
47914
|
}
|
|
47938
47915
|
};
|
|
47939
47916
|
|
|
47940
|
-
// bazel-out/
|
|
47917
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
47941
47918
|
var IndexingContext = class {
|
|
47942
47919
|
constructor() {
|
|
47943
47920
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -47947,7 +47924,7 @@ var IndexingContext = class {
|
|
|
47947
47924
|
}
|
|
47948
47925
|
};
|
|
47949
47926
|
|
|
47950
|
-
// bazel-out/
|
|
47927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
47951
47928
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
47952
47929
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
47953
47930
|
super();
|
|
@@ -48241,7 +48218,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
48241
48218
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
48242
48219
|
}
|
|
48243
48220
|
|
|
48244
|
-
// bazel-out/
|
|
48221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
48245
48222
|
function generateAnalysis(context) {
|
|
48246
48223
|
const analysis = /* @__PURE__ */ new Map();
|
|
48247
48224
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -48277,7 +48254,7 @@ function generateAnalysis(context) {
|
|
|
48277
48254
|
return analysis;
|
|
48278
48255
|
}
|
|
48279
48256
|
|
|
48280
|
-
// bazel-out/
|
|
48257
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
48281
48258
|
var NgModuleIndexImpl = class {
|
|
48282
48259
|
constructor(metaReader, localReader) {
|
|
48283
48260
|
this.metaReader = metaReader;
|
|
@@ -48366,7 +48343,7 @@ var NgModuleIndexImpl = class {
|
|
|
48366
48343
|
}
|
|
48367
48344
|
};
|
|
48368
48345
|
|
|
48369
|
-
// bazel-out/
|
|
48346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
48370
48347
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
48371
48348
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
48372
48349
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -48518,7 +48495,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
48518
48495
|
};
|
|
48519
48496
|
}
|
|
48520
48497
|
|
|
48521
|
-
// bazel-out/
|
|
48498
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
48522
48499
|
var StandaloneComponentScopeReader = class {
|
|
48523
48500
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
48524
48501
|
this.metaReader = metaReader;
|
|
@@ -48614,7 +48591,7 @@ var StandaloneComponentScopeReader = class {
|
|
|
48614
48591
|
}
|
|
48615
48592
|
};
|
|
48616
48593
|
|
|
48617
|
-
// bazel-out/
|
|
48594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
48618
48595
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
48619
48596
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
48620
48597
|
"WritableSignal",
|
|
@@ -48634,7 +48611,7 @@ function isSignalSymbol(symbol) {
|
|
|
48634
48611
|
});
|
|
48635
48612
|
}
|
|
48636
48613
|
|
|
48637
|
-
// bazel-out/
|
|
48614
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
48638
48615
|
var TemplateCheckWithVisitor = class {
|
|
48639
48616
|
constructor() {
|
|
48640
48617
|
this.canVisitStructuralAttributes = true;
|
|
@@ -48769,7 +48746,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
48769
48746
|
}
|
|
48770
48747
|
};
|
|
48771
48748
|
|
|
48772
|
-
// bazel-out/
|
|
48749
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
48773
48750
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
48774
48751
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
48775
48752
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -48821,7 +48798,7 @@ var factory = {
|
|
|
48821
48798
|
create: () => new InterpolatedSignalCheck()
|
|
48822
48799
|
};
|
|
48823
48800
|
|
|
48824
|
-
// bazel-out/
|
|
48801
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
48825
48802
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
48826
48803
|
constructor() {
|
|
48827
48804
|
super(...arguments);
|
|
@@ -48846,7 +48823,7 @@ var factory2 = {
|
|
|
48846
48823
|
create: () => new InvalidBananaInBoxCheck()
|
|
48847
48824
|
};
|
|
48848
48825
|
|
|
48849
|
-
// bazel-out/
|
|
48826
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
48850
48827
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
48851
48828
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
48852
48829
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -48890,7 +48867,7 @@ var factory3 = {
|
|
|
48890
48867
|
}
|
|
48891
48868
|
};
|
|
48892
48869
|
|
|
48893
|
-
// bazel-out/
|
|
48870
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
48894
48871
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
48895
48872
|
constructor() {
|
|
48896
48873
|
super(...arguments);
|
|
@@ -48922,7 +48899,7 @@ var factory4 = {
|
|
|
48922
48899
|
create: () => new MissingNgForOfLetCheck()
|
|
48923
48900
|
};
|
|
48924
48901
|
|
|
48925
|
-
// bazel-out/
|
|
48902
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
48926
48903
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
48927
48904
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48928
48905
|
constructor() {
|
|
@@ -48967,7 +48944,7 @@ var factory5 = {
|
|
|
48967
48944
|
}
|
|
48968
48945
|
};
|
|
48969
48946
|
|
|
48970
|
-
// bazel-out/
|
|
48947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
48971
48948
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
48972
48949
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48973
48950
|
constructor() {
|
|
@@ -49013,7 +48990,7 @@ var factory6 = {
|
|
|
49013
48990
|
}
|
|
49014
48991
|
};
|
|
49015
48992
|
|
|
49016
|
-
// bazel-out/
|
|
48993
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
49017
48994
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
49018
48995
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
49019
48996
|
constructor() {
|
|
@@ -49036,7 +49013,7 @@ var factory7 = {
|
|
|
49036
49013
|
create: () => new SuffixNotSupportedCheck()
|
|
49037
49014
|
};
|
|
49038
49015
|
|
|
49039
|
-
// bazel-out/
|
|
49016
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
49040
49017
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
49041
49018
|
constructor() {
|
|
49042
49019
|
super(...arguments);
|
|
@@ -49074,7 +49051,7 @@ var factory8 = {
|
|
|
49074
49051
|
create: () => new TextAttributeNotBindingSpec()
|
|
49075
49052
|
};
|
|
49076
49053
|
|
|
49077
|
-
// bazel-out/
|
|
49054
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
|
|
49078
49055
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
49079
49056
|
constructor() {
|
|
49080
49057
|
super(...arguments);
|
|
@@ -49125,7 +49102,7 @@ var factory9 = {
|
|
|
49125
49102
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
49126
49103
|
};
|
|
49127
49104
|
|
|
49128
|
-
// bazel-out/
|
|
49105
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unused_let_declaration/index.mjs
|
|
49129
49106
|
var UnusedLetDeclarationCheck = class extends TemplateCheckWithVisitor {
|
|
49130
49107
|
constructor() {
|
|
49131
49108
|
super(...arguments);
|
|
@@ -49169,10 +49146,10 @@ var factory10 = {
|
|
|
49169
49146
|
create: () => new UnusedLetDeclarationCheck()
|
|
49170
49147
|
};
|
|
49171
49148
|
|
|
49172
|
-
// bazel-out/
|
|
49149
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49173
49150
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
49174
49151
|
|
|
49175
|
-
// bazel-out/
|
|
49152
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
49176
49153
|
var DiagnosticCategoryLabel;
|
|
49177
49154
|
(function(DiagnosticCategoryLabel2) {
|
|
49178
49155
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -49180,7 +49157,7 @@ var DiagnosticCategoryLabel;
|
|
|
49180
49157
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
49181
49158
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
49182
49159
|
|
|
49183
|
-
// bazel-out/
|
|
49160
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49184
49161
|
var ExtendedTemplateCheckerImpl = class {
|
|
49185
49162
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
49186
49163
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -49232,7 +49209,7 @@ function assertNever(value) {
|
|
|
49232
49209
|
${value}`);
|
|
49233
49210
|
}
|
|
49234
49211
|
|
|
49235
|
-
// bazel-out/
|
|
49212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
49236
49213
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
49237
49214
|
factory2,
|
|
49238
49215
|
factory5,
|
|
@@ -49250,7 +49227,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
49250
49227
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory11) => factory11.name)
|
|
49251
49228
|
]);
|
|
49252
49229
|
|
|
49253
|
-
// bazel-out/
|
|
49230
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
49254
49231
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
49255
49232
|
var TemplateSemanticsCheckerImpl = class {
|
|
49256
49233
|
constructor(templateTypeChecker) {
|
|
@@ -49340,7 +49317,7 @@ function unwrapAstWithSource(ast) {
|
|
|
49340
49317
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
49341
49318
|
}
|
|
49342
49319
|
|
|
49343
|
-
// bazel-out/
|
|
49320
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
|
|
49344
49321
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
49345
49322
|
var APIS_TO_CHECK = [
|
|
49346
49323
|
INPUT_INITIALIZER_FN,
|
|
@@ -49391,7 +49368,7 @@ var InitializerApiUsageRule = class {
|
|
|
49391
49368
|
}
|
|
49392
49369
|
};
|
|
49393
49370
|
|
|
49394
|
-
// bazel-out/
|
|
49371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
|
|
49395
49372
|
var SourceFileValidator = class {
|
|
49396
49373
|
constructor(reflector, importedSymbolsTracker) {
|
|
49397
49374
|
this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
|
|
@@ -49429,7 +49406,7 @@ var SourceFileValidator = class {
|
|
|
49429
49406
|
}
|
|
49430
49407
|
};
|
|
49431
49408
|
|
|
49432
|
-
// bazel-out/
|
|
49409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
49433
49410
|
function coreHasSymbol(program, symbol) {
|
|
49434
49411
|
const checker = program.getTypeChecker();
|
|
49435
49412
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -49448,7 +49425,7 @@ function isMaybeCore(sf) {
|
|
|
49448
49425
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
49449
49426
|
}
|
|
49450
49427
|
|
|
49451
|
-
// bazel-out/
|
|
49428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
49452
49429
|
var import_semver = __toESM(require_semver2(), 1);
|
|
49453
49430
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
49454
49431
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -49457,7 +49434,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
49457
49434
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
49458
49435
|
}
|
|
49459
49436
|
|
|
49460
|
-
// bazel-out/
|
|
49437
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
49461
49438
|
var CompilationTicketKind;
|
|
49462
49439
|
(function(CompilationTicketKind2) {
|
|
49463
49440
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -50264,7 +50241,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
50264
50241
|
return versions;
|
|
50265
50242
|
}
|
|
50266
50243
|
|
|
50267
|
-
// bazel-out/
|
|
50244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
50268
50245
|
var import_typescript122 = __toESM(require("typescript"), 1);
|
|
50269
50246
|
var DelegatingCompilerHost2 = class {
|
|
50270
50247
|
get jsDocParsingMode() {
|
|
@@ -50403,7 +50380,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
50403
50380
|
}
|
|
50404
50381
|
};
|
|
50405
50382
|
|
|
50406
|
-
// bazel-out/
|
|
50383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
50407
50384
|
var NgtscProgram = class {
|
|
50408
50385
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
50409
50386
|
this.options = options;
|
|
@@ -50629,18 +50606,18 @@ function mergeEmitResults(emitResults) {
|
|
|
50629
50606
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
50630
50607
|
}
|
|
50631
50608
|
|
|
50632
|
-
// bazel-out/
|
|
50609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
50633
50610
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
50634
50611
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
50635
50612
|
}
|
|
50636
50613
|
|
|
50637
|
-
// bazel-out/
|
|
50614
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
50638
50615
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
50639
50616
|
|
|
50640
|
-
// bazel-out/
|
|
50617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
50641
50618
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
50642
50619
|
|
|
50643
|
-
// bazel-out/
|
|
50620
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
50644
50621
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
50645
50622
|
ngDevMode: false,
|
|
50646
50623
|
ngI18nClosureMode: false
|
|
@@ -50649,7 +50626,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
50649
50626
|
ngJitMode: false
|
|
50650
50627
|
});
|
|
50651
50628
|
|
|
50652
|
-
// bazel-out/
|
|
50629
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
50653
50630
|
var LogLevel;
|
|
50654
50631
|
(function(LogLevel2) {
|
|
50655
50632
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -50658,7 +50635,7 @@ var LogLevel;
|
|
|
50658
50635
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
50659
50636
|
})(LogLevel || (LogLevel = {}));
|
|
50660
50637
|
|
|
50661
|
-
// bazel-out/
|
|
50638
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
50662
50639
|
var RESET = "\x1B[0m";
|
|
50663
50640
|
var RED = "\x1B[31m";
|
|
50664
50641
|
var YELLOW = "\x1B[33m";
|
|
@@ -50667,15 +50644,15 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
50667
50644
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
50668
50645
|
var ERROR = `${RED}Error:${RESET}`;
|
|
50669
50646
|
|
|
50670
|
-
// bazel-out/
|
|
50647
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
50671
50648
|
setFileSystem(new NodeJSFileSystem());
|
|
50672
50649
|
|
|
50673
|
-
// bazel-out/
|
|
50650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
50674
50651
|
var import_fs2 = require("fs");
|
|
50675
50652
|
var import_path7 = require("path");
|
|
50676
50653
|
var import_typescript138 = __toESM(require("typescript"), 1);
|
|
50677
50654
|
|
|
50678
|
-
// bazel-out/
|
|
50655
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
50679
50656
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
50680
50657
|
var ChangeTracker = class {
|
|
50681
50658
|
constructor(_printer, _importRemapper) {
|
|
@@ -50794,7 +50771,7 @@ function normalizePath(path4) {
|
|
|
50794
50771
|
return path4.replace(/\\/g, "/");
|
|
50795
50772
|
}
|
|
50796
50773
|
|
|
50797
|
-
// bazel-out/
|
|
50774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
50798
50775
|
var import_core19 = require("@angular-devkit/core");
|
|
50799
50776
|
function getProjectTsConfigPaths(tree) {
|
|
50800
50777
|
return __async(this, null, function* () {
|
|
@@ -50874,11 +50851,11 @@ function getWorkspace(tree) {
|
|
|
50874
50851
|
});
|
|
50875
50852
|
}
|
|
50876
50853
|
|
|
50877
|
-
// bazel-out/
|
|
50854
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50878
50855
|
var import_path4 = require("path");
|
|
50879
50856
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
50880
50857
|
|
|
50881
|
-
// bazel-out/
|
|
50858
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
50882
50859
|
var path3 = __toESM(require("path"), 1);
|
|
50883
50860
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
50884
50861
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -50895,7 +50872,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
50895
50872
|
return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
50896
50873
|
}
|
|
50897
50874
|
|
|
50898
|
-
// bazel-out/
|
|
50875
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50899
50876
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
50900
50877
|
tsconfigPath = (0, import_path4.resolve)(basePath, tsconfigPath);
|
|
50901
50878
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path4.dirname)(tsconfigPath));
|
|
@@ -50924,13 +50901,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
50924
50901
|
return !(0, import_path4.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
50925
50902
|
}
|
|
50926
50903
|
|
|
50927
|
-
// bazel-out/
|
|
50904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50928
50905
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
50929
50906
|
|
|
50930
|
-
// bazel-out/
|
|
50907
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50931
50908
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
50932
50909
|
|
|
50933
|
-
// bazel-out/
|
|
50910
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
50934
50911
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
50935
50912
|
function getImportOfIdentifier(typeChecker, node) {
|
|
50936
50913
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -50990,7 +50967,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
50990
50967
|
});
|
|
50991
50968
|
}
|
|
50992
50969
|
|
|
50993
|
-
// bazel-out/
|
|
50970
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50994
50971
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
50995
50972
|
if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
|
|
50996
50973
|
return null;
|
|
@@ -50999,7 +50976,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
50999
50976
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
51000
50977
|
}
|
|
51001
50978
|
|
|
51002
|
-
// bazel-out/
|
|
50979
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
51003
50980
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
51004
50981
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
51005
50982
|
node,
|
|
@@ -51009,7 +50986,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
51009
50986
|
}));
|
|
51010
50987
|
}
|
|
51011
50988
|
|
|
51012
|
-
// bazel-out/
|
|
50989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
51013
50990
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
51014
50991
|
function closestNode(node, predicate) {
|
|
51015
50992
|
let current = node.parent;
|
|
@@ -51022,7 +50999,7 @@ function closestNode(node, predicate) {
|
|
|
51022
50999
|
return null;
|
|
51023
51000
|
}
|
|
51024
51001
|
|
|
51025
|
-
// bazel-out/
|
|
51002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
51026
51003
|
var import_path5 = require("path");
|
|
51027
51004
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
51028
51005
|
var UniqueItemTracker = class {
|
|
@@ -51200,10 +51177,10 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
51200
51177
|
}));
|
|
51201
51178
|
}
|
|
51202
51179
|
|
|
51203
|
-
// bazel-out/
|
|
51180
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51204
51181
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
51205
51182
|
|
|
51206
|
-
// bazel-out/
|
|
51183
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
51207
51184
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
51208
51185
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
51209
51186
|
var _a2, _b2;
|
|
@@ -51215,7 +51192,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
51215
51192
|
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];
|
|
51216
51193
|
}
|
|
51217
51194
|
|
|
51218
|
-
// bazel-out/
|
|
51195
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51219
51196
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
51220
51197
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
51221
51198
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -51593,7 +51570,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
51593
51570
|
return metadata != null && metadata.isStandalone;
|
|
51594
51571
|
}
|
|
51595
51572
|
|
|
51596
|
-
// bazel-out/
|
|
51573
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
51597
51574
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
51598
51575
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
51599
51576
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -51853,7 +51830,7 @@ function isInImportsArray(closestAssignment, closestArray) {
|
|
|
51853
51830
|
return closestAssignment.initializer === closestArray && (import_typescript136.default.isIdentifier(closestAssignment.name) || import_typescript136.default.isStringLiteralLike(closestAssignment.name)) && closestAssignment.name.text === "imports";
|
|
51854
51831
|
}
|
|
51855
51832
|
|
|
51856
|
-
// bazel-out/
|
|
51833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
51857
51834
|
var import_path6 = require("path");
|
|
51858
51835
|
var import_typescript137 = __toESM(require("typescript"), 1);
|
|
51859
51836
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
@@ -52232,7 +52209,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
52232
52209
|
return false;
|
|
52233
52210
|
}
|
|
52234
52211
|
|
|
52235
|
-
// bazel-out/
|
|
52212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
52236
52213
|
var MigrationMode;
|
|
52237
52214
|
(function(MigrationMode2) {
|
|
52238
52215
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|