@angular/core 18.1.0-rc.0 → 18.2.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/rxjs-interop/src/to_signal.mjs +4 -4
- package/esm2022/src/defer/instructions.mjs +53 -35
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/debug/framework_injector_profiler.mjs +3 -2
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +55 -36
- 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 +4 -4
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +1 -1
- 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 +2 -2
- package/schematics/migrations/after-render-phase/bundle.js +12 -12
- package/schematics/migrations/http-providers/bundle.js +15 -15
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +163 -163
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
- package/schematics/ng-generate/control-flow-migration/bundle.js +181 -172
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +484 -473
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
|
@@ -1887,7 +1887,7 @@ var require_semver2 = __commonJS({
|
|
|
1887
1887
|
}
|
|
1888
1888
|
});
|
|
1889
1889
|
|
|
1890
|
-
// bazel-out/
|
|
1890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
1891
1891
|
var standalone_migration_exports = {};
|
|
1892
1892
|
__export(standalone_migration_exports, {
|
|
1893
1893
|
default: () => standalone_migration_default
|
|
@@ -1895,10 +1895,10 @@ __export(standalone_migration_exports, {
|
|
|
1895
1895
|
module.exports = __toCommonJS(standalone_migration_exports);
|
|
1896
1896
|
var import_schematics = require("@angular-devkit/schematics");
|
|
1897
1897
|
|
|
1898
|
-
// bazel-out/
|
|
1898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
|
|
1899
1899
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
1900
1900
|
|
|
1901
|
-
// bazel-out/
|
|
1901
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
|
|
1902
1902
|
var InvalidFileSystem = class {
|
|
1903
1903
|
exists(path4) {
|
|
1904
1904
|
throw makeError();
|
|
@@ -1986,7 +1986,7 @@ function makeError() {
|
|
|
1986
1986
|
return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
1989
|
-
// bazel-out/
|
|
1989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
|
|
1990
1990
|
var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
|
|
1991
1991
|
function stripExtension(path4) {
|
|
1992
1992
|
return path4.replace(TS_DTS_JS_EXTENSION, "");
|
|
@@ -1999,7 +1999,7 @@ function getSourceFileOrError(program, fileName) {
|
|
|
1999
1999
|
return sf;
|
|
2000
2000
|
}
|
|
2001
2001
|
|
|
2002
|
-
// bazel-out/
|
|
2002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
|
|
2003
2003
|
var fs = new InvalidFileSystem();
|
|
2004
2004
|
function getFileSystem() {
|
|
2005
2005
|
return fs;
|
|
@@ -2043,7 +2043,7 @@ function toRelativeImport(relativePath) {
|
|
|
2043
2043
|
return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
|
-
// bazel-out/
|
|
2046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
|
|
2047
2047
|
var LogicalProjectPath = {
|
|
2048
2048
|
relativePathBetween: function(from, to) {
|
|
2049
2049
|
const relativePath = relative(dirname(resolve(from)), resolve(to));
|
|
@@ -2089,7 +2089,7 @@ function isWithinBasePath(base, path4) {
|
|
|
2089
2089
|
return isLocalRelativePath(relative(base, path4));
|
|
2090
2090
|
}
|
|
2091
2091
|
|
|
2092
|
-
// bazel-out/
|
|
2092
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
|
|
2093
2093
|
var import_fs = __toESM(require("fs"), 1);
|
|
2094
2094
|
var import_module = require("module");
|
|
2095
2095
|
var p = __toESM(require("path"), 1);
|
|
@@ -2197,7 +2197,7 @@ function toggleCase(str) {
|
|
|
2197
2197
|
return str.replace(/\w/g, (ch) => ch.toUpperCase() === ch ? ch.toLowerCase() : ch.toUpperCase());
|
|
2198
2198
|
}
|
|
2199
2199
|
|
|
2200
|
-
// bazel-out/
|
|
2200
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
2201
2201
|
var _SELECTOR_REGEXP = new RegExp(
|
|
2202
2202
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
2203
2203
|
"g"
|
|
@@ -2505,7 +2505,7 @@ var SelectorContext = class {
|
|
|
2505
2505
|
}
|
|
2506
2506
|
};
|
|
2507
2507
|
|
|
2508
|
-
// bazel-out/
|
|
2508
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
2509
2509
|
var emitDistinctChangesOnlyDefaultValue = true;
|
|
2510
2510
|
var ViewEncapsulation;
|
|
2511
2511
|
(function(ViewEncapsulation2) {
|
|
@@ -2574,7 +2574,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
2574
2574
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
2575
2575
|
}
|
|
2576
2576
|
|
|
2577
|
-
// bazel-out/
|
|
2577
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
2578
2578
|
var output_ast_exports = {};
|
|
2579
2579
|
__export(output_ast_exports, {
|
|
2580
2580
|
ArrayType: () => ArrayType,
|
|
@@ -2662,7 +2662,7 @@ __export(output_ast_exports, {
|
|
|
2662
2662
|
variable: () => variable
|
|
2663
2663
|
});
|
|
2664
2664
|
|
|
2665
|
-
// bazel-out/
|
|
2665
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
2666
2666
|
var textEncoder;
|
|
2667
2667
|
function digest(message) {
|
|
2668
2668
|
return message.id || computeDigest(message);
|
|
@@ -2905,7 +2905,7 @@ function wordAt(bytes, index, endian) {
|
|
|
2905
2905
|
return word;
|
|
2906
2906
|
}
|
|
2907
2907
|
|
|
2908
|
-
// bazel-out/
|
|
2908
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
2909
2909
|
var TypeModifier;
|
|
2910
2910
|
(function(TypeModifier2) {
|
|
2911
2911
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -4100,7 +4100,7 @@ function serializeTags(tags) {
|
|
|
4100
4100
|
return out;
|
|
4101
4101
|
}
|
|
4102
4102
|
|
|
4103
|
-
// bazel-out/
|
|
4103
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
4104
4104
|
var CONSTANT_PREFIX = "_c";
|
|
4105
4105
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
4106
4106
|
var KEY_CONTEXT = {};
|
|
@@ -4288,7 +4288,7 @@ function isLongStringLiteral(expr) {
|
|
|
4288
4288
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
4289
4289
|
}
|
|
4290
4290
|
|
|
4291
|
-
// bazel-out/
|
|
4291
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
4292
4292
|
var CORE = "@angular/core";
|
|
4293
4293
|
var _Identifiers = class {
|
|
4294
4294
|
};
|
|
@@ -5185,7 +5185,7 @@ var Identifiers = _Identifiers;
|
|
|
5185
5185
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
5186
5186
|
})();
|
|
5187
5187
|
|
|
5188
|
-
// bazel-out/
|
|
5188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
5189
5189
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
5190
5190
|
function dashCaseToCamelCase(input) {
|
|
5191
5191
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -5262,7 +5262,7 @@ var Version = class {
|
|
|
5262
5262
|
};
|
|
5263
5263
|
var _global = globalThis;
|
|
5264
5264
|
|
|
5265
|
-
// bazel-out/
|
|
5265
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
5266
5266
|
var VERSION = 3;
|
|
5267
5267
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
5268
5268
|
var SourceMapGenerator = class {
|
|
@@ -5391,7 +5391,7 @@ function toBase64Digit(value) {
|
|
|
5391
5391
|
return B64_DIGITS[value];
|
|
5392
5392
|
}
|
|
5393
5393
|
|
|
5394
|
-
// bazel-out/
|
|
5394
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
5395
5395
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
5396
5396
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
5397
5397
|
var _INDENT_WITH = " ";
|
|
@@ -5879,7 +5879,7 @@ function _createIndent(count) {
|
|
|
5879
5879
|
return res;
|
|
5880
5880
|
}
|
|
5881
5881
|
|
|
5882
|
-
// bazel-out/
|
|
5882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
5883
5883
|
function typeWithParameters(type, numParams) {
|
|
5884
5884
|
if (numParams === 0) {
|
|
5885
5885
|
return expressionType(type);
|
|
@@ -5937,7 +5937,7 @@ function generateForwardRef(expr) {
|
|
|
5937
5937
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
5938
5938
|
}
|
|
5939
5939
|
|
|
5940
|
-
// bazel-out/
|
|
5940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
5941
5941
|
var R3FactoryDelegateType;
|
|
5942
5942
|
(function(R3FactoryDelegateType2) {
|
|
5943
5943
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -6082,7 +6082,7 @@ function getInjectFn(target) {
|
|
|
6082
6082
|
}
|
|
6083
6083
|
}
|
|
6084
6084
|
|
|
6085
|
-
// bazel-out/
|
|
6085
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
6086
6086
|
var ParserError = class {
|
|
6087
6087
|
constructor(message, input, errLocation, ctxLocation) {
|
|
6088
6088
|
this.input = input;
|
|
@@ -6520,7 +6520,7 @@ var BoundElementProperty = class {
|
|
|
6520
6520
|
}
|
|
6521
6521
|
};
|
|
6522
6522
|
|
|
6523
|
-
// bazel-out/
|
|
6523
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
6524
6524
|
var TagContentType;
|
|
6525
6525
|
(function(TagContentType2) {
|
|
6526
6526
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -6557,7 +6557,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
6557
6557
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
6558
6558
|
}
|
|
6559
6559
|
|
|
6560
|
-
// bazel-out/
|
|
6560
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
6561
6561
|
var Comment = class {
|
|
6562
6562
|
constructor(value, sourceSpan) {
|
|
6563
6563
|
this.value = value;
|
|
@@ -7027,7 +7027,7 @@ function visitAll(visitor, nodes) {
|
|
|
7027
7027
|
return result;
|
|
7028
7028
|
}
|
|
7029
7029
|
|
|
7030
|
-
// bazel-out/
|
|
7030
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
7031
7031
|
var Message = class {
|
|
7032
7032
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
7033
7033
|
this.nodes = nodes;
|
|
@@ -7218,7 +7218,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
7218
7218
|
}
|
|
7219
7219
|
};
|
|
7220
7220
|
|
|
7221
|
-
// bazel-out/
|
|
7221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/serializer.mjs
|
|
7222
7222
|
var Serializer = class {
|
|
7223
7223
|
createNameMapper(message) {
|
|
7224
7224
|
return null;
|
|
@@ -7275,7 +7275,7 @@ var SimplePlaceholderMapper = class extends RecurseVisitor {
|
|
|
7275
7275
|
}
|
|
7276
7276
|
};
|
|
7277
7277
|
|
|
7278
|
-
// bazel-out/
|
|
7278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
7279
7279
|
var _Visitor = class {
|
|
7280
7280
|
visitTag(tag) {
|
|
7281
7281
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -7363,7 +7363,7 @@ function escapeXml(text2) {
|
|
|
7363
7363
|
return _ESCAPED_CHARS.reduce((text3, entry) => text3.replace(entry[0], entry[1]), text2);
|
|
7364
7364
|
}
|
|
7365
7365
|
|
|
7366
|
-
// bazel-out/
|
|
7366
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
7367
7367
|
var _XMB_HANDLER = "angular";
|
|
7368
7368
|
var _MESSAGES_TAG = "messagebundle";
|
|
7369
7369
|
var _MESSAGE_TAG = "msg";
|
|
@@ -7525,7 +7525,7 @@ function toPublicName(internalName) {
|
|
|
7525
7525
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
7526
7526
|
}
|
|
7527
7527
|
|
|
7528
|
-
// bazel-out/
|
|
7528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
7529
7529
|
var I18N_ATTR = "i18n";
|
|
7530
7530
|
var I18N_ATTR_PREFIX = "i18n-";
|
|
7531
7531
|
var I18N_ICU_VAR_PREFIX = "VAR_";
|
|
@@ -7565,7 +7565,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
|
|
|
7565
7565
|
return postfix ? `${raw}_${postfix}` : raw;
|
|
7566
7566
|
}
|
|
7567
7567
|
|
|
7568
|
-
// bazel-out/
|
|
7568
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
7569
7569
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
7570
7570
|
var TEMPORARY_NAME = "_t";
|
|
7571
7571
|
var CONTEXT_NAME = "ctx";
|
|
@@ -7692,7 +7692,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
|
|
|
7692
7692
|
return attributesMap;
|
|
7693
7693
|
}
|
|
7694
7694
|
|
|
7695
|
-
// bazel-out/
|
|
7695
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
7696
7696
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
7697
7697
|
let result = null;
|
|
7698
7698
|
const factoryMeta = {
|
|
@@ -7779,7 +7779,7 @@ function createFactoryFunction(type) {
|
|
|
7779
7779
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
7780
7780
|
}
|
|
7781
7781
|
|
|
7782
|
-
// bazel-out/
|
|
7782
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
7783
7783
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
7784
7784
|
/@/,
|
|
7785
7785
|
/^\s*$/,
|
|
@@ -7802,7 +7802,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
7802
7802
|
}
|
|
7803
7803
|
}
|
|
7804
7804
|
|
|
7805
|
-
// bazel-out/
|
|
7805
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
7806
7806
|
var InterpolationConfig = class {
|
|
7807
7807
|
static fromArray(markers) {
|
|
7808
7808
|
if (!markers) {
|
|
@@ -7819,7 +7819,7 @@ var InterpolationConfig = class {
|
|
|
7819
7819
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
7820
7820
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
7821
7821
|
|
|
7822
|
-
// bazel-out/
|
|
7822
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
7823
7823
|
var $EOF = 0;
|
|
7824
7824
|
var $BSPACE = 8;
|
|
7825
7825
|
var $TAB = 9;
|
|
@@ -7901,7 +7901,7 @@ function isQuote(code) {
|
|
|
7901
7901
|
return code === $SQ || code === $DQ || code === $BT;
|
|
7902
7902
|
}
|
|
7903
7903
|
|
|
7904
|
-
// bazel-out/
|
|
7904
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
7905
7905
|
var ParseLocation = class {
|
|
7906
7906
|
constructor(file, offset, line, col) {
|
|
7907
7907
|
this.file = file;
|
|
@@ -8048,7 +8048,7 @@ function sanitizeIdentifier(name) {
|
|
|
8048
8048
|
return name.replace(/\W/g, "_");
|
|
8049
8049
|
}
|
|
8050
8050
|
|
|
8051
|
-
// bazel-out/
|
|
8051
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
8052
8052
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
8053
8053
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
8054
8054
|
constructor() {
|
|
@@ -8141,7 +8141,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
8141
8141
|
}
|
|
8142
8142
|
};
|
|
8143
8143
|
|
|
8144
|
-
// bazel-out/
|
|
8144
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
8145
8145
|
var policy;
|
|
8146
8146
|
function getPolicy() {
|
|
8147
8147
|
if (policy === void 0) {
|
|
@@ -8179,7 +8179,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
8179
8179
|
return fn2.bind(_global);
|
|
8180
8180
|
}
|
|
8181
8181
|
|
|
8182
|
-
// bazel-out/
|
|
8182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
8183
8183
|
var JitEvaluator = class {
|
|
8184
8184
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
8185
8185
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -8267,7 +8267,7 @@ function isUseStrictStatement(statement) {
|
|
|
8267
8267
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
8268
8268
|
}
|
|
8269
8269
|
|
|
8270
|
-
// bazel-out/
|
|
8270
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
8271
8271
|
function compileInjector(meta) {
|
|
8272
8272
|
const definitionMap = new DefinitionMap();
|
|
8273
8273
|
if (meta.providers !== null) {
|
|
@@ -8284,7 +8284,7 @@ function createInjectorType(meta) {
|
|
|
8284
8284
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
8285
8285
|
}
|
|
8286
8286
|
|
|
8287
|
-
// bazel-out/
|
|
8287
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
8288
8288
|
var R3JitReflector = class {
|
|
8289
8289
|
constructor(context) {
|
|
8290
8290
|
this.context = context;
|
|
@@ -8300,7 +8300,7 @@ var R3JitReflector = class {
|
|
|
8300
8300
|
}
|
|
8301
8301
|
};
|
|
8302
8302
|
|
|
8303
|
-
// bazel-out/
|
|
8303
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
8304
8304
|
var R3SelectorScopeMode;
|
|
8305
8305
|
(function(R3SelectorScopeMode2) {
|
|
8306
8306
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -8435,7 +8435,7 @@ function tupleOfTypes(types) {
|
|
|
8435
8435
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
8436
8436
|
}
|
|
8437
8437
|
|
|
8438
|
-
// bazel-out/
|
|
8438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
8439
8439
|
function compilePipeFromMetadata(metadata) {
|
|
8440
8440
|
const definitionMapValues = [];
|
|
8441
8441
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -8456,7 +8456,7 @@ function createPipeType(metadata) {
|
|
|
8456
8456
|
]));
|
|
8457
8457
|
}
|
|
8458
8458
|
|
|
8459
|
-
// bazel-out/
|
|
8459
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
8460
8460
|
var R3TemplateDependencyKind;
|
|
8461
8461
|
(function(R3TemplateDependencyKind2) {
|
|
8462
8462
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -8464,7 +8464,7 @@ var R3TemplateDependencyKind;
|
|
|
8464
8464
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
8465
8465
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
8466
8466
|
|
|
8467
|
-
// bazel-out/
|
|
8467
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
8468
8468
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
8469
8469
|
"inherit",
|
|
8470
8470
|
"initial",
|
|
@@ -8505,7 +8505,7 @@ var scopedAtRuleIdentifiers = [
|
|
|
8505
8505
|
];
|
|
8506
8506
|
var ShadowCss = class {
|
|
8507
8507
|
constructor() {
|
|
8508
|
-
this._animationDeclarationKeyframesRe = /(^|\s
|
|
8508
|
+
this._animationDeclarationKeyframesRe = /(^|\s+|,)(?:(?:(['"])((?:\\\\|\\\2|(?!\2).)+)\2)|(-?[A-Za-z][\w\-]*))(?=[,\s]|$)/g;
|
|
8509
8509
|
}
|
|
8510
8510
|
shimCssText(cssText, selector, hostSelector = "") {
|
|
8511
8511
|
const comments = [];
|
|
@@ -8548,7 +8548,7 @@ var ShadowCss = class {
|
|
|
8548
8548
|
});
|
|
8549
8549
|
}
|
|
8550
8550
|
_scopeAnimationRule(rule, scopeSelector, unscopedKeyframesSet) {
|
|
8551
|
-
let content = rule.content.replace(/((?:^|\s+|;)(?:-webkit-)?animation
|
|
8551
|
+
let content = rule.content.replace(/((?:^|\s+|;)(?:-webkit-)?animation\s*:\s*),*([^;]+)/g, (_, start, animationDeclarations) => start + animationDeclarations.replace(this._animationDeclarationKeyframesRe, (original, leadingSpaces, quote = "", quotedName, nonQuotedName) => {
|
|
8552
8552
|
if (quotedName) {
|
|
8553
8553
|
return `${leadingSpaces}${this._scopeAnimationKeyframe(`${quote}${quotedName}${quote}`, scopeSelector, unscopedKeyframesSet)}`;
|
|
8554
8554
|
} else {
|
|
@@ -8944,7 +8944,7 @@ function repeatGroups(groups, multiples) {
|
|
|
8944
8944
|
}
|
|
8945
8945
|
}
|
|
8946
8946
|
|
|
8947
|
-
// bazel-out/
|
|
8947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
8948
8948
|
var OpKind;
|
|
8949
8949
|
(function(OpKind2) {
|
|
8950
8950
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -9102,7 +9102,7 @@ var TemplateKind;
|
|
|
9102
9102
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
9103
9103
|
})(TemplateKind || (TemplateKind = {}));
|
|
9104
9104
|
|
|
9105
|
-
// bazel-out/
|
|
9105
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
9106
9106
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
9107
9107
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
9108
9108
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -9130,7 +9130,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
9130
9130
|
return expr[UsesVarOffset] === true;
|
|
9131
9131
|
}
|
|
9132
9132
|
|
|
9133
|
-
// bazel-out/
|
|
9133
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
9134
9134
|
function createStatementOp(statement) {
|
|
9135
9135
|
return __spreadValues({
|
|
9136
9136
|
kind: OpKind.Statement,
|
|
@@ -9152,7 +9152,7 @@ var NEW_OP = {
|
|
|
9152
9152
|
next: null
|
|
9153
9153
|
};
|
|
9154
9154
|
|
|
9155
|
-
// bazel-out/
|
|
9155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
9156
9156
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
9157
9157
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
9158
9158
|
kind: OpKind.InterpolateText,
|
|
@@ -9341,7 +9341,7 @@ function createStoreLetOp(target, declaredName, value, sourceSpan) {
|
|
|
9341
9341
|
}, TRAIT_DEPENDS_ON_SLOT_CONTEXT), TRAIT_CONSUMES_VARS), NEW_OP);
|
|
9342
9342
|
}
|
|
9343
9343
|
|
|
9344
|
-
// bazel-out/
|
|
9344
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
9345
9345
|
var _a;
|
|
9346
9346
|
var _b;
|
|
9347
9347
|
var _c;
|
|
@@ -10259,7 +10259,7 @@ function isStringLiteral(expr) {
|
|
|
10259
10259
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
10260
10260
|
}
|
|
10261
10261
|
|
|
10262
|
-
// bazel-out/
|
|
10262
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
10263
10263
|
var _OpList = class {
|
|
10264
10264
|
constructor() {
|
|
10265
10265
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -10450,14 +10450,14 @@ var OpList = _OpList;
|
|
|
10450
10450
|
_OpList.nextListId = 0;
|
|
10451
10451
|
})();
|
|
10452
10452
|
|
|
10453
|
-
// bazel-out/
|
|
10453
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
10454
10454
|
var SlotHandle = class {
|
|
10455
10455
|
constructor() {
|
|
10456
10456
|
this.slot = null;
|
|
10457
10457
|
}
|
|
10458
10458
|
};
|
|
10459
10459
|
|
|
10460
|
-
// bazel-out/
|
|
10460
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
10461
10461
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
10462
10462
|
OpKind.Element,
|
|
10463
10463
|
OpKind.ElementStart,
|
|
@@ -10770,7 +10770,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
10770
10770
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
10771
10771
|
}
|
|
10772
10772
|
|
|
10773
|
-
// bazel-out/
|
|
10773
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
10774
10774
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
10775
10775
|
return __spreadValues(__spreadValues({
|
|
10776
10776
|
kind: OpKind.HostProperty,
|
|
@@ -10784,10 +10784,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
10784
10784
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
10785
10785
|
}
|
|
10786
10786
|
|
|
10787
|
-
// bazel-out/
|
|
10787
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
10788
10788
|
var CTX_REF = "CTX_REF_MARKER";
|
|
10789
10789
|
|
|
10790
|
-
// bazel-out/
|
|
10790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
10791
10791
|
var CompilationJobKind;
|
|
10792
10792
|
(function(CompilationJobKind2) {
|
|
10793
10793
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -10895,7 +10895,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
10895
10895
|
}
|
|
10896
10896
|
};
|
|
10897
10897
|
|
|
10898
|
-
// bazel-out/
|
|
10898
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
10899
10899
|
function deleteAnyCasts(job) {
|
|
10900
10900
|
for (const unit of job.units) {
|
|
10901
10901
|
for (const op of unit.ops()) {
|
|
@@ -10913,7 +10913,7 @@ function removeAnys(e) {
|
|
|
10913
10913
|
return e;
|
|
10914
10914
|
}
|
|
10915
10915
|
|
|
10916
|
-
// bazel-out/
|
|
10916
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
10917
10917
|
function applyI18nExpressions(job) {
|
|
10918
10918
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
10919
10919
|
for (const unit of job.units) {
|
|
@@ -10956,7 +10956,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
10956
10956
|
return false;
|
|
10957
10957
|
}
|
|
10958
10958
|
|
|
10959
|
-
// bazel-out/
|
|
10959
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
10960
10960
|
function assignI18nSlotDependencies(job) {
|
|
10961
10961
|
for (const unit of job.units) {
|
|
10962
10962
|
let updateOp = unit.update.head;
|
|
@@ -11001,7 +11001,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
11001
11001
|
}
|
|
11002
11002
|
}
|
|
11003
11003
|
|
|
11004
|
-
// bazel-out/
|
|
11004
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
11005
11005
|
function createOpXrefMap(unit) {
|
|
11006
11006
|
const map = /* @__PURE__ */ new Map();
|
|
11007
11007
|
for (const op of unit.create) {
|
|
@@ -11016,7 +11016,7 @@ function createOpXrefMap(unit) {
|
|
|
11016
11016
|
return map;
|
|
11017
11017
|
}
|
|
11018
11018
|
|
|
11019
|
-
// bazel-out/
|
|
11019
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
11020
11020
|
function extractAttributes(job) {
|
|
11021
11021
|
for (const unit of job.units) {
|
|
11022
11022
|
const elements = createOpXrefMap(unit);
|
|
@@ -11145,7 +11145,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
11145
11145
|
}
|
|
11146
11146
|
}
|
|
11147
11147
|
|
|
11148
|
-
// bazel-out/
|
|
11148
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
11149
11149
|
function lookupElement2(elements, xref) {
|
|
11150
11150
|
const el = elements.get(xref);
|
|
11151
11151
|
if (el === void 0) {
|
|
@@ -11202,7 +11202,7 @@ function specializeBindings(job) {
|
|
|
11202
11202
|
}
|
|
11203
11203
|
}
|
|
11204
11204
|
|
|
11205
|
-
// bazel-out/
|
|
11205
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
11206
11206
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
11207
11207
|
Identifiers.attribute,
|
|
11208
11208
|
Identifiers.classProp,
|
|
@@ -11271,7 +11271,7 @@ function chainOperationsInList(opList) {
|
|
|
11271
11271
|
}
|
|
11272
11272
|
}
|
|
11273
11273
|
|
|
11274
|
-
// bazel-out/
|
|
11274
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
11275
11275
|
function collapseSingletonInterpolations(job) {
|
|
11276
11276
|
for (const unit of job.units) {
|
|
11277
11277
|
for (const op of unit.update) {
|
|
@@ -11283,7 +11283,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
11283
11283
|
}
|
|
11284
11284
|
}
|
|
11285
11285
|
|
|
11286
|
-
// bazel-out/
|
|
11286
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
11287
11287
|
function generateConditionalExpressions(job) {
|
|
11288
11288
|
for (const unit of job.units) {
|
|
11289
11289
|
for (const op of unit.ops()) {
|
|
@@ -11320,7 +11320,7 @@ function generateConditionalExpressions(job) {
|
|
|
11320
11320
|
}
|
|
11321
11321
|
}
|
|
11322
11322
|
|
|
11323
|
-
// bazel-out/
|
|
11323
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
11324
11324
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
11325
11325
|
["&&", BinaryOperator.And],
|
|
11326
11326
|
[">", BinaryOperator.Bigger],
|
|
@@ -11377,7 +11377,7 @@ function literalOrArrayLiteral(value) {
|
|
|
11377
11377
|
return literal(value);
|
|
11378
11378
|
}
|
|
11379
11379
|
|
|
11380
|
-
// bazel-out/
|
|
11380
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
11381
11381
|
function collectElementConsts(job) {
|
|
11382
11382
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
11383
11383
|
for (const unit of job.units) {
|
|
@@ -11546,7 +11546,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
11546
11546
|
return literalArr(attrArray);
|
|
11547
11547
|
}
|
|
11548
11548
|
|
|
11549
|
-
// bazel-out/
|
|
11549
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
11550
11550
|
function convertI18nBindings(job) {
|
|
11551
11551
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
11552
11552
|
for (const unit of job.units) {
|
|
@@ -11587,7 +11587,7 @@ function convertI18nBindings(job) {
|
|
|
11587
11587
|
}
|
|
11588
11588
|
}
|
|
11589
11589
|
|
|
11590
|
-
// bazel-out/
|
|
11590
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
11591
11591
|
function resolveDeferDepsFns(job) {
|
|
11592
11592
|
var _a2;
|
|
11593
11593
|
for (const unit of job.units) {
|
|
@@ -11612,7 +11612,7 @@ function resolveDeferDepsFns(job) {
|
|
|
11612
11612
|
}
|
|
11613
11613
|
}
|
|
11614
11614
|
|
|
11615
|
-
// bazel-out/
|
|
11615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
11616
11616
|
function createI18nContexts(job) {
|
|
11617
11617
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
11618
11618
|
for (const unit of job.units) {
|
|
@@ -11690,7 +11690,7 @@ function createI18nContexts(job) {
|
|
|
11690
11690
|
}
|
|
11691
11691
|
}
|
|
11692
11692
|
|
|
11693
|
-
// bazel-out/
|
|
11693
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
11694
11694
|
function deduplicateTextBindings(job) {
|
|
11695
11695
|
const seen = /* @__PURE__ */ new Map();
|
|
11696
11696
|
for (const unit of job.units) {
|
|
@@ -11712,7 +11712,7 @@ function deduplicateTextBindings(job) {
|
|
|
11712
11712
|
}
|
|
11713
11713
|
}
|
|
11714
11714
|
|
|
11715
|
-
// bazel-out/
|
|
11715
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
11716
11716
|
function configureDeferInstructions(job) {
|
|
11717
11717
|
for (const unit of job.units) {
|
|
11718
11718
|
for (const op of unit.create) {
|
|
@@ -11729,7 +11729,7 @@ function configureDeferInstructions(job) {
|
|
|
11729
11729
|
}
|
|
11730
11730
|
}
|
|
11731
11731
|
|
|
11732
|
-
// bazel-out/
|
|
11732
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
11733
11733
|
function resolveDeferTargetNames(job) {
|
|
11734
11734
|
const scopes = /* @__PURE__ */ new Map();
|
|
11735
11735
|
function getScopeForView2(view) {
|
|
@@ -11823,7 +11823,7 @@ var Scope = class {
|
|
|
11823
11823
|
}
|
|
11824
11824
|
};
|
|
11825
11825
|
|
|
11826
|
-
// bazel-out/
|
|
11826
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
11827
11827
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
11828
11828
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
11829
11829
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -11850,7 +11850,7 @@ function collapseEmptyInstructions(job) {
|
|
|
11850
11850
|
}
|
|
11851
11851
|
}
|
|
11852
11852
|
|
|
11853
|
-
// bazel-out/
|
|
11853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
11854
11854
|
function expandSafeReads(job) {
|
|
11855
11855
|
for (const unit of job.units) {
|
|
11856
11856
|
for (const op of unit.ops()) {
|
|
@@ -11986,7 +11986,7 @@ function ternaryTransform(e) {
|
|
|
11986
11986
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
11987
11987
|
}
|
|
11988
11988
|
|
|
11989
|
-
// bazel-out/
|
|
11989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
11990
11990
|
var ESCAPE = "\uFFFD";
|
|
11991
11991
|
var ELEMENT_MARKER = "#";
|
|
11992
11992
|
var TEMPLATE_MARKER = "*";
|
|
@@ -12122,7 +12122,7 @@ function formatValue(value) {
|
|
|
12122
12122
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
12123
12123
|
}
|
|
12124
12124
|
|
|
12125
|
-
// bazel-out/
|
|
12125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
12126
12126
|
function generateAdvance(job) {
|
|
12127
12127
|
for (const unit of job.units) {
|
|
12128
12128
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -12165,7 +12165,7 @@ function generateAdvance(job) {
|
|
|
12165
12165
|
}
|
|
12166
12166
|
}
|
|
12167
12167
|
|
|
12168
|
-
// bazel-out/
|
|
12168
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
12169
12169
|
function generateProjectionDefs(job) {
|
|
12170
12170
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
12171
12171
|
const selectors = [];
|
|
@@ -12189,7 +12189,7 @@ function generateProjectionDefs(job) {
|
|
|
12189
12189
|
}
|
|
12190
12190
|
}
|
|
12191
12191
|
|
|
12192
|
-
// bazel-out/
|
|
12192
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
12193
12193
|
function generateVariables(job) {
|
|
12194
12194
|
recursivelyProcessView(job.root, null);
|
|
12195
12195
|
}
|
|
@@ -12307,7 +12307,7 @@ function generateVariablesInScopeForView(view, scope, isListener) {
|
|
|
12307
12307
|
return newOps;
|
|
12308
12308
|
}
|
|
12309
12309
|
|
|
12310
|
-
// bazel-out/
|
|
12310
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
12311
12311
|
function collectConstExpressions(job) {
|
|
12312
12312
|
for (const unit of job.units) {
|
|
12313
12313
|
for (const op of unit.ops()) {
|
|
@@ -12321,7 +12321,7 @@ function collectConstExpressions(job) {
|
|
|
12321
12321
|
}
|
|
12322
12322
|
}
|
|
12323
12323
|
|
|
12324
|
-
// bazel-out/
|
|
12324
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
12325
12325
|
var STYLE_DOT = "style.";
|
|
12326
12326
|
var CLASS_DOT = "class.";
|
|
12327
12327
|
var STYLE_BANG = "style!";
|
|
@@ -12379,7 +12379,7 @@ function parseProperty(name) {
|
|
|
12379
12379
|
return { property: property2, suffix };
|
|
12380
12380
|
}
|
|
12381
12381
|
|
|
12382
|
-
// bazel-out/
|
|
12382
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
12383
12383
|
function mapLiteral(obj, quoted = false) {
|
|
12384
12384
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
12385
12385
|
key,
|
|
@@ -12388,7 +12388,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
12388
12388
|
})));
|
|
12389
12389
|
}
|
|
12390
12390
|
|
|
12391
|
-
// bazel-out/
|
|
12391
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
12392
12392
|
var IcuSerializerVisitor = class {
|
|
12393
12393
|
visitText(text2) {
|
|
12394
12394
|
return text2.value;
|
|
@@ -12422,7 +12422,7 @@ function serializeIcuNode(icu) {
|
|
|
12422
12422
|
return icu.visit(serializer);
|
|
12423
12423
|
}
|
|
12424
12424
|
|
|
12425
|
-
// bazel-out/
|
|
12425
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
12426
12426
|
var TokenType;
|
|
12427
12427
|
(function(TokenType2) {
|
|
12428
12428
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -12783,7 +12783,7 @@ function parseIntAutoRadix(text2) {
|
|
|
12783
12783
|
return result;
|
|
12784
12784
|
}
|
|
12785
12785
|
|
|
12786
|
-
// bazel-out/
|
|
12786
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
12787
12787
|
var SplitInterpolation = class {
|
|
12788
12788
|
constructor(strings, expressions, offsets) {
|
|
12789
12789
|
this.strings = strings;
|
|
@@ -13667,7 +13667,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
13667
13667
|
return offsetMap;
|
|
13668
13668
|
}
|
|
13669
13669
|
|
|
13670
|
-
// bazel-out/
|
|
13670
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
13671
13671
|
var NodeWithI18n = class {
|
|
13672
13672
|
constructor(sourceSpan, i18n2) {
|
|
13673
13673
|
this.sourceSpan = sourceSpan;
|
|
@@ -13790,7 +13790,7 @@ function visitAll2(visitor, nodes, context = null) {
|
|
|
13790
13790
|
return result;
|
|
13791
13791
|
}
|
|
13792
13792
|
|
|
13793
|
-
// bazel-out/
|
|
13793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
13794
13794
|
var _SECURITY_SCHEMA;
|
|
13795
13795
|
function SECURITY_SCHEMA() {
|
|
13796
13796
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -13851,11 +13851,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
13851
13851
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
13852
13852
|
}
|
|
13853
13853
|
|
|
13854
|
-
// bazel-out/
|
|
13854
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
13855
13855
|
var ElementSchemaRegistry = class {
|
|
13856
13856
|
};
|
|
13857
13857
|
|
|
13858
|
-
// bazel-out/
|
|
13858
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
13859
13859
|
var BOOLEAN = "boolean";
|
|
13860
13860
|
var NUMBER = "number";
|
|
13861
13861
|
var STRING = "string";
|
|
@@ -14238,7 +14238,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
14238
14238
|
}
|
|
14239
14239
|
}
|
|
14240
14240
|
|
|
14241
|
-
// bazel-out/
|
|
14241
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
14242
14242
|
var HtmlTagDefinition = class {
|
|
14243
14243
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
14244
14244
|
this.closedByChildren = {};
|
|
@@ -14374,7 +14374,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
14374
14374
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
14375
14375
|
}
|
|
14376
14376
|
|
|
14377
|
-
// bazel-out/
|
|
14377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
14378
14378
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
14379
14379
|
"A": "LINK",
|
|
14380
14380
|
"B": "BOLD_TEXT",
|
|
@@ -14496,7 +14496,7 @@ var PlaceholderRegistry = class {
|
|
|
14496
14496
|
}
|
|
14497
14497
|
};
|
|
14498
14498
|
|
|
14499
|
-
// bazel-out/
|
|
14499
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
14500
14500
|
var _expParser = new Parser(new Lexer());
|
|
14501
14501
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
14502
14502
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -14678,14 +14678,14 @@ function extractPlaceholderName(input) {
|
|
|
14678
14678
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
14679
14679
|
}
|
|
14680
14680
|
|
|
14681
|
-
// bazel-out/
|
|
14681
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
14682
14682
|
var I18nError = class extends ParseError {
|
|
14683
14683
|
constructor(span, msg) {
|
|
14684
14684
|
super(span, msg);
|
|
14685
14685
|
}
|
|
14686
14686
|
};
|
|
14687
14687
|
|
|
14688
|
-
// bazel-out/
|
|
14688
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
14689
14689
|
var NAMED_ENTITIES = {
|
|
14690
14690
|
"AElig": "\xC6",
|
|
14691
14691
|
"AMP": "&",
|
|
@@ -16816,7 +16816,7 @@ var NAMED_ENTITIES = {
|
|
|
16816
16816
|
var NGSP_UNICODE = "\uE500";
|
|
16817
16817
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
16818
16818
|
|
|
16819
|
-
// bazel-out/
|
|
16819
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
16820
16820
|
var TokenError = class extends ParseError {
|
|
16821
16821
|
constructor(errorMsg, tokenType, span) {
|
|
16822
16822
|
super(span, errorMsg);
|
|
@@ -17806,7 +17806,7 @@ var CursorError = class {
|
|
|
17806
17806
|
}
|
|
17807
17807
|
};
|
|
17808
17808
|
|
|
17809
|
-
// bazel-out/
|
|
17809
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
17810
17810
|
var TreeError = class extends ParseError {
|
|
17811
17811
|
static create(elementName, span, msg) {
|
|
17812
17812
|
return new TreeError(elementName, span, msg);
|
|
@@ -18234,7 +18234,7 @@ function decodeEntity(match, entity) {
|
|
|
18234
18234
|
return match;
|
|
18235
18235
|
}
|
|
18236
18236
|
|
|
18237
|
-
// bazel-out/
|
|
18237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
18238
18238
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
18239
18239
|
"iframe|srcdoc",
|
|
18240
18240
|
"*|innerhtml",
|
|
@@ -18249,7 +18249,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
18249
18249
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
18250
18250
|
}
|
|
18251
18251
|
|
|
18252
|
-
// bazel-out/
|
|
18252
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
18253
18253
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
18254
18254
|
if (htmlNode instanceof NodeWithI18n) {
|
|
18255
18255
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -18409,7 +18409,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
18409
18409
|
return jsDocComment(tags);
|
|
18410
18410
|
}
|
|
18411
18411
|
|
|
18412
|
-
// bazel-out/
|
|
18412
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
18413
18413
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
18414
18414
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
18415
18415
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -18460,7 +18460,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
18460
18460
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
18461
18461
|
}
|
|
18462
18462
|
|
|
18463
|
-
// bazel-out/
|
|
18463
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
18464
18464
|
function createLocalizeStatements(variable2, message, params) {
|
|
18465
18465
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
18466
18466
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -18549,7 +18549,7 @@ function createEmptyMessagePart(location) {
|
|
|
18549
18549
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
18550
18550
|
}
|
|
18551
18551
|
|
|
18552
|
-
// bazel-out/
|
|
18552
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
18553
18553
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
18554
18554
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
18555
18555
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -18720,7 +18720,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
18720
18720
|
return variable(name);
|
|
18721
18721
|
}
|
|
18722
18722
|
|
|
18723
|
-
// bazel-out/
|
|
18723
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
18724
18724
|
function convertI18nText(job) {
|
|
18725
18725
|
var _a2, _b2, _c2;
|
|
18726
18726
|
for (const unit of job.units) {
|
|
@@ -18790,7 +18790,7 @@ function convertI18nText(job) {
|
|
|
18790
18790
|
}
|
|
18791
18791
|
}
|
|
18792
18792
|
|
|
18793
|
-
// bazel-out/
|
|
18793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
18794
18794
|
function liftLocalRefs(job) {
|
|
18795
18795
|
for (const unit of job.units) {
|
|
18796
18796
|
for (const op of unit.create) {
|
|
@@ -18820,7 +18820,7 @@ function serializeLocalRefs(refs) {
|
|
|
18820
18820
|
return literalArr(constRefs);
|
|
18821
18821
|
}
|
|
18822
18822
|
|
|
18823
|
-
// bazel-out/
|
|
18823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
18824
18824
|
function emitNamespaceChanges(job) {
|
|
18825
18825
|
for (const unit of job.units) {
|
|
18826
18826
|
let activeNamespace = Namespace.HTML;
|
|
@@ -18836,7 +18836,7 @@ function emitNamespaceChanges(job) {
|
|
|
18836
18836
|
}
|
|
18837
18837
|
}
|
|
18838
18838
|
|
|
18839
|
-
// bazel-out/
|
|
18839
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
18840
18840
|
function parse(value) {
|
|
18841
18841
|
const styles = [];
|
|
18842
18842
|
let i = 0;
|
|
@@ -18930,7 +18930,7 @@ function parseExtractedStyles(job) {
|
|
|
18930
18930
|
}
|
|
18931
18931
|
}
|
|
18932
18932
|
|
|
18933
|
-
// bazel-out/
|
|
18933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
18934
18934
|
function nameFunctionsAndVariables(job) {
|
|
18935
18935
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
18936
18936
|
}
|
|
@@ -19074,7 +19074,7 @@ function stripImportant(name) {
|
|
|
19074
19074
|
return name;
|
|
19075
19075
|
}
|
|
19076
19076
|
|
|
19077
|
-
// bazel-out/
|
|
19077
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
19078
19078
|
function mergeNextContextExpressions(job) {
|
|
19079
19079
|
for (const unit of job.units) {
|
|
19080
19080
|
for (const op of unit.create) {
|
|
@@ -19121,7 +19121,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
19121
19121
|
}
|
|
19122
19122
|
}
|
|
19123
19123
|
|
|
19124
|
-
// bazel-out/
|
|
19124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
19125
19125
|
var CONTAINER_TAG = "ng-container";
|
|
19126
19126
|
function generateNgContainerOps(job) {
|
|
19127
19127
|
for (const unit of job.units) {
|
|
@@ -19138,7 +19138,7 @@ function generateNgContainerOps(job) {
|
|
|
19138
19138
|
}
|
|
19139
19139
|
}
|
|
19140
19140
|
|
|
19141
|
-
// bazel-out/
|
|
19141
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
19142
19142
|
function lookupElement3(elements, xref) {
|
|
19143
19143
|
const el = elements.get(xref);
|
|
19144
19144
|
if (el === void 0) {
|
|
@@ -19168,7 +19168,7 @@ function disableBindings(job) {
|
|
|
19168
19168
|
}
|
|
19169
19169
|
}
|
|
19170
19170
|
|
|
19171
|
-
// bazel-out/
|
|
19171
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
19172
19172
|
function generateNullishCoalesceExpressions(job) {
|
|
19173
19173
|
for (const unit of job.units) {
|
|
19174
19174
|
for (const op of unit.ops()) {
|
|
@@ -19184,7 +19184,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
19184
19184
|
}
|
|
19185
19185
|
}
|
|
19186
19186
|
|
|
19187
|
-
// bazel-out/
|
|
19187
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
19188
19188
|
function kindTest(kind) {
|
|
19189
19189
|
return (op) => op.kind === kind;
|
|
19190
19190
|
}
|
|
@@ -19274,7 +19274,7 @@ function keepLast(ops) {
|
|
|
19274
19274
|
return ops.slice(ops.length - 1);
|
|
19275
19275
|
}
|
|
19276
19276
|
|
|
19277
|
-
// bazel-out/
|
|
19277
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
19278
19278
|
function removeContentSelectors(job) {
|
|
19279
19279
|
for (const unit of job.units) {
|
|
19280
19280
|
const elements = createOpXrefMap(unit);
|
|
@@ -19301,7 +19301,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
19301
19301
|
return el;
|
|
19302
19302
|
}
|
|
19303
19303
|
|
|
19304
|
-
// bazel-out/
|
|
19304
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
19305
19305
|
function createPipes(job) {
|
|
19306
19306
|
for (const unit of job.units) {
|
|
19307
19307
|
processPipeBindingsInView(unit);
|
|
@@ -19349,7 +19349,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
19349
19349
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
19350
19350
|
}
|
|
19351
19351
|
|
|
19352
|
-
// bazel-out/
|
|
19352
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
19353
19353
|
function createVariadicPipes(job) {
|
|
19354
19354
|
for (const unit of job.units) {
|
|
19355
19355
|
for (const op of unit.update) {
|
|
@@ -19366,7 +19366,7 @@ function createVariadicPipes(job) {
|
|
|
19366
19366
|
}
|
|
19367
19367
|
}
|
|
19368
19368
|
|
|
19369
|
-
// bazel-out/
|
|
19369
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
19370
19370
|
function propagateI18nBlocks(job) {
|
|
19371
19371
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
19372
19372
|
}
|
|
@@ -19420,7 +19420,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
19420
19420
|
}
|
|
19421
19421
|
}
|
|
19422
19422
|
|
|
19423
|
-
// bazel-out/
|
|
19423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
19424
19424
|
function extractPureFunctions(job) {
|
|
19425
19425
|
for (const view of job.units) {
|
|
19426
19426
|
for (const op of view.ops()) {
|
|
@@ -19462,7 +19462,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
19462
19462
|
}
|
|
19463
19463
|
};
|
|
19464
19464
|
|
|
19465
|
-
// bazel-out/
|
|
19465
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
19466
19466
|
function generatePureLiteralStructures(job) {
|
|
19467
19467
|
for (const unit of job.units) {
|
|
19468
19468
|
for (const op of unit.update) {
|
|
@@ -19509,7 +19509,7 @@ function transformLiteralMap(expr) {
|
|
|
19509
19509
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
19510
19510
|
}
|
|
19511
19511
|
|
|
19512
|
-
// bazel-out/
|
|
19512
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
19513
19513
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
19514
19514
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
19515
19515
|
}
|
|
@@ -20041,7 +20041,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
20041
20041
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
20042
20042
|
}
|
|
20043
20043
|
|
|
20044
|
-
// bazel-out/
|
|
20044
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
20045
20045
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
20046
20046
|
["window", Identifiers.resolveWindow],
|
|
20047
20047
|
["document", Identifiers.resolveDocument],
|
|
@@ -20406,7 +20406,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
20406
20406
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
20407
20407
|
}
|
|
20408
20408
|
|
|
20409
|
-
// bazel-out/
|
|
20409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
20410
20410
|
function removeEmptyBindings(job) {
|
|
20411
20411
|
for (const unit of job.units) {
|
|
20412
20412
|
for (const op of unit.update) {
|
|
@@ -20427,7 +20427,7 @@ function removeEmptyBindings(job) {
|
|
|
20427
20427
|
}
|
|
20428
20428
|
}
|
|
20429
20429
|
|
|
20430
|
-
// bazel-out/
|
|
20430
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
20431
20431
|
function removeI18nContexts(job) {
|
|
20432
20432
|
for (const unit of job.units) {
|
|
20433
20433
|
for (const op of unit.create) {
|
|
@@ -20443,7 +20443,7 @@ function removeI18nContexts(job) {
|
|
|
20443
20443
|
}
|
|
20444
20444
|
}
|
|
20445
20445
|
|
|
20446
|
-
// bazel-out/
|
|
20446
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
20447
20447
|
function removeUnusedI18nAttributesOps(job) {
|
|
20448
20448
|
for (const unit of job.units) {
|
|
20449
20449
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -20465,7 +20465,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
20465
20465
|
}
|
|
20466
20466
|
}
|
|
20467
20467
|
|
|
20468
|
-
// bazel-out/
|
|
20468
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
20469
20469
|
function resolveContexts(job) {
|
|
20470
20470
|
for (const unit of job.units) {
|
|
20471
20471
|
processLexicalScope(unit, unit.create);
|
|
@@ -20507,7 +20507,7 @@ function processLexicalScope(view, ops) {
|
|
|
20507
20507
|
}
|
|
20508
20508
|
}
|
|
20509
20509
|
|
|
20510
|
-
// bazel-out/
|
|
20510
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
20511
20511
|
function resolveDollarEvent(job) {
|
|
20512
20512
|
for (const unit of job.units) {
|
|
20513
20513
|
transformDollarEvent(unit.create);
|
|
@@ -20530,7 +20530,7 @@ function transformDollarEvent(ops) {
|
|
|
20530
20530
|
}
|
|
20531
20531
|
}
|
|
20532
20532
|
|
|
20533
|
-
// bazel-out/
|
|
20533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
20534
20534
|
function resolveI18nElementPlaceholders(job) {
|
|
20535
20535
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
20536
20536
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -20709,7 +20709,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
20709
20709
|
params.set(placeholder, values);
|
|
20710
20710
|
}
|
|
20711
20711
|
|
|
20712
|
-
// bazel-out/
|
|
20712
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
20713
20713
|
function resolveI18nExpressionPlaceholders(job) {
|
|
20714
20714
|
var _a2;
|
|
20715
20715
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -20762,7 +20762,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
20762
20762
|
}
|
|
20763
20763
|
}
|
|
20764
20764
|
|
|
20765
|
-
// bazel-out/
|
|
20765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
20766
20766
|
function resolveNames(job) {
|
|
20767
20767
|
for (const unit of job.units) {
|
|
20768
20768
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -20840,7 +20840,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
20840
20840
|
}
|
|
20841
20841
|
}
|
|
20842
20842
|
|
|
20843
|
-
// bazel-out/
|
|
20843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
20844
20844
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
20845
20845
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
20846
20846
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -20910,7 +20910,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
20910
20910
|
return securityContext;
|
|
20911
20911
|
}
|
|
20912
20912
|
|
|
20913
|
-
// bazel-out/
|
|
20913
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
20914
20914
|
function transformTwoWayBindingSet(job) {
|
|
20915
20915
|
for (const unit of job.units) {
|
|
20916
20916
|
for (const op of unit.create) {
|
|
@@ -20933,7 +20933,7 @@ function transformTwoWayBindingSet(job) {
|
|
|
20933
20933
|
}
|
|
20934
20934
|
}
|
|
20935
20935
|
|
|
20936
|
-
// bazel-out/
|
|
20936
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
20937
20937
|
function saveAndRestoreView(job) {
|
|
20938
20938
|
for (const unit of job.units) {
|
|
20939
20939
|
unit.create.prepend([
|
|
@@ -20978,7 +20978,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
20978
20978
|
}
|
|
20979
20979
|
}
|
|
20980
20980
|
|
|
20981
|
-
// bazel-out/
|
|
20981
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
20982
20982
|
function allocateSlots(job) {
|
|
20983
20983
|
const slotMap = /* @__PURE__ */ new Map();
|
|
20984
20984
|
for (const unit of job.units) {
|
|
@@ -21003,7 +21003,7 @@ function allocateSlots(job) {
|
|
|
21003
21003
|
}
|
|
21004
21004
|
}
|
|
21005
21005
|
|
|
21006
|
-
// bazel-out/
|
|
21006
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
21007
21007
|
function specializeStyleBindings(job) {
|
|
21008
21008
|
for (const unit of job.units) {
|
|
21009
21009
|
for (const op of unit.update) {
|
|
@@ -21033,7 +21033,7 @@ function specializeStyleBindings(job) {
|
|
|
21033
21033
|
}
|
|
21034
21034
|
}
|
|
21035
21035
|
|
|
21036
|
-
// bazel-out/
|
|
21036
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
21037
21037
|
function generateTemporaryVariables(job) {
|
|
21038
21038
|
for (const unit of job.units) {
|
|
21039
21039
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -21091,7 +21091,7 @@ function assignName(names, expr) {
|
|
|
21091
21091
|
expr.name = name;
|
|
21092
21092
|
}
|
|
21093
21093
|
|
|
21094
|
-
// bazel-out/
|
|
21094
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
21095
21095
|
function generateTrackFns(job) {
|
|
21096
21096
|
for (const unit of job.units) {
|
|
21097
21097
|
for (const op of unit.create) {
|
|
@@ -21124,7 +21124,7 @@ function generateTrackFns(job) {
|
|
|
21124
21124
|
}
|
|
21125
21125
|
}
|
|
21126
21126
|
|
|
21127
|
-
// bazel-out/
|
|
21127
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
21128
21128
|
function optimizeTrackFns(job) {
|
|
21129
21129
|
for (const unit of job.units) {
|
|
21130
21130
|
for (const op of unit.create) {
|
|
@@ -21174,7 +21174,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
21174
21174
|
return true;
|
|
21175
21175
|
}
|
|
21176
21176
|
|
|
21177
|
-
// bazel-out/
|
|
21177
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
21178
21178
|
function generateTrackVariables(job) {
|
|
21179
21179
|
for (const unit of job.units) {
|
|
21180
21180
|
for (const op of unit.create) {
|
|
@@ -21195,7 +21195,7 @@ function generateTrackVariables(job) {
|
|
|
21195
21195
|
}
|
|
21196
21196
|
}
|
|
21197
21197
|
|
|
21198
|
-
// bazel-out/
|
|
21198
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
21199
21199
|
function countVariables(job) {
|
|
21200
21200
|
for (const unit of job.units) {
|
|
21201
21201
|
let varCount = 0;
|
|
@@ -21308,7 +21308,7 @@ function isSingletonInterpolation(expr) {
|
|
|
21308
21308
|
return true;
|
|
21309
21309
|
}
|
|
21310
21310
|
|
|
21311
|
-
// bazel-out/
|
|
21311
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
21312
21312
|
function optimizeVariables(job) {
|
|
21313
21313
|
for (const unit of job.units) {
|
|
21314
21314
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -21560,7 +21560,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
21560
21560
|
}
|
|
21561
21561
|
}
|
|
21562
21562
|
|
|
21563
|
-
// bazel-out/
|
|
21563
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
21564
21564
|
function wrapI18nIcus(job) {
|
|
21565
21565
|
for (const unit of job.units) {
|
|
21566
21566
|
let currentI18nOp = null;
|
|
@@ -21590,7 +21590,7 @@ function wrapI18nIcus(job) {
|
|
|
21590
21590
|
}
|
|
21591
21591
|
}
|
|
21592
21592
|
|
|
21593
|
-
// bazel-out/
|
|
21593
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/store_let_optimization.mjs
|
|
21594
21594
|
function optimizeStoreLet(job) {
|
|
21595
21595
|
const letUsedExternally = /* @__PURE__ */ new Set();
|
|
21596
21596
|
for (const unit of job.units) {
|
|
@@ -21609,7 +21609,7 @@ function optimizeStoreLet(job) {
|
|
|
21609
21609
|
}
|
|
21610
21610
|
}
|
|
21611
21611
|
|
|
21612
|
-
// bazel-out/
|
|
21612
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_illegal_let_references.mjs
|
|
21613
21613
|
function removeIllegalLetReferences(job) {
|
|
21614
21614
|
for (const unit of job.units) {
|
|
21615
21615
|
for (const op of unit.update) {
|
|
@@ -21626,7 +21626,7 @@ function removeIllegalLetReferences(job) {
|
|
|
21626
21626
|
}
|
|
21627
21627
|
}
|
|
21628
21628
|
|
|
21629
|
-
// bazel-out/
|
|
21629
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_local_let_references.mjs
|
|
21630
21630
|
function generateLocalLetReferences(job) {
|
|
21631
21631
|
for (const unit of job.units) {
|
|
21632
21632
|
for (const op of unit.update) {
|
|
@@ -21644,7 +21644,7 @@ function generateLocalLetReferences(job) {
|
|
|
21644
21644
|
}
|
|
21645
21645
|
}
|
|
21646
21646
|
|
|
21647
|
-
// bazel-out/
|
|
21647
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
21648
21648
|
var phases = [
|
|
21649
21649
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
21650
21650
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -21801,7 +21801,7 @@ function emitHostBindingFunction(job) {
|
|
|
21801
21801
|
);
|
|
21802
21802
|
}
|
|
21803
21803
|
|
|
21804
|
-
// bazel-out/
|
|
21804
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
21805
21805
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
21806
21806
|
var domSchema = new DomElementSchemaRegistry();
|
|
21807
21807
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -22559,7 +22559,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
22559
22559
|
return null;
|
|
22560
22560
|
}
|
|
22561
22561
|
|
|
22562
|
-
// bazel-out/
|
|
22562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
22563
22563
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
22564
22564
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
22565
22565
|
}
|
|
@@ -22679,7 +22679,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
22679
22679
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
22680
22680
|
}
|
|
22681
22681
|
|
|
22682
|
-
// bazel-out/
|
|
22682
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
22683
22683
|
var HtmlParser = class extends Parser2 {
|
|
22684
22684
|
constructor() {
|
|
22685
22685
|
super(getHtmlTagDefinition);
|
|
@@ -22689,7 +22689,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
22689
22689
|
}
|
|
22690
22690
|
};
|
|
22691
22691
|
|
|
22692
|
-
// bazel-out/
|
|
22692
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
22693
22693
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
22694
22694
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
22695
22695
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -22758,7 +22758,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
22758
22758
|
return result;
|
|
22759
22759
|
}
|
|
22760
22760
|
|
|
22761
|
-
// bazel-out/
|
|
22761
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
22762
22762
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
22763
22763
|
var ATTRIBUTE_PREFIX = "attr";
|
|
22764
22764
|
var CLASS_PREFIX = "class";
|
|
@@ -23112,7 +23112,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
23112
23112
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
23113
23113
|
}
|
|
23114
23114
|
|
|
23115
|
-
// bazel-out/
|
|
23115
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
23116
23116
|
function isStyleUrlResolvable(url) {
|
|
23117
23117
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
23118
23118
|
return false;
|
|
@@ -23121,7 +23121,7 @@ function isStyleUrlResolvable(url) {
|
|
|
23121
23121
|
}
|
|
23122
23122
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
23123
23123
|
|
|
23124
|
-
// bazel-out/
|
|
23124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
23125
23125
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
23126
23126
|
var LINK_ELEMENT = "link";
|
|
23127
23127
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -23191,7 +23191,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
23191
23191
|
return selectAttr;
|
|
23192
23192
|
}
|
|
23193
23193
|
|
|
23194
|
-
// bazel-out/
|
|
23194
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
23195
23195
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
23196
23196
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
23197
23197
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -23514,7 +23514,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
23514
23514
|
return expression.slice(start, end);
|
|
23515
23515
|
}
|
|
23516
23516
|
|
|
23517
|
-
// bazel-out/
|
|
23517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
23518
23518
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
23519
23519
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
23520
23520
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -23778,7 +23778,7 @@ function parseDeferredTime(value) {
|
|
|
23778
23778
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
23779
23779
|
}
|
|
23780
23780
|
|
|
23781
|
-
// bazel-out/
|
|
23781
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
23782
23782
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
23783
23783
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
23784
23784
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -23913,7 +23913,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
23913
23913
|
return { triggers, prefetchTriggers };
|
|
23914
23914
|
}
|
|
23915
23915
|
|
|
23916
|
-
// bazel-out/
|
|
23916
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
23917
23917
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
23918
23918
|
var KW_BIND_IDX = 1;
|
|
23919
23919
|
var KW_LET_IDX = 2;
|
|
@@ -24380,7 +24380,7 @@ function textContents(node) {
|
|
|
24380
24380
|
}
|
|
24381
24381
|
}
|
|
24382
24382
|
|
|
24383
|
-
// bazel-out/
|
|
24383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
24384
24384
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
24385
24385
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
24386
24386
|
var _a2, _b2;
|
|
@@ -24459,7 +24459,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
|
|
|
24459
24459
|
return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
|
|
24460
24460
|
}
|
|
24461
24461
|
|
|
24462
|
-
// bazel-out/
|
|
24462
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24463
24463
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24464
24464
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
24465
24465
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -24850,7 +24850,7 @@ function compileDeferResolverFunction(meta) {
|
|
|
24850
24850
|
return arrowFn([], literalArr(depExpressions));
|
|
24851
24851
|
}
|
|
24852
24852
|
|
|
24853
|
-
// bazel-out/
|
|
24853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
24854
24854
|
var R3TargetBinder = class {
|
|
24855
24855
|
constructor(directiveMatcher) {
|
|
24856
24856
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25497,11 +25497,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25497
25497
|
return templateEntities;
|
|
25498
25498
|
}
|
|
25499
25499
|
|
|
25500
|
-
// bazel-out/
|
|
25500
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25501
25501
|
var ResourceLoader = class {
|
|
25502
25502
|
};
|
|
25503
25503
|
|
|
25504
|
-
// bazel-out/
|
|
25504
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25505
25505
|
var CompilerFacadeImpl = class {
|
|
25506
25506
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
25507
25507
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -26070,10 +26070,10 @@ function publishFacade(global) {
|
|
|
26070
26070
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26071
26071
|
}
|
|
26072
26072
|
|
|
26073
|
-
// bazel-out/
|
|
26074
|
-
var VERSION2 = new Version("18.
|
|
26073
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26074
|
+
var VERSION2 = new Version("18.2.0-next.0");
|
|
26075
26075
|
|
|
26076
|
-
// bazel-out/
|
|
26076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26077
26077
|
var _I18N_ATTR = "i18n";
|
|
26078
26078
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26079
26079
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26384,7 +26384,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26384
26384
|
return { meaning, description, id: id.trim() };
|
|
26385
26385
|
}
|
|
26386
26386
|
|
|
26387
|
-
// bazel-out/
|
|
26387
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26388
26388
|
var XmlTagDefinition = class {
|
|
26389
26389
|
constructor() {
|
|
26390
26390
|
this.closedByParent = false;
|
|
@@ -26409,7 +26409,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26409
26409
|
return _TAG_DEFINITION;
|
|
26410
26410
|
}
|
|
26411
26411
|
|
|
26412
|
-
// bazel-out/
|
|
26412
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26413
26413
|
var XmlParser = class extends Parser2 {
|
|
26414
26414
|
constructor() {
|
|
26415
26415
|
super(getXmlTagDefinition);
|
|
@@ -26419,7 +26419,7 @@ var XmlParser = class extends Parser2 {
|
|
|
26419
26419
|
}
|
|
26420
26420
|
};
|
|
26421
26421
|
|
|
26422
|
-
// bazel-out/
|
|
26422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26423
26423
|
var _VERSION = "1.2";
|
|
26424
26424
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26425
26425
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -26701,7 +26701,7 @@ function getCtypeForTag(tag) {
|
|
|
26701
26701
|
}
|
|
26702
26702
|
}
|
|
26703
26703
|
|
|
26704
|
-
// bazel-out/
|
|
26704
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
26705
26705
|
var _VERSION2 = "2.0";
|
|
26706
26706
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
26707
26707
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27032,7 +27032,7 @@ function getTypeForTag(tag) {
|
|
|
27032
27032
|
}
|
|
27033
27033
|
}
|
|
27034
27034
|
|
|
27035
|
-
// bazel-out/
|
|
27035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27036
27036
|
var MessageBundle = class {
|
|
27037
27037
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
27038
27038
|
this._htmlParser = _htmlParser;
|
|
@@ -27108,7 +27108,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27108
27108
|
}
|
|
27109
27109
|
};
|
|
27110
27110
|
|
|
27111
|
-
// bazel-out/
|
|
27111
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27112
27112
|
var FactoryTarget2;
|
|
27113
27113
|
(function(FactoryTarget3) {
|
|
27114
27114
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27118,7 +27118,7 @@ var FactoryTarget2;
|
|
|
27118
27118
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27119
27119
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27120
27120
|
|
|
27121
|
-
// bazel-out/
|
|
27121
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27122
27122
|
function compileClassMetadata(metadata) {
|
|
27123
27123
|
const fnCall = internalCompileClassMetadata(metadata);
|
|
27124
27124
|
return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
|
|
@@ -27152,7 +27152,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
|
|
|
27152
27152
|
return arrowFn([], literalArr(dynamicImports));
|
|
27153
27153
|
}
|
|
27154
27154
|
|
|
27155
|
-
// bazel-out/
|
|
27155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27156
27156
|
function compileClassDebugInfo(debugInfo) {
|
|
27157
27157
|
const debugInfoObject = {
|
|
27158
27158
|
className: debugInfo.className
|
|
@@ -27169,13 +27169,13 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27169
27169
|
return iife.callFn([]);
|
|
27170
27170
|
}
|
|
27171
27171
|
|
|
27172
|
-
// bazel-out/
|
|
27172
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27173
27173
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27174
27174
|
var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
|
|
27175
27175
|
function compileDeclareClassMetadata(metadata) {
|
|
27176
27176
|
const definitionMap = new DefinitionMap();
|
|
27177
27177
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27178
|
-
definitionMap.set("version", literal("18.
|
|
27178
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27179
27179
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27180
27180
|
definitionMap.set("type", metadata.type);
|
|
27181
27181
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27194,7 +27194,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27194
27194
|
callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
|
|
27195
27195
|
callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
|
|
27196
27196
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
27197
|
-
definitionMap.set("version", literal("18.
|
|
27197
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27198
27198
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27199
27199
|
definitionMap.set("type", metadata.type);
|
|
27200
27200
|
definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -27202,7 +27202,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27202
27202
|
return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
|
|
27203
27203
|
}
|
|
27204
27204
|
|
|
27205
|
-
// bazel-out/
|
|
27205
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27206
27206
|
function toOptionalLiteralArray(values, mapper) {
|
|
27207
27207
|
if (values === null || values.length === 0) {
|
|
27208
27208
|
return null;
|
|
@@ -27250,7 +27250,7 @@ function compileDependency(dep) {
|
|
|
27250
27250
|
return depMeta.toLiteralMap();
|
|
27251
27251
|
}
|
|
27252
27252
|
|
|
27253
|
-
// bazel-out/
|
|
27253
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27254
27254
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27255
27255
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27256
27256
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27262,7 +27262,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27262
27262
|
const definitionMap = new DefinitionMap();
|
|
27263
27263
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27264
27264
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27265
|
-
definitionMap.set("version", literal("18.
|
|
27265
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27266
27266
|
definitionMap.set("type", meta.type.value);
|
|
27267
27267
|
if (meta.isStandalone) {
|
|
27268
27268
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27424,7 +27424,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27424
27424
|
}));
|
|
27425
27425
|
}
|
|
27426
27426
|
|
|
27427
|
-
// bazel-out/
|
|
27427
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27428
27428
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27429
27429
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27430
27430
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27575,12 +27575,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27575
27575
|
}
|
|
27576
27576
|
};
|
|
27577
27577
|
|
|
27578
|
-
// bazel-out/
|
|
27578
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27579
27579
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27580
27580
|
function compileDeclareFactoryFunction(meta) {
|
|
27581
27581
|
const definitionMap = new DefinitionMap();
|
|
27582
27582
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27583
|
-
definitionMap.set("version", literal("18.
|
|
27583
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27584
27584
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27585
27585
|
definitionMap.set("type", meta.type.value);
|
|
27586
27586
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27592,7 +27592,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27592
27592
|
};
|
|
27593
27593
|
}
|
|
27594
27594
|
|
|
27595
|
-
// bazel-out/
|
|
27595
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27596
27596
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27597
27597
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27598
27598
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27603,7 +27603,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27603
27603
|
function createInjectableDefinitionMap(meta) {
|
|
27604
27604
|
const definitionMap = new DefinitionMap();
|
|
27605
27605
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27606
|
-
definitionMap.set("version", literal("18.
|
|
27606
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27607
27607
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27608
27608
|
definitionMap.set("type", meta.type.value);
|
|
27609
27609
|
if (meta.providedIn !== void 0) {
|
|
@@ -27630,7 +27630,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27630
27630
|
return definitionMap;
|
|
27631
27631
|
}
|
|
27632
27632
|
|
|
27633
|
-
// bazel-out/
|
|
27633
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27634
27634
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27635
27635
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27636
27636
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27641,7 +27641,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27641
27641
|
function createInjectorDefinitionMap(meta) {
|
|
27642
27642
|
const definitionMap = new DefinitionMap();
|
|
27643
27643
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27644
|
-
definitionMap.set("version", literal("18.
|
|
27644
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27645
27645
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27646
27646
|
definitionMap.set("type", meta.type.value);
|
|
27647
27647
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27651,7 +27651,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27651
27651
|
return definitionMap;
|
|
27652
27652
|
}
|
|
27653
27653
|
|
|
27654
|
-
// bazel-out/
|
|
27654
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27655
27655
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27656
27656
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27657
27657
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -27665,7 +27665,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27665
27665
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
27666
27666
|
}
|
|
27667
27667
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
27668
|
-
definitionMap.set("version", literal("18.
|
|
27668
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27669
27669
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27670
27670
|
definitionMap.set("type", meta.type.value);
|
|
27671
27671
|
if (meta.bootstrap.length > 0) {
|
|
@@ -27689,7 +27689,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27689
27689
|
return definitionMap;
|
|
27690
27690
|
}
|
|
27691
27691
|
|
|
27692
|
-
// bazel-out/
|
|
27692
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
27693
27693
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
27694
27694
|
function compileDeclarePipeFromMetadata(meta) {
|
|
27695
27695
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -27700,7 +27700,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
27700
27700
|
function createPipeDefinitionMap(meta) {
|
|
27701
27701
|
const definitionMap = new DefinitionMap();
|
|
27702
27702
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
27703
|
-
definitionMap.set("version", literal("18.
|
|
27703
|
+
definitionMap.set("version", literal("18.2.0-next.0"));
|
|
27704
27704
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27705
27705
|
definitionMap.set("type", meta.type.value);
|
|
27706
27706
|
if (meta.isStandalone) {
|
|
@@ -27713,16 +27713,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
27713
27713
|
return definitionMap;
|
|
27714
27714
|
}
|
|
27715
27715
|
|
|
27716
|
-
// bazel-out/
|
|
27716
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
27717
27717
|
publishFacade(_global);
|
|
27718
27718
|
|
|
27719
|
-
// bazel-out/
|
|
27720
|
-
var VERSION3 = new Version("18.
|
|
27719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
27720
|
+
var VERSION3 = new Version("18.2.0-next.0");
|
|
27721
27721
|
|
|
27722
|
-
// bazel-out/
|
|
27722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
27723
27723
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
27724
27724
|
|
|
27725
|
-
// bazel-out/
|
|
27725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
27726
27726
|
var ErrorCode;
|
|
27727
27727
|
(function(ErrorCode2) {
|
|
27728
27728
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -27816,7 +27816,7 @@ var ErrorCode;
|
|
|
27816
27816
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
27817
27817
|
})(ErrorCode || (ErrorCode = {}));
|
|
27818
27818
|
|
|
27819
|
-
// bazel-out/
|
|
27819
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
27820
27820
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
27821
27821
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
27822
27822
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -27828,15 +27828,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
27828
27828
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
27829
27829
|
]);
|
|
27830
27830
|
|
|
27831
|
-
// bazel-out/
|
|
27831
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
27832
27832
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
27833
27833
|
|
|
27834
|
-
// bazel-out/
|
|
27834
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
27835
27835
|
function ngErrorCode(code) {
|
|
27836
27836
|
return parseInt("-99" + code);
|
|
27837
27837
|
}
|
|
27838
27838
|
|
|
27839
|
-
// bazel-out/
|
|
27839
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
27840
27840
|
var FatalDiagnosticError = class extends Error {
|
|
27841
27841
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
27842
27842
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -27897,10 +27897,10 @@ function isFatalDiagnosticError(err) {
|
|
|
27897
27897
|
return err._isFatalDiagnosticError === true;
|
|
27898
27898
|
}
|
|
27899
27899
|
|
|
27900
|
-
// bazel-out/
|
|
27900
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
27901
27901
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
27902
27902
|
|
|
27903
|
-
// bazel-out/
|
|
27903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
27904
27904
|
var ExtendedTemplateDiagnosticName;
|
|
27905
27905
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
27906
27906
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -27916,7 +27916,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
27916
27916
|
ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
|
|
27917
27917
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
27918
27918
|
|
|
27919
|
-
// bazel-out/
|
|
27919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
27920
27920
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
27921
27921
|
var TS = /\.tsx?$/i;
|
|
27922
27922
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28017,7 +28017,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28017
28017
|
return redirectInfo.unredirected;
|
|
28018
28018
|
}
|
|
28019
28019
|
|
|
28020
|
-
// bazel-out/
|
|
28020
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28021
28021
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28022
28022
|
const exports = reflector.getExportsOfModule(file);
|
|
28023
28023
|
if (exports === null) {
|
|
@@ -28037,7 +28037,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28037
28037
|
return foundExportName;
|
|
28038
28038
|
}
|
|
28039
28039
|
|
|
28040
|
-
// bazel-out/
|
|
28040
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28041
28041
|
var ImportFlags;
|
|
28042
28042
|
(function(ImportFlags2) {
|
|
28043
28043
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28268,7 +28268,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28268
28268
|
}
|
|
28269
28269
|
};
|
|
28270
28270
|
|
|
28271
|
-
// bazel-out/
|
|
28271
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28272
28272
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28273
28273
|
var UnifiedModulesAliasingHost = class {
|
|
28274
28274
|
constructor(unifiedModulesHost) {
|
|
@@ -28335,7 +28335,7 @@ var AliasStrategy = class {
|
|
|
28335
28335
|
}
|
|
28336
28336
|
};
|
|
28337
28337
|
|
|
28338
|
-
// bazel-out/
|
|
28338
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28339
28339
|
function relativePathBetween(from, to) {
|
|
28340
28340
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28341
28341
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28344,7 +28344,7 @@ function normalizeSeparators2(path4) {
|
|
|
28344
28344
|
return path4.replace(/\\/g, "/");
|
|
28345
28345
|
}
|
|
28346
28346
|
|
|
28347
|
-
// bazel-out/
|
|
28347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28348
28348
|
var NoopImportRewriter = class {
|
|
28349
28349
|
rewriteSymbol(symbol, specifier) {
|
|
28350
28350
|
return symbol;
|
|
@@ -28397,7 +28397,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28397
28397
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28398
28398
|
}
|
|
28399
28399
|
|
|
28400
|
-
// bazel-out/
|
|
28400
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28401
28401
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28402
28402
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28403
28403
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28432,7 +28432,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28432
28432
|
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.");
|
|
28433
28433
|
}
|
|
28434
28434
|
|
|
28435
|
-
// bazel-out/
|
|
28435
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28436
28436
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28437
28437
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28438
28438
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28473,13 +28473,13 @@ var DefaultImportTracker = class {
|
|
|
28473
28473
|
}
|
|
28474
28474
|
};
|
|
28475
28475
|
|
|
28476
|
-
// bazel-out/
|
|
28476
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28477
28477
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
28478
28478
|
|
|
28479
|
-
// bazel-out/
|
|
28479
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28480
28480
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28481
28481
|
|
|
28482
|
-
// bazel-out/
|
|
28482
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28483
28483
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28484
28484
|
function isDecoratorIdentifier(exp) {
|
|
28485
28485
|
return import_typescript9.default.isIdentifier(exp) || import_typescript9.default.isPropertyAccessExpression(exp) && import_typescript9.default.isIdentifier(exp.expression) && import_typescript9.default.isIdentifier(exp.name);
|
|
@@ -28502,7 +28502,7 @@ var ClassMemberAccessLevel;
|
|
|
28502
28502
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
28503
28503
|
var AmbientImport = {};
|
|
28504
28504
|
|
|
28505
|
-
// bazel-out/
|
|
28505
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28506
28506
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
28507
28507
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28508
28508
|
var _a2, _b2;
|
|
@@ -28686,7 +28686,7 @@ function extractModuleName(node) {
|
|
|
28686
28686
|
return node.moduleSpecifier.text;
|
|
28687
28687
|
}
|
|
28688
28688
|
|
|
28689
|
-
// bazel-out/
|
|
28689
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
28690
28690
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28691
28691
|
function isNamedClassDeclaration(node) {
|
|
28692
28692
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -28710,7 +28710,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
28710
28710
|
}
|
|
28711
28711
|
}
|
|
28712
28712
|
|
|
28713
|
-
// bazel-out/
|
|
28713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28714
28714
|
var TypeScriptReflectionHost = class {
|
|
28715
28715
|
constructor(checker, isLocalCompilation = false) {
|
|
28716
28716
|
this.checker = checker;
|
|
@@ -29197,7 +29197,7 @@ function getExportedName(decl, originalId) {
|
|
|
29197
29197
|
}
|
|
29198
29198
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29199
29199
|
|
|
29200
|
-
// bazel-out/
|
|
29200
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29201
29201
|
var AssumeEager = "AssumeEager";
|
|
29202
29202
|
var DeferredSymbolTracker = class {
|
|
29203
29203
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29317,7 +29317,7 @@ var DeferredSymbolTracker = class {
|
|
|
29317
29317
|
}
|
|
29318
29318
|
};
|
|
29319
29319
|
|
|
29320
|
-
// bazel-out/
|
|
29320
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
29321
29321
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
29322
29322
|
var ImportedSymbolsTracker = class {
|
|
29323
29323
|
constructor() {
|
|
@@ -29387,7 +29387,7 @@ var ImportedSymbolsTracker = class {
|
|
|
29387
29387
|
}
|
|
29388
29388
|
};
|
|
29389
29389
|
|
|
29390
|
-
// bazel-out/
|
|
29390
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
29391
29391
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
29392
29392
|
var LocalCompilationExtraImportsTracker = class {
|
|
29393
29393
|
constructor(typeChecker) {
|
|
@@ -29438,7 +29438,7 @@ function removeQuotations(s) {
|
|
|
29438
29438
|
return s.substring(1, s.length - 1).trim();
|
|
29439
29439
|
}
|
|
29440
29440
|
|
|
29441
|
-
// bazel-out/
|
|
29441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29442
29442
|
var Reference2 = class {
|
|
29443
29443
|
constructor(node, bestGuessOwningModule = null) {
|
|
29444
29444
|
this.node = node;
|
|
@@ -29507,7 +29507,7 @@ var Reference2 = class {
|
|
|
29507
29507
|
}
|
|
29508
29508
|
};
|
|
29509
29509
|
|
|
29510
|
-
// bazel-out/
|
|
29510
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29511
29511
|
var ModuleResolver = class {
|
|
29512
29512
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29513
29513
|
this.program = program;
|
|
@@ -29524,16 +29524,16 @@ var ModuleResolver = class {
|
|
|
29524
29524
|
}
|
|
29525
29525
|
};
|
|
29526
29526
|
|
|
29527
|
-
// bazel-out/
|
|
29527
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
|
|
29528
29528
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
29529
29529
|
|
|
29530
|
-
// bazel-out/
|
|
29530
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
|
|
29531
29531
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
29532
29532
|
|
|
29533
|
-
// bazel-out/
|
|
29533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
29534
29534
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
29535
29535
|
|
|
29536
|
-
// bazel-out/
|
|
29536
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
29537
29537
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
29538
29538
|
var CORE_MODULE2 = "@angular/core";
|
|
29539
29539
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -29791,7 +29791,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
29791
29791
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
29792
29792
|
}
|
|
29793
29793
|
|
|
29794
|
-
// bazel-out/
|
|
29794
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
29795
29795
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
29796
29796
|
const deps = [];
|
|
29797
29797
|
const errors = [];
|
|
@@ -29935,10 +29935,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
29935
29935
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
29936
29936
|
}
|
|
29937
29937
|
|
|
29938
|
-
// bazel-out/
|
|
29938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
29939
29939
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
29940
29940
|
|
|
29941
|
-
// bazel-out/
|
|
29941
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
29942
29942
|
var MetaKind;
|
|
29943
29943
|
(function(MetaKind2) {
|
|
29944
29944
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -29951,10 +29951,10 @@ var MatchSource;
|
|
|
29951
29951
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
29952
29952
|
})(MatchSource || (MatchSource = {}));
|
|
29953
29953
|
|
|
29954
|
-
// bazel-out/
|
|
29954
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
29955
29955
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
29956
29956
|
|
|
29957
|
-
// bazel-out/
|
|
29957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
29958
29958
|
var ClassPropertyMapping = class {
|
|
29959
29959
|
constructor(forwardMap) {
|
|
29960
29960
|
this.forwardMap = forwardMap;
|
|
@@ -30034,7 +30034,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30034
30034
|
return reverseMap;
|
|
30035
30035
|
}
|
|
30036
30036
|
|
|
30037
|
-
// bazel-out/
|
|
30037
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30038
30038
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30039
30039
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30040
30040
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -30230,7 +30230,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
30230
30230
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
30231
30231
|
}
|
|
30232
30232
|
|
|
30233
|
-
// bazel-out/
|
|
30233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30234
30234
|
var DtsMetadataReader = class {
|
|
30235
30235
|
constructor(checker, reflector) {
|
|
30236
30236
|
this.checker = checker;
|
|
@@ -30413,7 +30413,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30413
30413
|
return result.length > 0 ? result : null;
|
|
30414
30414
|
}
|
|
30415
30415
|
|
|
30416
|
-
// bazel-out/
|
|
30416
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30417
30417
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30418
30418
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30419
30419
|
if (topMeta === null) {
|
|
@@ -30476,7 +30476,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30476
30476
|
});
|
|
30477
30477
|
}
|
|
30478
30478
|
|
|
30479
|
-
// bazel-out/
|
|
30479
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30480
30480
|
var LocalMetadataRegistry = class {
|
|
30481
30481
|
constructor() {
|
|
30482
30482
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -30533,7 +30533,7 @@ var CompoundMetadataRegistry = class {
|
|
|
30533
30533
|
}
|
|
30534
30534
|
};
|
|
30535
30535
|
|
|
30536
|
-
// bazel-out/
|
|
30536
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
30537
30537
|
var ResourceRegistry = class {
|
|
30538
30538
|
constructor() {
|
|
30539
30539
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -30598,7 +30598,7 @@ var ResourceRegistry = class {
|
|
|
30598
30598
|
}
|
|
30599
30599
|
};
|
|
30600
30600
|
|
|
30601
|
-
// bazel-out/
|
|
30601
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
30602
30602
|
var ExportedProviderStatusResolver = class {
|
|
30603
30603
|
constructor(metaReader) {
|
|
30604
30604
|
this.metaReader = metaReader;
|
|
@@ -30642,7 +30642,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
30642
30642
|
}
|
|
30643
30643
|
};
|
|
30644
30644
|
|
|
30645
|
-
// bazel-out/
|
|
30645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
30646
30646
|
var EMPTY_ARRAY = [];
|
|
30647
30647
|
var HostDirectivesResolver = class {
|
|
30648
30648
|
constructor(metaReader) {
|
|
@@ -30707,10 +30707,10 @@ function resolveOutput(bindingName) {
|
|
|
30707
30707
|
return bindingName;
|
|
30708
30708
|
}
|
|
30709
30709
|
|
|
30710
|
-
// bazel-out/
|
|
30710
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
30711
30711
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
30712
30712
|
|
|
30713
|
-
// bazel-out/
|
|
30713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
30714
30714
|
var DynamicValue = class {
|
|
30715
30715
|
constructor(node, reason, code) {
|
|
30716
30716
|
this.node = node;
|
|
@@ -30800,7 +30800,7 @@ var DynamicValue = class {
|
|
|
30800
30800
|
}
|
|
30801
30801
|
};
|
|
30802
30802
|
|
|
30803
|
-
// bazel-out/
|
|
30803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
30804
30804
|
var ResolvedModule = class {
|
|
30805
30805
|
constructor(exports, evaluate) {
|
|
30806
30806
|
this.exports = exports;
|
|
@@ -30830,7 +30830,7 @@ var EnumValue = class {
|
|
|
30830
30830
|
var KnownFn = class {
|
|
30831
30831
|
};
|
|
30832
30832
|
|
|
30833
|
-
// bazel-out/
|
|
30833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
30834
30834
|
function describeResolvedType(value, maxDepth = 1) {
|
|
30835
30835
|
var _a2, _b2;
|
|
30836
30836
|
if (value === null) {
|
|
@@ -30963,10 +30963,10 @@ function getContainerNode(node) {
|
|
|
30963
30963
|
return node.getSourceFile();
|
|
30964
30964
|
}
|
|
30965
30965
|
|
|
30966
|
-
// bazel-out/
|
|
30966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
30967
30967
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
30968
30968
|
|
|
30969
|
-
// bazel-out/
|
|
30969
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
30970
30970
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
30971
30971
|
constructor(lhs) {
|
|
30972
30972
|
super();
|
|
@@ -31018,14 +31018,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31018
31018
|
}
|
|
31019
31019
|
};
|
|
31020
31020
|
|
|
31021
|
-
// bazel-out/
|
|
31021
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31022
31022
|
var SyntheticValue = class {
|
|
31023
31023
|
constructor(value) {
|
|
31024
31024
|
this.value = value;
|
|
31025
31025
|
}
|
|
31026
31026
|
};
|
|
31027
31027
|
|
|
31028
|
-
// bazel-out/
|
|
31028
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31029
31029
|
function literalBinaryOp(op) {
|
|
31030
31030
|
return { op, literal: true };
|
|
31031
31031
|
}
|
|
@@ -31600,7 +31600,7 @@ function owningModule(context, override = null) {
|
|
|
31600
31600
|
}
|
|
31601
31601
|
}
|
|
31602
31602
|
|
|
31603
|
-
// bazel-out/
|
|
31603
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
31604
31604
|
var PartialEvaluator = class {
|
|
31605
31605
|
constructor(host, checker, dependencyTracker) {
|
|
31606
31606
|
this.host = host;
|
|
@@ -31620,7 +31620,7 @@ var PartialEvaluator = class {
|
|
|
31620
31620
|
}
|
|
31621
31621
|
};
|
|
31622
31622
|
|
|
31623
|
-
// bazel-out/
|
|
31623
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
31624
31624
|
var CompilationMode;
|
|
31625
31625
|
(function(CompilationMode2) {
|
|
31626
31626
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -31634,7 +31634,7 @@ var HandlerPrecedence;
|
|
|
31634
31634
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
31635
31635
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
31636
31636
|
|
|
31637
|
-
// bazel-out/
|
|
31637
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
31638
31638
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
31639
31639
|
function aliasTransformFactory(exportStatements) {
|
|
31640
31640
|
return () => {
|
|
@@ -31659,10 +31659,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
31659
31659
|
};
|
|
31660
31660
|
}
|
|
31661
31661
|
|
|
31662
|
-
// bazel-out/
|
|
31662
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
31663
31663
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
31664
31664
|
|
|
31665
|
-
// bazel-out/
|
|
31665
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
31666
31666
|
var PerfPhase;
|
|
31667
31667
|
(function(PerfPhase2) {
|
|
31668
31668
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -31730,7 +31730,7 @@ var PerfCheckpoint;
|
|
|
31730
31730
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
31731
31731
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
31732
31732
|
|
|
31733
|
-
// bazel-out/
|
|
31733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
31734
31734
|
var NoopPerfRecorder = class {
|
|
31735
31735
|
eventCount() {
|
|
31736
31736
|
}
|
|
@@ -31747,7 +31747,7 @@ var NoopPerfRecorder = class {
|
|
|
31747
31747
|
};
|
|
31748
31748
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
31749
31749
|
|
|
31750
|
-
// bazel-out/
|
|
31750
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
31751
31751
|
function mark() {
|
|
31752
31752
|
return process.hrtime();
|
|
31753
31753
|
}
|
|
@@ -31756,7 +31756,7 @@ function timeSinceInMicros(mark2) {
|
|
|
31756
31756
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
31757
31757
|
}
|
|
31758
31758
|
|
|
31759
|
-
// bazel-out/
|
|
31759
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
31760
31760
|
var ActivePerfRecorder = class {
|
|
31761
31761
|
static zeroedToNow() {
|
|
31762
31762
|
return new ActivePerfRecorder(mark());
|
|
@@ -31850,7 +31850,7 @@ var DelegatingPerfRecorder = class {
|
|
|
31850
31850
|
}
|
|
31851
31851
|
};
|
|
31852
31852
|
|
|
31853
|
-
// bazel-out/
|
|
31853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
31854
31854
|
var TraitState;
|
|
31855
31855
|
(function(TraitState2) {
|
|
31856
31856
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -31907,7 +31907,7 @@ var TraitImpl = class {
|
|
|
31907
31907
|
}
|
|
31908
31908
|
};
|
|
31909
31909
|
|
|
31910
|
-
// bazel-out/
|
|
31910
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
31911
31911
|
var TraitCompiler = class {
|
|
31912
31912
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
31913
31913
|
this.handlers = handlers;
|
|
@@ -32366,10 +32366,10 @@ function containsErrors(diagnostics) {
|
|
|
32366
32366
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
32367
32367
|
}
|
|
32368
32368
|
|
|
32369
|
-
// bazel-out/
|
|
32369
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
32370
32370
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
32371
32371
|
|
|
32372
|
-
// bazel-out/
|
|
32372
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
32373
32373
|
var Context = class {
|
|
32374
32374
|
constructor(isStatement) {
|
|
32375
32375
|
this.isStatement = isStatement;
|
|
@@ -32382,10 +32382,10 @@ var Context = class {
|
|
|
32382
32382
|
}
|
|
32383
32383
|
};
|
|
32384
32384
|
|
|
32385
|
-
// bazel-out/
|
|
32385
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32386
32386
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
32387
32387
|
|
|
32388
|
-
// bazel-out/
|
|
32388
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
32389
32389
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32390
32390
|
function createGenerateUniqueIdentifierHelper() {
|
|
32391
32391
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -32411,7 +32411,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
32411
32411
|
};
|
|
32412
32412
|
}
|
|
32413
32413
|
|
|
32414
|
-
// bazel-out/
|
|
32414
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
32415
32415
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32416
32416
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
32417
32417
|
return (ctx) => {
|
|
@@ -32472,7 +32472,7 @@ function isImportStatement(stmt) {
|
|
|
32472
32472
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
32473
32473
|
}
|
|
32474
32474
|
|
|
32475
|
-
// bazel-out/
|
|
32475
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
32476
32476
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
32477
32477
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
32478
32478
|
const requestHash = hashImportRequest(request);
|
|
@@ -32499,7 +32499,7 @@ function hashImportRequest(req) {
|
|
|
32499
32499
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
|
|
32500
32500
|
}
|
|
32501
32501
|
|
|
32502
|
-
// bazel-out/
|
|
32502
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
32503
32503
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
32504
32504
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
32505
32505
|
let candidateImportToBeUpdated = null;
|
|
@@ -32552,7 +32552,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
32552
32552
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
32553
32553
|
}
|
|
32554
32554
|
|
|
32555
|
-
// bazel-out/
|
|
32555
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32556
32556
|
var presetImportManagerForceNamespaceImports = {
|
|
32557
32557
|
disableOriginalSourceFileReuse: true,
|
|
32558
32558
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -32701,7 +32701,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
32701
32701
|
}
|
|
32702
32702
|
}
|
|
32703
32703
|
|
|
32704
|
-
// bazel-out/
|
|
32704
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
32705
32705
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
32706
32706
|
[UnaryOperator.Minus, "-"],
|
|
32707
32707
|
[UnaryOperator.Plus, "+"]
|
|
@@ -32946,7 +32946,7 @@ function createRange(span) {
|
|
|
32946
32946
|
};
|
|
32947
32947
|
}
|
|
32948
32948
|
|
|
32949
|
-
// bazel-out/
|
|
32949
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
32950
32950
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
32951
32951
|
var INELIGIBLE = {};
|
|
32952
32952
|
function canEmitType(type, canEmit) {
|
|
@@ -33021,10 +33021,10 @@ var TypeEmitter = class {
|
|
|
33021
33021
|
}
|
|
33022
33022
|
};
|
|
33023
33023
|
|
|
33024
|
-
// bazel-out/
|
|
33024
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33025
33025
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33026
33026
|
|
|
33027
|
-
// bazel-out/
|
|
33027
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
33028
33028
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
33029
33029
|
function tsNumericExpression(value) {
|
|
33030
33030
|
if (value < 0) {
|
|
@@ -33034,7 +33034,7 @@ function tsNumericExpression(value) {
|
|
|
33034
33034
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
33035
33035
|
}
|
|
33036
33036
|
|
|
33037
|
-
// bazel-out/
|
|
33037
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33038
33038
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
33039
33039
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
33040
33040
|
}
|
|
@@ -33251,7 +33251,7 @@ var TypeTranslatorVisitor = class {
|
|
|
33251
33251
|
}
|
|
33252
33252
|
};
|
|
33253
33253
|
|
|
33254
|
-
// bazel-out/
|
|
33254
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
33255
33255
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
33256
33256
|
var PureAnnotation;
|
|
33257
33257
|
(function(PureAnnotation2) {
|
|
@@ -33454,7 +33454,7 @@ function attachComments(statement, leadingComments) {
|
|
|
33454
33454
|
}
|
|
33455
33455
|
}
|
|
33456
33456
|
|
|
33457
|
-
// bazel-out/
|
|
33457
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
33458
33458
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
33459
33459
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
33460
33460
|
}
|
|
@@ -33462,7 +33462,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
33462
33462
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
33463
33463
|
}
|
|
33464
33464
|
|
|
33465
|
-
// bazel-out/
|
|
33465
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
33466
33466
|
var DtsTransformRegistry = class {
|
|
33467
33467
|
constructor() {
|
|
33468
33468
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -33610,10 +33610,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
33610
33610
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
33611
33611
|
}
|
|
33612
33612
|
|
|
33613
|
-
// bazel-out/
|
|
33613
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
33614
33614
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
33615
33615
|
|
|
33616
|
-
// bazel-out/
|
|
33616
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
33617
33617
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
33618
33618
|
function visit(node, visitor, context) {
|
|
33619
33619
|
return visitor._visit(node, context);
|
|
@@ -33674,7 +33674,7 @@ var Visitor = class {
|
|
|
33674
33674
|
}
|
|
33675
33675
|
};
|
|
33676
33676
|
|
|
33677
|
-
// bazel-out/
|
|
33677
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
33678
33678
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
33679
33679
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
33680
33680
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -33909,7 +33909,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
33909
33909
|
return array;
|
|
33910
33910
|
}
|
|
33911
33911
|
|
|
33912
|
-
// bazel-out/
|
|
33912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
33913
33913
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
33914
33914
|
const context = [];
|
|
33915
33915
|
for (const decl of data) {
|
|
@@ -34118,7 +34118,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
34118
34118
|
}
|
|
34119
34119
|
}
|
|
34120
34120
|
|
|
34121
|
-
// bazel-out/
|
|
34121
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
34122
34122
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34123
34123
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
34124
34124
|
let resolved = null;
|
|
@@ -34168,7 +34168,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
34168
34168
|
return meta;
|
|
34169
34169
|
}
|
|
34170
34170
|
|
|
34171
|
-
// bazel-out/
|
|
34171
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
34172
34172
|
function compileNgFactoryDefField(metadata) {
|
|
34173
34173
|
const res = compileFactoryFunction(metadata);
|
|
34174
34174
|
return {
|
|
@@ -34190,7 +34190,7 @@ function compileDeclareFactory(metadata) {
|
|
|
34190
34190
|
};
|
|
34191
34191
|
}
|
|
34192
34192
|
|
|
34193
|
-
// bazel-out/
|
|
34193
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
34194
34194
|
var InjectableClassRegistry = class {
|
|
34195
34195
|
constructor(host, isCore) {
|
|
34196
34196
|
this.host = host;
|
|
@@ -34216,7 +34216,7 @@ var InjectableClassRegistry = class {
|
|
|
34216
34216
|
}
|
|
34217
34217
|
};
|
|
34218
34218
|
|
|
34219
|
-
// bazel-out/
|
|
34219
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
34220
34220
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34221
34221
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
34222
34222
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34302,7 +34302,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
34302
34302
|
return result.transformed[0];
|
|
34303
34303
|
}
|
|
34304
34304
|
|
|
34305
|
-
// bazel-out/
|
|
34305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
34306
34306
|
var path = __toESM(require("path"), 1);
|
|
34307
34307
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
34308
34308
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34328,13 +34328,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
34328
34328
|
return null;
|
|
34329
34329
|
}
|
|
34330
34330
|
|
|
34331
|
-
// bazel-out/
|
|
34331
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
34332
34332
|
var NoopReferencesRegistry = class {
|
|
34333
34333
|
add(source, ...references) {
|
|
34334
34334
|
}
|
|
34335
34335
|
};
|
|
34336
34336
|
|
|
34337
|
-
// bazel-out/
|
|
34337
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
34338
34338
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
34339
34339
|
const schemas = [];
|
|
34340
34340
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -34363,7 +34363,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
34363
34363
|
return schemas;
|
|
34364
34364
|
}
|
|
34365
34365
|
|
|
34366
|
-
// bazel-out/
|
|
34366
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
34367
34367
|
function compileInputTransformFields(inputs) {
|
|
34368
34368
|
const extraFields = [];
|
|
34369
34369
|
for (const input of inputs) {
|
|
@@ -34380,10 +34380,10 @@ function compileInputTransformFields(inputs) {
|
|
|
34380
34380
|
return extraFields;
|
|
34381
34381
|
}
|
|
34382
34382
|
|
|
34383
|
-
// bazel-out/
|
|
34383
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
34384
34384
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
34385
34385
|
|
|
34386
|
-
// bazel-out/
|
|
34386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
34387
34387
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
34388
34388
|
var SemanticSymbol = class {
|
|
34389
34389
|
constructor(decl) {
|
|
@@ -34399,7 +34399,7 @@ function getSymbolIdentifier(decl) {
|
|
|
34399
34399
|
return decl.name.text;
|
|
34400
34400
|
}
|
|
34401
34401
|
|
|
34402
|
-
// bazel-out/
|
|
34402
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
34403
34403
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
34404
34404
|
isPublicApiAffected() {
|
|
34405
34405
|
return false;
|
|
@@ -34541,10 +34541,10 @@ function getImportPath(expr) {
|
|
|
34541
34541
|
}
|
|
34542
34542
|
}
|
|
34543
34543
|
|
|
34544
|
-
// bazel-out/
|
|
34544
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
34545
34545
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
34546
34546
|
|
|
34547
|
-
// bazel-out/
|
|
34547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
34548
34548
|
function isSymbolEqual(a, b) {
|
|
34549
34549
|
if (a.decl === b.decl) {
|
|
34550
34550
|
return true;
|
|
@@ -34594,7 +34594,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
34594
34594
|
return true;
|
|
34595
34595
|
}
|
|
34596
34596
|
|
|
34597
|
-
// bazel-out/
|
|
34597
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
34598
34598
|
function extractSemanticTypeParameters(node) {
|
|
34599
34599
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
34600
34600
|
return null;
|
|
@@ -34616,14 +34616,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
34616
34616
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
34617
34617
|
}
|
|
34618
34618
|
|
|
34619
|
-
// bazel-out/
|
|
34619
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
34620
34620
|
var ComponentScopeKind;
|
|
34621
34621
|
(function(ComponentScopeKind2) {
|
|
34622
34622
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
34623
34623
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
34624
34624
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
34625
34625
|
|
|
34626
|
-
// bazel-out/
|
|
34626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
34627
34627
|
var CompoundComponentScopeReader = class {
|
|
34628
34628
|
constructor(readers) {
|
|
34629
34629
|
this.readers = readers;
|
|
@@ -34648,7 +34648,7 @@ var CompoundComponentScopeReader = class {
|
|
|
34648
34648
|
}
|
|
34649
34649
|
};
|
|
34650
34650
|
|
|
34651
|
-
// bazel-out/
|
|
34651
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
34652
34652
|
var MetadataDtsModuleScopeResolver = class {
|
|
34653
34653
|
constructor(dtsMetaReader, aliasingHost) {
|
|
34654
34654
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -34723,10 +34723,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
34723
34723
|
}
|
|
34724
34724
|
};
|
|
34725
34725
|
|
|
34726
|
-
// bazel-out/
|
|
34726
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
34727
34727
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
34728
34728
|
|
|
34729
|
-
// bazel-out/
|
|
34729
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
34730
34730
|
function getDiagnosticNode(ref, rawExpr) {
|
|
34731
34731
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
34732
34732
|
}
|
|
@@ -34752,7 +34752,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
34752
34752
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
34753
34753
|
}
|
|
34754
34754
|
|
|
34755
|
-
// bazel-out/
|
|
34755
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
34756
34756
|
var LocalModuleScopeRegistry = class {
|
|
34757
34757
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
34758
34758
|
this.localReader = localReader;
|
|
@@ -35093,7 +35093,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
35093
35093
|
]);
|
|
35094
35094
|
}
|
|
35095
35095
|
|
|
35096
|
-
// bazel-out/
|
|
35096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
35097
35097
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
35098
35098
|
var TypeCheckScopeRegistry = class {
|
|
35099
35099
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -35173,10 +35173,10 @@ var TypeCheckScopeRegistry = class {
|
|
|
35173
35173
|
}
|
|
35174
35174
|
};
|
|
35175
35175
|
|
|
35176
|
-
// bazel-out/
|
|
35176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35177
35177
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
35178
35178
|
|
|
35179
|
-
// bazel-out/
|
|
35179
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
35180
35180
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
35181
35181
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
35182
35182
|
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)}.`, [
|
|
@@ -35185,7 +35185,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
|
35185
35185
|
}
|
|
35186
35186
|
}
|
|
35187
35187
|
|
|
35188
|
-
// bazel-out/
|
|
35188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
35189
35189
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
35190
35190
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
35191
35191
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -35254,7 +35254,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
35254
35254
|
return { api: matchingApi, apiReference, isRequired };
|
|
35255
35255
|
}
|
|
35256
35256
|
|
|
35257
|
-
// bazel-out/
|
|
35257
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
35258
35258
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
35259
35259
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
35260
35260
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -35272,7 +35272,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
35272
35272
|
return { alias };
|
|
35273
35273
|
}
|
|
35274
35274
|
|
|
35275
|
-
// bazel-out/
|
|
35275
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35276
35276
|
var INPUT_INITIALIZER_FN = {
|
|
35277
35277
|
functionName: "input",
|
|
35278
35278
|
owningModule: "@angular/core",
|
|
@@ -35304,7 +35304,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
35304
35304
|
};
|
|
35305
35305
|
}
|
|
35306
35306
|
|
|
35307
|
-
// bazel-out/
|
|
35307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
35308
35308
|
var MODEL_INITIALIZER_FN = {
|
|
35309
35309
|
functionName: "model",
|
|
35310
35310
|
owningModule: "@angular/core",
|
|
@@ -35345,7 +35345,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
35345
35345
|
};
|
|
35346
35346
|
}
|
|
35347
35347
|
|
|
35348
|
-
// bazel-out/
|
|
35348
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
35349
35349
|
var allowedAccessLevels = [
|
|
35350
35350
|
ClassMemberAccessLevel.PublicWritable,
|
|
35351
35351
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -35389,7 +35389,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
35389
35389
|
};
|
|
35390
35390
|
}
|
|
35391
35391
|
|
|
35392
|
-
// bazel-out/
|
|
35392
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
35393
35393
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
35394
35394
|
var queryFunctionNames = [
|
|
35395
35395
|
"viewChild",
|
|
@@ -35473,7 +35473,7 @@ function parseDescendantsOption(value) {
|
|
|
35473
35473
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
35474
35474
|
}
|
|
35475
35475
|
|
|
35476
|
-
// bazel-out/
|
|
35476
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35477
35477
|
var EMPTY_OBJECT = {};
|
|
35478
35478
|
var queryDecoratorNames = [
|
|
35479
35479
|
"ViewChild",
|
|
@@ -36271,7 +36271,7 @@ function toR3InputMetadata(mapping) {
|
|
|
36271
36271
|
};
|
|
36272
36272
|
}
|
|
36273
36273
|
|
|
36274
|
-
// bazel-out/
|
|
36274
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
36275
36275
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
36276
36276
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
36277
36277
|
super(decl);
|
|
@@ -36351,7 +36351,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
36351
36351
|
return isSymbolEqual(current, previous);
|
|
36352
36352
|
}
|
|
36353
36353
|
|
|
36354
|
-
// bazel-out/
|
|
36354
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
36355
36355
|
var FIELD_DECORATORS = [
|
|
36356
36356
|
"Input",
|
|
36357
36357
|
"Output",
|
|
@@ -36544,10 +36544,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
36544
36544
|
}
|
|
36545
36545
|
};
|
|
36546
36546
|
|
|
36547
|
-
// bazel-out/
|
|
36547
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36548
36548
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
36549
36549
|
|
|
36550
|
-
// bazel-out/
|
|
36550
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
36551
36551
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
36552
36552
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
36553
36553
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -36619,7 +36619,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
36619
36619
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
36620
36620
|
}
|
|
36621
36621
|
|
|
36622
|
-
// bazel-out/
|
|
36622
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36623
36623
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
36624
36624
|
constructor(decl, hasProviders) {
|
|
36625
36625
|
super(decl);
|
|
@@ -37232,7 +37232,7 @@ function isSyntheticReference(ref) {
|
|
|
37232
37232
|
return ref.synthetic;
|
|
37233
37233
|
}
|
|
37234
37234
|
|
|
37235
|
-
// bazel-out/
|
|
37235
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
37236
37236
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
37237
37237
|
const name = ref.debugName || "(unknown)";
|
|
37238
37238
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -37255,7 +37255,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
37255
37255
|
return null;
|
|
37256
37256
|
}
|
|
37257
37257
|
|
|
37258
|
-
// bazel-out/
|
|
37258
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
37259
37259
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
37260
37260
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
37261
37261
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -37607,7 +37607,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
37607
37607
|
}));
|
|
37608
37608
|
}
|
|
37609
37609
|
|
|
37610
|
-
// bazel-out/
|
|
37610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
37611
37611
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
37612
37612
|
constructor() {
|
|
37613
37613
|
super(...arguments);
|
|
@@ -37642,7 +37642,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
37642
37642
|
}
|
|
37643
37643
|
};
|
|
37644
37644
|
|
|
37645
|
-
// bazel-out/
|
|
37645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
37646
37646
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
37647
37647
|
if (value instanceof Map) {
|
|
37648
37648
|
const name = value.get("name");
|
|
@@ -37719,7 +37719,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
37719
37719
|
return false;
|
|
37720
37720
|
}
|
|
37721
37721
|
|
|
37722
|
-
// bazel-out/
|
|
37722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
37723
37723
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
37724
37724
|
var UpdateMode;
|
|
37725
37725
|
(function(UpdateMode2) {
|
|
@@ -37727,13 +37727,13 @@ var UpdateMode;
|
|
|
37727
37727
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
37728
37728
|
})(UpdateMode || (UpdateMode = {}));
|
|
37729
37729
|
|
|
37730
|
-
// bazel-out/
|
|
37730
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
37731
37731
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
37732
37732
|
|
|
37733
|
-
// bazel-out/
|
|
37733
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
37734
37734
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
37735
37735
|
|
|
37736
|
-
// bazel-out/
|
|
37736
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
37737
37737
|
var NgExtension = Symbol("NgExtension");
|
|
37738
37738
|
function isExtended(sf) {
|
|
37739
37739
|
return sf[NgExtension] !== void 0;
|
|
@@ -37793,13 +37793,13 @@ function retagTsFile(sf) {
|
|
|
37793
37793
|
}
|
|
37794
37794
|
}
|
|
37795
37795
|
|
|
37796
|
-
// bazel-out/
|
|
37796
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
37797
37797
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
37798
37798
|
function makeShimFileName(fileName, suffix) {
|
|
37799
37799
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
37800
37800
|
}
|
|
37801
37801
|
|
|
37802
|
-
// bazel-out/
|
|
37802
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
37803
37803
|
var ShimAdapter = class {
|
|
37804
37804
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
37805
37805
|
this.delegate = delegate;
|
|
@@ -37894,7 +37894,7 @@ var ShimAdapter = class {
|
|
|
37894
37894
|
}
|
|
37895
37895
|
};
|
|
37896
37896
|
|
|
37897
|
-
// bazel-out/
|
|
37897
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
37898
37898
|
var ShimReferenceTagger = class {
|
|
37899
37899
|
constructor(shimExtensions) {
|
|
37900
37900
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -37928,7 +37928,7 @@ var ShimReferenceTagger = class {
|
|
|
37928
37928
|
}
|
|
37929
37929
|
};
|
|
37930
37930
|
|
|
37931
|
-
// bazel-out/
|
|
37931
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
37932
37932
|
var DelegatingCompilerHost = class {
|
|
37933
37933
|
get jsDocParsingMode() {
|
|
37934
37934
|
return this.delegate.jsDocParsingMode;
|
|
@@ -38046,14 +38046,14 @@ var TsCreateProgramDriver = class {
|
|
|
38046
38046
|
}
|
|
38047
38047
|
};
|
|
38048
38048
|
|
|
38049
|
-
// bazel-out/
|
|
38049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
38050
38050
|
var OptimizeFor;
|
|
38051
38051
|
(function(OptimizeFor2) {
|
|
38052
38052
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
38053
38053
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
38054
38054
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
38055
38055
|
|
|
38056
|
-
// bazel-out/
|
|
38056
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
38057
38057
|
var CompletionKind;
|
|
38058
38058
|
(function(CompletionKind2) {
|
|
38059
38059
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -38061,7 +38061,7 @@ var CompletionKind;
|
|
|
38061
38061
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
38062
38062
|
})(CompletionKind || (CompletionKind = {}));
|
|
38063
38063
|
|
|
38064
|
-
// bazel-out/
|
|
38064
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
38065
38065
|
var PotentialImportKind;
|
|
38066
38066
|
(function(PotentialImportKind2) {
|
|
38067
38067
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -38073,7 +38073,7 @@ var PotentialImportMode;
|
|
|
38073
38073
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
38074
38074
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
38075
38075
|
|
|
38076
|
-
// bazel-out/
|
|
38076
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
38077
38077
|
var SymbolKind;
|
|
38078
38078
|
(function(SymbolKind2) {
|
|
38079
38079
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -38090,7 +38090,7 @@ var SymbolKind;
|
|
|
38090
38090
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
38091
38091
|
})(SymbolKind || (SymbolKind = {}));
|
|
38092
38092
|
|
|
38093
|
-
// bazel-out/
|
|
38093
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
38094
38094
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
38095
38095
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
38096
38096
|
var _a2;
|
|
@@ -38201,7 +38201,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
38201
38201
|
);
|
|
38202
38202
|
}
|
|
38203
38203
|
|
|
38204
|
-
// bazel-out/
|
|
38204
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
38205
38205
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
38206
38206
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
38207
38207
|
function getTemplateId(clazz) {
|
|
@@ -38218,10 +38218,10 @@ function allocateTemplateId(sf) {
|
|
|
38218
38218
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
38219
38219
|
}
|
|
38220
38220
|
|
|
38221
|
-
// bazel-out/
|
|
38221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38222
38222
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
38223
38223
|
|
|
38224
|
-
// bazel-out/
|
|
38224
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
38225
38225
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
38226
38226
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
38227
38227
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -38351,7 +38351,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
38351
38351
|
}) || false;
|
|
38352
38352
|
}
|
|
38353
38353
|
|
|
38354
|
-
// bazel-out/
|
|
38354
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38355
38355
|
var CompletionEngine = class {
|
|
38356
38356
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
38357
38357
|
this.tcb = tcb;
|
|
@@ -39614,10 +39614,10 @@ var MagicString = class {
|
|
|
39614
39614
|
}
|
|
39615
39615
|
};
|
|
39616
39616
|
|
|
39617
|
-
// bazel-out/
|
|
39617
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
39618
39618
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
39619
39619
|
|
|
39620
|
-
// bazel-out/
|
|
39620
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
39621
39621
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
39622
39622
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
39623
39623
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -39669,10 +39669,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
39669
39669
|
}
|
|
39670
39670
|
};
|
|
39671
39671
|
|
|
39672
|
-
// bazel-out/
|
|
39672
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
39673
39673
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
39674
39674
|
|
|
39675
|
-
// bazel-out/
|
|
39675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
39676
39676
|
var ReferenceEmitEnvironment = class {
|
|
39677
39677
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
39678
39678
|
this.importManager = importManager;
|
|
@@ -39702,7 +39702,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
39702
39702
|
}
|
|
39703
39703
|
};
|
|
39704
39704
|
|
|
39705
|
-
// bazel-out/
|
|
39705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
39706
39706
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
39707
39707
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
39708
39708
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -39785,13 +39785,13 @@ function tsNumericExpression2(value) {
|
|
|
39785
39785
|
return import_typescript72.default.factory.createNumericLiteral(value);
|
|
39786
39786
|
}
|
|
39787
39787
|
|
|
39788
|
-
// bazel-out/
|
|
39788
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
39789
39789
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
39790
39790
|
|
|
39791
|
-
// bazel-out/
|
|
39791
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
39792
39792
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
39793
39793
|
|
|
39794
|
-
// bazel-out/
|
|
39794
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
39795
39795
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
39796
39796
|
var TypeParameterEmitter = class {
|
|
39797
39797
|
constructor(typeParameters, reflector) {
|
|
@@ -39869,7 +39869,7 @@ var TypeParameterEmitter = class {
|
|
|
39869
39869
|
}
|
|
39870
39870
|
};
|
|
39871
39871
|
|
|
39872
|
-
// bazel-out/
|
|
39872
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
39873
39873
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
39874
39874
|
Identifiers.InputSignalBrandWriteType
|
|
39875
39875
|
];
|
|
@@ -39961,7 +39961,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
39961
39961
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
39962
39962
|
}
|
|
39963
39963
|
|
|
39964
|
-
// bazel-out/
|
|
39964
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
39965
39965
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
39966
39966
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
39967
39967
|
const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -40084,7 +40084,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
40084
40084
|
});
|
|
40085
40085
|
}
|
|
40086
40086
|
|
|
40087
|
-
// bazel-out/
|
|
40087
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40088
40088
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
40089
40089
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
40090
40090
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -40156,7 +40156,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
40156
40156
|
}
|
|
40157
40157
|
};
|
|
40158
40158
|
|
|
40159
|
-
// bazel-out/
|
|
40159
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
40160
40160
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40161
40161
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
40162
40162
|
constructor(resolver) {
|
|
@@ -40356,7 +40356,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
40356
40356
|
});
|
|
40357
40357
|
}
|
|
40358
40358
|
|
|
40359
|
-
// bazel-out/
|
|
40359
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
40360
40360
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40361
40361
|
var TypeCheckShimGenerator = class {
|
|
40362
40362
|
constructor() {
|
|
@@ -40374,10 +40374,10 @@ var TypeCheckShimGenerator = class {
|
|
|
40374
40374
|
}
|
|
40375
40375
|
};
|
|
40376
40376
|
|
|
40377
|
-
// bazel-out/
|
|
40377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40378
40378
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
40379
40379
|
|
|
40380
|
-
// bazel-out/
|
|
40380
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
40381
40381
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
40382
40382
|
function wrapForDiagnostics(expr) {
|
|
40383
40383
|
return import_typescript80.default.factory.createParenthesizedExpression(expr);
|
|
@@ -40432,7 +40432,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
40432
40432
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
40433
40433
|
}
|
|
40434
40434
|
|
|
40435
|
-
// bazel-out/
|
|
40435
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
40436
40436
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
40437
40437
|
var NULL_AS_ANY = import_typescript81.default.factory.createAsExpression(import_typescript81.default.factory.createNull(), import_typescript81.default.factory.createKeywordTypeNode(import_typescript81.default.SyntaxKind.AnyKeyword));
|
|
40438
40438
|
var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
|
|
@@ -40764,7 +40764,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
40764
40764
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
40765
40765
|
})();
|
|
40766
40766
|
|
|
40767
|
-
// bazel-out/
|
|
40767
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40768
40768
|
var TcbGenericContextBehavior;
|
|
40769
40769
|
(function(TcbGenericContextBehavior2) {
|
|
40770
40770
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -41560,14 +41560,14 @@ var TcbIfOp = class extends TcbOp {
|
|
|
41560
41560
|
const branchScope = this.getBranchScope(this.scope, branch, index);
|
|
41561
41561
|
return import_typescript82.default.factory.createBlock(branchScope.render());
|
|
41562
41562
|
}
|
|
41563
|
-
const
|
|
41564
|
-
|
|
41565
|
-
this.expressionScopes.set(branch,
|
|
41566
|
-
let expression = tcbExpression(branch.expression, this.tcb,
|
|
41563
|
+
const outerScope = Scope3.forNodes(this.tcb, this.scope, branch, [], null);
|
|
41564
|
+
outerScope.render().forEach((stmt) => this.scope.addStatement(stmt));
|
|
41565
|
+
this.expressionScopes.set(branch, outerScope);
|
|
41566
|
+
let expression = tcbExpression(branch.expression, this.tcb, this.scope);
|
|
41567
41567
|
if (branch.expressionAlias !== null) {
|
|
41568
|
-
expression = import_typescript82.default.factory.createBinaryExpression(import_typescript82.default.factory.createParenthesizedExpression(expression), import_typescript82.default.SyntaxKind.AmpersandAmpersandToken,
|
|
41568
|
+
expression = import_typescript82.default.factory.createBinaryExpression(import_typescript82.default.factory.createParenthesizedExpression(expression), import_typescript82.default.SyntaxKind.AmpersandAmpersandToken, outerScope.resolve(branch.expressionAlias));
|
|
41569
41569
|
}
|
|
41570
|
-
const bodyScope = this.getBranchScope(
|
|
41570
|
+
const bodyScope = this.getBranchScope(outerScope, branch, index);
|
|
41571
41571
|
return import_typescript82.default.factory.createIfStatement(expression, import_typescript82.default.factory.createBlock(bodyScope.render()), this.generateBranch(index + 1));
|
|
41572
41572
|
}
|
|
41573
41573
|
getBranchScope(parentScope, branch, index) {
|
|
@@ -41659,7 +41659,7 @@ var TcbForOfOp = class extends TcbOp {
|
|
|
41659
41659
|
}
|
|
41660
41660
|
const initializer = import_typescript82.default.factory.createVariableDeclarationList([import_typescript82.default.factory.createVariableDeclaration(initializerId)], import_typescript82.default.NodeFlags.Const);
|
|
41661
41661
|
addParseSpanInfo(initializer, this.block.item.keySpan);
|
|
41662
|
-
const expression = import_typescript82.default.factory.createNonNullExpression(tcbExpression(this.block.expression, this.tcb,
|
|
41662
|
+
const expression = import_typescript82.default.factory.createNonNullExpression(tcbExpression(this.block.expression, this.tcb, this.scope));
|
|
41663
41663
|
const trackTranslator = new TcbForLoopTrackTranslator(this.tcb, loopScope, this.block);
|
|
41664
41664
|
const trackExpression = trackTranslator.translate(this.block.trackBy);
|
|
41665
41665
|
const statements = [
|
|
@@ -42102,10 +42102,14 @@ var TcbExpressionTranslator = class {
|
|
|
42102
42102
|
resolve(ast) {
|
|
42103
42103
|
if (ast instanceof PropertyRead && ast.receiver instanceof ImplicitReceiver) {
|
|
42104
42104
|
const target = this.tcb.boundTarget.getExpressionTarget(ast);
|
|
42105
|
-
|
|
42106
|
-
|
|
42105
|
+
const targetExpression = target === null ? null : this.getTargetNodeExpression(target, ast);
|
|
42106
|
+
if (target instanceof LetDeclaration && !this.isValidLetDeclarationAccess(target, ast)) {
|
|
42107
|
+
this.tcb.oobRecorder.letUsedBeforeDefinition(this.tcb.id, ast, target);
|
|
42108
|
+
if (targetExpression !== null) {
|
|
42109
|
+
return import_typescript82.default.factory.createAsExpression(targetExpression, import_typescript82.default.factory.createKeywordTypeNode(import_typescript82.default.SyntaxKind.AnyKeyword));
|
|
42110
|
+
}
|
|
42107
42111
|
}
|
|
42108
|
-
return
|
|
42112
|
+
return targetExpression;
|
|
42109
42113
|
} else if (ast instanceof PropertyWrite && ast.receiver instanceof ImplicitReceiver) {
|
|
42110
42114
|
const target = this.tcb.boundTarget.getExpressionTarget(ast);
|
|
42111
42115
|
if (target === null) {
|
|
@@ -42176,13 +42180,11 @@ var TcbExpressionTranslator = class {
|
|
|
42176
42180
|
addParseSpanInfo(expr, expressionNode.sourceSpan);
|
|
42177
42181
|
return expr;
|
|
42178
42182
|
}
|
|
42179
|
-
|
|
42183
|
+
isValidLetDeclarationAccess(target, ast) {
|
|
42180
42184
|
const targetStart = target.sourceSpan.start.offset;
|
|
42181
42185
|
const targetEnd = target.sourceSpan.end.offset;
|
|
42182
42186
|
const astStart = ast.sourceSpan.start;
|
|
42183
|
-
|
|
42184
|
-
this.tcb.oobRecorder.letUsedBeforeDefinition(this.tcb.id, ast, target);
|
|
42185
|
-
}
|
|
42187
|
+
return targetStart < astStart && astStart > targetEnd || !this.scope.isLocal(target);
|
|
42186
42188
|
}
|
|
42187
42189
|
};
|
|
42188
42190
|
function tcbCallTypeCtor(dir, tcb, inputs) {
|
|
@@ -42326,7 +42328,8 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
42326
42328
|
}
|
|
42327
42329
|
return super.resolve(ast);
|
|
42328
42330
|
}
|
|
42329
|
-
|
|
42331
|
+
isValidLetDeclarationAccess() {
|
|
42332
|
+
return true;
|
|
42330
42333
|
}
|
|
42331
42334
|
};
|
|
42332
42335
|
var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
@@ -42351,7 +42354,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
42351
42354
|
}
|
|
42352
42355
|
};
|
|
42353
42356
|
|
|
42354
|
-
// bazel-out/
|
|
42357
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
42355
42358
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
42356
42359
|
var TypeCheckFile = class extends Environment {
|
|
42357
42360
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -42399,7 +42402,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
42399
42402
|
}
|
|
42400
42403
|
};
|
|
42401
42404
|
|
|
42402
|
-
// bazel-out/
|
|
42405
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
42403
42406
|
var InliningMode;
|
|
42404
42407
|
(function(InliningMode2) {
|
|
42405
42408
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -42651,7 +42654,7 @@ var TypeCtorOp = class {
|
|
|
42651
42654
|
}
|
|
42652
42655
|
};
|
|
42653
42656
|
|
|
42654
|
-
// bazel-out/
|
|
42657
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
42655
42658
|
var LF_CHAR = 10;
|
|
42656
42659
|
var CR_CHAR = 13;
|
|
42657
42660
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -42692,7 +42695,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
42692
42695
|
return low - 1;
|
|
42693
42696
|
}
|
|
42694
42697
|
|
|
42695
|
-
// bazel-out/
|
|
42698
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
42696
42699
|
var TemplateSource = class {
|
|
42697
42700
|
constructor(mapping, file) {
|
|
42698
42701
|
this.mapping = mapping;
|
|
@@ -42743,7 +42746,7 @@ var TemplateSourceManager = class {
|
|
|
42743
42746
|
}
|
|
42744
42747
|
};
|
|
42745
42748
|
|
|
42746
|
-
// bazel-out/
|
|
42749
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
42747
42750
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
42748
42751
|
var SymbolBuilder = class {
|
|
42749
42752
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -43310,7 +43313,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
43310
43313
|
};
|
|
43311
43314
|
}
|
|
43312
43315
|
|
|
43313
|
-
// bazel-out/
|
|
43316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
43314
43317
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
43315
43318
|
var TemplateTypeCheckerImpl = class {
|
|
43316
43319
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -44008,7 +44011,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
44008
44011
|
}
|
|
44009
44012
|
};
|
|
44010
44013
|
|
|
44011
|
-
// bazel-out/
|
|
44014
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
44012
44015
|
var EMPTY_ARRAY2 = [];
|
|
44013
44016
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
44014
44017
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -45027,7 +45030,7 @@ function isDefaultImport(node) {
|
|
|
45027
45030
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
45028
45031
|
}
|
|
45029
45032
|
|
|
45030
|
-
// bazel-out/
|
|
45033
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
45031
45034
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
45032
45035
|
var InjectableDecoratorHandler = class {
|
|
45033
45036
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -45258,7 +45261,7 @@ function getDep(dep, reflector) {
|
|
|
45258
45261
|
return meta;
|
|
45259
45262
|
}
|
|
45260
45263
|
|
|
45261
|
-
// bazel-out/
|
|
45264
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
45262
45265
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
45263
45266
|
var PipeSymbol = class extends SemanticSymbol {
|
|
45264
45267
|
constructor(decl, name) {
|
|
@@ -45414,13 +45417,13 @@ var PipeDecoratorHandler = class {
|
|
|
45414
45417
|
}
|
|
45415
45418
|
};
|
|
45416
45419
|
|
|
45417
|
-
// bazel-out/
|
|
45420
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
|
|
45418
45421
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
45419
45422
|
|
|
45420
|
-
// bazel-out/
|
|
45423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
|
|
45421
45424
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
45422
45425
|
|
|
45423
|
-
// bazel-out/
|
|
45426
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
45424
45427
|
var EmitFlags;
|
|
45425
45428
|
(function(EmitFlags2) {
|
|
45426
45429
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -45432,13 +45435,13 @@ var EmitFlags;
|
|
|
45432
45435
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
45433
45436
|
})(EmitFlags || (EmitFlags = {}));
|
|
45434
45437
|
|
|
45435
|
-
// bazel-out/
|
|
45438
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
45436
45439
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
45437
45440
|
|
|
45438
|
-
// bazel-out/
|
|
45441
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
45439
45442
|
var import_typescript123 = __toESM(require("typescript"), 1);
|
|
45440
45443
|
|
|
45441
|
-
// bazel-out/
|
|
45444
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
45442
45445
|
var path2 = __toESM(require("path"), 1);
|
|
45443
45446
|
function i18nGetExtension(formatName) {
|
|
45444
45447
|
const format = formatName.toLowerCase();
|
|
@@ -45488,10 +45491,10 @@ function getPathNormalizer(basePath) {
|
|
|
45488
45491
|
};
|
|
45489
45492
|
}
|
|
45490
45493
|
|
|
45491
|
-
// bazel-out/
|
|
45494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
45492
45495
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
45493
45496
|
|
|
45494
|
-
// bazel-out/
|
|
45497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
45495
45498
|
function toNumbers(value) {
|
|
45496
45499
|
const suffixIndex = value.lastIndexOf("-");
|
|
45497
45500
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -45526,7 +45529,7 @@ function compareVersions(v1, v2) {
|
|
|
45526
45529
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
45527
45530
|
}
|
|
45528
45531
|
|
|
45529
|
-
// bazel-out/
|
|
45532
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
45530
45533
|
var MIN_TS_VERSION = "5.4.0";
|
|
45531
45534
|
var MAX_TS_VERSION = "5.6.0";
|
|
45532
45535
|
var tsVersion = import_typescript97.default.version;
|
|
@@ -45539,10 +45542,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
45539
45542
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
45540
45543
|
}
|
|
45541
45544
|
|
|
45542
|
-
// bazel-out/
|
|
45545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
45543
45546
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
45544
45547
|
|
|
45545
|
-
// bazel-out/
|
|
45548
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
45546
45549
|
var CycleAnalyzer = class {
|
|
45547
45550
|
constructor(importGraph) {
|
|
45548
45551
|
this.importGraph = importGraph;
|
|
@@ -45613,7 +45616,7 @@ var Cycle = class {
|
|
|
45613
45616
|
}
|
|
45614
45617
|
};
|
|
45615
45618
|
|
|
45616
|
-
// bazel-out/
|
|
45619
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
45617
45620
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
45618
45621
|
var ImportGraph = class {
|
|
45619
45622
|
constructor(checker, perf) {
|
|
@@ -45705,13 +45708,13 @@ var Found = class {
|
|
|
45705
45708
|
}
|
|
45706
45709
|
};
|
|
45707
45710
|
|
|
45708
|
-
// bazel-out/
|
|
45711
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
45709
45712
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
45710
45713
|
|
|
45711
|
-
// bazel-out/
|
|
45714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
45712
45715
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
45713
45716
|
|
|
45714
|
-
// bazel-out/
|
|
45717
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
45715
45718
|
var EntryType;
|
|
45716
45719
|
(function(EntryType2) {
|
|
45717
45720
|
EntryType2["Block"] = "block";
|
|
@@ -45755,17 +45758,17 @@ var MemberTags;
|
|
|
45755
45758
|
MemberTags2["Inherited"] = "override";
|
|
45756
45759
|
})(MemberTags || (MemberTags = {}));
|
|
45757
45760
|
|
|
45758
|
-
// bazel-out/
|
|
45761
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
45759
45762
|
function isAngularPrivateName(name) {
|
|
45760
45763
|
var _a2;
|
|
45761
45764
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
45762
45765
|
return firstChar === "\u0275" || firstChar === "_";
|
|
45763
45766
|
}
|
|
45764
45767
|
|
|
45765
|
-
// bazel-out/
|
|
45768
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
45766
45769
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
45767
45770
|
|
|
45768
|
-
// bazel-out/
|
|
45771
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
45769
45772
|
function extractGenerics(declaration) {
|
|
45770
45773
|
var _a2, _b2;
|
|
45771
45774
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -45778,9 +45781,9 @@ function extractGenerics(declaration) {
|
|
|
45778
45781
|
})) != null ? _b2 : [];
|
|
45779
45782
|
}
|
|
45780
45783
|
|
|
45781
|
-
// bazel-out/
|
|
45784
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
45782
45785
|
var import_typescript99 = __toESM(require("typescript"), 1);
|
|
45783
|
-
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf))/g;
|
|
45786
|
+
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
45784
45787
|
function extractJsDocTags(node) {
|
|
45785
45788
|
const escapedNode = getEscapedNode(node);
|
|
45786
45789
|
return import_typescript99.default.getJSDocTags(escapedNode).map((t) => {
|
|
@@ -45822,12 +45825,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
45822
45825
|
return comment.replace(/_NG_AT_/g, "@");
|
|
45823
45826
|
}
|
|
45824
45827
|
|
|
45825
|
-
// bazel-out/
|
|
45828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
45826
45829
|
function extractResolvedTypeString(node, checker) {
|
|
45827
45830
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
45828
45831
|
}
|
|
45829
45832
|
|
|
45830
|
-
// bazel-out/
|
|
45833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
45831
45834
|
var FunctionExtractor = class {
|
|
45832
45835
|
constructor(name, declaration, typeChecker) {
|
|
45833
45836
|
this.name = name;
|
|
@@ -45837,7 +45840,11 @@ var FunctionExtractor = class {
|
|
|
45837
45840
|
extract() {
|
|
45838
45841
|
var _a2;
|
|
45839
45842
|
const signature = this.typeChecker.getSignatureFromDeclaration(this.declaration);
|
|
45840
|
-
const returnType = signature ? this.typeChecker.typeToString(
|
|
45843
|
+
const returnType = signature ? this.typeChecker.typeToString(
|
|
45844
|
+
this.typeChecker.getReturnTypeOfSignature(signature),
|
|
45845
|
+
void 0,
|
|
45846
|
+
import_typescript100.default.TypeFormatFlags.NoTypeReduction | import_typescript100.default.TypeFormatFlags.NoTruncation
|
|
45847
|
+
) : "unknown";
|
|
45841
45848
|
const jsdocsTags = extractJsDocTags(this.declaration);
|
|
45842
45849
|
return {
|
|
45843
45850
|
params: extractAllParams(this.declaration.parameters, this.typeChecker),
|
|
@@ -45886,7 +45893,7 @@ function extractAllParams(params, typeChecker) {
|
|
|
45886
45893
|
}));
|
|
45887
45894
|
}
|
|
45888
45895
|
|
|
45889
|
-
// bazel-out/
|
|
45896
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
|
|
45890
45897
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
45891
45898
|
function isInternal(member) {
|
|
45892
45899
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -45905,7 +45912,7 @@ function hasLeadingInternalComment(member) {
|
|
|
45905
45912
|
)) != null ? _a2 : false;
|
|
45906
45913
|
}
|
|
45907
45914
|
|
|
45908
|
-
// bazel-out/
|
|
45915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
45909
45916
|
var ClassExtractor = class {
|
|
45910
45917
|
constructor(declaration, typeChecker) {
|
|
45911
45918
|
this.declaration = declaration;
|
|
@@ -46157,7 +46164,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
46157
46164
|
return extractor.extract();
|
|
46158
46165
|
}
|
|
46159
46166
|
|
|
46160
|
-
// bazel-out/
|
|
46167
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
46161
46168
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
46162
46169
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
46163
46170
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -46215,7 +46222,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
46215
46222
|
});
|
|
46216
46223
|
}
|
|
46217
46224
|
|
|
46218
|
-
// bazel-out/
|
|
46225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
46219
46226
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
46220
46227
|
function extractorDecorator(declaration, typeChecker) {
|
|
46221
46228
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -46288,7 +46295,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
46288
46295
|
return callSignature;
|
|
46289
46296
|
}
|
|
46290
46297
|
|
|
46291
|
-
// bazel-out/
|
|
46298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
46292
46299
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
46293
46300
|
function extractEnum(declaration, typeChecker) {
|
|
46294
46301
|
return {
|
|
@@ -46319,7 +46326,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
46319
46326
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
46320
46327
|
}
|
|
46321
46328
|
|
|
46322
|
-
// bazel-out/
|
|
46329
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
46323
46330
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
46324
46331
|
var initializerApiTag = "initializerApiFunction";
|
|
46325
46332
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -46425,7 +46432,7 @@ function filterSignatureDeclarations(signatures) {
|
|
|
46425
46432
|
for (const signature of signatures) {
|
|
46426
46433
|
const decl = signature.getDeclaration();
|
|
46427
46434
|
if (import_typescript106.default.isFunctionDeclaration(decl) || import_typescript106.default.isCallSignatureDeclaration(decl)) {
|
|
46428
|
-
result.push(decl);
|
|
46435
|
+
result.push({ signature, decl });
|
|
46429
46436
|
}
|
|
46430
46437
|
}
|
|
46431
46438
|
return result;
|
|
@@ -46433,16 +46440,20 @@ function filterSignatureDeclarations(signatures) {
|
|
|
46433
46440
|
function extractFunctionWithOverloads(name, signatures, typeChecker) {
|
|
46434
46441
|
return {
|
|
46435
46442
|
name,
|
|
46436
|
-
signatures: filterSignatureDeclarations(signatures).map((
|
|
46443
|
+
signatures: filterSignatureDeclarations(signatures).map(({ decl, signature }) => ({
|
|
46437
46444
|
name,
|
|
46438
46445
|
entryType: EntryType.Function,
|
|
46439
|
-
description: extractJsDocDescription(
|
|
46440
|
-
generics: extractGenerics(
|
|
46446
|
+
description: extractJsDocDescription(decl),
|
|
46447
|
+
generics: extractGenerics(decl),
|
|
46441
46448
|
isNewType: false,
|
|
46442
|
-
jsdocTags: extractJsDocTags(
|
|
46443
|
-
params: extractAllParams(
|
|
46444
|
-
rawComment: extractRawJsDoc(
|
|
46445
|
-
returnType: typeChecker.typeToString(
|
|
46449
|
+
jsdocTags: extractJsDocTags(decl),
|
|
46450
|
+
params: extractAllParams(decl.parameters, typeChecker),
|
|
46451
|
+
rawComment: extractRawJsDoc(decl),
|
|
46452
|
+
returnType: typeChecker.typeToString(
|
|
46453
|
+
typeChecker.getReturnTypeOfSignature(signature),
|
|
46454
|
+
void 0,
|
|
46455
|
+
import_typescript106.default.TypeFormatFlags.NoTypeReduction | import_typescript106.default.TypeFormatFlags.NoTruncation
|
|
46456
|
+
)
|
|
46446
46457
|
})),
|
|
46447
46458
|
implementation: null
|
|
46448
46459
|
};
|
|
@@ -46456,7 +46467,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
46456
46467
|
return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript106.default.isFunctionDeclaration(s) && s.body !== void 0);
|
|
46457
46468
|
}
|
|
46458
46469
|
|
|
46459
|
-
// bazel-out/
|
|
46470
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
46460
46471
|
function extractTypeAlias(declaration) {
|
|
46461
46472
|
return {
|
|
46462
46473
|
name: declaration.name.getText(),
|
|
@@ -46468,7 +46479,7 @@ function extractTypeAlias(declaration) {
|
|
|
46468
46479
|
};
|
|
46469
46480
|
}
|
|
46470
46481
|
|
|
46471
|
-
// bazel-out/
|
|
46482
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
46472
46483
|
var DocsExtractor = class {
|
|
46473
46484
|
constructor(typeChecker, metadataReader) {
|
|
46474
46485
|
this.typeChecker = typeChecker;
|
|
@@ -46552,7 +46563,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
46552
46563
|
return relativePath;
|
|
46553
46564
|
}
|
|
46554
46565
|
|
|
46555
|
-
// bazel-out/
|
|
46566
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
46556
46567
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46557
46568
|
var FlatIndexGenerator = class {
|
|
46558
46569
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -46577,7 +46588,7 @@ export * from '${relativeEntryPoint}';
|
|
|
46577
46588
|
}
|
|
46578
46589
|
};
|
|
46579
46590
|
|
|
46580
|
-
// bazel-out/
|
|
46591
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
46581
46592
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
46582
46593
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
46583
46594
|
let resolvedEntryPoint = null;
|
|
@@ -46593,7 +46604,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
46593
46604
|
return resolvedEntryPoint;
|
|
46594
46605
|
}
|
|
46595
46606
|
|
|
46596
|
-
// bazel-out/
|
|
46607
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
46597
46608
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
46598
46609
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
46599
46610
|
const diagnostics = [];
|
|
@@ -46673,7 +46684,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
46673
46684
|
}
|
|
46674
46685
|
}
|
|
46675
46686
|
|
|
46676
|
-
// bazel-out/
|
|
46687
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
46677
46688
|
var ReferenceGraph = class {
|
|
46678
46689
|
constructor() {
|
|
46679
46690
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -46727,7 +46738,7 @@ var ReferenceGraph = class {
|
|
|
46727
46738
|
}
|
|
46728
46739
|
};
|
|
46729
46740
|
|
|
46730
|
-
// bazel-out/
|
|
46741
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
46731
46742
|
var FileDependencyGraph = class {
|
|
46732
46743
|
constructor() {
|
|
46733
46744
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -46794,7 +46805,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
46794
46805
|
return false;
|
|
46795
46806
|
}
|
|
46796
46807
|
|
|
46797
|
-
// bazel-out/
|
|
46808
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
46798
46809
|
var IncrementalStateKind;
|
|
46799
46810
|
(function(IncrementalStateKind2) {
|
|
46800
46811
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -46802,7 +46813,7 @@ var IncrementalStateKind;
|
|
|
46802
46813
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
46803
46814
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
46804
46815
|
|
|
46805
|
-
// bazel-out/
|
|
46816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
46806
46817
|
var PhaseKind;
|
|
46807
46818
|
(function(PhaseKind2) {
|
|
46808
46819
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -47003,7 +47014,7 @@ function toOriginalSourceFile(sf) {
|
|
|
47003
47014
|
}
|
|
47004
47015
|
}
|
|
47005
47016
|
|
|
47006
|
-
// bazel-out/
|
|
47017
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
47007
47018
|
var TrackedIncrementalBuildStrategy = class {
|
|
47008
47019
|
constructor() {
|
|
47009
47020
|
this.state = null;
|
|
@@ -47024,7 +47035,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
47024
47035
|
};
|
|
47025
47036
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
47026
47037
|
|
|
47027
|
-
// bazel-out/
|
|
47038
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
47028
47039
|
var IdentifierKind;
|
|
47029
47040
|
(function(IdentifierKind2) {
|
|
47030
47041
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -47043,7 +47054,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
47043
47054
|
}
|
|
47044
47055
|
};
|
|
47045
47056
|
|
|
47046
|
-
// bazel-out/
|
|
47057
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
47047
47058
|
var IndexingContext = class {
|
|
47048
47059
|
constructor() {
|
|
47049
47060
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -47053,7 +47064,7 @@ var IndexingContext = class {
|
|
|
47053
47064
|
}
|
|
47054
47065
|
};
|
|
47055
47066
|
|
|
47056
|
-
// bazel-out/
|
|
47067
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
47057
47068
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
47058
47069
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
47059
47070
|
super();
|
|
@@ -47347,7 +47358,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
47347
47358
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
47348
47359
|
}
|
|
47349
47360
|
|
|
47350
|
-
// bazel-out/
|
|
47361
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
47351
47362
|
function generateAnalysis(context) {
|
|
47352
47363
|
const analysis = /* @__PURE__ */ new Map();
|
|
47353
47364
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -47383,7 +47394,7 @@ function generateAnalysis(context) {
|
|
|
47383
47394
|
return analysis;
|
|
47384
47395
|
}
|
|
47385
47396
|
|
|
47386
|
-
// bazel-out/
|
|
47397
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
47387
47398
|
var NgModuleIndexImpl = class {
|
|
47388
47399
|
constructor(metaReader, localReader) {
|
|
47389
47400
|
this.metaReader = metaReader;
|
|
@@ -47472,7 +47483,7 @@ var NgModuleIndexImpl = class {
|
|
|
47472
47483
|
}
|
|
47473
47484
|
};
|
|
47474
47485
|
|
|
47475
|
-
// bazel-out/
|
|
47486
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
47476
47487
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
47477
47488
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
47478
47489
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -47624,7 +47635,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
47624
47635
|
};
|
|
47625
47636
|
}
|
|
47626
47637
|
|
|
47627
|
-
// bazel-out/
|
|
47638
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
47628
47639
|
var StandaloneComponentScopeReader = class {
|
|
47629
47640
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
47630
47641
|
this.metaReader = metaReader;
|
|
@@ -47720,7 +47731,7 @@ var StandaloneComponentScopeReader = class {
|
|
|
47720
47731
|
}
|
|
47721
47732
|
};
|
|
47722
47733
|
|
|
47723
|
-
// bazel-out/
|
|
47734
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
47724
47735
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
47725
47736
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
47726
47737
|
"WritableSignal",
|
|
@@ -47740,7 +47751,7 @@ function isSignalSymbol(symbol) {
|
|
|
47740
47751
|
});
|
|
47741
47752
|
}
|
|
47742
47753
|
|
|
47743
|
-
// bazel-out/
|
|
47754
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
47744
47755
|
var TemplateCheckWithVisitor = class {
|
|
47745
47756
|
run(ctx, component, template2) {
|
|
47746
47757
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -47867,7 +47878,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
47867
47878
|
}
|
|
47868
47879
|
};
|
|
47869
47880
|
|
|
47870
|
-
// bazel-out/
|
|
47881
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
47871
47882
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
47872
47883
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
47873
47884
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -47919,7 +47930,7 @@ var factory = {
|
|
|
47919
47930
|
create: () => new InterpolatedSignalCheck()
|
|
47920
47931
|
};
|
|
47921
47932
|
|
|
47922
|
-
// bazel-out/
|
|
47933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
47923
47934
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
47924
47935
|
constructor() {
|
|
47925
47936
|
super(...arguments);
|
|
@@ -47944,7 +47955,7 @@ var factory2 = {
|
|
|
47944
47955
|
create: () => new InvalidBananaInBoxCheck()
|
|
47945
47956
|
};
|
|
47946
47957
|
|
|
47947
|
-
// bazel-out/
|
|
47958
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
47948
47959
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
47949
47960
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
47950
47961
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -47988,7 +47999,7 @@ var factory3 = {
|
|
|
47988
47999
|
}
|
|
47989
48000
|
};
|
|
47990
48001
|
|
|
47991
|
-
// bazel-out/
|
|
48002
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
47992
48003
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
47993
48004
|
constructor() {
|
|
47994
48005
|
super(...arguments);
|
|
@@ -48020,7 +48031,7 @@ var factory4 = {
|
|
|
48020
48031
|
create: () => new MissingNgForOfLetCheck()
|
|
48021
48032
|
};
|
|
48022
48033
|
|
|
48023
|
-
// bazel-out/
|
|
48034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
48024
48035
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
48025
48036
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48026
48037
|
constructor() {
|
|
@@ -48064,7 +48075,7 @@ var factory5 = {
|
|
|
48064
48075
|
}
|
|
48065
48076
|
};
|
|
48066
48077
|
|
|
48067
|
-
// bazel-out/
|
|
48078
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
48068
48079
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
48069
48080
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48070
48081
|
constructor() {
|
|
@@ -48109,7 +48120,7 @@ var factory6 = {
|
|
|
48109
48120
|
}
|
|
48110
48121
|
};
|
|
48111
48122
|
|
|
48112
|
-
// bazel-out/
|
|
48123
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
48113
48124
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
48114
48125
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
48115
48126
|
constructor() {
|
|
@@ -48132,7 +48143,7 @@ var factory7 = {
|
|
|
48132
48143
|
create: () => new SuffixNotSupportedCheck()
|
|
48133
48144
|
};
|
|
48134
48145
|
|
|
48135
|
-
// bazel-out/
|
|
48146
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
48136
48147
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
48137
48148
|
constructor() {
|
|
48138
48149
|
super(...arguments);
|
|
@@ -48170,7 +48181,7 @@ var factory8 = {
|
|
|
48170
48181
|
create: () => new TextAttributeNotBindingSpec()
|
|
48171
48182
|
};
|
|
48172
48183
|
|
|
48173
|
-
// bazel-out/
|
|
48184
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
|
|
48174
48185
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
48175
48186
|
constructor() {
|
|
48176
48187
|
super(...arguments);
|
|
@@ -48221,10 +48232,10 @@ var factory9 = {
|
|
|
48221
48232
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
48222
48233
|
};
|
|
48223
48234
|
|
|
48224
|
-
// bazel-out/
|
|
48235
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
48225
48236
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
48226
48237
|
|
|
48227
|
-
// bazel-out/
|
|
48238
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
48228
48239
|
var DiagnosticCategoryLabel;
|
|
48229
48240
|
(function(DiagnosticCategoryLabel2) {
|
|
48230
48241
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -48232,7 +48243,7 @@ var DiagnosticCategoryLabel;
|
|
|
48232
48243
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
48233
48244
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
48234
48245
|
|
|
48235
|
-
// bazel-out/
|
|
48246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
48236
48247
|
var ExtendedTemplateCheckerImpl = class {
|
|
48237
48248
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
48238
48249
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -48284,7 +48295,7 @@ function assertNever(value) {
|
|
|
48284
48295
|
${value}`);
|
|
48285
48296
|
}
|
|
48286
48297
|
|
|
48287
|
-
// bazel-out/
|
|
48298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
48288
48299
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
48289
48300
|
factory2,
|
|
48290
48301
|
factory5,
|
|
@@ -48301,7 +48312,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
48301
48312
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory10) => factory10.name)
|
|
48302
48313
|
]);
|
|
48303
48314
|
|
|
48304
|
-
// bazel-out/
|
|
48315
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
48305
48316
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
48306
48317
|
var TemplateSemanticsCheckerImpl = class {
|
|
48307
48318
|
constructor(templateTypeChecker) {
|
|
@@ -48391,7 +48402,7 @@ function unwrapAstWithSource(ast) {
|
|
|
48391
48402
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
48392
48403
|
}
|
|
48393
48404
|
|
|
48394
|
-
// bazel-out/
|
|
48405
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
|
|
48395
48406
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
48396
48407
|
var APIS_TO_CHECK = [
|
|
48397
48408
|
INPUT_INITIALIZER_FN,
|
|
@@ -48442,7 +48453,7 @@ var InitializerApiUsageRule = class {
|
|
|
48442
48453
|
}
|
|
48443
48454
|
};
|
|
48444
48455
|
|
|
48445
|
-
// bazel-out/
|
|
48456
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
|
|
48446
48457
|
var SourceFileValidator = class {
|
|
48447
48458
|
constructor(reflector, importedSymbolsTracker) {
|
|
48448
48459
|
this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
|
|
@@ -48480,7 +48491,7 @@ var SourceFileValidator = class {
|
|
|
48480
48491
|
}
|
|
48481
48492
|
};
|
|
48482
48493
|
|
|
48483
|
-
// bazel-out/
|
|
48494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
48484
48495
|
function coreHasSymbol(program, symbol) {
|
|
48485
48496
|
const checker = program.getTypeChecker();
|
|
48486
48497
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -48499,7 +48510,7 @@ function isMaybeCore(sf) {
|
|
|
48499
48510
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
48500
48511
|
}
|
|
48501
48512
|
|
|
48502
|
-
// bazel-out/
|
|
48513
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
48503
48514
|
var import_semver = __toESM(require_semver2(), 1);
|
|
48504
48515
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
48505
48516
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -48508,7 +48519,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
48508
48519
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
48509
48520
|
}
|
|
48510
48521
|
|
|
48511
|
-
// bazel-out/
|
|
48522
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
48512
48523
|
var CompilationTicketKind;
|
|
48513
48524
|
(function(CompilationTicketKind2) {
|
|
48514
48525
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -49291,7 +49302,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
49291
49302
|
return versions;
|
|
49292
49303
|
}
|
|
49293
49304
|
|
|
49294
|
-
// bazel-out/
|
|
49305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
49295
49306
|
var import_typescript121 = __toESM(require("typescript"), 1);
|
|
49296
49307
|
var DelegatingCompilerHost2 = class {
|
|
49297
49308
|
get jsDocParsingMode() {
|
|
@@ -49430,7 +49441,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
49430
49441
|
}
|
|
49431
49442
|
};
|
|
49432
49443
|
|
|
49433
|
-
// bazel-out/
|
|
49444
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
49434
49445
|
var NgtscProgram = class {
|
|
49435
49446
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
49436
49447
|
this.options = options;
|
|
@@ -49656,18 +49667,18 @@ function mergeEmitResults(emitResults) {
|
|
|
49656
49667
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
49657
49668
|
}
|
|
49658
49669
|
|
|
49659
|
-
// bazel-out/
|
|
49670
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
49660
49671
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
49661
49672
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
49662
49673
|
}
|
|
49663
49674
|
|
|
49664
|
-
// bazel-out/
|
|
49675
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
49665
49676
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
49666
49677
|
|
|
49667
|
-
// bazel-out/
|
|
49678
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
49668
49679
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
49669
49680
|
|
|
49670
|
-
// bazel-out/
|
|
49681
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
49671
49682
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
49672
49683
|
ngDevMode: false,
|
|
49673
49684
|
ngI18nClosureMode: false
|
|
@@ -49676,7 +49687,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
49676
49687
|
ngJitMode: false
|
|
49677
49688
|
});
|
|
49678
49689
|
|
|
49679
|
-
// bazel-out/
|
|
49690
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
49680
49691
|
var LogLevel;
|
|
49681
49692
|
(function(LogLevel2) {
|
|
49682
49693
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -49685,7 +49696,7 @@ var LogLevel;
|
|
|
49685
49696
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
49686
49697
|
})(LogLevel || (LogLevel = {}));
|
|
49687
49698
|
|
|
49688
|
-
// bazel-out/
|
|
49699
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
49689
49700
|
var RESET = "\x1B[0m";
|
|
49690
49701
|
var RED = "\x1B[31m";
|
|
49691
49702
|
var YELLOW = "\x1B[33m";
|
|
@@ -49694,18 +49705,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
49694
49705
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
49695
49706
|
var ERROR = `${RED}Error:${RESET}`;
|
|
49696
49707
|
|
|
49697
|
-
// bazel-out/
|
|
49708
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
49698
49709
|
setFileSystem(new NodeJSFileSystem());
|
|
49699
49710
|
|
|
49700
|
-
// bazel-out/
|
|
49711
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
49701
49712
|
var import_fs2 = require("fs");
|
|
49702
49713
|
var import_path8 = require("path");
|
|
49703
49714
|
var import_typescript138 = __toESM(require("typescript"), 1);
|
|
49704
49715
|
|
|
49705
|
-
// bazel-out/
|
|
49716
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
49706
49717
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
49707
49718
|
|
|
49708
|
-
// bazel-out/
|
|
49719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
49709
49720
|
var import_path4 = require("path");
|
|
49710
49721
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
49711
49722
|
var ImportManager2 = class {
|
|
@@ -49889,7 +49900,7 @@ ${text2}`;
|
|
|
49889
49900
|
}
|
|
49890
49901
|
};
|
|
49891
49902
|
|
|
49892
|
-
// bazel-out/
|
|
49903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
49893
49904
|
var ChangeTracker = class {
|
|
49894
49905
|
constructor(_printer, _importRemapper) {
|
|
49895
49906
|
__publicField(this, "_printer");
|
|
@@ -49952,7 +49963,7 @@ function normalizePath(path4) {
|
|
|
49952
49963
|
return path4.replace(/\\/g, "/");
|
|
49953
49964
|
}
|
|
49954
49965
|
|
|
49955
|
-
// bazel-out/
|
|
49966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
49956
49967
|
var import_core19 = require("@angular-devkit/core");
|
|
49957
49968
|
function getProjectTsConfigPaths(tree) {
|
|
49958
49969
|
return __async(this, null, function* () {
|
|
@@ -50032,11 +50043,11 @@ function getWorkspace(tree) {
|
|
|
50032
50043
|
});
|
|
50033
50044
|
}
|
|
50034
50045
|
|
|
50035
|
-
// bazel-out/
|
|
50046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50036
50047
|
var import_path5 = require("path");
|
|
50037
50048
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
50038
50049
|
|
|
50039
|
-
// bazel-out/
|
|
50050
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
50040
50051
|
var path3 = __toESM(require("path"), 1);
|
|
50041
50052
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
50042
50053
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -50053,7 +50064,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
50053
50064
|
return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
50054
50065
|
}
|
|
50055
50066
|
|
|
50056
|
-
// bazel-out/
|
|
50067
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50057
50068
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
50058
50069
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
50059
50070
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -50082,13 +50093,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
50082
50093
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
50083
50094
|
}
|
|
50084
50095
|
|
|
50085
|
-
// bazel-out/
|
|
50096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50086
50097
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
50087
50098
|
|
|
50088
|
-
// bazel-out/
|
|
50099
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50089
50100
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
50090
50101
|
|
|
50091
|
-
// bazel-out/
|
|
50102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
50092
50103
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
50093
50104
|
function getImportOfIdentifier(typeChecker, node) {
|
|
50094
50105
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -50139,7 +50150,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
50139
50150
|
});
|
|
50140
50151
|
}
|
|
50141
50152
|
|
|
50142
|
-
// bazel-out/
|
|
50153
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50143
50154
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
50144
50155
|
if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
|
|
50145
50156
|
return null;
|
|
@@ -50148,7 +50159,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
50148
50159
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
50149
50160
|
}
|
|
50150
50161
|
|
|
50151
|
-
// bazel-out/
|
|
50162
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
50152
50163
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
50153
50164
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
50154
50165
|
node,
|
|
@@ -50158,7 +50169,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
50158
50169
|
}));
|
|
50159
50170
|
}
|
|
50160
50171
|
|
|
50161
|
-
// bazel-out/
|
|
50172
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
50162
50173
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
50163
50174
|
function closestNode(node, predicate) {
|
|
50164
50175
|
let current = node.parent;
|
|
@@ -50171,7 +50182,7 @@ function closestNode(node, predicate) {
|
|
|
50171
50182
|
return null;
|
|
50172
50183
|
}
|
|
50173
50184
|
|
|
50174
|
-
// bazel-out/
|
|
50185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
50175
50186
|
var import_path6 = require("path");
|
|
50176
50187
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
50177
50188
|
var UniqueItemTracker = class {
|
|
@@ -50349,7 +50360,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
50349
50360
|
}));
|
|
50350
50361
|
}
|
|
50351
50362
|
|
|
50352
|
-
// bazel-out/
|
|
50363
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50353
50364
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
50354
50365
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
50355
50366
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -50548,14 +50559,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
50548
50559
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
50549
50560
|
}
|
|
50550
50561
|
|
|
50551
|
-
// bazel-out/
|
|
50562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
50552
50563
|
var import_path7 = require("path");
|
|
50553
50564
|
var import_typescript137 = __toESM(require("typescript"), 1);
|
|
50554
50565
|
|
|
50555
|
-
// bazel-out/
|
|
50566
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
50556
50567
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
50557
50568
|
|
|
50558
|
-
// bazel-out/
|
|
50569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
50559
50570
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
50560
50571
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
50561
50572
|
var _a2, _b2;
|
|
@@ -50564,7 +50575,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
50564
50575
|
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];
|
|
50565
50576
|
}
|
|
50566
50577
|
|
|
50567
|
-
// bazel-out/
|
|
50578
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
50568
50579
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
50569
50580
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
50570
50581
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -50934,7 +50945,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
50934
50945
|
return metadata != null && metadata.isStandalone;
|
|
50935
50946
|
}
|
|
50936
50947
|
|
|
50937
|
-
// bazel-out/
|
|
50948
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
50938
50949
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
50939
50950
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
50940
50951
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -51311,7 +51322,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
51311
51322
|
return false;
|
|
51312
51323
|
}
|
|
51313
51324
|
|
|
51314
|
-
// bazel-out/
|
|
51325
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
51315
51326
|
var MigrationMode;
|
|
51316
51327
|
(function(MigrationMode2) {
|
|
51317
51328
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|