@angular/core 18.2.6 → 18.2.8
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/LICENSE +21 -0
- package/esm2022/src/core_private_export.mjs +2 -3
- package/esm2022/src/core_reactivity_export_internal.mjs +2 -1
- package/esm2022/src/event_delegation_utils.mjs +2 -57
- package/esm2022/src/hydration/event_replay.mjs +3 -7
- package/esm2022/src/hydration/tokens.mjs +1 -5
- package/esm2022/src/image_performance_warning.mjs +25 -7
- package/esm2022/src/linker/view_ref.mjs +1 -1
- package/esm2022/src/platform/bootstrap.mjs +8 -4
- package/esm2022/src/platform/platform_ref.mjs +6 -2
- package/esm2022/src/render3/after_render/hooks.mjs +3 -2
- package/esm2022/src/render3/after_render/manager.mjs +6 -3
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/view_ref.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/application_error_handler.mjs +3 -3
- package/esm2022/testing/src/component_fixture.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +50 -111
- 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/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +38 -63
- 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 +330 -288
- package/schematics/migrations/http-providers/bundle.js +333 -291
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +224 -182
- package/schematics/ng-generate/control-flow-migration/bundle.js +333 -291
- package/schematics/ng-generate/inject-migration/bundle.js +344 -295
- package/schematics/ng-generate/route-lazy-loading/bundle.js +332 -290
- package/schematics/ng-generate/standalone-migration/bundle.js +523 -476
- package/testing/index.d.ts +3 -1
- package/esm2022/src/event_dispatch/event_delegation.mjs +0 -43
|
@@ -1905,7 +1905,7 @@ var require_semver2 = __commonJS({
|
|
|
1905
1905
|
}
|
|
1906
1906
|
});
|
|
1907
1907
|
|
|
1908
|
-
// bazel-out/
|
|
1908
|
+
// bazel-out/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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, pseudoPrefix) => {
|
|
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, pseudoPrefix)).join(", ");
|
|
8659
8659
|
});
|
|
8660
8660
|
}
|
|
8661
8661
|
_convertShadowDOMSelectors(cssText) {
|
|
@@ -8666,7 +8666,12 @@ 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(
|
|
8669
|
+
selector = this._scopeSelector({
|
|
8670
|
+
selector,
|
|
8671
|
+
scopeSelector,
|
|
8672
|
+
hostSelector,
|
|
8673
|
+
isParentSelector: true
|
|
8674
|
+
});
|
|
8670
8675
|
} else if (scopedAtRuleIdentifiers.some((atRule) => rule.selector.startsWith(atRule))) {
|
|
8671
8676
|
content = this._scopeSelectors(rule.content, scopeSelector, hostSelector);
|
|
8672
8677
|
} else if (rule.selector.startsWith("@font-face") || rule.selector.startsWith("@page")) {
|
|
@@ -8681,12 +8686,18 @@ var ShadowCss = class {
|
|
|
8681
8686
|
return new CssRule(selector, rule.content);
|
|
8682
8687
|
});
|
|
8683
8688
|
}
|
|
8684
|
-
_scopeSelector(selector, scopeSelector, hostSelector) {
|
|
8685
|
-
|
|
8689
|
+
_scopeSelector({ selector, scopeSelector, hostSelector, isParentSelector = false }) {
|
|
8690
|
+
const selectorSplitRe = / ?,(?!(?:[^)(]*(?:\([^)(]*(?:\([^)(]*(?:\([^)(]*\)[^)(]*)*\)[^)(]*)*\)[^)(]*)*\))) ?/;
|
|
8691
|
+
return selector.split(selectorSplitRe).map((part) => part.split(_shadowDeepSelectors)).map((deepParts) => {
|
|
8686
8692
|
const [shallowPart, ...otherParts] = deepParts;
|
|
8687
8693
|
const applyScope = (shallowPart2) => {
|
|
8688
8694
|
if (this._selectorNeedsScoping(shallowPart2, scopeSelector)) {
|
|
8689
|
-
return this._applySelectorScope(
|
|
8695
|
+
return this._applySelectorScope({
|
|
8696
|
+
selector: shallowPart2,
|
|
8697
|
+
scopeSelector,
|
|
8698
|
+
hostSelector,
|
|
8699
|
+
isParentSelector
|
|
8700
|
+
});
|
|
8690
8701
|
} else {
|
|
8691
8702
|
return shallowPart2;
|
|
8692
8703
|
}
|
|
@@ -8708,15 +8719,15 @@ var ShadowCss = class {
|
|
|
8708
8719
|
_polyfillHostRe.lastIndex = 0;
|
|
8709
8720
|
if (_polyfillHostRe.test(selector)) {
|
|
8710
8721
|
const replaceBy = `[${hostSelector}]`;
|
|
8711
|
-
return selector.replace(
|
|
8712
|
-
return selector2.replace(/([
|
|
8722
|
+
return selector.replace(_polyfillHostNoCombinatorReGlobal, (_hnc, selector2) => {
|
|
8723
|
+
return selector2.replace(/([^:\)]*)(:*)(.*)/, (_, before, colon, after) => {
|
|
8713
8724
|
return before + replaceBy + colon + after;
|
|
8714
8725
|
});
|
|
8715
8726
|
}).replace(_polyfillHostRe, replaceBy + " ");
|
|
8716
8727
|
}
|
|
8717
8728
|
return scopeSelector + " " + selector;
|
|
8718
8729
|
}
|
|
8719
|
-
_applySelectorScope(selector, scopeSelector, hostSelector) {
|
|
8730
|
+
_applySelectorScope({ selector, scopeSelector, hostSelector, isParentSelector }) {
|
|
8720
8731
|
var _a2;
|
|
8721
8732
|
const isRe = /\[is=([^\]]*)\]/g;
|
|
8722
8733
|
scopeSelector = scopeSelector.replace(isRe, (_, ...parts) => parts[0]);
|
|
@@ -8728,6 +8739,10 @@ var ShadowCss = class {
|
|
|
8728
8739
|
}
|
|
8729
8740
|
if (p2.includes(_polyfillHostNoCombinator)) {
|
|
8730
8741
|
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
|
+
}
|
|
8731
8746
|
} else {
|
|
8732
8747
|
const t = p2.replace(_polyfillHostRe, "");
|
|
8733
8748
|
if (t.length > 0) {
|
|
@@ -8739,29 +8754,52 @@ var ShadowCss = class {
|
|
|
8739
8754
|
}
|
|
8740
8755
|
return scopedP;
|
|
8741
8756
|
};
|
|
8742
|
-
const
|
|
8743
|
-
|
|
8757
|
+
const _pseudoFunctionAwareScopeSelectorPart = (selectorPart) => {
|
|
8758
|
+
let scopedPart = "";
|
|
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
|
+
}
|
|
8744
8782
|
let scopedSelector = "";
|
|
8745
8783
|
let startIndex = 0;
|
|
8746
8784
|
let res;
|
|
8747
|
-
const sep2 = /( |>|\+|~(?!=))\s*/g;
|
|
8785
|
+
const sep2 = /( |>|\+|~(?!=))(?!([^)(]*(?:\([^)(]*(?:\([^)(]*(?:\([^)(]*\)[^)(]*)*\)[^)(]*)*\)[^)(]*)*\)))\s*/g;
|
|
8748
8786
|
const hasHost = selector.includes(_polyfillHostNoCombinator);
|
|
8749
|
-
|
|
8787
|
+
if (isParentSelector || this._shouldScopeIndicator) {
|
|
8788
|
+
this._shouldScopeIndicator = !hasHost;
|
|
8789
|
+
}
|
|
8750
8790
|
while ((res = sep2.exec(selector)) !== null) {
|
|
8751
8791
|
const separator = res[1];
|
|
8752
8792
|
const part2 = selector.slice(startIndex, res.index);
|
|
8753
8793
|
if (part2.match(/__esc-ph-(\d+)__/) && ((_a2 = selector[res.index + 1]) == null ? void 0 : _a2.match(/[a-fA-F\d]/))) {
|
|
8754
8794
|
continue;
|
|
8755
8795
|
}
|
|
8756
|
-
|
|
8757
|
-
const scopedPart = shouldScope ? _scopeSelectorPart(part2) : part2;
|
|
8796
|
+
const scopedPart = _pseudoFunctionAwareScopeSelectorPart(part2);
|
|
8758
8797
|
scopedSelector += `${scopedPart} ${separator} `;
|
|
8759
8798
|
startIndex = sep2.lastIndex;
|
|
8760
8799
|
}
|
|
8761
8800
|
const part = selector.substring(startIndex);
|
|
8762
|
-
|
|
8763
|
-
|
|
8764
|
-
return safeContent.restore(scopedSelector);
|
|
8801
|
+
scopedSelector += _pseudoFunctionAwareScopeSelectorPart(part);
|
|
8802
|
+
return this._safeSelector.restore(scopedSelector);
|
|
8765
8803
|
}
|
|
8766
8804
|
_insertPolyfillHostInCssText(selector) {
|
|
8767
8805
|
return selector.replace(_colonHostContextRe, _polyfillHostContext).replace(_colonHostRe, _polyfillHost);
|
|
@@ -8800,6 +8838,8 @@ var SafeSelector = class {
|
|
|
8800
8838
|
});
|
|
8801
8839
|
}
|
|
8802
8840
|
};
|
|
8841
|
+
var _cssScopedPseudoFunctionPrefix = "(:(where|is)\\()?";
|
|
8842
|
+
var _cssPrefixWithPseudoSelectorFunction = /^:(where|is)\(/i;
|
|
8803
8843
|
var _cssContentNextSelectorRe = /polyfill-next-selector[^}]*content:[\s]*?(['"])(.*?)\1[;\s]*}([^{]*?){/gim;
|
|
8804
8844
|
var _cssContentRuleRe = /(polyfill-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim;
|
|
8805
8845
|
var _cssContentUnscopedRuleRe = /(polyfill-unscoped-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim;
|
|
@@ -8807,10 +8847,12 @@ var _polyfillHost = "-shadowcsshost";
|
|
|
8807
8847
|
var _polyfillHostContext = "-shadowcsscontext";
|
|
8808
8848
|
var _parenSuffix = "(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)";
|
|
8809
8849
|
var _cssColonHostRe = new RegExp(_polyfillHost + _parenSuffix, "gim");
|
|
8810
|
-
var _cssColonHostContextReGlobal = new RegExp(_polyfillHostContext + _parenSuffix, "gim");
|
|
8850
|
+
var _cssColonHostContextReGlobal = new RegExp(_cssScopedPseudoFunctionPrefix + "(" + _polyfillHostContext + _parenSuffix + ")", "gim");
|
|
8811
8851
|
var _cssColonHostContextRe = new RegExp(_polyfillHostContext + _parenSuffix, "im");
|
|
8812
8852
|
var _polyfillHostNoCombinator = _polyfillHost + "-no-combinator";
|
|
8853
|
+
var _polyfillHostNoCombinatorWithinPseudoFunction = new RegExp(`:.*\\(.*${_polyfillHostNoCombinator}.*\\)`);
|
|
8813
8854
|
var _polyfillHostNoCombinatorRe = /-shadowcsshost-no-combinator([^\s]*)/;
|
|
8855
|
+
var _polyfillHostNoCombinatorReGlobal = new RegExp(_polyfillHostNoCombinatorRe, "g");
|
|
8814
8856
|
var _shadowDOMSelectorsRe = [
|
|
8815
8857
|
/::shadow/g,
|
|
8816
8858
|
/::content/g,
|
|
@@ -8945,7 +8987,7 @@ function unescapeInStrings(input) {
|
|
|
8945
8987
|
function unescapeQuotes(str, isQuoted) {
|
|
8946
8988
|
return !isQuoted ? str : str.replace(/((?:^|[^\\])(?:\\\\)*)\\(?=['"])/g, "$1");
|
|
8947
8989
|
}
|
|
8948
|
-
function
|
|
8990
|
+
function _combineHostContextSelectors(contextSelectors, otherSelectors, pseudoPrefix = "") {
|
|
8949
8991
|
const hostMarker = _polyfillHostNoCombinator;
|
|
8950
8992
|
_polyfillHostRe.lastIndex = 0;
|
|
8951
8993
|
const otherSelectorsHasHost = _polyfillHostRe.test(otherSelectors);
|
|
@@ -8963,7 +9005,7 @@ function combineHostContextSelectors(contextSelectors, otherSelectors) {
|
|
|
8963
9005
|
combined[i] = contextSelector + previousSelectors;
|
|
8964
9006
|
}
|
|
8965
9007
|
}
|
|
8966
|
-
return combined.map((s) => otherSelectorsHasHost ? `${s}${otherSelectors}` : `${s}${hostMarker}${otherSelectors}, ${s} ${hostMarker}${otherSelectors}`).join(",");
|
|
9008
|
+
return combined.map((s) => otherSelectorsHasHost ? `${pseudoPrefix}${s}${otherSelectors}` : `${pseudoPrefix}${s}${hostMarker}${otherSelectors}, ${pseudoPrefix}${s} ${hostMarker}${otherSelectors}`).join(",");
|
|
8967
9009
|
}
|
|
8968
9010
|
function repeatGroups(groups, multiples) {
|
|
8969
9011
|
const length = groups.length;
|
|
@@ -8974,7 +9016,7 @@ function repeatGroups(groups, multiples) {
|
|
|
8974
9016
|
}
|
|
8975
9017
|
}
|
|
8976
9018
|
|
|
8977
|
-
// bazel-out/
|
|
9019
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
8978
9020
|
var OpKind;
|
|
8979
9021
|
(function(OpKind2) {
|
|
8980
9022
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -9132,7 +9174,7 @@ var TemplateKind;
|
|
|
9132
9174
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
9133
9175
|
})(TemplateKind || (TemplateKind = {}));
|
|
9134
9176
|
|
|
9135
|
-
// bazel-out/
|
|
9177
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
9136
9178
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
9137
9179
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
9138
9180
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -9160,7 +9202,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
9160
9202
|
return expr[UsesVarOffset] === true;
|
|
9161
9203
|
}
|
|
9162
9204
|
|
|
9163
|
-
// bazel-out/
|
|
9205
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
9164
9206
|
function createStatementOp(statement) {
|
|
9165
9207
|
return __spreadValues({
|
|
9166
9208
|
kind: OpKind.Statement,
|
|
@@ -9182,7 +9224,7 @@ var NEW_OP = {
|
|
|
9182
9224
|
next: null
|
|
9183
9225
|
};
|
|
9184
9226
|
|
|
9185
|
-
// bazel-out/
|
|
9227
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
9186
9228
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
9187
9229
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
9188
9230
|
kind: OpKind.InterpolateText,
|
|
@@ -9371,7 +9413,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
|
|
|
9371
9413
|
}, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
|
|
9372
9414
|
}
|
|
9373
9415
|
|
|
9374
|
-
// bazel-out/
|
|
9416
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
9375
9417
|
var _a;
|
|
9376
9418
|
var _b;
|
|
9377
9419
|
var _c;
|
|
@@ -10289,7 +10331,7 @@ function isStringLiteral(expr) {
|
|
|
10289
10331
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
10290
10332
|
}
|
|
10291
10333
|
|
|
10292
|
-
// bazel-out/
|
|
10334
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
10293
10335
|
var _OpList = class {
|
|
10294
10336
|
constructor() {
|
|
10295
10337
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -10480,14 +10522,14 @@ var OpList = _OpList;
|
|
|
10480
10522
|
_OpList.nextListId = 0;
|
|
10481
10523
|
})();
|
|
10482
10524
|
|
|
10483
|
-
// bazel-out/
|
|
10525
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
10484
10526
|
var SlotHandle = class {
|
|
10485
10527
|
constructor() {
|
|
10486
10528
|
this.slot = null;
|
|
10487
10529
|
}
|
|
10488
10530
|
};
|
|
10489
10531
|
|
|
10490
|
-
// bazel-out/
|
|
10532
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
10491
10533
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
10492
10534
|
OpKind.Element,
|
|
10493
10535
|
OpKind.ElementStart,
|
|
@@ -10800,7 +10842,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
10800
10842
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
10801
10843
|
}
|
|
10802
10844
|
|
|
10803
|
-
// bazel-out/
|
|
10845
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
10804
10846
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
10805
10847
|
return __spreadValues(__spreadValues({
|
|
10806
10848
|
kind: OpKind.HostProperty,
|
|
@@ -10814,10 +10856,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
10814
10856
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
10815
10857
|
}
|
|
10816
10858
|
|
|
10817
|
-
// bazel-out/
|
|
10859
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
10818
10860
|
var CTX_REF = "CTX_REF_MARKER";
|
|
10819
10861
|
|
|
10820
|
-
// bazel-out/
|
|
10862
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
10821
10863
|
var CompilationJobKind;
|
|
10822
10864
|
(function(CompilationJobKind2) {
|
|
10823
10865
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -10925,7 +10967,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
10925
10967
|
}
|
|
10926
10968
|
};
|
|
10927
10969
|
|
|
10928
|
-
// bazel-out/
|
|
10970
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
10929
10971
|
function deleteAnyCasts(job) {
|
|
10930
10972
|
for (const unit of job.units) {
|
|
10931
10973
|
for (const op of unit.ops()) {
|
|
@@ -10943,7 +10985,7 @@ function removeAnys(e) {
|
|
|
10943
10985
|
return e;
|
|
10944
10986
|
}
|
|
10945
10987
|
|
|
10946
|
-
// bazel-out/
|
|
10988
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
10947
10989
|
function applyI18nExpressions(job) {
|
|
10948
10990
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
10949
10991
|
for (const unit of job.units) {
|
|
@@ -10986,7 +11028,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
10986
11028
|
return false;
|
|
10987
11029
|
}
|
|
10988
11030
|
|
|
10989
|
-
// bazel-out/
|
|
11031
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
10990
11032
|
function assignI18nSlotDependencies(job) {
|
|
10991
11033
|
for (const unit of job.units) {
|
|
10992
11034
|
let updateOp = unit.update.head;
|
|
@@ -11031,7 +11073,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
11031
11073
|
}
|
|
11032
11074
|
}
|
|
11033
11075
|
|
|
11034
|
-
// bazel-out/
|
|
11076
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
11035
11077
|
function createOpXrefMap(unit) {
|
|
11036
11078
|
const map = /* @__PURE__ */ new Map();
|
|
11037
11079
|
for (const op of unit.create) {
|
|
@@ -11046,7 +11088,7 @@ function createOpXrefMap(unit) {
|
|
|
11046
11088
|
return map;
|
|
11047
11089
|
}
|
|
11048
11090
|
|
|
11049
|
-
// bazel-out/
|
|
11091
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
11050
11092
|
function extractAttributes(job) {
|
|
11051
11093
|
for (const unit of job.units) {
|
|
11052
11094
|
const elements = createOpXrefMap(unit);
|
|
@@ -11175,7 +11217,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
11175
11217
|
}
|
|
11176
11218
|
}
|
|
11177
11219
|
|
|
11178
|
-
// bazel-out/
|
|
11220
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
11179
11221
|
function lookupElement2(elements, xref) {
|
|
11180
11222
|
const el = elements.get(xref);
|
|
11181
11223
|
if (el === void 0) {
|
|
@@ -11232,7 +11274,7 @@ function specializeBindings(job) {
|
|
|
11232
11274
|
}
|
|
11233
11275
|
}
|
|
11234
11276
|
|
|
11235
|
-
// bazel-out/
|
|
11277
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
11236
11278
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
11237
11279
|
Identifiers.attribute,
|
|
11238
11280
|
Identifiers.classProp,
|
|
@@ -11304,7 +11346,7 @@ function chainOperationsInList(opList) {
|
|
|
11304
11346
|
}
|
|
11305
11347
|
}
|
|
11306
11348
|
|
|
11307
|
-
// bazel-out/
|
|
11349
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
11308
11350
|
function collapseSingletonInterpolations(job) {
|
|
11309
11351
|
for (const unit of job.units) {
|
|
11310
11352
|
for (const op of unit.update) {
|
|
@@ -11316,7 +11358,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
11316
11358
|
}
|
|
11317
11359
|
}
|
|
11318
11360
|
|
|
11319
|
-
// bazel-out/
|
|
11361
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
11320
11362
|
function generateConditionalExpressions(job) {
|
|
11321
11363
|
for (const unit of job.units) {
|
|
11322
11364
|
for (const op of unit.ops()) {
|
|
@@ -11353,7 +11395,7 @@ function generateConditionalExpressions(job) {
|
|
|
11353
11395
|
}
|
|
11354
11396
|
}
|
|
11355
11397
|
|
|
11356
|
-
// bazel-out/
|
|
11398
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
11357
11399
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
11358
11400
|
["&&", BinaryOperator.And],
|
|
11359
11401
|
[">", BinaryOperator.Bigger],
|
|
@@ -11410,7 +11452,7 @@ function literalOrArrayLiteral(value) {
|
|
|
11410
11452
|
return literal(value);
|
|
11411
11453
|
}
|
|
11412
11454
|
|
|
11413
|
-
// bazel-out/
|
|
11455
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
11414
11456
|
function collectElementConsts(job) {
|
|
11415
11457
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
11416
11458
|
for (const unit of job.units) {
|
|
@@ -11579,7 +11621,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
11579
11621
|
return literalArr(attrArray);
|
|
11580
11622
|
}
|
|
11581
11623
|
|
|
11582
|
-
// bazel-out/
|
|
11624
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
11583
11625
|
function convertI18nBindings(job) {
|
|
11584
11626
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
11585
11627
|
for (const unit of job.units) {
|
|
@@ -11620,7 +11662,7 @@ function convertI18nBindings(job) {
|
|
|
11620
11662
|
}
|
|
11621
11663
|
}
|
|
11622
11664
|
|
|
11623
|
-
// bazel-out/
|
|
11665
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
11624
11666
|
function resolveDeferDepsFns(job) {
|
|
11625
11667
|
var _a2;
|
|
11626
11668
|
for (const unit of job.units) {
|
|
@@ -11645,7 +11687,7 @@ function resolveDeferDepsFns(job) {
|
|
|
11645
11687
|
}
|
|
11646
11688
|
}
|
|
11647
11689
|
|
|
11648
|
-
// bazel-out/
|
|
11690
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
11649
11691
|
function createI18nContexts(job) {
|
|
11650
11692
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
11651
11693
|
for (const unit of job.units) {
|
|
@@ -11723,7 +11765,7 @@ function createI18nContexts(job) {
|
|
|
11723
11765
|
}
|
|
11724
11766
|
}
|
|
11725
11767
|
|
|
11726
|
-
// bazel-out/
|
|
11768
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
11727
11769
|
function deduplicateTextBindings(job) {
|
|
11728
11770
|
const seen = /* @__PURE__ */ new Map();
|
|
11729
11771
|
for (const unit of job.units) {
|
|
@@ -11745,7 +11787,7 @@ function deduplicateTextBindings(job) {
|
|
|
11745
11787
|
}
|
|
11746
11788
|
}
|
|
11747
11789
|
|
|
11748
|
-
// bazel-out/
|
|
11790
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
11749
11791
|
function configureDeferInstructions(job) {
|
|
11750
11792
|
for (const unit of job.units) {
|
|
11751
11793
|
for (const op of unit.create) {
|
|
@@ -11762,7 +11804,7 @@ function configureDeferInstructions(job) {
|
|
|
11762
11804
|
}
|
|
11763
11805
|
}
|
|
11764
11806
|
|
|
11765
|
-
// bazel-out/
|
|
11807
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
11766
11808
|
function resolveDeferTargetNames(job) {
|
|
11767
11809
|
const scopes = /* @__PURE__ */ new Map();
|
|
11768
11810
|
function getScopeForView2(view) {
|
|
@@ -11856,7 +11898,7 @@ var Scope = class {
|
|
|
11856
11898
|
}
|
|
11857
11899
|
};
|
|
11858
11900
|
|
|
11859
|
-
// bazel-out/
|
|
11901
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
11860
11902
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
11861
11903
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
11862
11904
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -11883,7 +11925,7 @@ function collapseEmptyInstructions(job) {
|
|
|
11883
11925
|
}
|
|
11884
11926
|
}
|
|
11885
11927
|
|
|
11886
|
-
// bazel-out/
|
|
11928
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
11887
11929
|
function expandSafeReads(job) {
|
|
11888
11930
|
for (const unit of job.units) {
|
|
11889
11931
|
for (const op of unit.ops()) {
|
|
@@ -12019,7 +12061,7 @@ function ternaryTransform(e) {
|
|
|
12019
12061
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
12020
12062
|
}
|
|
12021
12063
|
|
|
12022
|
-
// bazel-out/
|
|
12064
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
12023
12065
|
var ESCAPE = "\uFFFD";
|
|
12024
12066
|
var ELEMENT_MARKER = "#";
|
|
12025
12067
|
var TEMPLATE_MARKER = "*";
|
|
@@ -12155,7 +12197,7 @@ function formatValue(value) {
|
|
|
12155
12197
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
12156
12198
|
}
|
|
12157
12199
|
|
|
12158
|
-
// bazel-out/
|
|
12200
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
12159
12201
|
function generateAdvance(job) {
|
|
12160
12202
|
for (const unit of job.units) {
|
|
12161
12203
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -12198,7 +12240,7 @@ function generateAdvance(job) {
|
|
|
12198
12240
|
}
|
|
12199
12241
|
}
|
|
12200
12242
|
|
|
12201
|
-
// bazel-out/
|
|
12243
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
12202
12244
|
function generateProjectionDefs(job) {
|
|
12203
12245
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
12204
12246
|
const selectors = [];
|
|
@@ -12222,7 +12264,7 @@ function generateProjectionDefs(job) {
|
|
|
12222
12264
|
}
|
|
12223
12265
|
}
|
|
12224
12266
|
|
|
12225
|
-
// bazel-out/
|
|
12267
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
12226
12268
|
function generateVariables(job) {
|
|
12227
12269
|
recursivelyProcessView(job.root, null);
|
|
12228
12270
|
}
|
|
@@ -12340,7 +12382,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
|
|
|
12340
12382
|
return newOps;
|
|
12341
12383
|
}
|
|
12342
12384
|
|
|
12343
|
-
// bazel-out/
|
|
12385
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
12344
12386
|
function collectConstExpressions(job) {
|
|
12345
12387
|
for (const unit of job.units) {
|
|
12346
12388
|
for (const op of unit.ops()) {
|
|
@@ -12354,7 +12396,7 @@ function collectConstExpressions(job) {
|
|
|
12354
12396
|
}
|
|
12355
12397
|
}
|
|
12356
12398
|
|
|
12357
|
-
// bazel-out/
|
|
12399
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
12358
12400
|
var STYLE_DOT = "style.";
|
|
12359
12401
|
var CLASS_DOT = "class.";
|
|
12360
12402
|
var STYLE_BANG = "style!";
|
|
@@ -12412,7 +12454,7 @@ function parseProperty(name) {
|
|
|
12412
12454
|
return { property: property2, suffix };
|
|
12413
12455
|
}
|
|
12414
12456
|
|
|
12415
|
-
// bazel-out/
|
|
12457
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12416
12458
|
function mapLiteral(obj, quoted = false) {
|
|
12417
12459
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12418
12460
|
key,
|
|
@@ -12421,7 +12463,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12421
12463
|
})));
|
|
12422
12464
|
}
|
|
12423
12465
|
|
|
12424
|
-
// bazel-out/
|
|
12466
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
12425
12467
|
var IcuSerializerVisitor = class {
|
|
12426
12468
|
visitText(text2) {
|
|
12427
12469
|
return text2.value;
|
|
@@ -12455,7 +12497,7 @@ function serializeIcuNode(icu) {
|
|
|
12455
12497
|
return icu.visit(serializer);
|
|
12456
12498
|
}
|
|
12457
12499
|
|
|
12458
|
-
// bazel-out/
|
|
12500
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
12459
12501
|
var NodeWithI18n = class {
|
|
12460
12502
|
constructor(sourceSpan, i18n2) {
|
|
12461
12503
|
this.sourceSpan = sourceSpan;
|
|
@@ -12578,7 +12620,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
12578
12620
|
return result;
|
|
12579
12621
|
}
|
|
12580
12622
|
|
|
12581
|
-
// bazel-out/
|
|
12623
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12582
12624
|
var NAMED_ENTITIES = {
|
|
12583
12625
|
"AElig": "\xC6",
|
|
12584
12626
|
"AMP": "&",
|
|
@@ -14709,7 +14751,7 @@ var NAMED_ENTITIES = {
|
|
|
14709
14751
|
var NGSP_UNICODE = "\uE500";
|
|
14710
14752
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14711
14753
|
|
|
14712
|
-
// bazel-out/
|
|
14754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14713
14755
|
var TokenError = class extends ParseError {
|
|
14714
14756
|
constructor(errorMsg, tokenType, span) {
|
|
14715
14757
|
super(span, errorMsg);
|
|
@@ -15699,7 +15741,7 @@ var CursorError = class {
|
|
|
15699
15741
|
}
|
|
15700
15742
|
};
|
|
15701
15743
|
|
|
15702
|
-
// bazel-out/
|
|
15744
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15703
15745
|
var TreeError = class extends ParseError {
|
|
15704
15746
|
static create(elementName, span, msg) {
|
|
15705
15747
|
return new TreeError(elementName, span, msg);
|
|
@@ -16127,7 +16169,7 @@ function decodeEntity(match, entity) {
|
|
|
16127
16169
|
return match;
|
|
16128
16170
|
}
|
|
16129
16171
|
|
|
16130
|
-
// bazel-out/
|
|
16172
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
16131
16173
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
16132
16174
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
16133
16175
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -16267,7 +16309,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
16267
16309
|
return result;
|
|
16268
16310
|
}
|
|
16269
16311
|
|
|
16270
|
-
// bazel-out/
|
|
16312
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
16271
16313
|
var TokenType;
|
|
16272
16314
|
(function(TokenType2) {
|
|
16273
16315
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -16628,7 +16670,7 @@ function parseIntAutoRadix(text2) {
|
|
|
16628
16670
|
return result;
|
|
16629
16671
|
}
|
|
16630
16672
|
|
|
16631
|
-
// bazel-out/
|
|
16673
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
16632
16674
|
var SplitInterpolation = class {
|
|
16633
16675
|
constructor(strings, expressions, offsets) {
|
|
16634
16676
|
this.strings = strings;
|
|
@@ -17512,7 +17554,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
17512
17554
|
return offsetMap;
|
|
17513
17555
|
}
|
|
17514
17556
|
|
|
17515
|
-
// bazel-out/
|
|
17557
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
17516
17558
|
var _SECURITY_SCHEMA;
|
|
17517
17559
|
function SECURITY_SCHEMA() {
|
|
17518
17560
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -17573,11 +17615,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
17573
17615
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
17574
17616
|
}
|
|
17575
17617
|
|
|
17576
|
-
// bazel-out/
|
|
17618
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
17577
17619
|
var ElementSchemaRegistry = class {
|
|
17578
17620
|
};
|
|
17579
17621
|
|
|
17580
|
-
// bazel-out/
|
|
17622
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
17581
17623
|
var BOOLEAN = "boolean";
|
|
17582
17624
|
var NUMBER = "number";
|
|
17583
17625
|
var STRING = "string";
|
|
@@ -17960,7 +18002,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
17960
18002
|
}
|
|
17961
18003
|
}
|
|
17962
18004
|
|
|
17963
|
-
// bazel-out/
|
|
18005
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
17964
18006
|
var HtmlTagDefinition = class {
|
|
17965
18007
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
17966
18008
|
this.closedByChildren = {};
|
|
@@ -18096,7 +18138,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
18096
18138
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
18097
18139
|
}
|
|
18098
18140
|
|
|
18099
|
-
// bazel-out/
|
|
18141
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
18100
18142
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
18101
18143
|
"A": "LINK",
|
|
18102
18144
|
"B": "BOLD_TEXT",
|
|
@@ -18218,7 +18260,7 @@ var PlaceholderRegistry = class {
|
|
|
18218
18260
|
}
|
|
18219
18261
|
};
|
|
18220
18262
|
|
|
18221
|
-
// bazel-out/
|
|
18263
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
18222
18264
|
var _expParser = new Parser2(new Lexer());
|
|
18223
18265
|
function createI18nMessageFactory(interpolationConfig, containerBlocks, retainEmptyTokens) {
|
|
18224
18266
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks, retainEmptyTokens);
|
|
@@ -18413,14 +18455,14 @@ function extractPlaceholderName(input) {
|
|
|
18413
18455
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
18414
18456
|
}
|
|
18415
18457
|
|
|
18416
|
-
// bazel-out/
|
|
18458
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
18417
18459
|
var I18nError = class extends ParseError {
|
|
18418
18460
|
constructor(span, msg) {
|
|
18419
18461
|
super(span, msg);
|
|
18420
18462
|
}
|
|
18421
18463
|
};
|
|
18422
18464
|
|
|
18423
|
-
// bazel-out/
|
|
18465
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
18424
18466
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
18425
18467
|
"iframe|srcdoc",
|
|
18426
18468
|
"*|innerhtml",
|
|
@@ -18435,7 +18477,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
18435
18477
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
18436
18478
|
}
|
|
18437
18479
|
|
|
18438
|
-
// bazel-out/
|
|
18480
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
18439
18481
|
var setI18nRefs = (originalNodeMap) => {
|
|
18440
18482
|
return (trimmedNode, i18nNode) => {
|
|
18441
18483
|
var _a2;
|
|
@@ -18609,7 +18651,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
18609
18651
|
return jsDocComment(tags);
|
|
18610
18652
|
}
|
|
18611
18653
|
|
|
18612
|
-
// bazel-out/
|
|
18654
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
18613
18655
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
18614
18656
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
18615
18657
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -18660,7 +18702,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
18660
18702
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
18661
18703
|
}
|
|
18662
18704
|
|
|
18663
|
-
// bazel-out/
|
|
18705
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
18664
18706
|
function createLocalizeStatements(variable2, message, params) {
|
|
18665
18707
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
18666
18708
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -18749,7 +18791,7 @@ function createEmptyMessagePart(location) {
|
|
|
18749
18791
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
18750
18792
|
}
|
|
18751
18793
|
|
|
18752
|
-
// bazel-out/
|
|
18794
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
18753
18795
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
18754
18796
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
18755
18797
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -18920,7 +18962,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
18920
18962
|
return variable(name);
|
|
18921
18963
|
}
|
|
18922
18964
|
|
|
18923
|
-
// bazel-out/
|
|
18965
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
18924
18966
|
function convertI18nText(job) {
|
|
18925
18967
|
var _a2, _b2, _c2;
|
|
18926
18968
|
for (const unit of job.units) {
|
|
@@ -18990,7 +19032,7 @@ function convertI18nText(job) {
|
|
|
18990
19032
|
}
|
|
18991
19033
|
}
|
|
18992
19034
|
|
|
18993
|
-
// bazel-out/
|
|
19035
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
18994
19036
|
function liftLocalRefs(job) {
|
|
18995
19037
|
for (const unit of job.units) {
|
|
18996
19038
|
for (const op of unit.create) {
|
|
@@ -19020,7 +19062,7 @@ function serializeLocalRefs(refs) {
|
|
|
19020
19062
|
return literalArr(constRefs);
|
|
19021
19063
|
}
|
|
19022
19064
|
|
|
19023
|
-
// bazel-out/
|
|
19065
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
19024
19066
|
function emitNamespaceChanges(job) {
|
|
19025
19067
|
for (const unit of job.units) {
|
|
19026
19068
|
let activeNamespace = Namespace.HTML;
|
|
@@ -19036,7 +19078,7 @@ function emitNamespaceChanges(job) {
|
|
|
19036
19078
|
}
|
|
19037
19079
|
}
|
|
19038
19080
|
|
|
19039
|
-
// bazel-out/
|
|
19081
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
19040
19082
|
function parse(value) {
|
|
19041
19083
|
const styles = [];
|
|
19042
19084
|
let i = 0;
|
|
@@ -19130,7 +19172,7 @@ function parseExtractedStyles(job) {
|
|
|
19130
19172
|
}
|
|
19131
19173
|
}
|
|
19132
19174
|
|
|
19133
|
-
// bazel-out/
|
|
19175
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
19134
19176
|
function nameFunctionsAndVariables(job) {
|
|
19135
19177
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
19136
19178
|
}
|
|
@@ -19274,7 +19316,7 @@ function stripImportant(name) {
|
|
|
19274
19316
|
return name;
|
|
19275
19317
|
}
|
|
19276
19318
|
|
|
19277
|
-
// bazel-out/
|
|
19319
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
19278
19320
|
function mergeNextContextExpressions(job) {
|
|
19279
19321
|
for (const unit of job.units) {
|
|
19280
19322
|
for (const op of unit.create) {
|
|
@@ -19321,7 +19363,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
19321
19363
|
}
|
|
19322
19364
|
}
|
|
19323
19365
|
|
|
19324
|
-
// bazel-out/
|
|
19366
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
19325
19367
|
var CONTAINER_TAG = "ng-container";
|
|
19326
19368
|
function generateNgContainerOps(job) {
|
|
19327
19369
|
for (const unit of job.units) {
|
|
@@ -19338,7 +19380,7 @@ function generateNgContainerOps(job) {
|
|
|
19338
19380
|
}
|
|
19339
19381
|
}
|
|
19340
19382
|
|
|
19341
|
-
// bazel-out/
|
|
19383
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
19342
19384
|
function lookupElement3(elements, xref) {
|
|
19343
19385
|
const el = elements.get(xref);
|
|
19344
19386
|
if (el === void 0) {
|
|
@@ -19368,7 +19410,7 @@ function disableBindings(job) {
|
|
|
19368
19410
|
}
|
|
19369
19411
|
}
|
|
19370
19412
|
|
|
19371
|
-
// bazel-out/
|
|
19413
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
19372
19414
|
function generateNullishCoalesceExpressions(job) {
|
|
19373
19415
|
for (const unit of job.units) {
|
|
19374
19416
|
for (const op of unit.ops()) {
|
|
@@ -19384,7 +19426,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
19384
19426
|
}
|
|
19385
19427
|
}
|
|
19386
19428
|
|
|
19387
|
-
// bazel-out/
|
|
19429
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
19388
19430
|
function kindTest(kind) {
|
|
19389
19431
|
return (op) => op.kind === kind;
|
|
19390
19432
|
}
|
|
@@ -19474,7 +19516,7 @@ function keepLast(ops) {
|
|
|
19474
19516
|
return ops.slice(ops.length - 1);
|
|
19475
19517
|
}
|
|
19476
19518
|
|
|
19477
|
-
// bazel-out/
|
|
19519
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
19478
19520
|
function removeContentSelectors(job) {
|
|
19479
19521
|
for (const unit of job.units) {
|
|
19480
19522
|
const elements = createOpXrefMap(unit);
|
|
@@ -19501,7 +19543,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
19501
19543
|
return el;
|
|
19502
19544
|
}
|
|
19503
19545
|
|
|
19504
|
-
// bazel-out/
|
|
19546
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
19505
19547
|
function createPipes(job) {
|
|
19506
19548
|
for (const unit of job.units) {
|
|
19507
19549
|
processPipeBindingsInView(unit);
|
|
@@ -19549,7 +19591,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
19549
19591
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
19550
19592
|
}
|
|
19551
19593
|
|
|
19552
|
-
// bazel-out/
|
|
19594
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
19553
19595
|
function createVariadicPipes(job) {
|
|
19554
19596
|
for (const unit of job.units) {
|
|
19555
19597
|
for (const op of unit.update) {
|
|
@@ -19566,7 +19608,7 @@ function createVariadicPipes(job) {
|
|
|
19566
19608
|
}
|
|
19567
19609
|
}
|
|
19568
19610
|
|
|
19569
|
-
// bazel-out/
|
|
19611
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
19570
19612
|
function propagateI18nBlocks(job) {
|
|
19571
19613
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
19572
19614
|
}
|
|
@@ -19620,7 +19662,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
19620
19662
|
}
|
|
19621
19663
|
}
|
|
19622
19664
|
|
|
19623
|
-
// bazel-out/
|
|
19665
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
19624
19666
|
function extractPureFunctions(job) {
|
|
19625
19667
|
for (const view of job.units) {
|
|
19626
19668
|
for (const op of view.ops()) {
|
|
@@ -19662,7 +19704,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
19662
19704
|
}
|
|
19663
19705
|
};
|
|
19664
19706
|
|
|
19665
|
-
// bazel-out/
|
|
19707
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
19666
19708
|
function generatePureLiteralStructures(job) {
|
|
19667
19709
|
for (const unit of job.units) {
|
|
19668
19710
|
for (const op of unit.update) {
|
|
@@ -19709,7 +19751,7 @@ function transformLiteralMap(expr) {
|
|
|
19709
19751
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
19710
19752
|
}
|
|
19711
19753
|
|
|
19712
|
-
// bazel-out/
|
|
19754
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
19713
19755
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
19714
19756
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
19715
19757
|
}
|
|
@@ -20241,7 +20283,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
20241
20283
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
20242
20284
|
}
|
|
20243
20285
|
|
|
20244
|
-
// bazel-out/
|
|
20286
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
20245
20287
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
20246
20288
|
["window", Identifiers.resolveWindow],
|
|
20247
20289
|
["document", Identifiers.resolveDocument],
|
|
@@ -20606,7 +20648,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
20606
20648
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
20607
20649
|
}
|
|
20608
20650
|
|
|
20609
|
-
// bazel-out/
|
|
20651
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
20610
20652
|
function removeEmptyBindings(job) {
|
|
20611
20653
|
for (const unit of job.units) {
|
|
20612
20654
|
for (const op of unit.update) {
|
|
@@ -20627,7 +20669,7 @@ function removeEmptyBindings(job) {
|
|
|
20627
20669
|
}
|
|
20628
20670
|
}
|
|
20629
20671
|
|
|
20630
|
-
// bazel-out/
|
|
20672
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
20631
20673
|
function removeI18nContexts(job) {
|
|
20632
20674
|
for (const unit of job.units) {
|
|
20633
20675
|
for (const op of unit.create) {
|
|
@@ -20643,7 +20685,7 @@ function removeI18nContexts(job) {
|
|
|
20643
20685
|
}
|
|
20644
20686
|
}
|
|
20645
20687
|
|
|
20646
|
-
// bazel-out/
|
|
20688
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
20647
20689
|
function removeUnusedI18nAttributesOps(job) {
|
|
20648
20690
|
for (const unit of job.units) {
|
|
20649
20691
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -20665,7 +20707,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
20665
20707
|
}
|
|
20666
20708
|
}
|
|
20667
20709
|
|
|
20668
|
-
// bazel-out/
|
|
20710
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
20669
20711
|
function resolveContexts(job) {
|
|
20670
20712
|
for (const unit of job.units) {
|
|
20671
20713
|
processLexicalScope(unit, unit.create);
|
|
@@ -20707,7 +20749,7 @@ function processLexicalScope(view, ops) {
|
|
|
20707
20749
|
}
|
|
20708
20750
|
}
|
|
20709
20751
|
|
|
20710
|
-
// bazel-out/
|
|
20752
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
20711
20753
|
function resolveDollarEvent(job) {
|
|
20712
20754
|
for (const unit of job.units) {
|
|
20713
20755
|
transformDollarEvent(unit.create);
|
|
@@ -20730,7 +20772,7 @@ function transformDollarEvent(ops) {
|
|
|
20730
20772
|
}
|
|
20731
20773
|
}
|
|
20732
20774
|
|
|
20733
|
-
// bazel-out/
|
|
20775
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
20734
20776
|
function resolveI18nElementPlaceholders(job) {
|
|
20735
20777
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
20736
20778
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -20909,7 +20951,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
20909
20951
|
params.set(placeholder, values);
|
|
20910
20952
|
}
|
|
20911
20953
|
|
|
20912
|
-
// bazel-out/
|
|
20954
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
20913
20955
|
function resolveI18nExpressionPlaceholders(job) {
|
|
20914
20956
|
var _a2;
|
|
20915
20957
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -20962,7 +21004,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
20962
21004
|
}
|
|
20963
21005
|
}
|
|
20964
21006
|
|
|
20965
|
-
// bazel-out/
|
|
21007
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
20966
21008
|
function resolveNames(job) {
|
|
20967
21009
|
for (const unit of job.units) {
|
|
20968
21010
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -21040,7 +21082,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
21040
21082
|
}
|
|
21041
21083
|
}
|
|
21042
21084
|
|
|
21043
|
-
// bazel-out/
|
|
21085
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
21044
21086
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
21045
21087
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
21046
21088
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -21110,7 +21152,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
21110
21152
|
return securityContext;
|
|
21111
21153
|
}
|
|
21112
21154
|
|
|
21113
|
-
// bazel-out/
|
|
21155
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
21114
21156
|
function transformTwoWayBindingSet(job) {
|
|
21115
21157
|
for (const unit of job.units) {
|
|
21116
21158
|
for (const op of unit.create) {
|
|
@@ -21133,7 +21175,7 @@ function transformTwoWayBindingSet(job) {
|
|
|
21133
21175
|
}
|
|
21134
21176
|
}
|
|
21135
21177
|
|
|
21136
|
-
// bazel-out/
|
|
21178
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
21137
21179
|
function saveAndRestoreView(job) {
|
|
21138
21180
|
for (const unit of job.units) {
|
|
21139
21181
|
unit.create.prepend([
|
|
@@ -21178,7 +21220,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
21178
21220
|
}
|
|
21179
21221
|
}
|
|
21180
21222
|
|
|
21181
|
-
// bazel-out/
|
|
21223
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
21182
21224
|
function allocateSlots(job) {
|
|
21183
21225
|
const slotMap = /* @__PURE__ */ new Map();
|
|
21184
21226
|
for (const unit of job.units) {
|
|
@@ -21203,7 +21245,7 @@ function allocateSlots(job) {
|
|
|
21203
21245
|
}
|
|
21204
21246
|
}
|
|
21205
21247
|
|
|
21206
|
-
// bazel-out/
|
|
21248
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
21207
21249
|
function specializeStyleBindings(job) {
|
|
21208
21250
|
for (const unit of job.units) {
|
|
21209
21251
|
for (const op of unit.update) {
|
|
@@ -21233,7 +21275,7 @@ function specializeStyleBindings(job) {
|
|
|
21233
21275
|
}
|
|
21234
21276
|
}
|
|
21235
21277
|
|
|
21236
|
-
// bazel-out/
|
|
21278
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
21237
21279
|
function generateTemporaryVariables(job) {
|
|
21238
21280
|
for (const unit of job.units) {
|
|
21239
21281
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -21291,7 +21333,7 @@ function assignName(names, expr) {
|
|
|
21291
21333
|
expr.name = name;
|
|
21292
21334
|
}
|
|
21293
21335
|
|
|
21294
|
-
// bazel-out/
|
|
21336
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
21295
21337
|
function generateTrackFns(job) {
|
|
21296
21338
|
for (const unit of job.units) {
|
|
21297
21339
|
for (const op of unit.create) {
|
|
@@ -21324,7 +21366,7 @@ function generateTrackFns(job) {
|
|
|
21324
21366
|
}
|
|
21325
21367
|
}
|
|
21326
21368
|
|
|
21327
|
-
// bazel-out/
|
|
21369
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
21328
21370
|
function optimizeTrackFns(job) {
|
|
21329
21371
|
for (const unit of job.units) {
|
|
21330
21372
|
for (const op of unit.create) {
|
|
@@ -21374,7 +21416,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
21374
21416
|
return true;
|
|
21375
21417
|
}
|
|
21376
21418
|
|
|
21377
|
-
// bazel-out/
|
|
21419
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
21378
21420
|
function generateTrackVariables(job) {
|
|
21379
21421
|
for (const unit of job.units) {
|
|
21380
21422
|
for (const op of unit.create) {
|
|
@@ -21395,7 +21437,7 @@ function generateTrackVariables(job) {
|
|
|
21395
21437
|
}
|
|
21396
21438
|
}
|
|
21397
21439
|
|
|
21398
|
-
// bazel-out/
|
|
21440
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
21399
21441
|
function countVariables(job) {
|
|
21400
21442
|
for (const unit of job.units) {
|
|
21401
21443
|
let varCount = 0;
|
|
@@ -21508,7 +21550,7 @@ function isSingletonInterpolation(expr) {
|
|
|
21508
21550
|
return true;
|
|
21509
21551
|
}
|
|
21510
21552
|
|
|
21511
|
-
// bazel-out/
|
|
21553
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
21512
21554
|
function optimizeVariables(job) {
|
|
21513
21555
|
for (const unit of job.units) {
|
|
21514
21556
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -21760,7 +21802,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
21760
21802
|
}
|
|
21761
21803
|
}
|
|
21762
21804
|
|
|
21763
|
-
// bazel-out/
|
|
21805
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
21764
21806
|
function wrapI18nIcus(job) {
|
|
21765
21807
|
for (const unit of job.units) {
|
|
21766
21808
|
let currentI18nOp = null;
|
|
@@ -21790,7 +21832,7 @@ function wrapI18nIcus(job) {
|
|
|
21790
21832
|
}
|
|
21791
21833
|
}
|
|
21792
21834
|
|
|
21793
|
-
// bazel-out/
|
|
21835
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
|
|
21794
21836
|
function optimizeStoreLet(job) {
|
|
21795
21837
|
const letUsedExternally = /* @__PURE__ */ new Set();
|
|
21796
21838
|
for (const unit of job.units) {
|
|
@@ -21809,7 +21851,7 @@ function optimizeStoreLet(job) {
|
|
|
21809
21851
|
}
|
|
21810
21852
|
}
|
|
21811
21853
|
|
|
21812
|
-
// bazel-out/
|
|
21854
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
|
|
21813
21855
|
function removeIllegalLetReferences(job) {
|
|
21814
21856
|
for (const unit of job.units) {
|
|
21815
21857
|
for (const op of unit.update) {
|
|
@@ -21826,7 +21868,7 @@ function removeIllegalLetReferences(job) {
|
|
|
21826
21868
|
}
|
|
21827
21869
|
}
|
|
21828
21870
|
|
|
21829
|
-
// bazel-out/
|
|
21871
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
|
|
21830
21872
|
function generateLocalLetReferences(job) {
|
|
21831
21873
|
for (const unit of job.units) {
|
|
21832
21874
|
for (const op of unit.update) {
|
|
@@ -21844,7 +21886,7 @@ function generateLocalLetReferences(job) {
|
|
|
21844
21886
|
}
|
|
21845
21887
|
}
|
|
21846
21888
|
|
|
21847
|
-
// bazel-out/
|
|
21889
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
21848
21890
|
var phases = [
|
|
21849
21891
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
21850
21892
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -22001,7 +22043,7 @@ function emitHostBindingFunction(job) {
|
|
|
22001
22043
|
);
|
|
22002
22044
|
}
|
|
22003
22045
|
|
|
22004
|
-
// bazel-out/
|
|
22046
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
22005
22047
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
22006
22048
|
var domSchema = new DomElementSchemaRegistry();
|
|
22007
22049
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -22759,7 +22801,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
22759
22801
|
return null;
|
|
22760
22802
|
}
|
|
22761
22803
|
|
|
22762
|
-
// bazel-out/
|
|
22804
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
22763
22805
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
22764
22806
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
22765
22807
|
}
|
|
@@ -22879,7 +22921,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
22879
22921
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
22880
22922
|
}
|
|
22881
22923
|
|
|
22882
|
-
// bazel-out/
|
|
22924
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
22883
22925
|
var HtmlParser = class extends Parser {
|
|
22884
22926
|
constructor() {
|
|
22885
22927
|
super(getHtmlTagDefinition);
|
|
@@ -22889,7 +22931,7 @@ var HtmlParser = class extends Parser {
|
|
|
22889
22931
|
}
|
|
22890
22932
|
};
|
|
22891
22933
|
|
|
22892
|
-
// bazel-out/
|
|
22934
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
22893
22935
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
22894
22936
|
var ATTRIBUTE_PREFIX = "attr";
|
|
22895
22937
|
var CLASS_PREFIX = "class";
|
|
@@ -23243,7 +23285,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
23243
23285
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
23244
23286
|
}
|
|
23245
23287
|
|
|
23246
|
-
// bazel-out/
|
|
23288
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
23247
23289
|
function isStyleUrlResolvable(url) {
|
|
23248
23290
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
23249
23291
|
return false;
|
|
@@ -23252,7 +23294,7 @@ function isStyleUrlResolvable(url) {
|
|
|
23252
23294
|
}
|
|
23253
23295
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
23254
23296
|
|
|
23255
|
-
// bazel-out/
|
|
23297
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
23256
23298
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
23257
23299
|
var LINK_ELEMENT = "link";
|
|
23258
23300
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -23322,7 +23364,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
23322
23364
|
return selectAttr;
|
|
23323
23365
|
}
|
|
23324
23366
|
|
|
23325
|
-
// bazel-out/
|
|
23367
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
23326
23368
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
23327
23369
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
23328
23370
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -23645,7 +23687,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
23645
23687
|
return expression.slice(start, end);
|
|
23646
23688
|
}
|
|
23647
23689
|
|
|
23648
|
-
// bazel-out/
|
|
23690
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
23649
23691
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
23650
23692
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
23651
23693
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -23909,7 +23951,7 @@ function parseDeferredTime(value) {
|
|
|
23909
23951
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
23910
23952
|
}
|
|
23911
23953
|
|
|
23912
|
-
// bazel-out/
|
|
23954
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
23913
23955
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
23914
23956
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
23915
23957
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -24044,7 +24086,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
24044
24086
|
return { triggers, prefetchTriggers };
|
|
24045
24087
|
}
|
|
24046
24088
|
|
|
24047
|
-
// bazel-out/
|
|
24089
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
24048
24090
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
24049
24091
|
var KW_BIND_IDX = 1;
|
|
24050
24092
|
var KW_LET_IDX = 2;
|
|
@@ -24511,7 +24553,7 @@ function textContents(node) {
|
|
|
24511
24553
|
}
|
|
24512
24554
|
}
|
|
24513
24555
|
|
|
24514
|
-
// bazel-out/
|
|
24556
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
24515
24557
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
24516
24558
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
24517
24559
|
var _a2, _b2, _c2;
|
|
@@ -24605,7 +24647,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
|
|
|
24605
24647
|
return new BindingParser(new Parser2(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
|
|
24606
24648
|
}
|
|
24607
24649
|
|
|
24608
|
-
// bazel-out/
|
|
24650
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24609
24651
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24610
24652
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
24611
24653
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -24996,7 +25038,7 @@ function compileDeferResolverFunction(meta) {
|
|
|
24996
25038
|
return arrowFn([], literalArr(depExpressions));
|
|
24997
25039
|
}
|
|
24998
25040
|
|
|
24999
|
-
// bazel-out/
|
|
25041
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
25000
25042
|
var R3TargetBinder = class {
|
|
25001
25043
|
constructor(directiveMatcher) {
|
|
25002
25044
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25643,11 +25685,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25643
25685
|
return templateEntities;
|
|
25644
25686
|
}
|
|
25645
25687
|
|
|
25646
|
-
// bazel-out/
|
|
25688
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25647
25689
|
var ResourceLoader = class {
|
|
25648
25690
|
};
|
|
25649
25691
|
|
|
25650
|
-
// bazel-out/
|
|
25692
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25651
25693
|
var CompilerFacadeImpl = class {
|
|
25652
25694
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
25653
25695
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -26225,10 +26267,10 @@ function publishFacade(global) {
|
|
|
26225
26267
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26226
26268
|
}
|
|
26227
26269
|
|
|
26228
|
-
// bazel-out/
|
|
26229
|
-
var VERSION2 = new Version("18.2.
|
|
26270
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26271
|
+
var VERSION2 = new Version("18.2.8");
|
|
26230
26272
|
|
|
26231
|
-
// bazel-out/
|
|
26273
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26232
26274
|
var _I18N_ATTR = "i18n";
|
|
26233
26275
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26234
26276
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26544,7 +26586,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26544
26586
|
return { meaning, description, id: id.trim() };
|
|
26545
26587
|
}
|
|
26546
26588
|
|
|
26547
|
-
// bazel-out/
|
|
26589
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26548
26590
|
var XmlTagDefinition = class {
|
|
26549
26591
|
constructor() {
|
|
26550
26592
|
this.closedByParent = false;
|
|
@@ -26569,7 +26611,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26569
26611
|
return _TAG_DEFINITION;
|
|
26570
26612
|
}
|
|
26571
26613
|
|
|
26572
|
-
// bazel-out/
|
|
26614
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26573
26615
|
var XmlParser = class extends Parser {
|
|
26574
26616
|
constructor() {
|
|
26575
26617
|
super(getXmlTagDefinition);
|
|
@@ -26579,7 +26621,7 @@ var XmlParser = class extends Parser {
|
|
|
26579
26621
|
}
|
|
26580
26622
|
};
|
|
26581
26623
|
|
|
26582
|
-
// bazel-out/
|
|
26624
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26583
26625
|
var _VERSION = "1.2";
|
|
26584
26626
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26585
26627
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -26861,7 +26903,7 @@ function getCtypeForTag(tag) {
|
|
|
26861
26903
|
}
|
|
26862
26904
|
}
|
|
26863
26905
|
|
|
26864
|
-
// bazel-out/
|
|
26906
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
26865
26907
|
var _VERSION2 = "2.0";
|
|
26866
26908
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
26867
26909
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27192,7 +27234,7 @@ function getTypeForTag(tag) {
|
|
|
27192
27234
|
}
|
|
27193
27235
|
}
|
|
27194
27236
|
|
|
27195
|
-
// bazel-out/
|
|
27237
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27196
27238
|
var MessageBundle = class {
|
|
27197
27239
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null, _preserveWhitespace = true) {
|
|
27198
27240
|
this._htmlParser = _htmlParser;
|
|
@@ -27276,7 +27318,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27276
27318
|
}
|
|
27277
27319
|
};
|
|
27278
27320
|
|
|
27279
|
-
// bazel-out/
|
|
27321
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27280
27322
|
var FactoryTarget2;
|
|
27281
27323
|
(function(FactoryTarget3) {
|
|
27282
27324
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27286,7 +27328,7 @@ var FactoryTarget2;
|
|
|
27286
27328
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27287
27329
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27288
27330
|
|
|
27289
|
-
// bazel-out/
|
|
27331
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27290
27332
|
function compileClassMetadata(metadata) {
|
|
27291
27333
|
const fnCall = internalCompileClassMetadata(metadata);
|
|
27292
27334
|
return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
|
|
@@ -27320,7 +27362,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
|
|
|
27320
27362
|
return arrowFn([], literalArr(dynamicImports));
|
|
27321
27363
|
}
|
|
27322
27364
|
|
|
27323
|
-
// bazel-out/
|
|
27365
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27324
27366
|
function compileClassDebugInfo(debugInfo) {
|
|
27325
27367
|
const debugInfoObject = {
|
|
27326
27368
|
className: debugInfo.className
|
|
@@ -27337,13 +27379,13 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27337
27379
|
return iife.callFn([]);
|
|
27338
27380
|
}
|
|
27339
27381
|
|
|
27340
|
-
// bazel-out/
|
|
27382
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27341
27383
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27342
27384
|
var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
|
|
27343
27385
|
function compileDeclareClassMetadata(metadata) {
|
|
27344
27386
|
const definitionMap = new DefinitionMap();
|
|
27345
27387
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27346
|
-
definitionMap.set("version", literal("18.2.
|
|
27388
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27347
27389
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27348
27390
|
definitionMap.set("type", metadata.type);
|
|
27349
27391
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27362,7 +27404,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27362
27404
|
callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
|
|
27363
27405
|
callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
|
|
27364
27406
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
27365
|
-
definitionMap.set("version", literal("18.2.
|
|
27407
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27366
27408
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27367
27409
|
definitionMap.set("type", metadata.type);
|
|
27368
27410
|
definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -27370,7 +27412,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27370
27412
|
return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
|
|
27371
27413
|
}
|
|
27372
27414
|
|
|
27373
|
-
// bazel-out/
|
|
27415
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27374
27416
|
function toOptionalLiteralArray(values, mapper) {
|
|
27375
27417
|
if (values === null || values.length === 0) {
|
|
27376
27418
|
return null;
|
|
@@ -27418,7 +27460,7 @@ function compileDependency(dep) {
|
|
|
27418
27460
|
return depMeta.toLiteralMap();
|
|
27419
27461
|
}
|
|
27420
27462
|
|
|
27421
|
-
// bazel-out/
|
|
27463
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27422
27464
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27423
27465
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27424
27466
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27430,7 +27472,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27430
27472
|
const definitionMap = new DefinitionMap();
|
|
27431
27473
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27432
27474
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27433
|
-
definitionMap.set("version", literal("18.2.
|
|
27475
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27434
27476
|
definitionMap.set("type", meta.type.value);
|
|
27435
27477
|
if (meta.isStandalone) {
|
|
27436
27478
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27592,7 +27634,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27592
27634
|
}));
|
|
27593
27635
|
}
|
|
27594
27636
|
|
|
27595
|
-
// bazel-out/
|
|
27637
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27596
27638
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27597
27639
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27598
27640
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27743,12 +27785,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27743
27785
|
}
|
|
27744
27786
|
};
|
|
27745
27787
|
|
|
27746
|
-
// bazel-out/
|
|
27788
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27747
27789
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27748
27790
|
function compileDeclareFactoryFunction(meta) {
|
|
27749
27791
|
const definitionMap = new DefinitionMap();
|
|
27750
27792
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27751
|
-
definitionMap.set("version", literal("18.2.
|
|
27793
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27752
27794
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27753
27795
|
definitionMap.set("type", meta.type.value);
|
|
27754
27796
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27760,7 +27802,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27760
27802
|
};
|
|
27761
27803
|
}
|
|
27762
27804
|
|
|
27763
|
-
// bazel-out/
|
|
27805
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27764
27806
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27765
27807
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27766
27808
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27771,7 +27813,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27771
27813
|
function createInjectableDefinitionMap(meta) {
|
|
27772
27814
|
const definitionMap = new DefinitionMap();
|
|
27773
27815
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27774
|
-
definitionMap.set("version", literal("18.2.
|
|
27816
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27775
27817
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27776
27818
|
definitionMap.set("type", meta.type.value);
|
|
27777
27819
|
if (meta.providedIn !== void 0) {
|
|
@@ -27798,7 +27840,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27798
27840
|
return definitionMap;
|
|
27799
27841
|
}
|
|
27800
27842
|
|
|
27801
|
-
// bazel-out/
|
|
27843
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27802
27844
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27803
27845
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27804
27846
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27809,7 +27851,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27809
27851
|
function createInjectorDefinitionMap(meta) {
|
|
27810
27852
|
const definitionMap = new DefinitionMap();
|
|
27811
27853
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27812
|
-
definitionMap.set("version", literal("18.2.
|
|
27854
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27813
27855
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27814
27856
|
definitionMap.set("type", meta.type.value);
|
|
27815
27857
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27819,7 +27861,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27819
27861
|
return definitionMap;
|
|
27820
27862
|
}
|
|
27821
27863
|
|
|
27822
|
-
// bazel-out/
|
|
27864
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27823
27865
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27824
27866
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27825
27867
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -27833,7 +27875,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27833
27875
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
27834
27876
|
}
|
|
27835
27877
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
27836
|
-
definitionMap.set("version", literal("18.2.
|
|
27878
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27837
27879
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27838
27880
|
definitionMap.set("type", meta.type.value);
|
|
27839
27881
|
if (meta.bootstrap.length > 0) {
|
|
@@ -27857,7 +27899,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27857
27899
|
return definitionMap;
|
|
27858
27900
|
}
|
|
27859
27901
|
|
|
27860
|
-
// bazel-out/
|
|
27902
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
27861
27903
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
27862
27904
|
function compileDeclarePipeFromMetadata(meta) {
|
|
27863
27905
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -27868,7 +27910,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
27868
27910
|
function createPipeDefinitionMap(meta) {
|
|
27869
27911
|
const definitionMap = new DefinitionMap();
|
|
27870
27912
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
27871
|
-
definitionMap.set("version", literal("18.2.
|
|
27913
|
+
definitionMap.set("version", literal("18.2.8"));
|
|
27872
27914
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27873
27915
|
definitionMap.set("type", meta.type.value);
|
|
27874
27916
|
if (meta.isStandalone) {
|
|
@@ -27881,16 +27923,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
27881
27923
|
return definitionMap;
|
|
27882
27924
|
}
|
|
27883
27925
|
|
|
27884
|
-
// bazel-out/
|
|
27926
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
27885
27927
|
publishFacade(_global);
|
|
27886
27928
|
|
|
27887
|
-
// bazel-out/
|
|
27888
|
-
var VERSION3 = new Version("18.2.
|
|
27929
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
27930
|
+
var VERSION3 = new Version("18.2.8");
|
|
27889
27931
|
|
|
27890
|
-
// bazel-out/
|
|
27932
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
27891
27933
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
27892
27934
|
|
|
27893
|
-
// bazel-out/
|
|
27935
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
27894
27936
|
var ErrorCode;
|
|
27895
27937
|
(function(ErrorCode2) {
|
|
27896
27938
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -27985,7 +28027,7 @@ var ErrorCode;
|
|
|
27985
28027
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
27986
28028
|
})(ErrorCode || (ErrorCode = {}));
|
|
27987
28029
|
|
|
27988
|
-
// bazel-out/
|
|
28030
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
27989
28031
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
27990
28032
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
27991
28033
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -27997,15 +28039,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
27997
28039
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
27998
28040
|
]);
|
|
27999
28041
|
|
|
28000
|
-
// bazel-out/
|
|
28042
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28001
28043
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
28002
28044
|
|
|
28003
|
-
// bazel-out/
|
|
28045
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
28004
28046
|
function ngErrorCode(code) {
|
|
28005
28047
|
return parseInt("-99" + code);
|
|
28006
28048
|
}
|
|
28007
28049
|
|
|
28008
|
-
// bazel-out/
|
|
28050
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
28009
28051
|
var FatalDiagnosticError = class extends Error {
|
|
28010
28052
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
28011
28053
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -28066,10 +28108,10 @@ function isFatalDiagnosticError(err) {
|
|
|
28066
28108
|
return err._isFatalDiagnosticError === true;
|
|
28067
28109
|
}
|
|
28068
28110
|
|
|
28069
|
-
// bazel-out/
|
|
28111
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
28070
28112
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
28071
28113
|
|
|
28072
|
-
// bazel-out/
|
|
28114
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
28073
28115
|
var ExtendedTemplateDiagnosticName;
|
|
28074
28116
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
28075
28117
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -28086,7 +28128,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
28086
28128
|
ExtendedTemplateDiagnosticName2["UNUSED_LET_DECLARATION"] = "unusedLetDeclaration";
|
|
28087
28129
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
28088
28130
|
|
|
28089
|
-
// bazel-out/
|
|
28131
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
28090
28132
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
28091
28133
|
var TS = /\.tsx?$/i;
|
|
28092
28134
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28187,7 +28229,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28187
28229
|
return redirectInfo.unredirected;
|
|
28188
28230
|
}
|
|
28189
28231
|
|
|
28190
|
-
// bazel-out/
|
|
28232
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28191
28233
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28192
28234
|
const exports = reflector.getExportsOfModule(file);
|
|
28193
28235
|
if (exports === null) {
|
|
@@ -28207,7 +28249,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28207
28249
|
return foundExportName;
|
|
28208
28250
|
}
|
|
28209
28251
|
|
|
28210
|
-
// bazel-out/
|
|
28252
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28211
28253
|
var ImportFlags;
|
|
28212
28254
|
(function(ImportFlags2) {
|
|
28213
28255
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28438,7 +28480,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28438
28480
|
}
|
|
28439
28481
|
};
|
|
28440
28482
|
|
|
28441
|
-
// bazel-out/
|
|
28483
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28442
28484
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28443
28485
|
var UnifiedModulesAliasingHost = class {
|
|
28444
28486
|
constructor(unifiedModulesHost) {
|
|
@@ -28505,7 +28547,7 @@ var AliasStrategy = class {
|
|
|
28505
28547
|
}
|
|
28506
28548
|
};
|
|
28507
28549
|
|
|
28508
|
-
// bazel-out/
|
|
28550
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28509
28551
|
function relativePathBetween(from, to) {
|
|
28510
28552
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28511
28553
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28514,7 +28556,7 @@ function normalizeSeparators2(path4) {
|
|
|
28514
28556
|
return path4.replace(/\\/g, "/");
|
|
28515
28557
|
}
|
|
28516
28558
|
|
|
28517
|
-
// bazel-out/
|
|
28559
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28518
28560
|
var NoopImportRewriter = class {
|
|
28519
28561
|
rewriteSymbol(symbol, specifier) {
|
|
28520
28562
|
return symbol;
|
|
@@ -28567,7 +28609,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28567
28609
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28568
28610
|
}
|
|
28569
28611
|
|
|
28570
|
-
// bazel-out/
|
|
28612
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28571
28613
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28572
28614
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28573
28615
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28602,7 +28644,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28602
28644
|
throw Error("Angular compiler is incompatible with this version of the TypeScript compiler.\n\nIf you recently updated TypeScript and this issue surfaces now, consider downgrading.\n\nPlease report an issue on the Angular repositories when this issue surfaces and you are using a supposedly compatible TypeScript version.");
|
|
28603
28645
|
}
|
|
28604
28646
|
|
|
28605
|
-
// bazel-out/
|
|
28647
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28606
28648
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28607
28649
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28608
28650
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28643,13 +28685,13 @@ var DefaultImportTracker = class {
|
|
|
28643
28685
|
}
|
|
28644
28686
|
};
|
|
28645
28687
|
|
|
28646
|
-
// bazel-out/
|
|
28688
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28647
28689
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
28648
28690
|
|
|
28649
|
-
// bazel-out/
|
|
28691
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28650
28692
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28651
28693
|
|
|
28652
|
-
// bazel-out/
|
|
28694
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28653
28695
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28654
28696
|
function isDecoratorIdentifier(exp) {
|
|
28655
28697
|
return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
|
|
@@ -28672,7 +28714,7 @@ var ClassMemberAccessLevel;
|
|
|
28672
28714
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
28673
28715
|
var AmbientImport = {};
|
|
28674
28716
|
|
|
28675
|
-
// bazel-out/
|
|
28717
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28676
28718
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
28677
28719
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28678
28720
|
var _a2, _b2;
|
|
@@ -28856,7 +28898,7 @@ function extractModuleName(node) {
|
|
|
28856
28898
|
return node.moduleSpecifier.text;
|
|
28857
28899
|
}
|
|
28858
28900
|
|
|
28859
|
-
// bazel-out/
|
|
28901
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
28860
28902
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28861
28903
|
function isNamedClassDeclaration(node) {
|
|
28862
28904
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -28880,7 +28922,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
28880
28922
|
}
|
|
28881
28923
|
}
|
|
28882
28924
|
|
|
28883
|
-
// bazel-out/
|
|
28925
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28884
28926
|
var TypeScriptReflectionHost = class {
|
|
28885
28927
|
constructor(checker, isLocalCompilation = false) {
|
|
28886
28928
|
this.checker = checker;
|
|
@@ -29367,7 +29409,7 @@ function getExportedName(decl, originalId) {
|
|
|
29367
29409
|
}
|
|
29368
29410
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29369
29411
|
|
|
29370
|
-
// bazel-out/
|
|
29412
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29371
29413
|
var AssumeEager = "AssumeEager";
|
|
29372
29414
|
var DeferredSymbolTracker = class {
|
|
29373
29415
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29443,7 +29485,7 @@ var DeferredSymbolTracker = class {
|
|
|
29443
29485
|
return false;
|
|
29444
29486
|
}
|
|
29445
29487
|
const symbolsMap = this.imports.get(importDecl);
|
|
29446
|
-
for (const
|
|
29488
|
+
for (const refs of symbolsMap.values()) {
|
|
29447
29489
|
if (refs === AssumeEager || refs.size > 0) {
|
|
29448
29490
|
return false;
|
|
29449
29491
|
}
|
|
@@ -29462,7 +29504,7 @@ var DeferredSymbolTracker = class {
|
|
|
29462
29504
|
lookupIdentifiersInSourceFile(name, importDecl) {
|
|
29463
29505
|
const results = /* @__PURE__ */ new Set();
|
|
29464
29506
|
const visit2 = (node) => {
|
|
29465
|
-
if (node === importDecl) {
|
|
29507
|
+
if (node === importDecl || import_typescript13.default.isTypeNode(node)) {
|
|
29466
29508
|
return;
|
|
29467
29509
|
}
|
|
29468
29510
|
if (import_typescript13.default.isIdentifier(node) && node.text === name) {
|
|
@@ -29487,7 +29529,7 @@ var DeferredSymbolTracker = class {
|
|
|
29487
29529
|
}
|
|
29488
29530
|
};
|
|
29489
29531
|
|
|
29490
|
-
// bazel-out/
|
|
29532
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
29491
29533
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
29492
29534
|
var ImportedSymbolsTracker = class {
|
|
29493
29535
|
constructor() {
|
|
@@ -29557,7 +29599,7 @@ var ImportedSymbolsTracker = class {
|
|
|
29557
29599
|
}
|
|
29558
29600
|
};
|
|
29559
29601
|
|
|
29560
|
-
// bazel-out/
|
|
29602
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
29561
29603
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
29562
29604
|
var LocalCompilationExtraImportsTracker = class {
|
|
29563
29605
|
constructor(typeChecker) {
|
|
@@ -29608,7 +29650,7 @@ function removeQuotations(s) {
|
|
|
29608
29650
|
return s.substring(1, s.length - 1).trim();
|
|
29609
29651
|
}
|
|
29610
29652
|
|
|
29611
|
-
// bazel-out/
|
|
29653
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29612
29654
|
var Reference2 = class {
|
|
29613
29655
|
constructor(node, bestGuessOwningModule = null) {
|
|
29614
29656
|
this.node = node;
|
|
@@ -29677,7 +29719,7 @@ var Reference2 = class {
|
|
|
29677
29719
|
}
|
|
29678
29720
|
};
|
|
29679
29721
|
|
|
29680
|
-
// bazel-out/
|
|
29722
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29681
29723
|
var ModuleResolver = class {
|
|
29682
29724
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29683
29725
|
this.program = program;
|
|
@@ -29694,7 +29736,7 @@ var ModuleResolver = class {
|
|
|
29694
29736
|
}
|
|
29695
29737
|
};
|
|
29696
29738
|
|
|
29697
|
-
// bazel-out/
|
|
29739
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.mjs
|
|
29698
29740
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
29699
29741
|
function isAngularDecorator(decorator, isCore) {
|
|
29700
29742
|
return isCore || decorator.import !== null && decorator.import.from === "@angular/core";
|
|
@@ -29999,13 +30041,13 @@ function cloneClassElementWithModifiers(node, modifiers) {
|
|
|
29999
30041
|
return import_typescript21.default.setOriginalNode(clone, node);
|
|
30000
30042
|
}
|
|
30001
30043
|
|
|
30002
|
-
// bazel-out/
|
|
30044
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
30003
30045
|
var import_typescript94 = __toESM(require("typescript"), 1);
|
|
30004
30046
|
|
|
30005
|
-
// bazel-out/
|
|
30047
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30006
30048
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
30007
30049
|
|
|
30008
|
-
// bazel-out/
|
|
30050
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
30009
30051
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
30010
30052
|
var CORE_MODULE2 = "@angular/core";
|
|
30011
30053
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -30263,7 +30305,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
30263
30305
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
30264
30306
|
}
|
|
30265
30307
|
|
|
30266
|
-
// bazel-out/
|
|
30308
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
30267
30309
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
30268
30310
|
const deps = [];
|
|
30269
30311
|
const errors = [];
|
|
@@ -30407,10 +30449,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
30407
30449
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
30408
30450
|
}
|
|
30409
30451
|
|
|
30410
|
-
// bazel-out/
|
|
30452
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
30411
30453
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
30412
30454
|
|
|
30413
|
-
// bazel-out/
|
|
30455
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
30414
30456
|
var MetaKind;
|
|
30415
30457
|
(function(MetaKind2) {
|
|
30416
30458
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -30423,10 +30465,10 @@ var MatchSource;
|
|
|
30423
30465
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
30424
30466
|
})(MatchSource || (MatchSource = {}));
|
|
30425
30467
|
|
|
30426
|
-
// bazel-out/
|
|
30468
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30427
30469
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
30428
30470
|
|
|
30429
|
-
// bazel-out/
|
|
30471
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
30430
30472
|
var ClassPropertyMapping = class {
|
|
30431
30473
|
constructor(forwardMap) {
|
|
30432
30474
|
this.forwardMap = forwardMap;
|
|
@@ -30506,7 +30548,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30506
30548
|
return reverseMap;
|
|
30507
30549
|
}
|
|
30508
30550
|
|
|
30509
|
-
// bazel-out/
|
|
30551
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30510
30552
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30511
30553
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30512
30554
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -30702,7 +30744,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
30702
30744
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
30703
30745
|
}
|
|
30704
30746
|
|
|
30705
|
-
// bazel-out/
|
|
30747
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30706
30748
|
var DtsMetadataReader = class {
|
|
30707
30749
|
constructor(checker, reflector) {
|
|
30708
30750
|
this.checker = checker;
|
|
@@ -30886,7 +30928,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30886
30928
|
return result.length > 0 ? result : null;
|
|
30887
30929
|
}
|
|
30888
30930
|
|
|
30889
|
-
// bazel-out/
|
|
30931
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30890
30932
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30891
30933
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30892
30934
|
if (topMeta === null) {
|
|
@@ -30949,7 +30991,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30949
30991
|
});
|
|
30950
30992
|
}
|
|
30951
30993
|
|
|
30952
|
-
// bazel-out/
|
|
30994
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30953
30995
|
var LocalMetadataRegistry = class {
|
|
30954
30996
|
constructor() {
|
|
30955
30997
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -31006,7 +31048,7 @@ var CompoundMetadataRegistry = class {
|
|
|
31006
31048
|
}
|
|
31007
31049
|
};
|
|
31008
31050
|
|
|
31009
|
-
// bazel-out/
|
|
31051
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
31010
31052
|
var ResourceRegistry = class {
|
|
31011
31053
|
constructor() {
|
|
31012
31054
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -31071,7 +31113,7 @@ var ResourceRegistry = class {
|
|
|
31071
31113
|
}
|
|
31072
31114
|
};
|
|
31073
31115
|
|
|
31074
|
-
// bazel-out/
|
|
31116
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
31075
31117
|
var ExportedProviderStatusResolver = class {
|
|
31076
31118
|
constructor(metaReader) {
|
|
31077
31119
|
this.metaReader = metaReader;
|
|
@@ -31115,7 +31157,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
31115
31157
|
}
|
|
31116
31158
|
};
|
|
31117
31159
|
|
|
31118
|
-
// bazel-out/
|
|
31160
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
31119
31161
|
var EMPTY_ARRAY = [];
|
|
31120
31162
|
var HostDirectivesResolver = class {
|
|
31121
31163
|
constructor(metaReader) {
|
|
@@ -31180,10 +31222,10 @@ function resolveOutput(bindingName) {
|
|
|
31180
31222
|
return bindingName;
|
|
31181
31223
|
}
|
|
31182
31224
|
|
|
31183
|
-
// bazel-out/
|
|
31225
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31184
31226
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
31185
31227
|
|
|
31186
|
-
// bazel-out/
|
|
31228
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
31187
31229
|
var DynamicValue = class {
|
|
31188
31230
|
constructor(node, reason, code) {
|
|
31189
31231
|
this.node = node;
|
|
@@ -31273,7 +31315,7 @@ var DynamicValue = class {
|
|
|
31273
31315
|
}
|
|
31274
31316
|
};
|
|
31275
31317
|
|
|
31276
|
-
// bazel-out/
|
|
31318
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
31277
31319
|
var ResolvedModule = class {
|
|
31278
31320
|
constructor(exports, evaluate) {
|
|
31279
31321
|
this.exports = exports;
|
|
@@ -31303,7 +31345,7 @@ var EnumValue = class {
|
|
|
31303
31345
|
var KnownFn = class {
|
|
31304
31346
|
};
|
|
31305
31347
|
|
|
31306
|
-
// bazel-out/
|
|
31348
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
31307
31349
|
function describeResolvedType(value, maxDepth = 1) {
|
|
31308
31350
|
var _a2, _b2;
|
|
31309
31351
|
if (value === null) {
|
|
@@ -31436,10 +31478,10 @@ function getContainerNode(node) {
|
|
|
31436
31478
|
return node.getSourceFile();
|
|
31437
31479
|
}
|
|
31438
31480
|
|
|
31439
|
-
// bazel-out/
|
|
31481
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31440
31482
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
31441
31483
|
|
|
31442
|
-
// bazel-out/
|
|
31484
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
31443
31485
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
31444
31486
|
constructor(lhs) {
|
|
31445
31487
|
super();
|
|
@@ -31491,14 +31533,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31491
31533
|
}
|
|
31492
31534
|
};
|
|
31493
31535
|
|
|
31494
|
-
// bazel-out/
|
|
31536
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31495
31537
|
var SyntheticValue = class {
|
|
31496
31538
|
constructor(value) {
|
|
31497
31539
|
this.value = value;
|
|
31498
31540
|
}
|
|
31499
31541
|
};
|
|
31500
31542
|
|
|
31501
|
-
// bazel-out/
|
|
31543
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31502
31544
|
function literalBinaryOp(op) {
|
|
31503
31545
|
return { op, literal: true };
|
|
31504
31546
|
}
|
|
@@ -32073,7 +32115,7 @@ function owningModule(context, override = null) {
|
|
|
32073
32115
|
}
|
|
32074
32116
|
}
|
|
32075
32117
|
|
|
32076
|
-
// bazel-out/
|
|
32118
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
32077
32119
|
var PartialEvaluator = class {
|
|
32078
32120
|
constructor(host, checker, dependencyTracker) {
|
|
32079
32121
|
this.host = host;
|
|
@@ -32093,7 +32135,7 @@ var PartialEvaluator = class {
|
|
|
32093
32135
|
}
|
|
32094
32136
|
};
|
|
32095
32137
|
|
|
32096
|
-
// bazel-out/
|
|
32138
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
32097
32139
|
var CompilationMode;
|
|
32098
32140
|
(function(CompilationMode2) {
|
|
32099
32141
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -32107,7 +32149,7 @@ var HandlerPrecedence;
|
|
|
32107
32149
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
32108
32150
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
32109
32151
|
|
|
32110
|
-
// bazel-out/
|
|
32152
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
32111
32153
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
32112
32154
|
function aliasTransformFactory(exportStatements) {
|
|
32113
32155
|
return () => {
|
|
@@ -32132,10 +32174,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
32132
32174
|
};
|
|
32133
32175
|
}
|
|
32134
32176
|
|
|
32135
|
-
// bazel-out/
|
|
32177
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32136
32178
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
32137
32179
|
|
|
32138
|
-
// bazel-out/
|
|
32180
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
32139
32181
|
var PerfPhase;
|
|
32140
32182
|
(function(PerfPhase2) {
|
|
32141
32183
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -32205,7 +32247,7 @@ var PerfCheckpoint;
|
|
|
32205
32247
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
32206
32248
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
32207
32249
|
|
|
32208
|
-
// bazel-out/
|
|
32250
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
32209
32251
|
var NoopPerfRecorder = class {
|
|
32210
32252
|
eventCount() {
|
|
32211
32253
|
}
|
|
@@ -32222,7 +32264,7 @@ var NoopPerfRecorder = class {
|
|
|
32222
32264
|
};
|
|
32223
32265
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
32224
32266
|
|
|
32225
|
-
// bazel-out/
|
|
32267
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
32226
32268
|
function mark() {
|
|
32227
32269
|
return process.hrtime();
|
|
32228
32270
|
}
|
|
@@ -32231,7 +32273,7 @@ function timeSinceInMicros(mark2) {
|
|
|
32231
32273
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
32232
32274
|
}
|
|
32233
32275
|
|
|
32234
|
-
// bazel-out/
|
|
32276
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
32235
32277
|
var ActivePerfRecorder = class {
|
|
32236
32278
|
static zeroedToNow() {
|
|
32237
32279
|
return new ActivePerfRecorder(mark());
|
|
@@ -32325,7 +32367,7 @@ var DelegatingPerfRecorder = class {
|
|
|
32325
32367
|
}
|
|
32326
32368
|
};
|
|
32327
32369
|
|
|
32328
|
-
// bazel-out/
|
|
32370
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
32329
32371
|
var TraitState;
|
|
32330
32372
|
(function(TraitState2) {
|
|
32331
32373
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -32382,7 +32424,7 @@ var TraitImpl = class {
|
|
|
32382
32424
|
}
|
|
32383
32425
|
};
|
|
32384
32426
|
|
|
32385
|
-
// bazel-out/
|
|
32427
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
32386
32428
|
var TraitCompiler = class {
|
|
32387
32429
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
32388
32430
|
this.handlers = handlers;
|
|
@@ -32841,10 +32883,10 @@ function containsErrors(diagnostics) {
|
|
|
32841
32883
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
32842
32884
|
}
|
|
32843
32885
|
|
|
32844
|
-
// bazel-out/
|
|
32886
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
32845
32887
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
32846
32888
|
|
|
32847
|
-
// bazel-out/
|
|
32889
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
32848
32890
|
var Context = class {
|
|
32849
32891
|
constructor(isStatement) {
|
|
32850
32892
|
this.isStatement = isStatement;
|
|
@@ -32857,10 +32899,10 @@ var Context = class {
|
|
|
32857
32899
|
}
|
|
32858
32900
|
};
|
|
32859
32901
|
|
|
32860
|
-
// bazel-out/
|
|
32902
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32861
32903
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
32862
32904
|
|
|
32863
|
-
// bazel-out/
|
|
32905
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
32864
32906
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32865
32907
|
function createGenerateUniqueIdentifierHelper() {
|
|
32866
32908
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -32886,7 +32928,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
32886
32928
|
};
|
|
32887
32929
|
}
|
|
32888
32930
|
|
|
32889
|
-
// bazel-out/
|
|
32931
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
32890
32932
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32891
32933
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
32892
32934
|
return (ctx) => {
|
|
@@ -32953,7 +32995,7 @@ function isImportStatement(stmt) {
|
|
|
32953
32995
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
32954
32996
|
}
|
|
32955
32997
|
|
|
32956
|
-
// bazel-out/
|
|
32998
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
32957
32999
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
32958
33000
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
32959
33001
|
const requestHash = hashImportRequest(request);
|
|
@@ -32980,7 +33022,7 @@ function hashImportRequest(req) {
|
|
|
32980
33022
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}${req.unsafeAliasOverride ? ":" + req.unsafeAliasOverride : ""}`;
|
|
32981
33023
|
}
|
|
32982
33024
|
|
|
32983
|
-
// bazel-out/
|
|
33025
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
32984
33026
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
32985
33027
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
32986
33028
|
let candidateImportToBeUpdated = null;
|
|
@@ -33040,7 +33082,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
33040
33082
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
33041
33083
|
}
|
|
33042
33084
|
|
|
33043
|
-
// bazel-out/
|
|
33085
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
33044
33086
|
var presetImportManagerForceNamespaceImports = {
|
|
33045
33087
|
disableOriginalSourceFileReuse: true,
|
|
33046
33088
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -33258,7 +33300,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
33258
33300
|
}
|
|
33259
33301
|
}
|
|
33260
33302
|
|
|
33261
|
-
// bazel-out/
|
|
33303
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
33262
33304
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
33263
33305
|
[UnaryOperator.Minus, "-"],
|
|
33264
33306
|
[UnaryOperator.Plus, "+"]
|
|
@@ -33503,7 +33545,7 @@ function createRange(span) {
|
|
|
33503
33545
|
};
|
|
33504
33546
|
}
|
|
33505
33547
|
|
|
33506
|
-
// bazel-out/
|
|
33548
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
33507
33549
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
33508
33550
|
var INELIGIBLE = {};
|
|
33509
33551
|
function canEmitType(type, canEmit) {
|
|
@@ -33578,10 +33620,10 @@ var TypeEmitter = class {
|
|
|
33578
33620
|
}
|
|
33579
33621
|
};
|
|
33580
33622
|
|
|
33581
|
-
// bazel-out/
|
|
33623
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33582
33624
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33583
33625
|
|
|
33584
|
-
// bazel-out/
|
|
33626
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
33585
33627
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
33586
33628
|
function tsNumericExpression(value) {
|
|
33587
33629
|
if (value < 0) {
|
|
@@ -33591,7 +33633,7 @@ function tsNumericExpression(value) {
|
|
|
33591
33633
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
33592
33634
|
}
|
|
33593
33635
|
|
|
33594
|
-
// bazel-out/
|
|
33636
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33595
33637
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
33596
33638
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
33597
33639
|
}
|
|
@@ -33808,7 +33850,7 @@ var TypeTranslatorVisitor = class {
|
|
|
33808
33850
|
}
|
|
33809
33851
|
};
|
|
33810
33852
|
|
|
33811
|
-
// bazel-out/
|
|
33853
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
33812
33854
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
33813
33855
|
var PureAnnotation;
|
|
33814
33856
|
(function(PureAnnotation2) {
|
|
@@ -34011,7 +34053,7 @@ function attachComments(statement, leadingComments) {
|
|
|
34011
34053
|
}
|
|
34012
34054
|
}
|
|
34013
34055
|
|
|
34014
|
-
// bazel-out/
|
|
34056
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
34015
34057
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
34016
34058
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
34017
34059
|
}
|
|
@@ -34019,7 +34061,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
34019
34061
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
34020
34062
|
}
|
|
34021
34063
|
|
|
34022
|
-
// bazel-out/
|
|
34064
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
34023
34065
|
var DtsTransformRegistry = class {
|
|
34024
34066
|
constructor() {
|
|
34025
34067
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -34167,10 +34209,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
34167
34209
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
34168
34210
|
}
|
|
34169
34211
|
|
|
34170
|
-
// bazel-out/
|
|
34212
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34171
34213
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
34172
34214
|
|
|
34173
|
-
// bazel-out/
|
|
34215
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
34174
34216
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
34175
34217
|
function visit(node, visitor, context) {
|
|
34176
34218
|
return visitor._visit(node, context);
|
|
@@ -34231,7 +34273,7 @@ var Visitor = class {
|
|
|
34231
34273
|
}
|
|
34232
34274
|
};
|
|
34233
34275
|
|
|
34234
|
-
// bazel-out/
|
|
34276
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
34235
34277
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
34236
34278
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
34237
34279
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -34466,7 +34508,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
34466
34508
|
return array;
|
|
34467
34509
|
}
|
|
34468
34510
|
|
|
34469
|
-
// bazel-out/
|
|
34511
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
34470
34512
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
34471
34513
|
const context = [];
|
|
34472
34514
|
for (const decl of data) {
|
|
@@ -34675,7 +34717,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
34675
34717
|
}
|
|
34676
34718
|
}
|
|
34677
34719
|
|
|
34678
|
-
// bazel-out/
|
|
34720
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
34679
34721
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34680
34722
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
34681
34723
|
let resolved = null;
|
|
@@ -34725,7 +34767,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
34725
34767
|
return meta;
|
|
34726
34768
|
}
|
|
34727
34769
|
|
|
34728
|
-
// bazel-out/
|
|
34770
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
34729
34771
|
function compileNgFactoryDefField(metadata) {
|
|
34730
34772
|
const res = compileFactoryFunction(metadata);
|
|
34731
34773
|
return {
|
|
@@ -34747,7 +34789,7 @@ function compileDeclareFactory(metadata) {
|
|
|
34747
34789
|
};
|
|
34748
34790
|
}
|
|
34749
34791
|
|
|
34750
|
-
// bazel-out/
|
|
34792
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
34751
34793
|
var InjectableClassRegistry = class {
|
|
34752
34794
|
constructor(host, isCore) {
|
|
34753
34795
|
this.host = host;
|
|
@@ -34773,7 +34815,7 @@ var InjectableClassRegistry = class {
|
|
|
34773
34815
|
}
|
|
34774
34816
|
};
|
|
34775
34817
|
|
|
34776
|
-
// bazel-out/
|
|
34818
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
34777
34819
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34778
34820
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
34779
34821
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34859,7 +34901,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
34859
34901
|
return result.transformed[0];
|
|
34860
34902
|
}
|
|
34861
34903
|
|
|
34862
|
-
// bazel-out/
|
|
34904
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
34863
34905
|
var path = __toESM(require("path"), 1);
|
|
34864
34906
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
34865
34907
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34885,13 +34927,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
34885
34927
|
return null;
|
|
34886
34928
|
}
|
|
34887
34929
|
|
|
34888
|
-
// bazel-out/
|
|
34930
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
34889
34931
|
var NoopReferencesRegistry = class {
|
|
34890
34932
|
add(source, ...references) {
|
|
34891
34933
|
}
|
|
34892
34934
|
};
|
|
34893
34935
|
|
|
34894
|
-
// bazel-out/
|
|
34936
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
34895
34937
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
34896
34938
|
const schemas = [];
|
|
34897
34939
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -34920,7 +34962,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
34920
34962
|
return schemas;
|
|
34921
34963
|
}
|
|
34922
34964
|
|
|
34923
|
-
// bazel-out/
|
|
34965
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
34924
34966
|
function compileInputTransformFields(inputs) {
|
|
34925
34967
|
const extraFields = [];
|
|
34926
34968
|
for (const input of inputs) {
|
|
@@ -34937,17 +34979,17 @@ function compileInputTransformFields(inputs) {
|
|
|
34937
34979
|
return extraFields;
|
|
34938
34980
|
}
|
|
34939
34981
|
|
|
34940
|
-
// bazel-out/
|
|
34982
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/jit_declaration_registry.mjs
|
|
34941
34983
|
var JitDeclarationRegistry = class {
|
|
34942
34984
|
constructor() {
|
|
34943
34985
|
this.jitDeclarations = /* @__PURE__ */ new Set();
|
|
34944
34986
|
}
|
|
34945
34987
|
};
|
|
34946
34988
|
|
|
34947
|
-
// bazel-out/
|
|
34989
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
34948
34990
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
34949
34991
|
|
|
34950
|
-
// bazel-out/
|
|
34992
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
34951
34993
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
34952
34994
|
var SemanticSymbol = class {
|
|
34953
34995
|
constructor(decl) {
|
|
@@ -34963,7 +35005,7 @@ function getSymbolIdentifier(decl) {
|
|
|
34963
35005
|
return decl.name.text;
|
|
34964
35006
|
}
|
|
34965
35007
|
|
|
34966
|
-
// bazel-out/
|
|
35008
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
34967
35009
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
34968
35010
|
isPublicApiAffected() {
|
|
34969
35011
|
return false;
|
|
@@ -35105,10 +35147,10 @@ function getImportPath(expr) {
|
|
|
35105
35147
|
}
|
|
35106
35148
|
}
|
|
35107
35149
|
|
|
35108
|
-
// bazel-out/
|
|
35150
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35109
35151
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
35110
35152
|
|
|
35111
|
-
// bazel-out/
|
|
35153
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
35112
35154
|
function isSymbolEqual(a, b) {
|
|
35113
35155
|
if (a.decl === b.decl) {
|
|
35114
35156
|
return true;
|
|
@@ -35158,7 +35200,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
35158
35200
|
return true;
|
|
35159
35201
|
}
|
|
35160
35202
|
|
|
35161
|
-
// bazel-out/
|
|
35203
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
35162
35204
|
function extractSemanticTypeParameters(node) {
|
|
35163
35205
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
35164
35206
|
return null;
|
|
@@ -35180,14 +35222,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
35180
35222
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
35181
35223
|
}
|
|
35182
35224
|
|
|
35183
|
-
// bazel-out/
|
|
35225
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
35184
35226
|
var ComponentScopeKind;
|
|
35185
35227
|
(function(ComponentScopeKind2) {
|
|
35186
35228
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
35187
35229
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
35188
35230
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
35189
35231
|
|
|
35190
|
-
// bazel-out/
|
|
35232
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
35191
35233
|
var CompoundComponentScopeReader = class {
|
|
35192
35234
|
constructor(readers) {
|
|
35193
35235
|
this.readers = readers;
|
|
@@ -35212,7 +35254,7 @@ var CompoundComponentScopeReader = class {
|
|
|
35212
35254
|
}
|
|
35213
35255
|
};
|
|
35214
35256
|
|
|
35215
|
-
// bazel-out/
|
|
35257
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
35216
35258
|
var MetadataDtsModuleScopeResolver = class {
|
|
35217
35259
|
constructor(dtsMetaReader, aliasingHost) {
|
|
35218
35260
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -35287,10 +35329,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
35287
35329
|
}
|
|
35288
35330
|
};
|
|
35289
35331
|
|
|
35290
|
-
// bazel-out/
|
|
35332
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35291
35333
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
35292
35334
|
|
|
35293
|
-
// bazel-out/
|
|
35335
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
35294
35336
|
function getDiagnosticNode(ref, rawExpr) {
|
|
35295
35337
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
35296
35338
|
}
|
|
@@ -35316,7 +35358,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
35316
35358
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
35317
35359
|
}
|
|
35318
35360
|
|
|
35319
|
-
// bazel-out/
|
|
35361
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
35320
35362
|
var LocalModuleScopeRegistry = class {
|
|
35321
35363
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
35322
35364
|
this.localReader = localReader;
|
|
@@ -35657,7 +35699,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
35657
35699
|
]);
|
|
35658
35700
|
}
|
|
35659
35701
|
|
|
35660
|
-
// bazel-out/
|
|
35702
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
35661
35703
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
35662
35704
|
var TypeCheckScopeRegistry = class {
|
|
35663
35705
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -35737,10 +35779,10 @@ var TypeCheckScopeRegistry = class {
|
|
|
35737
35779
|
}
|
|
35738
35780
|
};
|
|
35739
35781
|
|
|
35740
|
-
// bazel-out/
|
|
35782
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35741
35783
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
35742
35784
|
|
|
35743
|
-
// bazel-out/
|
|
35785
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
35744
35786
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
35745
35787
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
35746
35788
|
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)}.`, [
|
|
@@ -35749,7 +35791,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
|
35749
35791
|
}
|
|
35750
35792
|
}
|
|
35751
35793
|
|
|
35752
|
-
// bazel-out/
|
|
35794
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
35753
35795
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
35754
35796
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
35755
35797
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -35818,7 +35860,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
35818
35860
|
return { api: matchingApi, apiReference, isRequired };
|
|
35819
35861
|
}
|
|
35820
35862
|
|
|
35821
|
-
// bazel-out/
|
|
35863
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
35822
35864
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
35823
35865
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
35824
35866
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -35836,7 +35878,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
35836
35878
|
return { alias };
|
|
35837
35879
|
}
|
|
35838
35880
|
|
|
35839
|
-
// bazel-out/
|
|
35881
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35840
35882
|
var INPUT_INITIALIZER_FN = {
|
|
35841
35883
|
functionName: "input",
|
|
35842
35884
|
owningModule: "@angular/core",
|
|
@@ -35868,7 +35910,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
35868
35910
|
};
|
|
35869
35911
|
}
|
|
35870
35912
|
|
|
35871
|
-
// bazel-out/
|
|
35913
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
35872
35914
|
var MODEL_INITIALIZER_FN = {
|
|
35873
35915
|
functionName: "model",
|
|
35874
35916
|
owningModule: "@angular/core",
|
|
@@ -35909,7 +35951,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
35909
35951
|
};
|
|
35910
35952
|
}
|
|
35911
35953
|
|
|
35912
|
-
// bazel-out/
|
|
35954
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
35913
35955
|
var allowedAccessLevels = [
|
|
35914
35956
|
ClassMemberAccessLevel.PublicWritable,
|
|
35915
35957
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -35953,7 +35995,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
35953
35995
|
};
|
|
35954
35996
|
}
|
|
35955
35997
|
|
|
35956
|
-
// bazel-out/
|
|
35998
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
35957
35999
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
35958
36000
|
var queryFunctionNames = [
|
|
35959
36001
|
"viewChild",
|
|
@@ -36037,7 +36079,7 @@ function parseDescendantsOption(value) {
|
|
|
36037
36079
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
36038
36080
|
}
|
|
36039
36081
|
|
|
36040
|
-
// bazel-out/
|
|
36082
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
36041
36083
|
var EMPTY_OBJECT = {};
|
|
36042
36084
|
var queryDecoratorNames = [
|
|
36043
36085
|
"ViewChild",
|
|
@@ -36837,7 +36879,7 @@ function toR3InputMetadata(mapping) {
|
|
|
36837
36879
|
};
|
|
36838
36880
|
}
|
|
36839
36881
|
|
|
36840
|
-
// bazel-out/
|
|
36882
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
36841
36883
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
36842
36884
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
36843
36885
|
super(decl);
|
|
@@ -36917,7 +36959,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
36917
36959
|
return isSymbolEqual(current, previous);
|
|
36918
36960
|
}
|
|
36919
36961
|
|
|
36920
|
-
// bazel-out/
|
|
36962
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
36921
36963
|
var FIELD_DECORATORS = [
|
|
36922
36964
|
"Input",
|
|
36923
36965
|
"Output",
|
|
@@ -37113,10 +37155,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
37113
37155
|
}
|
|
37114
37156
|
};
|
|
37115
37157
|
|
|
37116
|
-
// bazel-out/
|
|
37158
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37117
37159
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
37118
37160
|
|
|
37119
|
-
// bazel-out/
|
|
37161
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
37120
37162
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
37121
37163
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
37122
37164
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -37188,7 +37230,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
37188
37230
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
37189
37231
|
}
|
|
37190
37232
|
|
|
37191
|
-
// bazel-out/
|
|
37233
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
37192
37234
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
37193
37235
|
constructor(decl, hasProviders) {
|
|
37194
37236
|
super(decl);
|
|
@@ -37803,7 +37845,7 @@ function isSyntheticReference(ref) {
|
|
|
37803
37845
|
return ref.synthetic;
|
|
37804
37846
|
}
|
|
37805
37847
|
|
|
37806
|
-
// bazel-out/
|
|
37848
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
37807
37849
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
37808
37850
|
const name = ref.debugName || "(unknown)";
|
|
37809
37851
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -37826,7 +37868,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
37826
37868
|
return null;
|
|
37827
37869
|
}
|
|
37828
37870
|
|
|
37829
|
-
// bazel-out/
|
|
37871
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
37830
37872
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
37831
37873
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
37832
37874
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -38180,7 +38222,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
38180
38222
|
}));
|
|
38181
38223
|
}
|
|
38182
38224
|
|
|
38183
|
-
// bazel-out/
|
|
38225
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
38184
38226
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
38185
38227
|
constructor() {
|
|
38186
38228
|
super(...arguments);
|
|
@@ -38215,7 +38257,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
38215
38257
|
}
|
|
38216
38258
|
};
|
|
38217
38259
|
|
|
38218
|
-
// bazel-out/
|
|
38260
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
38219
38261
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
38220
38262
|
if (value instanceof Map) {
|
|
38221
38263
|
const name = value.get("name");
|
|
@@ -38292,7 +38334,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
38292
38334
|
return false;
|
|
38293
38335
|
}
|
|
38294
38336
|
|
|
38295
|
-
// bazel-out/
|
|
38337
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
38296
38338
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
38297
38339
|
var UpdateMode;
|
|
38298
38340
|
(function(UpdateMode2) {
|
|
@@ -38300,13 +38342,13 @@ var UpdateMode;
|
|
|
38300
38342
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
38301
38343
|
})(UpdateMode || (UpdateMode = {}));
|
|
38302
38344
|
|
|
38303
|
-
// bazel-out/
|
|
38345
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38304
38346
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
38305
38347
|
|
|
38306
|
-
// bazel-out/
|
|
38348
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38307
38349
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
38308
38350
|
|
|
38309
|
-
// bazel-out/
|
|
38351
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
38310
38352
|
var NgExtension = Symbol("NgExtension");
|
|
38311
38353
|
function isExtended(sf) {
|
|
38312
38354
|
return sf[NgExtension] !== void 0;
|
|
@@ -38366,13 +38408,13 @@ function retagTsFile(sf) {
|
|
|
38366
38408
|
}
|
|
38367
38409
|
}
|
|
38368
38410
|
|
|
38369
|
-
// bazel-out/
|
|
38411
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
38370
38412
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
38371
38413
|
function makeShimFileName(fileName, suffix) {
|
|
38372
38414
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
38373
38415
|
}
|
|
38374
38416
|
|
|
38375
|
-
// bazel-out/
|
|
38417
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
38376
38418
|
var ShimAdapter = class {
|
|
38377
38419
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
38378
38420
|
this.delegate = delegate;
|
|
@@ -38467,7 +38509,7 @@ var ShimAdapter = class {
|
|
|
38467
38509
|
}
|
|
38468
38510
|
};
|
|
38469
38511
|
|
|
38470
|
-
// bazel-out/
|
|
38512
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
38471
38513
|
var ShimReferenceTagger = class {
|
|
38472
38514
|
constructor(shimExtensions) {
|
|
38473
38515
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -38501,7 +38543,7 @@ var ShimReferenceTagger = class {
|
|
|
38501
38543
|
}
|
|
38502
38544
|
};
|
|
38503
38545
|
|
|
38504
|
-
// bazel-out/
|
|
38546
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
38505
38547
|
var DelegatingCompilerHost = class {
|
|
38506
38548
|
get jsDocParsingMode() {
|
|
38507
38549
|
return this.delegate.jsDocParsingMode;
|
|
@@ -38619,14 +38661,14 @@ var TsCreateProgramDriver = class {
|
|
|
38619
38661
|
}
|
|
38620
38662
|
};
|
|
38621
38663
|
|
|
38622
|
-
// bazel-out/
|
|
38664
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
38623
38665
|
var OptimizeFor;
|
|
38624
38666
|
(function(OptimizeFor2) {
|
|
38625
38667
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
38626
38668
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
38627
38669
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
38628
38670
|
|
|
38629
|
-
// bazel-out/
|
|
38671
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
38630
38672
|
var CompletionKind;
|
|
38631
38673
|
(function(CompletionKind2) {
|
|
38632
38674
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -38634,7 +38676,7 @@ var CompletionKind;
|
|
|
38634
38676
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
38635
38677
|
})(CompletionKind || (CompletionKind = {}));
|
|
38636
38678
|
|
|
38637
|
-
// bazel-out/
|
|
38679
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
38638
38680
|
var PotentialImportKind;
|
|
38639
38681
|
(function(PotentialImportKind2) {
|
|
38640
38682
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -38646,7 +38688,7 @@ var PotentialImportMode;
|
|
|
38646
38688
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
38647
38689
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
38648
38690
|
|
|
38649
|
-
// bazel-out/
|
|
38691
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
38650
38692
|
var SymbolKind;
|
|
38651
38693
|
(function(SymbolKind2) {
|
|
38652
38694
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -38663,7 +38705,7 @@ var SymbolKind;
|
|
|
38663
38705
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
38664
38706
|
})(SymbolKind || (SymbolKind = {}));
|
|
38665
38707
|
|
|
38666
|
-
// bazel-out/
|
|
38708
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
38667
38709
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
38668
38710
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
38669
38711
|
var _a2;
|
|
@@ -38774,7 +38816,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
38774
38816
|
);
|
|
38775
38817
|
}
|
|
38776
38818
|
|
|
38777
|
-
// bazel-out/
|
|
38819
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
38778
38820
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
38779
38821
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
38780
38822
|
function getTemplateId(clazz) {
|
|
@@ -38791,10 +38833,10 @@ function allocateTemplateId(sf) {
|
|
|
38791
38833
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
38792
38834
|
}
|
|
38793
38835
|
|
|
38794
|
-
// bazel-out/
|
|
38836
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38795
38837
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
38796
38838
|
|
|
38797
|
-
// bazel-out/
|
|
38839
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
38798
38840
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
38799
38841
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
38800
38842
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -38924,7 +38966,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
38924
38966
|
}) || false;
|
|
38925
38967
|
}
|
|
38926
38968
|
|
|
38927
|
-
// bazel-out/
|
|
38969
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38928
38970
|
var CompletionEngine = class {
|
|
38929
38971
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
38930
38972
|
this.tcb = tcb;
|
|
@@ -40201,10 +40243,10 @@ var MagicString = class {
|
|
|
40201
40243
|
}
|
|
40202
40244
|
};
|
|
40203
40245
|
|
|
40204
|
-
// bazel-out/
|
|
40246
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
40205
40247
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
40206
40248
|
|
|
40207
|
-
// bazel-out/
|
|
40249
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
40208
40250
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
40209
40251
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
40210
40252
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -40256,10 +40298,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
40256
40298
|
}
|
|
40257
40299
|
};
|
|
40258
40300
|
|
|
40259
|
-
// bazel-out/
|
|
40301
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40260
40302
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
40261
40303
|
|
|
40262
|
-
// bazel-out/
|
|
40304
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
40263
40305
|
var ReferenceEmitEnvironment = class {
|
|
40264
40306
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
40265
40307
|
this.importManager = importManager;
|
|
@@ -40289,7 +40331,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
40289
40331
|
}
|
|
40290
40332
|
};
|
|
40291
40333
|
|
|
40292
|
-
// bazel-out/
|
|
40334
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
40293
40335
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
40294
40336
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
40295
40337
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -40372,13 +40414,13 @@ function tsNumericExpression2(value) {
|
|
|
40372
40414
|
return import_typescript72.default.factory.createNumericLiteral(value);
|
|
40373
40415
|
}
|
|
40374
40416
|
|
|
40375
|
-
// bazel-out/
|
|
40417
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40376
40418
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
40377
40419
|
|
|
40378
|
-
// bazel-out/
|
|
40420
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40379
40421
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
40380
40422
|
|
|
40381
|
-
// bazel-out/
|
|
40423
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
40382
40424
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
40383
40425
|
var TypeParameterEmitter = class {
|
|
40384
40426
|
constructor(typeParameters, reflector) {
|
|
@@ -40456,7 +40498,7 @@ var TypeParameterEmitter = class {
|
|
|
40456
40498
|
}
|
|
40457
40499
|
};
|
|
40458
40500
|
|
|
40459
|
-
// bazel-out/
|
|
40501
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
40460
40502
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
40461
40503
|
Identifiers.InputSignalBrandWriteType
|
|
40462
40504
|
];
|
|
@@ -40548,7 +40590,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
40548
40590
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
40549
40591
|
}
|
|
40550
40592
|
|
|
40551
|
-
// bazel-out/
|
|
40593
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
40552
40594
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
40553
40595
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
40554
40596
|
const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -40671,7 +40713,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
40671
40713
|
});
|
|
40672
40714
|
}
|
|
40673
40715
|
|
|
40674
|
-
// bazel-out/
|
|
40716
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40675
40717
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
40676
40718
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
40677
40719
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -40743,7 +40785,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
40743
40785
|
}
|
|
40744
40786
|
};
|
|
40745
40787
|
|
|
40746
|
-
// bazel-out/
|
|
40788
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
40747
40789
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40748
40790
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
40749
40791
|
constructor(resolver) {
|
|
@@ -40943,7 +40985,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
40943
40985
|
});
|
|
40944
40986
|
}
|
|
40945
40987
|
|
|
40946
|
-
// bazel-out/
|
|
40988
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
40947
40989
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40948
40990
|
var TypeCheckShimGenerator = class {
|
|
40949
40991
|
constructor() {
|
|
@@ -40961,10 +41003,10 @@ var TypeCheckShimGenerator = class {
|
|
|
40961
41003
|
}
|
|
40962
41004
|
};
|
|
40963
41005
|
|
|
40964
|
-
// bazel-out/
|
|
41006
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40965
41007
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
40966
41008
|
|
|
40967
|
-
// bazel-out/
|
|
41009
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
40968
41010
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
40969
41011
|
function wrapForDiagnostics(expr) {
|
|
40970
41012
|
return import_typescript80.default.factory.createParenthesizedExpression(expr);
|
|
@@ -41019,7 +41061,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
41019
41061
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
41020
41062
|
}
|
|
41021
41063
|
|
|
41022
|
-
// bazel-out/
|
|
41064
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
41023
41065
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
41024
41066
|
var ANY_EXPRESSION = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNumericLiteral("0"), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
|
|
41025
41067
|
var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
|
|
@@ -41351,7 +41393,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
41351
41393
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
41352
41394
|
})();
|
|
41353
41395
|
|
|
41354
|
-
// bazel-out/
|
|
41396
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
41355
41397
|
var TcbGenericContextBehavior;
|
|
41356
41398
|
(function(TcbGenericContextBehavior2) {
|
|
41357
41399
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -42941,7 +42983,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
42941
42983
|
}
|
|
42942
42984
|
};
|
|
42943
42985
|
|
|
42944
|
-
// bazel-out/
|
|
42986
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
42945
42987
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
42946
42988
|
var TypeCheckFile = class extends Environment {
|
|
42947
42989
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -42989,7 +43031,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
42989
43031
|
}
|
|
42990
43032
|
};
|
|
42991
43033
|
|
|
42992
|
-
// bazel-out/
|
|
43034
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
42993
43035
|
var InliningMode;
|
|
42994
43036
|
(function(InliningMode2) {
|
|
42995
43037
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -43241,7 +43283,7 @@ var TypeCtorOp = class {
|
|
|
43241
43283
|
}
|
|
43242
43284
|
};
|
|
43243
43285
|
|
|
43244
|
-
// bazel-out/
|
|
43286
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
43245
43287
|
var LF_CHAR = 10;
|
|
43246
43288
|
var CR_CHAR = 13;
|
|
43247
43289
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -43282,7 +43324,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
43282
43324
|
return low - 1;
|
|
43283
43325
|
}
|
|
43284
43326
|
|
|
43285
|
-
// bazel-out/
|
|
43327
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
43286
43328
|
var TemplateSource = class {
|
|
43287
43329
|
constructor(mapping, file) {
|
|
43288
43330
|
this.mapping = mapping;
|
|
@@ -43333,7 +43375,7 @@ var TemplateSourceManager = class {
|
|
|
43333
43375
|
}
|
|
43334
43376
|
};
|
|
43335
43377
|
|
|
43336
|
-
// bazel-out/
|
|
43378
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
43337
43379
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
43338
43380
|
var SymbolBuilder = class {
|
|
43339
43381
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -43808,7 +43850,7 @@ var SymbolBuilder = class {
|
|
|
43808
43850
|
return this.getSymbol(expressionTarget);
|
|
43809
43851
|
}
|
|
43810
43852
|
let withSpan = expression.sourceSpan;
|
|
43811
|
-
if (expression instanceof PropertyWrite) {
|
|
43853
|
+
if (expression instanceof PropertyWrite || expression instanceof ASTWithName && !(expression instanceof SafePropertyRead)) {
|
|
43812
43854
|
withSpan = expression.nameSpan;
|
|
43813
43855
|
}
|
|
43814
43856
|
let node = null;
|
|
@@ -43849,6 +43891,8 @@ var SymbolBuilder = class {
|
|
|
43849
43891
|
let tsSymbol;
|
|
43850
43892
|
if (import_typescript85.default.isPropertyAccessExpression(node)) {
|
|
43851
43893
|
tsSymbol = this.getTypeChecker().getSymbolAtLocation(node.name);
|
|
43894
|
+
} else if (import_typescript85.default.isCallExpression(node)) {
|
|
43895
|
+
tsSymbol = this.getTypeChecker().getSymbolAtLocation(node.expression);
|
|
43852
43896
|
} else {
|
|
43853
43897
|
tsSymbol = this.getTypeChecker().getSymbolAtLocation(node);
|
|
43854
43898
|
}
|
|
@@ -43900,7 +43944,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
43900
43944
|
};
|
|
43901
43945
|
}
|
|
43902
43946
|
|
|
43903
|
-
// bazel-out/
|
|
43947
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
43904
43948
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
43905
43949
|
var TemplateTypeCheckerImpl = class {
|
|
43906
43950
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -44598,7 +44642,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
44598
44642
|
}
|
|
44599
44643
|
};
|
|
44600
44644
|
|
|
44601
|
-
// bazel-out/
|
|
44645
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
44602
44646
|
var EMPTY_ARRAY2 = [];
|
|
44603
44647
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
44604
44648
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -45624,7 +45668,7 @@ function isDefaultImport(node) {
|
|
|
45624
45668
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
45625
45669
|
}
|
|
45626
45670
|
|
|
45627
|
-
// bazel-out/
|
|
45671
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
45628
45672
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
45629
45673
|
var InjectableDecoratorHandler = class {
|
|
45630
45674
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -45855,7 +45899,7 @@ function getDep(dep, reflector) {
|
|
|
45855
45899
|
return meta;
|
|
45856
45900
|
}
|
|
45857
45901
|
|
|
45858
|
-
// bazel-out/
|
|
45902
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
45859
45903
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
45860
45904
|
var PipeSymbol = class extends SemanticSymbol {
|
|
45861
45905
|
constructor(decl, name) {
|
|
@@ -46011,7 +46055,7 @@ var PipeDecoratorHandler = class {
|
|
|
46011
46055
|
}
|
|
46012
46056
|
};
|
|
46013
46057
|
|
|
46014
|
-
// bazel-out/
|
|
46058
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform_api.mjs
|
|
46015
46059
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
46016
46060
|
function createSyntheticAngularCoreDecoratorAccess(factory11, importManager, ngClassDecorator, sourceFile, decoratorName) {
|
|
46017
46061
|
const classDecoratorIdentifier = import_typescript92.default.isIdentifier(ngClassDecorator.identifier) ? ngClassDecorator.identifier : ngClassDecorator.identifier.expression;
|
|
@@ -46028,7 +46072,7 @@ function castAsAny(factory11, expr) {
|
|
|
46028
46072
|
return factory11.createAsExpression(expr, factory11.createKeywordTypeNode(import_typescript92.default.SyntaxKind.AnyKeyword));
|
|
46029
46073
|
}
|
|
46030
46074
|
|
|
46031
|
-
// bazel-out/
|
|
46075
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/input_function.mjs
|
|
46032
46076
|
var signalInputsTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46033
46077
|
var _a2, _b2;
|
|
46034
46078
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Input", isCore))) {
|
|
@@ -46050,7 +46094,7 @@ var signalInputsTransform = (member, sourceFile, host, factory11, importTracker,
|
|
|
46050
46094
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_b2 = member.node.modifiers) != null ? _b2 : []], member.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46051
46095
|
};
|
|
46052
46096
|
|
|
46053
|
-
// bazel-out/
|
|
46097
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/model_function.mjs
|
|
46054
46098
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
46055
46099
|
var signalModelTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46056
46100
|
var _a2, _b2;
|
|
@@ -46084,7 +46128,7 @@ function createDecorator(name, config, classDecorator, factory11, sourceFile, im
|
|
|
46084
46128
|
return factory11.createDecorator(factory11.createCallExpression(callTarget, void 0, [config]));
|
|
46085
46129
|
}
|
|
46086
46130
|
|
|
46087
|
-
// bazel-out/
|
|
46131
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/output_function.mjs
|
|
46088
46132
|
var initializerApiOutputTransform = (member, sourceFile, host, factory11, importTracker, importManager, classDecorator, isCore) => {
|
|
46089
46133
|
var _a2, _b2;
|
|
46090
46134
|
if ((_a2 = host.getDecoratorsOfDeclaration(member.node)) == null ? void 0 : _a2.some((d) => isAngularDecorator2(d, "Output", isCore))) {
|
|
@@ -46098,7 +46142,7 @@ var initializerApiOutputTransform = (member, sourceFile, host, factory11, import
|
|
|
46098
46142
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_b2 = member.node.modifiers) != null ? _b2 : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46099
46143
|
};
|
|
46100
46144
|
|
|
46101
|
-
// bazel-out/
|
|
46145
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/query_functions.mjs
|
|
46102
46146
|
var queryFunctionToDecorator = {
|
|
46103
46147
|
viewChild: "ViewChild",
|
|
46104
46148
|
viewChildren: "ViewChildren",
|
|
@@ -46131,7 +46175,7 @@ var queryFunctionsTransforms = (member, sourceFile, host, factory11, importTrack
|
|
|
46131
46175
|
return factory11.updatePropertyDeclaration(member.node, [newDecorator, ...(_a2 = member.node.modifiers) != null ? _a2 : []], member.node.name, member.node.questionToken, member.node.type, member.node.initializer);
|
|
46132
46176
|
};
|
|
46133
46177
|
|
|
46134
|
-
// bazel-out/
|
|
46178
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/initializer_api_transforms/transform.mjs
|
|
46135
46179
|
var decoratorsWithInputs = ["Directive", "Component"];
|
|
46136
46180
|
var propertyTransforms = [
|
|
46137
46181
|
signalInputsTransform,
|
|
@@ -46184,7 +46228,7 @@ function createTransformVisitor(ctx, host, importManager, importTracker, isCore,
|
|
|
46184
46228
|
return visitor;
|
|
46185
46229
|
}
|
|
46186
46230
|
|
|
46187
|
-
// bazel-out/
|
|
46231
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/jit/src/index.mjs
|
|
46188
46232
|
function angularJitApplicationTransform(program, isCore = false, shouldTransformClass) {
|
|
46189
46233
|
const typeChecker = program.getTypeChecker();
|
|
46190
46234
|
const reflectionHost = new TypeScriptReflectionHost(typeChecker);
|
|
@@ -46207,7 +46251,7 @@ function angularJitApplicationTransform(program, isCore = false, shouldTransform
|
|
|
46207
46251
|
};
|
|
46208
46252
|
}
|
|
46209
46253
|
|
|
46210
|
-
// bazel-out/
|
|
46254
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
46211
46255
|
var EmitFlags;
|
|
46212
46256
|
(function(EmitFlags2) {
|
|
46213
46257
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -46219,13 +46263,13 @@ var EmitFlags;
|
|
|
46219
46263
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
46220
46264
|
})(EmitFlags || (EmitFlags = {}));
|
|
46221
46265
|
|
|
46222
|
-
// bazel-out/
|
|
46266
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
46223
46267
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
46224
46268
|
|
|
46225
|
-
// bazel-out/
|
|
46269
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
46226
46270
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
46227
46271
|
|
|
46228
|
-
// bazel-out/
|
|
46272
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
46229
46273
|
var path2 = __toESM(require("path"), 1);
|
|
46230
46274
|
function i18nGetExtension(formatName) {
|
|
46231
46275
|
const format = formatName.toLowerCase();
|
|
@@ -46277,10 +46321,10 @@ function getPathNormalizer(basePath) {
|
|
|
46277
46321
|
};
|
|
46278
46322
|
}
|
|
46279
46323
|
|
|
46280
|
-
// bazel-out/
|
|
46324
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46281
46325
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
46282
46326
|
|
|
46283
|
-
// bazel-out/
|
|
46327
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
46284
46328
|
function toNumbers(value) {
|
|
46285
46329
|
const suffixIndex = value.lastIndexOf("-");
|
|
46286
46330
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -46315,7 +46359,7 @@ function compareVersions(v1, v2) {
|
|
|
46315
46359
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
46316
46360
|
}
|
|
46317
46361
|
|
|
46318
|
-
// bazel-out/
|
|
46362
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
46319
46363
|
var MIN_TS_VERSION = "5.4.0";
|
|
46320
46364
|
var MAX_TS_VERSION = "5.6.0";
|
|
46321
46365
|
var tsVersion = import_typescript97.default.version;
|
|
@@ -46328,10 +46372,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
46328
46372
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
46329
46373
|
}
|
|
46330
46374
|
|
|
46331
|
-
// bazel-out/
|
|
46375
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
46332
46376
|
var import_typescript120 = __toESM(require("typescript"), 1);
|
|
46333
46377
|
|
|
46334
|
-
// bazel-out/
|
|
46378
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
46335
46379
|
var CycleAnalyzer = class {
|
|
46336
46380
|
constructor(importGraph) {
|
|
46337
46381
|
this.importGraph = importGraph;
|
|
@@ -46402,7 +46446,7 @@ var Cycle = class {
|
|
|
46402
46446
|
}
|
|
46403
46447
|
};
|
|
46404
46448
|
|
|
46405
|
-
// bazel-out/
|
|
46449
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
46406
46450
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
46407
46451
|
var ImportGraph = class {
|
|
46408
46452
|
constructor(checker, perf) {
|
|
@@ -46494,13 +46538,13 @@ var Found = class {
|
|
|
46494
46538
|
}
|
|
46495
46539
|
};
|
|
46496
46540
|
|
|
46497
|
-
// bazel-out/
|
|
46541
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
46498
46542
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46499
46543
|
|
|
46500
|
-
// bazel-out/
|
|
46544
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46501
46545
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
46502
46546
|
|
|
46503
|
-
// bazel-out/
|
|
46547
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
46504
46548
|
var EntryType;
|
|
46505
46549
|
(function(EntryType2) {
|
|
46506
46550
|
EntryType2["Block"] = "block";
|
|
@@ -46544,17 +46588,17 @@ var MemberTags;
|
|
|
46544
46588
|
MemberTags2["Inherited"] = "override";
|
|
46545
46589
|
})(MemberTags || (MemberTags = {}));
|
|
46546
46590
|
|
|
46547
|
-
// bazel-out/
|
|
46591
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
46548
46592
|
function isAngularPrivateName(name) {
|
|
46549
46593
|
var _a2;
|
|
46550
46594
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
46551
46595
|
return firstChar === "\u0275" || firstChar === "_";
|
|
46552
46596
|
}
|
|
46553
46597
|
|
|
46554
|
-
// bazel-out/
|
|
46598
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46555
46599
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
46556
46600
|
|
|
46557
|
-
// bazel-out/
|
|
46601
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
46558
46602
|
function extractGenerics(declaration) {
|
|
46559
46603
|
var _a2, _b2;
|
|
46560
46604
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -46567,7 +46611,7 @@ function extractGenerics(declaration) {
|
|
|
46567
46611
|
})) != null ? _b2 : [];
|
|
46568
46612
|
}
|
|
46569
46613
|
|
|
46570
|
-
// bazel-out/
|
|
46614
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
46571
46615
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
46572
46616
|
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
46573
46617
|
function extractJsDocTags(node) {
|
|
@@ -46611,12 +46655,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
46611
46655
|
return comment.replace(/_NG_AT_/g, "@");
|
|
46612
46656
|
}
|
|
46613
46657
|
|
|
46614
|
-
// bazel-out/
|
|
46658
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
46615
46659
|
function extractResolvedTypeString(node, checker) {
|
|
46616
46660
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
46617
46661
|
}
|
|
46618
46662
|
|
|
46619
|
-
// bazel-out/
|
|
46663
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
46620
46664
|
var FunctionExtractor = class {
|
|
46621
46665
|
constructor(name, exportDeclaration, typeChecker) {
|
|
46622
46666
|
this.name = name;
|
|
@@ -46704,7 +46748,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
46704
46748
|
return implementation;
|
|
46705
46749
|
}
|
|
46706
46750
|
|
|
46707
|
-
// bazel-out/
|
|
46751
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
|
|
46708
46752
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
46709
46753
|
function isInternal(member) {
|
|
46710
46754
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -46723,7 +46767,7 @@ function hasLeadingInternalComment(member) {
|
|
|
46723
46767
|
)) != null ? _a2 : false;
|
|
46724
46768
|
}
|
|
46725
46769
|
|
|
46726
|
-
// bazel-out/
|
|
46770
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
46727
46771
|
var ClassExtractor = class {
|
|
46728
46772
|
constructor(declaration, typeChecker) {
|
|
46729
46773
|
this.declaration = declaration;
|
|
@@ -46758,7 +46802,7 @@ var ClassExtractor = class {
|
|
|
46758
46802
|
extractClassMember(memberDeclaration) {
|
|
46759
46803
|
if (this.isMethod(memberDeclaration)) {
|
|
46760
46804
|
return this.extractMethod(memberDeclaration);
|
|
46761
|
-
} else if (this.isProperty(memberDeclaration)) {
|
|
46805
|
+
} else if (this.isProperty(memberDeclaration) && !this.hasPrivateComputedProperty(memberDeclaration)) {
|
|
46762
46806
|
return this.extractClassProperty(memberDeclaration);
|
|
46763
46807
|
} else if (import_typescript102.default.isAccessor(memberDeclaration)) {
|
|
46764
46808
|
return this.extractGetterSetter(memberDeclaration);
|
|
@@ -46915,6 +46959,9 @@ var ClassExtractor = class {
|
|
|
46915
46959
|
const modifiers = (_a2 = this.declaration.modifiers) != null ? _a2 : [];
|
|
46916
46960
|
return modifiers.some((mod) => mod.kind === import_typescript102.default.SyntaxKind.AbstractKeyword);
|
|
46917
46961
|
}
|
|
46962
|
+
hasPrivateComputedProperty(property2) {
|
|
46963
|
+
return import_typescript102.default.isComputedPropertyName(property2.name) && property2.name.expression.getText().startsWith("\u0275");
|
|
46964
|
+
}
|
|
46918
46965
|
};
|
|
46919
46966
|
var DirectiveExtractor = class extends ClassExtractor {
|
|
46920
46967
|
constructor(declaration, reference2, metadata, checker) {
|
|
@@ -47005,7 +47052,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
47005
47052
|
return extractor.extract();
|
|
47006
47053
|
}
|
|
47007
47054
|
|
|
47008
|
-
// bazel-out/
|
|
47055
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
47009
47056
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
47010
47057
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
47011
47058
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -47063,7 +47110,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
47063
47110
|
});
|
|
47064
47111
|
}
|
|
47065
47112
|
|
|
47066
|
-
// bazel-out/
|
|
47113
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
47067
47114
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
47068
47115
|
function extractorDecorator(declaration, typeChecker) {
|
|
47069
47116
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -47136,7 +47183,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
47136
47183
|
return callSignature;
|
|
47137
47184
|
}
|
|
47138
47185
|
|
|
47139
|
-
// bazel-out/
|
|
47186
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
47140
47187
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
47141
47188
|
function extractEnum(declaration, typeChecker) {
|
|
47142
47189
|
return {
|
|
@@ -47167,7 +47214,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
47167
47214
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
47168
47215
|
}
|
|
47169
47216
|
|
|
47170
|
-
// bazel-out/
|
|
47217
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
47171
47218
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
47172
47219
|
var initializerApiTag = "initializerApiFunction";
|
|
47173
47220
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -47276,7 +47323,7 @@ function extractFunctionWithOverloads(name, type, typeChecker) {
|
|
|
47276
47323
|
};
|
|
47277
47324
|
}
|
|
47278
47325
|
|
|
47279
|
-
// bazel-out/
|
|
47326
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
47280
47327
|
function extractTypeAlias(declaration) {
|
|
47281
47328
|
return {
|
|
47282
47329
|
name: declaration.name.getText(),
|
|
@@ -47288,7 +47335,7 @@ function extractTypeAlias(declaration) {
|
|
|
47288
47335
|
};
|
|
47289
47336
|
}
|
|
47290
47337
|
|
|
47291
|
-
// bazel-out/
|
|
47338
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/import_extractor.mjs
|
|
47292
47339
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
47293
47340
|
function getImportedSymbols(sourceFile) {
|
|
47294
47341
|
const importSpecifiers = /* @__PURE__ */ new Map();
|
|
@@ -47313,7 +47360,7 @@ function getImportedSymbols(sourceFile) {
|
|
|
47313
47360
|
return importSpecifiers;
|
|
47314
47361
|
}
|
|
47315
47362
|
|
|
47316
|
-
// bazel-out/
|
|
47363
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
47317
47364
|
var DocsExtractor = class {
|
|
47318
47365
|
constructor(typeChecker, metadataReader) {
|
|
47319
47366
|
this.typeChecker = typeChecker;
|
|
@@ -47399,7 +47446,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
47399
47446
|
return relativePath;
|
|
47400
47447
|
}
|
|
47401
47448
|
|
|
47402
|
-
// bazel-out/
|
|
47449
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
47403
47450
|
var import_typescript109 = __toESM(require("typescript"), 1);
|
|
47404
47451
|
var FlatIndexGenerator = class {
|
|
47405
47452
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -47424,7 +47471,7 @@ export * from '${relativeEntryPoint}';
|
|
|
47424
47471
|
}
|
|
47425
47472
|
};
|
|
47426
47473
|
|
|
47427
|
-
// bazel-out/
|
|
47474
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
47428
47475
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
47429
47476
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
47430
47477
|
let resolvedEntryPoint = null;
|
|
@@ -47440,7 +47487,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
47440
47487
|
return resolvedEntryPoint;
|
|
47441
47488
|
}
|
|
47442
47489
|
|
|
47443
|
-
// bazel-out/
|
|
47490
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
47444
47491
|
var import_typescript111 = __toESM(require("typescript"), 1);
|
|
47445
47492
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
47446
47493
|
const diagnostics = [];
|
|
@@ -47520,7 +47567,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
47520
47567
|
}
|
|
47521
47568
|
}
|
|
47522
47569
|
|
|
47523
|
-
// bazel-out/
|
|
47570
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
47524
47571
|
var ReferenceGraph = class {
|
|
47525
47572
|
constructor() {
|
|
47526
47573
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -47574,7 +47621,7 @@ var ReferenceGraph = class {
|
|
|
47574
47621
|
}
|
|
47575
47622
|
};
|
|
47576
47623
|
|
|
47577
|
-
// bazel-out/
|
|
47624
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
47578
47625
|
var FileDependencyGraph = class {
|
|
47579
47626
|
constructor() {
|
|
47580
47627
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -47641,7 +47688,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
47641
47688
|
return false;
|
|
47642
47689
|
}
|
|
47643
47690
|
|
|
47644
|
-
// bazel-out/
|
|
47691
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
47645
47692
|
var IncrementalStateKind;
|
|
47646
47693
|
(function(IncrementalStateKind2) {
|
|
47647
47694
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -47649,7 +47696,7 @@ var IncrementalStateKind;
|
|
|
47649
47696
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
47650
47697
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
47651
47698
|
|
|
47652
|
-
// bazel-out/
|
|
47699
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
47653
47700
|
var PhaseKind;
|
|
47654
47701
|
(function(PhaseKind2) {
|
|
47655
47702
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -47850,7 +47897,7 @@ function toOriginalSourceFile(sf) {
|
|
|
47850
47897
|
}
|
|
47851
47898
|
}
|
|
47852
47899
|
|
|
47853
|
-
// bazel-out/
|
|
47900
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
47854
47901
|
var TrackedIncrementalBuildStrategy = class {
|
|
47855
47902
|
constructor() {
|
|
47856
47903
|
this.state = null;
|
|
@@ -47871,7 +47918,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
47871
47918
|
};
|
|
47872
47919
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
47873
47920
|
|
|
47874
|
-
// bazel-out/
|
|
47921
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
47875
47922
|
var IdentifierKind;
|
|
47876
47923
|
(function(IdentifierKind2) {
|
|
47877
47924
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -47890,7 +47937,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
47890
47937
|
}
|
|
47891
47938
|
};
|
|
47892
47939
|
|
|
47893
|
-
// bazel-out/
|
|
47940
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
47894
47941
|
var IndexingContext = class {
|
|
47895
47942
|
constructor() {
|
|
47896
47943
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -47900,7 +47947,7 @@ var IndexingContext = class {
|
|
|
47900
47947
|
}
|
|
47901
47948
|
};
|
|
47902
47949
|
|
|
47903
|
-
// bazel-out/
|
|
47950
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
47904
47951
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
47905
47952
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
47906
47953
|
super();
|
|
@@ -48194,7 +48241,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
48194
48241
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
48195
48242
|
}
|
|
48196
48243
|
|
|
48197
|
-
// bazel-out/
|
|
48244
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
48198
48245
|
function generateAnalysis(context) {
|
|
48199
48246
|
const analysis = /* @__PURE__ */ new Map();
|
|
48200
48247
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -48230,7 +48277,7 @@ function generateAnalysis(context) {
|
|
|
48230
48277
|
return analysis;
|
|
48231
48278
|
}
|
|
48232
48279
|
|
|
48233
|
-
// bazel-out/
|
|
48280
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
48234
48281
|
var NgModuleIndexImpl = class {
|
|
48235
48282
|
constructor(metaReader, localReader) {
|
|
48236
48283
|
this.metaReader = metaReader;
|
|
@@ -48319,7 +48366,7 @@ var NgModuleIndexImpl = class {
|
|
|
48319
48366
|
}
|
|
48320
48367
|
};
|
|
48321
48368
|
|
|
48322
|
-
// bazel-out/
|
|
48369
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
48323
48370
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
48324
48371
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
48325
48372
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -48471,7 +48518,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
48471
48518
|
};
|
|
48472
48519
|
}
|
|
48473
48520
|
|
|
48474
|
-
// bazel-out/
|
|
48521
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
48475
48522
|
var StandaloneComponentScopeReader = class {
|
|
48476
48523
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
48477
48524
|
this.metaReader = metaReader;
|
|
@@ -48567,7 +48614,7 @@ var StandaloneComponentScopeReader = class {
|
|
|
48567
48614
|
}
|
|
48568
48615
|
};
|
|
48569
48616
|
|
|
48570
|
-
// bazel-out/
|
|
48617
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
48571
48618
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
48572
48619
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
48573
48620
|
"WritableSignal",
|
|
@@ -48587,7 +48634,7 @@ function isSignalSymbol(symbol) {
|
|
|
48587
48634
|
});
|
|
48588
48635
|
}
|
|
48589
48636
|
|
|
48590
|
-
// bazel-out/
|
|
48637
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
48591
48638
|
var TemplateCheckWithVisitor = class {
|
|
48592
48639
|
constructor() {
|
|
48593
48640
|
this.canVisitStructuralAttributes = true;
|
|
@@ -48722,7 +48769,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
48722
48769
|
}
|
|
48723
48770
|
};
|
|
48724
48771
|
|
|
48725
|
-
// bazel-out/
|
|
48772
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
48726
48773
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
48727
48774
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
48728
48775
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -48774,7 +48821,7 @@ var factory = {
|
|
|
48774
48821
|
create: () => new InterpolatedSignalCheck()
|
|
48775
48822
|
};
|
|
48776
48823
|
|
|
48777
|
-
// bazel-out/
|
|
48824
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
48778
48825
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
48779
48826
|
constructor() {
|
|
48780
48827
|
super(...arguments);
|
|
@@ -48799,7 +48846,7 @@ var factory2 = {
|
|
|
48799
48846
|
create: () => new InvalidBananaInBoxCheck()
|
|
48800
48847
|
};
|
|
48801
48848
|
|
|
48802
|
-
// bazel-out/
|
|
48849
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
48803
48850
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
48804
48851
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
48805
48852
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -48843,7 +48890,7 @@ var factory3 = {
|
|
|
48843
48890
|
}
|
|
48844
48891
|
};
|
|
48845
48892
|
|
|
48846
|
-
// bazel-out/
|
|
48893
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
48847
48894
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
48848
48895
|
constructor() {
|
|
48849
48896
|
super(...arguments);
|
|
@@ -48875,7 +48922,7 @@ var factory4 = {
|
|
|
48875
48922
|
create: () => new MissingNgForOfLetCheck()
|
|
48876
48923
|
};
|
|
48877
48924
|
|
|
48878
|
-
// bazel-out/
|
|
48925
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
48879
48926
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
48880
48927
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48881
48928
|
constructor() {
|
|
@@ -48920,7 +48967,7 @@ var factory5 = {
|
|
|
48920
48967
|
}
|
|
48921
48968
|
};
|
|
48922
48969
|
|
|
48923
|
-
// bazel-out/
|
|
48970
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
48924
48971
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
48925
48972
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48926
48973
|
constructor() {
|
|
@@ -48966,7 +49013,7 @@ var factory6 = {
|
|
|
48966
49013
|
}
|
|
48967
49014
|
};
|
|
48968
49015
|
|
|
48969
|
-
// bazel-out/
|
|
49016
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
48970
49017
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
48971
49018
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
48972
49019
|
constructor() {
|
|
@@ -48989,7 +49036,7 @@ var factory7 = {
|
|
|
48989
49036
|
create: () => new SuffixNotSupportedCheck()
|
|
48990
49037
|
};
|
|
48991
49038
|
|
|
48992
|
-
// bazel-out/
|
|
49039
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
48993
49040
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
48994
49041
|
constructor() {
|
|
48995
49042
|
super(...arguments);
|
|
@@ -49027,7 +49074,7 @@ var factory8 = {
|
|
|
49027
49074
|
create: () => new TextAttributeNotBindingSpec()
|
|
49028
49075
|
};
|
|
49029
49076
|
|
|
49030
|
-
// bazel-out/
|
|
49077
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
|
|
49031
49078
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
49032
49079
|
constructor() {
|
|
49033
49080
|
super(...arguments);
|
|
@@ -49078,7 +49125,7 @@ var factory9 = {
|
|
|
49078
49125
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
49079
49126
|
};
|
|
49080
49127
|
|
|
49081
|
-
// bazel-out/
|
|
49128
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/unused_let_declaration/index.mjs
|
|
49082
49129
|
var UnusedLetDeclarationCheck = class extends TemplateCheckWithVisitor {
|
|
49083
49130
|
constructor() {
|
|
49084
49131
|
super(...arguments);
|
|
@@ -49122,10 +49169,10 @@ var factory10 = {
|
|
|
49122
49169
|
create: () => new UnusedLetDeclarationCheck()
|
|
49123
49170
|
};
|
|
49124
49171
|
|
|
49125
|
-
// bazel-out/
|
|
49172
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49126
49173
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
49127
49174
|
|
|
49128
|
-
// bazel-out/
|
|
49175
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
49129
49176
|
var DiagnosticCategoryLabel;
|
|
49130
49177
|
(function(DiagnosticCategoryLabel2) {
|
|
49131
49178
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -49133,7 +49180,7 @@ var DiagnosticCategoryLabel;
|
|
|
49133
49180
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
49134
49181
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
49135
49182
|
|
|
49136
|
-
// bazel-out/
|
|
49183
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
49137
49184
|
var ExtendedTemplateCheckerImpl = class {
|
|
49138
49185
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
49139
49186
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -49185,7 +49232,7 @@ function assertNever(value) {
|
|
|
49185
49232
|
${value}`);
|
|
49186
49233
|
}
|
|
49187
49234
|
|
|
49188
|
-
// bazel-out/
|
|
49235
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
49189
49236
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
49190
49237
|
factory2,
|
|
49191
49238
|
factory5,
|
|
@@ -49203,7 +49250,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
49203
49250
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory11) => factory11.name)
|
|
49204
49251
|
]);
|
|
49205
49252
|
|
|
49206
|
-
// bazel-out/
|
|
49253
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
49207
49254
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
49208
49255
|
var TemplateSemanticsCheckerImpl = class {
|
|
49209
49256
|
constructor(templateTypeChecker) {
|
|
@@ -49293,7 +49340,7 @@ function unwrapAstWithSource(ast) {
|
|
|
49293
49340
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
49294
49341
|
}
|
|
49295
49342
|
|
|
49296
|
-
// bazel-out/
|
|
49343
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
|
|
49297
49344
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
49298
49345
|
var APIS_TO_CHECK = [
|
|
49299
49346
|
INPUT_INITIALIZER_FN,
|
|
@@ -49344,7 +49391,7 @@ var InitializerApiUsageRule = class {
|
|
|
49344
49391
|
}
|
|
49345
49392
|
};
|
|
49346
49393
|
|
|
49347
|
-
// bazel-out/
|
|
49394
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
|
|
49348
49395
|
var SourceFileValidator = class {
|
|
49349
49396
|
constructor(reflector, importedSymbolsTracker) {
|
|
49350
49397
|
this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
|
|
@@ -49382,7 +49429,7 @@ var SourceFileValidator = class {
|
|
|
49382
49429
|
}
|
|
49383
49430
|
};
|
|
49384
49431
|
|
|
49385
|
-
// bazel-out/
|
|
49432
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
49386
49433
|
function coreHasSymbol(program, symbol) {
|
|
49387
49434
|
const checker = program.getTypeChecker();
|
|
49388
49435
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -49401,7 +49448,7 @@ function isMaybeCore(sf) {
|
|
|
49401
49448
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
49402
49449
|
}
|
|
49403
49450
|
|
|
49404
|
-
// bazel-out/
|
|
49451
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
49405
49452
|
var import_semver = __toESM(require_semver2(), 1);
|
|
49406
49453
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
49407
49454
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -49410,7 +49457,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
49410
49457
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
49411
49458
|
}
|
|
49412
49459
|
|
|
49413
|
-
// bazel-out/
|
|
49460
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
49414
49461
|
var CompilationTicketKind;
|
|
49415
49462
|
(function(CompilationTicketKind2) {
|
|
49416
49463
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -50217,7 +50264,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
50217
50264
|
return versions;
|
|
50218
50265
|
}
|
|
50219
50266
|
|
|
50220
|
-
// bazel-out/
|
|
50267
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
50221
50268
|
var import_typescript122 = __toESM(require("typescript"), 1);
|
|
50222
50269
|
var DelegatingCompilerHost2 = class {
|
|
50223
50270
|
get jsDocParsingMode() {
|
|
@@ -50356,7 +50403,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
50356
50403
|
}
|
|
50357
50404
|
};
|
|
50358
50405
|
|
|
50359
|
-
// bazel-out/
|
|
50406
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
50360
50407
|
var NgtscProgram = class {
|
|
50361
50408
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
50362
50409
|
this.options = options;
|
|
@@ -50582,18 +50629,18 @@ function mergeEmitResults(emitResults) {
|
|
|
50582
50629
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
50583
50630
|
}
|
|
50584
50631
|
|
|
50585
|
-
// bazel-out/
|
|
50632
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
50586
50633
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
50587
50634
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
50588
50635
|
}
|
|
50589
50636
|
|
|
50590
|
-
// bazel-out/
|
|
50637
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
50591
50638
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
50592
50639
|
|
|
50593
|
-
// bazel-out/
|
|
50640
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
50594
50641
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
50595
50642
|
|
|
50596
|
-
// bazel-out/
|
|
50643
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
50597
50644
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
50598
50645
|
ngDevMode: false,
|
|
50599
50646
|
ngI18nClosureMode: false
|
|
@@ -50602,7 +50649,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
50602
50649
|
ngJitMode: false
|
|
50603
50650
|
});
|
|
50604
50651
|
|
|
50605
|
-
// bazel-out/
|
|
50652
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
50606
50653
|
var LogLevel;
|
|
50607
50654
|
(function(LogLevel2) {
|
|
50608
50655
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -50611,7 +50658,7 @@ var LogLevel;
|
|
|
50611
50658
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
50612
50659
|
})(LogLevel || (LogLevel = {}));
|
|
50613
50660
|
|
|
50614
|
-
// bazel-out/
|
|
50661
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
50615
50662
|
var RESET = "\x1B[0m";
|
|
50616
50663
|
var RED = "\x1B[31m";
|
|
50617
50664
|
var YELLOW = "\x1B[33m";
|
|
@@ -50620,15 +50667,15 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
50620
50667
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
50621
50668
|
var ERROR = `${RED}Error:${RESET}`;
|
|
50622
50669
|
|
|
50623
|
-
// bazel-out/
|
|
50670
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
50624
50671
|
setFileSystem(new NodeJSFileSystem());
|
|
50625
50672
|
|
|
50626
|
-
// bazel-out/
|
|
50673
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
50627
50674
|
var import_fs2 = require("fs");
|
|
50628
50675
|
var import_path7 = require("path");
|
|
50629
50676
|
var import_typescript138 = __toESM(require("typescript"), 1);
|
|
50630
50677
|
|
|
50631
|
-
// bazel-out/
|
|
50678
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
50632
50679
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
50633
50680
|
var ChangeTracker = class {
|
|
50634
50681
|
constructor(_printer, _importRemapper) {
|
|
@@ -50747,7 +50794,7 @@ function normalizePath(path4) {
|
|
|
50747
50794
|
return path4.replace(/\\/g, "/");
|
|
50748
50795
|
}
|
|
50749
50796
|
|
|
50750
|
-
// bazel-out/
|
|
50797
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
50751
50798
|
var import_core19 = require("@angular-devkit/core");
|
|
50752
50799
|
function getProjectTsConfigPaths(tree) {
|
|
50753
50800
|
return __async(this, null, function* () {
|
|
@@ -50827,11 +50874,11 @@ function getWorkspace(tree) {
|
|
|
50827
50874
|
});
|
|
50828
50875
|
}
|
|
50829
50876
|
|
|
50830
|
-
// bazel-out/
|
|
50877
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50831
50878
|
var import_path4 = require("path");
|
|
50832
50879
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
50833
50880
|
|
|
50834
|
-
// bazel-out/
|
|
50881
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
50835
50882
|
var path3 = __toESM(require("path"), 1);
|
|
50836
50883
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
50837
50884
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -50848,7 +50895,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
50848
50895
|
return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
50849
50896
|
}
|
|
50850
50897
|
|
|
50851
|
-
// bazel-out/
|
|
50898
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50852
50899
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
50853
50900
|
tsconfigPath = (0, import_path4.resolve)(basePath, tsconfigPath);
|
|
50854
50901
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path4.dirname)(tsconfigPath));
|
|
@@ -50877,13 +50924,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
50877
50924
|
return !(0, import_path4.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
50878
50925
|
}
|
|
50879
50926
|
|
|
50880
|
-
// bazel-out/
|
|
50927
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50881
50928
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
50882
50929
|
|
|
50883
|
-
// bazel-out/
|
|
50930
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50884
50931
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
50885
50932
|
|
|
50886
|
-
// bazel-out/
|
|
50933
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
50887
50934
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
50888
50935
|
function getImportOfIdentifier(typeChecker, node) {
|
|
50889
50936
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -50943,7 +50990,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
50943
50990
|
});
|
|
50944
50991
|
}
|
|
50945
50992
|
|
|
50946
|
-
// bazel-out/
|
|
50993
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50947
50994
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
50948
50995
|
if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
|
|
50949
50996
|
return null;
|
|
@@ -50952,7 +50999,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
50952
50999
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
50953
51000
|
}
|
|
50954
51001
|
|
|
50955
|
-
// bazel-out/
|
|
51002
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
50956
51003
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
50957
51004
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
50958
51005
|
node,
|
|
@@ -50962,7 +51009,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
50962
51009
|
}));
|
|
50963
51010
|
}
|
|
50964
51011
|
|
|
50965
|
-
// bazel-out/
|
|
51012
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
50966
51013
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
50967
51014
|
function closestNode(node, predicate) {
|
|
50968
51015
|
let current = node.parent;
|
|
@@ -50975,7 +51022,7 @@ function closestNode(node, predicate) {
|
|
|
50975
51022
|
return null;
|
|
50976
51023
|
}
|
|
50977
51024
|
|
|
50978
|
-
// bazel-out/
|
|
51025
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
50979
51026
|
var import_path5 = require("path");
|
|
50980
51027
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
50981
51028
|
var UniqueItemTracker = class {
|
|
@@ -51153,10 +51200,10 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
51153
51200
|
}));
|
|
51154
51201
|
}
|
|
51155
51202
|
|
|
51156
|
-
// bazel-out/
|
|
51203
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51157
51204
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
51158
51205
|
|
|
51159
|
-
// bazel-out/
|
|
51206
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
51160
51207
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
51161
51208
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
51162
51209
|
var _a2, _b2;
|
|
@@ -51168,7 +51215,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
51168
51215
|
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];
|
|
51169
51216
|
}
|
|
51170
51217
|
|
|
51171
|
-
// bazel-out/
|
|
51218
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
51172
51219
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
51173
51220
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
51174
51221
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -51546,7 +51593,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
51546
51593
|
return metadata != null && metadata.isStandalone;
|
|
51547
51594
|
}
|
|
51548
51595
|
|
|
51549
|
-
// bazel-out/
|
|
51596
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
51550
51597
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
51551
51598
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
51552
51599
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -51806,7 +51853,7 @@ function isInImportsArray(closestAssignment, closestArray) {
|
|
|
51806
51853
|
return closestAssignment.initializer === closestArray && (import_typescript136.default.isIdentifier(closestAssignment.name) || import_typescript136.default.isStringLiteralLike(closestAssignment.name)) && closestAssignment.name.text === "imports";
|
|
51807
51854
|
}
|
|
51808
51855
|
|
|
51809
|
-
// bazel-out/
|
|
51856
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
51810
51857
|
var import_path6 = require("path");
|
|
51811
51858
|
var import_typescript137 = __toESM(require("typescript"), 1);
|
|
51812
51859
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
@@ -52185,7 +52232,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
52185
52232
|
return false;
|
|
52186
52233
|
}
|
|
52187
52234
|
|
|
52188
|
-
// bazel-out/
|
|
52235
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
52189
52236
|
var MigrationMode;
|
|
52190
52237
|
(function(MigrationMode2) {
|
|
52191
52238
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|