@angular/core 18.1.0-rc.0 → 18.1.1
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/primitives/event-dispatch/contract_binary.mjs +3 -3
- package/esm2022/primitives/event-dispatch/index.mjs +6 -7
- package/esm2022/primitives/event-dispatch/src/a11y_click.mjs +1 -1
- package/esm2022/primitives/event-dispatch/src/action_resolver.mjs +1 -1
- package/esm2022/primitives/event-dispatch/src/bootstrap_app_scoped.mjs +29 -0
- package/esm2022/primitives/event-dispatch/src/bootstrap_global.mjs +21 -0
- package/esm2022/primitives/event-dispatch/src/cache.mjs +10 -21
- package/esm2022/primitives/event-dispatch/src/earlyeventcontract.mjs +32 -21
- package/esm2022/primitives/event-dispatch/src/event.mjs +3 -3
- package/esm2022/primitives/event-dispatch/src/event_contract_defines.mjs +1 -6
- package/esm2022/primitives/event-dispatch/src/event_type.mjs +19 -21
- package/esm2022/primitives/event-dispatch/src/eventcontract.mjs +6 -8
- package/esm2022/primitives/event-dispatch/src/property.mjs +1 -1
- package/esm2022/rxjs-interop/src/to_signal.mjs +4 -4
- package/esm2022/src/defer/instructions.mjs +53 -35
- package/esm2022/src/event_delegation_utils.mjs +10 -10
- package/esm2022/src/hydration/event_replay.mjs +17 -22
- package/esm2022/src/render3/after_render_hooks.mjs +7 -2
- 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/event-dispatch-contract.min.js +1 -1
- package/fesm2022/core.mjs +85 -66
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +452 -529
- package/fesm2022/primitives/event-dispatch.mjs.map +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 +4 -4
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +23 -37
- 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 +202 -193
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
- package/schematics/ng-generate/control-flow-migration/bundle.js +227 -202
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +533 -506
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
- package/esm2022/primitives/event-dispatch/src/register_events.mjs +0 -31
|
@@ -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);
|
|
@@ -17028,7 +17028,7 @@ var _Tokenizer = class {
|
|
|
17028
17028
|
const nameCursor = this._cursor.clone();
|
|
17029
17029
|
let allowDigit = false;
|
|
17030
17030
|
this._attemptCharCodeUntilFn((code) => {
|
|
17031
|
-
if (isAsciiLetter(code) || code
|
|
17031
|
+
if (isAsciiLetter(code) || code === $$ || code === $_ || allowDigit && isDigit(code)) {
|
|
17032
17032
|
allowDigit = true;
|
|
17033
17033
|
return false;
|
|
17034
17034
|
}
|
|
@@ -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;
|
|
@@ -25710,6 +25710,7 @@ function convertQueryPredicate(predicate) {
|
|
|
25710
25710
|
return Array.isArray(predicate) ? predicate : createMayBeForwardRefExpression(new WrappedNodeExpr(predicate), 1);
|
|
25711
25711
|
}
|
|
25712
25712
|
function convertDirectiveFacadeToMetadata(facade) {
|
|
25713
|
+
var _a2;
|
|
25713
25714
|
const inputsFromMetadata = parseInputsArray(facade.inputs || []);
|
|
25714
25715
|
const outputsFromMetadata = parseMappingStringArray(facade.outputs || []);
|
|
25715
25716
|
const propMetadata = facade.propMetadata;
|
|
@@ -25732,6 +25733,19 @@ function convertDirectiveFacadeToMetadata(facade) {
|
|
|
25732
25733
|
});
|
|
25733
25734
|
}
|
|
25734
25735
|
}
|
|
25736
|
+
const hostDirectives = ((_a2 = facade.hostDirectives) == null ? void 0 : _a2.length) ? facade.hostDirectives.map((hostDirective) => {
|
|
25737
|
+
return typeof hostDirective === "function" ? {
|
|
25738
|
+
directive: wrapReference(hostDirective),
|
|
25739
|
+
inputs: null,
|
|
25740
|
+
outputs: null,
|
|
25741
|
+
isForwardReference: false
|
|
25742
|
+
} : {
|
|
25743
|
+
directive: wrapReference(hostDirective.directive),
|
|
25744
|
+
isForwardReference: false,
|
|
25745
|
+
inputs: hostDirective.inputs ? parseMappingStringArray(hostDirective.inputs) : null,
|
|
25746
|
+
outputs: hostDirective.outputs ? parseMappingStringArray(hostDirective.outputs) : null
|
|
25747
|
+
};
|
|
25748
|
+
}) : null;
|
|
25735
25749
|
return __spreadProps(__spreadValues({}, facade), {
|
|
25736
25750
|
typeArgumentCount: 0,
|
|
25737
25751
|
typeSourceSpan: facade.typeSourceSpan,
|
|
@@ -25744,31 +25758,37 @@ function convertDirectiveFacadeToMetadata(facade) {
|
|
|
25744
25758
|
providers: facade.providers != null ? new WrappedNodeExpr(facade.providers) : null,
|
|
25745
25759
|
viewQueries: facade.viewQueries.map(convertToR3QueryMetadata),
|
|
25746
25760
|
fullInheritance: false,
|
|
25747
|
-
hostDirectives
|
|
25761
|
+
hostDirectives
|
|
25748
25762
|
});
|
|
25749
25763
|
}
|
|
25750
25764
|
function convertDeclareDirectiveFacadeToMetadata(declaration, typeSourceSpan) {
|
|
25751
|
-
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i;
|
|
25765
|
+
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i, _j;
|
|
25766
|
+
const hostDirectives = ((_a2 = declaration.hostDirectives) == null ? void 0 : _a2.length) ? declaration.hostDirectives.map((dir) => ({
|
|
25767
|
+
directive: wrapReference(dir.directive),
|
|
25768
|
+
isForwardReference: false,
|
|
25769
|
+
inputs: dir.inputs ? getHostDirectiveBindingMapping(dir.inputs) : null,
|
|
25770
|
+
outputs: dir.outputs ? getHostDirectiveBindingMapping(dir.outputs) : null
|
|
25771
|
+
})) : null;
|
|
25752
25772
|
return {
|
|
25753
25773
|
name: declaration.type.name,
|
|
25754
25774
|
type: wrapReference(declaration.type),
|
|
25755
25775
|
typeSourceSpan,
|
|
25756
|
-
selector: (
|
|
25776
|
+
selector: (_b2 = declaration.selector) != null ? _b2 : null,
|
|
25757
25777
|
inputs: declaration.inputs ? inputsPartialMetadataToInputMetadata(declaration.inputs) : {},
|
|
25758
|
-
outputs: (
|
|
25778
|
+
outputs: (_c2 = declaration.outputs) != null ? _c2 : {},
|
|
25759
25779
|
host: convertHostDeclarationToMetadata(declaration.host),
|
|
25760
|
-
queries: ((
|
|
25761
|
-
viewQueries: ((
|
|
25780
|
+
queries: ((_d2 = declaration.queries) != null ? _d2 : []).map(convertQueryDeclarationToMetadata),
|
|
25781
|
+
viewQueries: ((_e2 = declaration.viewQueries) != null ? _e2 : []).map(convertQueryDeclarationToMetadata),
|
|
25762
25782
|
providers: declaration.providers !== void 0 ? new WrappedNodeExpr(declaration.providers) : null,
|
|
25763
|
-
exportAs: (
|
|
25764
|
-
usesInheritance: (
|
|
25765
|
-
lifecycle: { usesOnChanges: (
|
|
25783
|
+
exportAs: (_f2 = declaration.exportAs) != null ? _f2 : null,
|
|
25784
|
+
usesInheritance: (_g2 = declaration.usesInheritance) != null ? _g2 : false,
|
|
25785
|
+
lifecycle: { usesOnChanges: (_h2 = declaration.usesOnChanges) != null ? _h2 : false },
|
|
25766
25786
|
deps: null,
|
|
25767
25787
|
typeArgumentCount: 0,
|
|
25768
25788
|
fullInheritance: false,
|
|
25769
|
-
isStandalone: (
|
|
25770
|
-
isSignal: (
|
|
25771
|
-
hostDirectives
|
|
25789
|
+
isStandalone: (_i = declaration.isStandalone) != null ? _i : false,
|
|
25790
|
+
isSignal: (_j = declaration.isSignal) != null ? _j : false,
|
|
25791
|
+
hostDirectives
|
|
25772
25792
|
};
|
|
25773
25793
|
}
|
|
25774
25794
|
function convertHostDeclarationToMetadata(host = {}) {
|
|
@@ -25783,24 +25803,13 @@ function convertHostDeclarationToMetadata(host = {}) {
|
|
|
25783
25803
|
}
|
|
25784
25804
|
};
|
|
25785
25805
|
}
|
|
25786
|
-
function
|
|
25787
|
-
|
|
25788
|
-
|
|
25789
|
-
|
|
25790
|
-
|
|
25791
|
-
directive: wrapReference(hostDirective),
|
|
25792
|
-
inputs: null,
|
|
25793
|
-
outputs: null,
|
|
25794
|
-
isForwardReference: false
|
|
25795
|
-
} : {
|
|
25796
|
-
directive: wrapReference(hostDirective.directive),
|
|
25797
|
-
isForwardReference: false,
|
|
25798
|
-
inputs: hostDirective.inputs ? parseMappingStringArray(hostDirective.inputs) : null,
|
|
25799
|
-
outputs: hostDirective.outputs ? parseMappingStringArray(hostDirective.outputs) : null
|
|
25800
|
-
};
|
|
25801
|
-
});
|
|
25806
|
+
function getHostDirectiveBindingMapping(array) {
|
|
25807
|
+
let result = null;
|
|
25808
|
+
for (let i = 1; i < array.length; i += 2) {
|
|
25809
|
+
result = result || {};
|
|
25810
|
+
result[array[i - 1]] = array[i];
|
|
25802
25811
|
}
|
|
25803
|
-
return
|
|
25812
|
+
return result;
|
|
25804
25813
|
}
|
|
25805
25814
|
function convertOpaqueValuesToExpressions(obj) {
|
|
25806
25815
|
const result = {};
|
|
@@ -26070,10 +26079,10 @@ function publishFacade(global) {
|
|
|
26070
26079
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26071
26080
|
}
|
|
26072
26081
|
|
|
26073
|
-
// bazel-out/
|
|
26074
|
-
var VERSION2 = new Version("18.1.
|
|
26082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26083
|
+
var VERSION2 = new Version("18.1.1");
|
|
26075
26084
|
|
|
26076
|
-
// bazel-out/
|
|
26085
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26077
26086
|
var _I18N_ATTR = "i18n";
|
|
26078
26087
|
var _I18N_ATTR_PREFIX = "i18n-";
|
|
26079
26088
|
var _I18N_COMMENT_PREFIX_REGEXP = /^i18n:?/;
|
|
@@ -26384,7 +26393,7 @@ function _parseMessageMeta(i18n2) {
|
|
|
26384
26393
|
return { meaning, description, id: id.trim() };
|
|
26385
26394
|
}
|
|
26386
26395
|
|
|
26387
|
-
// bazel-out/
|
|
26396
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26388
26397
|
var XmlTagDefinition = class {
|
|
26389
26398
|
constructor() {
|
|
26390
26399
|
this.closedByParent = false;
|
|
@@ -26409,7 +26418,7 @@ function getXmlTagDefinition(tagName) {
|
|
|
26409
26418
|
return _TAG_DEFINITION;
|
|
26410
26419
|
}
|
|
26411
26420
|
|
|
26412
|
-
// bazel-out/
|
|
26421
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_parser.mjs
|
|
26413
26422
|
var XmlParser = class extends Parser2 {
|
|
26414
26423
|
constructor() {
|
|
26415
26424
|
super(getXmlTagDefinition);
|
|
@@ -26419,7 +26428,7 @@ var XmlParser = class extends Parser2 {
|
|
|
26419
26428
|
}
|
|
26420
26429
|
};
|
|
26421
26430
|
|
|
26422
|
-
// bazel-out/
|
|
26431
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff.mjs
|
|
26423
26432
|
var _VERSION = "1.2";
|
|
26424
26433
|
var _XMLNS = "urn:oasis:names:tc:xliff:document:1.2";
|
|
26425
26434
|
var _DEFAULT_SOURCE_LANG = "en";
|
|
@@ -26701,7 +26710,7 @@ function getCtypeForTag(tag) {
|
|
|
26701
26710
|
}
|
|
26702
26711
|
}
|
|
26703
26712
|
|
|
26704
|
-
// bazel-out/
|
|
26713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xliff2.mjs
|
|
26705
26714
|
var _VERSION2 = "2.0";
|
|
26706
26715
|
var _XMLNS2 = "urn:oasis:names:tc:xliff:document:2.0";
|
|
26707
26716
|
var _DEFAULT_SOURCE_LANG2 = "en";
|
|
@@ -27032,7 +27041,7 @@ function getTypeForTag(tag) {
|
|
|
27032
27041
|
}
|
|
27033
27042
|
}
|
|
27034
27043
|
|
|
27035
|
-
// bazel-out/
|
|
27044
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/message_bundle.mjs
|
|
27036
27045
|
var MessageBundle = class {
|
|
27037
27046
|
constructor(_htmlParser, _implicitTags, _implicitAttrs, _locale = null) {
|
|
27038
27047
|
this._htmlParser = _htmlParser;
|
|
@@ -27108,7 +27117,7 @@ var MapPlaceholderNames = class extends CloneVisitor {
|
|
|
27108
27117
|
}
|
|
27109
27118
|
};
|
|
27110
27119
|
|
|
27111
|
-
// bazel-out/
|
|
27120
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
27112
27121
|
var FactoryTarget2;
|
|
27113
27122
|
(function(FactoryTarget3) {
|
|
27114
27123
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -27118,7 +27127,7 @@ var FactoryTarget2;
|
|
|
27118
27127
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
27119
27128
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
27120
27129
|
|
|
27121
|
-
// bazel-out/
|
|
27130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_metadata_compiler.mjs
|
|
27122
27131
|
function compileClassMetadata(metadata) {
|
|
27123
27132
|
const fnCall = internalCompileClassMetadata(metadata);
|
|
27124
27133
|
return arrowFn([], [devOnlyGuardedExpression(fnCall).toStmt()]).callFn([]);
|
|
@@ -27152,7 +27161,7 @@ function compileComponentMetadataAsyncResolver(dependencies) {
|
|
|
27152
27161
|
return arrowFn([], literalArr(dynamicImports));
|
|
27153
27162
|
}
|
|
27154
27163
|
|
|
27155
|
-
// bazel-out/
|
|
27164
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_class_debug_info_compiler.mjs
|
|
27156
27165
|
function compileClassDebugInfo(debugInfo) {
|
|
27157
27166
|
const debugInfoObject = {
|
|
27158
27167
|
className: debugInfo.className
|
|
@@ -27169,13 +27178,13 @@ function compileClassDebugInfo(debugInfo) {
|
|
|
27169
27178
|
return iife.callFn([]);
|
|
27170
27179
|
}
|
|
27171
27180
|
|
|
27172
|
-
// bazel-out/
|
|
27181
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/class_metadata.mjs
|
|
27173
27182
|
var MINIMUM_PARTIAL_LINKER_VERSION = "12.0.0";
|
|
27174
27183
|
var MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = "18.0.0";
|
|
27175
27184
|
function compileDeclareClassMetadata(metadata) {
|
|
27176
27185
|
const definitionMap = new DefinitionMap();
|
|
27177
27186
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
27178
|
-
definitionMap.set("version", literal("18.1.
|
|
27187
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27179
27188
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27180
27189
|
definitionMap.set("type", metadata.type);
|
|
27181
27190
|
definitionMap.set("decorators", metadata.decorators);
|
|
@@ -27194,7 +27203,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27194
27203
|
callbackReturnDefinitionMap.set("ctorParameters", (_a2 = metadata.ctorParameters) != null ? _a2 : literal(null));
|
|
27195
27204
|
callbackReturnDefinitionMap.set("propDecorators", (_b2 = metadata.propDecorators) != null ? _b2 : literal(null));
|
|
27196
27205
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
27197
|
-
definitionMap.set("version", literal("18.1.
|
|
27206
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27198
27207
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27199
27208
|
definitionMap.set("type", metadata.type);
|
|
27200
27209
|
definitionMap.set("resolveDeferredDeps", compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -27202,7 +27211,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
27202
27211
|
return importExpr(Identifiers.declareClassMetadataAsync).callFn([definitionMap.toLiteralMap()]);
|
|
27203
27212
|
}
|
|
27204
27213
|
|
|
27205
|
-
// bazel-out/
|
|
27214
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/util.mjs
|
|
27206
27215
|
function toOptionalLiteralArray(values, mapper) {
|
|
27207
27216
|
if (values === null || values.length === 0) {
|
|
27208
27217
|
return null;
|
|
@@ -27250,7 +27259,7 @@ function compileDependency(dep) {
|
|
|
27250
27259
|
return depMeta.toLiteralMap();
|
|
27251
27260
|
}
|
|
27252
27261
|
|
|
27253
|
-
// bazel-out/
|
|
27262
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/directive.mjs
|
|
27254
27263
|
function compileDeclareDirectiveFromMetadata(meta) {
|
|
27255
27264
|
const definitionMap = createDirectiveDefinitionMap(meta);
|
|
27256
27265
|
const expression = importExpr(Identifiers.declareDirective).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27262,7 +27271,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
27262
27271
|
const definitionMap = new DefinitionMap();
|
|
27263
27272
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
27264
27273
|
definitionMap.set("minVersion", literal(minVersion));
|
|
27265
|
-
definitionMap.set("version", literal("18.1.
|
|
27274
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27266
27275
|
definitionMap.set("type", meta.type.value);
|
|
27267
27276
|
if (meta.isStandalone) {
|
|
27268
27277
|
definitionMap.set("isStandalone", literal(meta.isStandalone));
|
|
@@ -27424,7 +27433,7 @@ function legacyInputsPartialMetadata(inputs) {
|
|
|
27424
27433
|
}));
|
|
27425
27434
|
}
|
|
27426
27435
|
|
|
27427
|
-
// bazel-out/
|
|
27436
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/component.mjs
|
|
27428
27437
|
function compileDeclareComponentFromMetadata(meta, template2, additionalTemplateInfo) {
|
|
27429
27438
|
const definitionMap = createComponentDefinitionMap(meta, template2, additionalTemplateInfo);
|
|
27430
27439
|
const expression = importExpr(Identifiers.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
@@ -27575,12 +27584,12 @@ var BlockPresenceVisitor = class extends RecursiveVisitor {
|
|
|
27575
27584
|
}
|
|
27576
27585
|
};
|
|
27577
27586
|
|
|
27578
|
-
// bazel-out/
|
|
27587
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/factory.mjs
|
|
27579
27588
|
var MINIMUM_PARTIAL_LINKER_VERSION2 = "12.0.0";
|
|
27580
27589
|
function compileDeclareFactoryFunction(meta) {
|
|
27581
27590
|
const definitionMap = new DefinitionMap();
|
|
27582
27591
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION2));
|
|
27583
|
-
definitionMap.set("version", literal("18.1.
|
|
27592
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27584
27593
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27585
27594
|
definitionMap.set("type", meta.type.value);
|
|
27586
27595
|
definitionMap.set("deps", compileDependencies(meta.deps));
|
|
@@ -27592,7 +27601,7 @@ function compileDeclareFactoryFunction(meta) {
|
|
|
27592
27601
|
};
|
|
27593
27602
|
}
|
|
27594
27603
|
|
|
27595
|
-
// bazel-out/
|
|
27604
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injectable.mjs
|
|
27596
27605
|
var MINIMUM_PARTIAL_LINKER_VERSION3 = "12.0.0";
|
|
27597
27606
|
function compileDeclareInjectableFromMetadata(meta) {
|
|
27598
27607
|
const definitionMap = createInjectableDefinitionMap(meta);
|
|
@@ -27603,7 +27612,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
27603
27612
|
function createInjectableDefinitionMap(meta) {
|
|
27604
27613
|
const definitionMap = new DefinitionMap();
|
|
27605
27614
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION3));
|
|
27606
|
-
definitionMap.set("version", literal("18.1.
|
|
27615
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27607
27616
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27608
27617
|
definitionMap.set("type", meta.type.value);
|
|
27609
27618
|
if (meta.providedIn !== void 0) {
|
|
@@ -27630,7 +27639,7 @@ function createInjectableDefinitionMap(meta) {
|
|
|
27630
27639
|
return definitionMap;
|
|
27631
27640
|
}
|
|
27632
27641
|
|
|
27633
|
-
// bazel-out/
|
|
27642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/injector.mjs
|
|
27634
27643
|
var MINIMUM_PARTIAL_LINKER_VERSION4 = "12.0.0";
|
|
27635
27644
|
function compileDeclareInjectorFromMetadata(meta) {
|
|
27636
27645
|
const definitionMap = createInjectorDefinitionMap(meta);
|
|
@@ -27641,7 +27650,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
27641
27650
|
function createInjectorDefinitionMap(meta) {
|
|
27642
27651
|
const definitionMap = new DefinitionMap();
|
|
27643
27652
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION4));
|
|
27644
|
-
definitionMap.set("version", literal("18.1.
|
|
27653
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27645
27654
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27646
27655
|
definitionMap.set("type", meta.type.value);
|
|
27647
27656
|
definitionMap.set("providers", meta.providers);
|
|
@@ -27651,7 +27660,7 @@ function createInjectorDefinitionMap(meta) {
|
|
|
27651
27660
|
return definitionMap;
|
|
27652
27661
|
}
|
|
27653
27662
|
|
|
27654
|
-
// bazel-out/
|
|
27663
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/ng_module.mjs
|
|
27655
27664
|
var MINIMUM_PARTIAL_LINKER_VERSION5 = "14.0.0";
|
|
27656
27665
|
function compileDeclareNgModuleFromMetadata(meta) {
|
|
27657
27666
|
const definitionMap = createNgModuleDefinitionMap(meta);
|
|
@@ -27665,7 +27674,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27665
27674
|
throw new Error("Invalid path! Local compilation mode should not get into the partial compilation path");
|
|
27666
27675
|
}
|
|
27667
27676
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION5));
|
|
27668
|
-
definitionMap.set("version", literal("18.1.
|
|
27677
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27669
27678
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27670
27679
|
definitionMap.set("type", meta.type.value);
|
|
27671
27680
|
if (meta.bootstrap.length > 0) {
|
|
@@ -27689,7 +27698,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
27689
27698
|
return definitionMap;
|
|
27690
27699
|
}
|
|
27691
27700
|
|
|
27692
|
-
// bazel-out/
|
|
27701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/pipe.mjs
|
|
27693
27702
|
var MINIMUM_PARTIAL_LINKER_VERSION6 = "14.0.0";
|
|
27694
27703
|
function compileDeclarePipeFromMetadata(meta) {
|
|
27695
27704
|
const definitionMap = createPipeDefinitionMap(meta);
|
|
@@ -27700,7 +27709,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
27700
27709
|
function createPipeDefinitionMap(meta) {
|
|
27701
27710
|
const definitionMap = new DefinitionMap();
|
|
27702
27711
|
definitionMap.set("minVersion", literal(MINIMUM_PARTIAL_LINKER_VERSION6));
|
|
27703
|
-
definitionMap.set("version", literal("18.1.
|
|
27712
|
+
definitionMap.set("version", literal("18.1.1"));
|
|
27704
27713
|
definitionMap.set("ngImport", importExpr(Identifiers.core));
|
|
27705
27714
|
definitionMap.set("type", meta.type.value);
|
|
27706
27715
|
if (meta.isStandalone) {
|
|
@@ -27713,16 +27722,16 @@ function createPipeDefinitionMap(meta) {
|
|
|
27713
27722
|
return definitionMap;
|
|
27714
27723
|
}
|
|
27715
27724
|
|
|
27716
|
-
// bazel-out/
|
|
27725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
27717
27726
|
publishFacade(_global);
|
|
27718
27727
|
|
|
27719
|
-
// bazel-out/
|
|
27720
|
-
var VERSION3 = new Version("18.1.
|
|
27728
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
27729
|
+
var VERSION3 = new Version("18.1.1");
|
|
27721
27730
|
|
|
27722
|
-
// bazel-out/
|
|
27731
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
27723
27732
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
27724
27733
|
|
|
27725
|
-
// bazel-out/
|
|
27734
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.mjs
|
|
27726
27735
|
var ErrorCode;
|
|
27727
27736
|
(function(ErrorCode2) {
|
|
27728
27737
|
ErrorCode2[ErrorCode2["DECORATOR_ARG_NOT_LITERAL"] = 1001] = "DECORATOR_ARG_NOT_LITERAL";
|
|
@@ -27816,7 +27825,7 @@ var ErrorCode;
|
|
|
27816
27825
|
ErrorCode2[ErrorCode2["LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION"] = 11003] = "LOCAL_COMPILATION_UNSUPPORTED_EXPRESSION";
|
|
27817
27826
|
})(ErrorCode || (ErrorCode = {}));
|
|
27818
27827
|
|
|
27819
|
-
// bazel-out/
|
|
27828
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/docs.mjs
|
|
27820
27829
|
var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
27821
27830
|
ErrorCode.DECORATOR_ARG_NOT_LITERAL,
|
|
27822
27831
|
ErrorCode.IMPORT_CYCLE_DETECTED,
|
|
@@ -27828,15 +27837,15 @@ var COMPILER_ERRORS_WITH_GUIDES = /* @__PURE__ */ new Set([
|
|
|
27828
27837
|
ErrorCode.WARN_NGMODULE_ID_UNNECESSARY
|
|
27829
27838
|
]);
|
|
27830
27839
|
|
|
27831
|
-
// bazel-out/
|
|
27840
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
27832
27841
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
27833
27842
|
|
|
27834
|
-
// bazel-out/
|
|
27843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/util.mjs
|
|
27835
27844
|
function ngErrorCode(code) {
|
|
27836
27845
|
return parseInt("-99" + code);
|
|
27837
27846
|
}
|
|
27838
27847
|
|
|
27839
|
-
// bazel-out/
|
|
27848
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error.mjs
|
|
27840
27849
|
var FatalDiagnosticError = class extends Error {
|
|
27841
27850
|
constructor(code, node, diagnosticMessage, relatedInformation) {
|
|
27842
27851
|
super(`FatalDiagnosticError: Code: ${code}, Message: ${import_typescript2.default.flattenDiagnosticMessageText(diagnosticMessage, "\n")}`);
|
|
@@ -27897,10 +27906,10 @@ function isFatalDiagnosticError(err) {
|
|
|
27897
27906
|
return err._isFatalDiagnosticError === true;
|
|
27898
27907
|
}
|
|
27899
27908
|
|
|
27900
|
-
// bazel-out/
|
|
27909
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.mjs
|
|
27901
27910
|
var ERROR_DETAILS_PAGE_BASE_URL = "https://angular.dev/errors";
|
|
27902
27911
|
|
|
27903
|
-
// bazel-out/
|
|
27912
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.mjs
|
|
27904
27913
|
var ExtendedTemplateDiagnosticName;
|
|
27905
27914
|
(function(ExtendedTemplateDiagnosticName2) {
|
|
27906
27915
|
ExtendedTemplateDiagnosticName2["INVALID_BANANA_IN_BOX"] = "invalidBananaInBox";
|
|
@@ -27916,7 +27925,7 @@ var ExtendedTemplateDiagnosticName;
|
|
|
27916
27925
|
ExtendedTemplateDiagnosticName2["CONTROL_FLOW_PREVENTING_CONTENT_PROJECTION"] = "controlFlowPreventingContentProjection";
|
|
27917
27926
|
})(ExtendedTemplateDiagnosticName || (ExtendedTemplateDiagnosticName = {}));
|
|
27918
27927
|
|
|
27919
|
-
// bazel-out/
|
|
27928
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/typescript.mjs
|
|
27920
27929
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
27921
27930
|
var TS = /\.tsx?$/i;
|
|
27922
27931
|
var D_TS = /\.d\.ts$/i;
|
|
@@ -28017,7 +28026,7 @@ function toUnredirectedSourceFile(sf) {
|
|
|
28017
28026
|
return redirectInfo.unredirected;
|
|
28018
28027
|
}
|
|
28019
28028
|
|
|
28020
|
-
// bazel-out/
|
|
28029
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/find_export.mjs
|
|
28021
28030
|
function findExportedNameOfNode(target, file, reflector) {
|
|
28022
28031
|
const exports = reflector.getExportsOfModule(file);
|
|
28023
28032
|
if (exports === null) {
|
|
@@ -28037,7 +28046,7 @@ function findExportedNameOfNode(target, file, reflector) {
|
|
|
28037
28046
|
return foundExportName;
|
|
28038
28047
|
}
|
|
28039
28048
|
|
|
28040
|
-
// bazel-out/
|
|
28049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/emitter.mjs
|
|
28041
28050
|
var ImportFlags;
|
|
28042
28051
|
(function(ImportFlags2) {
|
|
28043
28052
|
ImportFlags2[ImportFlags2["None"] = 0] = "None";
|
|
@@ -28268,7 +28277,7 @@ var UnifiedModulesStrategy = class {
|
|
|
28268
28277
|
}
|
|
28269
28278
|
};
|
|
28270
28279
|
|
|
28271
|
-
// bazel-out/
|
|
28280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/alias.mjs
|
|
28272
28281
|
var CHARS_TO_ESCAPE = /[^a-zA-Z0-9/_]/g;
|
|
28273
28282
|
var UnifiedModulesAliasingHost = class {
|
|
28274
28283
|
constructor(unifiedModulesHost) {
|
|
@@ -28335,7 +28344,7 @@ var AliasStrategy = class {
|
|
|
28335
28344
|
}
|
|
28336
28345
|
};
|
|
28337
28346
|
|
|
28338
|
-
// bazel-out/
|
|
28347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/path.mjs
|
|
28339
28348
|
function relativePathBetween(from, to) {
|
|
28340
28349
|
const relativePath = stripExtension(relative(dirname(resolve(from)), resolve(to)));
|
|
28341
28350
|
return relativePath !== "" ? toRelativeImport(relativePath) : null;
|
|
@@ -28344,7 +28353,7 @@ function normalizeSeparators2(path4) {
|
|
|
28344
28353
|
return path4.replace(/\\/g, "/");
|
|
28345
28354
|
}
|
|
28346
28355
|
|
|
28347
|
-
// bazel-out/
|
|
28356
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/core.mjs
|
|
28348
28357
|
var NoopImportRewriter = class {
|
|
28349
28358
|
rewriteSymbol(symbol, specifier) {
|
|
28350
28359
|
return symbol;
|
|
@@ -28397,7 +28406,7 @@ function validateAndRewriteCoreSymbol(name) {
|
|
|
28397
28406
|
return CORE_SUPPORTED_SYMBOLS.get(name);
|
|
28398
28407
|
}
|
|
28399
28408
|
|
|
28400
|
-
// bazel-out/
|
|
28409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/patch_alias_reference_resolution.mjs
|
|
28401
28410
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
28402
28411
|
var patchedReferencedAliasesSymbol = Symbol("patchedReferencedAliases");
|
|
28403
28412
|
function loadIsReferencedAliasDeclarationPatch(context) {
|
|
@@ -28432,7 +28441,7 @@ function throwIncompatibleTransformationContextError() {
|
|
|
28432
28441
|
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
28442
|
}
|
|
28434
28443
|
|
|
28435
|
-
// bazel-out/
|
|
28444
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/default.mjs
|
|
28436
28445
|
var DefaultImportDeclaration = Symbol("DefaultImportDeclaration");
|
|
28437
28446
|
function attachDefaultImportDeclaration(expr, importDecl) {
|
|
28438
28447
|
expr[DefaultImportDeclaration] = importDecl;
|
|
@@ -28473,13 +28482,13 @@ var DefaultImportTracker = class {
|
|
|
28473
28482
|
}
|
|
28474
28483
|
};
|
|
28475
28484
|
|
|
28476
|
-
// bazel-out/
|
|
28485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
28477
28486
|
var import_typescript13 = __toESM(require("typescript"), 1);
|
|
28478
28487
|
|
|
28479
|
-
// bazel-out/
|
|
28488
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28480
28489
|
var import_typescript12 = __toESM(require("typescript"), 1);
|
|
28481
28490
|
|
|
28482
|
-
// bazel-out/
|
|
28491
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/host.mjs
|
|
28483
28492
|
var import_typescript9 = __toESM(require("typescript"), 1);
|
|
28484
28493
|
function isDecoratorIdentifier(exp) {
|
|
28485
28494
|
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 +28511,7 @@ var ClassMemberAccessLevel;
|
|
|
28502
28511
|
})(ClassMemberAccessLevel || (ClassMemberAccessLevel = {}));
|
|
28503
28512
|
var AmbientImport = {};
|
|
28504
28513
|
|
|
28505
|
-
// bazel-out/
|
|
28514
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/type_to_value.mjs
|
|
28506
28515
|
var import_typescript10 = __toESM(require("typescript"), 1);
|
|
28507
28516
|
function typeToValue(typeNode, checker, isLocalCompilation) {
|
|
28508
28517
|
var _a2, _b2;
|
|
@@ -28686,7 +28695,7 @@ function extractModuleName(node) {
|
|
|
28686
28695
|
return node.moduleSpecifier.text;
|
|
28687
28696
|
}
|
|
28688
28697
|
|
|
28689
|
-
// bazel-out/
|
|
28698
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/util.mjs
|
|
28690
28699
|
var import_typescript11 = __toESM(require("typescript"), 1);
|
|
28691
28700
|
function isNamedClassDeclaration(node) {
|
|
28692
28701
|
return import_typescript11.default.isClassDeclaration(node) && isIdentifier(node.name);
|
|
@@ -28710,7 +28719,7 @@ function classMemberAccessLevelToString(level) {
|
|
|
28710
28719
|
}
|
|
28711
28720
|
}
|
|
28712
28721
|
|
|
28713
|
-
// bazel-out/
|
|
28722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/reflection/src/typescript.mjs
|
|
28714
28723
|
var TypeScriptReflectionHost = class {
|
|
28715
28724
|
constructor(checker, isLocalCompilation = false) {
|
|
28716
28725
|
this.checker = checker;
|
|
@@ -29197,7 +29206,7 @@ function getExportedName(decl, originalId) {
|
|
|
29197
29206
|
}
|
|
29198
29207
|
var LocalExportedDeclarations = Symbol("LocalExportedDeclarations");
|
|
29199
29208
|
|
|
29200
|
-
// bazel-out/
|
|
29209
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/deferred_symbol_tracker.mjs
|
|
29201
29210
|
var AssumeEager = "AssumeEager";
|
|
29202
29211
|
var DeferredSymbolTracker = class {
|
|
29203
29212
|
constructor(typeChecker, onlyExplicitDeferDependencyImports) {
|
|
@@ -29317,7 +29326,7 @@ var DeferredSymbolTracker = class {
|
|
|
29317
29326
|
}
|
|
29318
29327
|
};
|
|
29319
29328
|
|
|
29320
|
-
// bazel-out/
|
|
29329
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/imported_symbols_tracker.mjs
|
|
29321
29330
|
var import_typescript15 = __toESM(require("typescript"), 1);
|
|
29322
29331
|
var ImportedSymbolsTracker = class {
|
|
29323
29332
|
constructor() {
|
|
@@ -29387,7 +29396,7 @@ var ImportedSymbolsTracker = class {
|
|
|
29387
29396
|
}
|
|
29388
29397
|
};
|
|
29389
29398
|
|
|
29390
|
-
// bazel-out/
|
|
29399
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/local_compilation_extra_imports_tracker.mjs
|
|
29391
29400
|
var import_typescript16 = __toESM(require("typescript"), 1);
|
|
29392
29401
|
var LocalCompilationExtraImportsTracker = class {
|
|
29393
29402
|
constructor(typeChecker) {
|
|
@@ -29438,7 +29447,7 @@ function removeQuotations(s) {
|
|
|
29438
29447
|
return s.substring(1, s.length - 1).trim();
|
|
29439
29448
|
}
|
|
29440
29449
|
|
|
29441
|
-
// bazel-out/
|
|
29450
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/references.mjs
|
|
29442
29451
|
var Reference2 = class {
|
|
29443
29452
|
constructor(node, bestGuessOwningModule = null) {
|
|
29444
29453
|
this.node = node;
|
|
@@ -29507,7 +29516,7 @@ var Reference2 = class {
|
|
|
29507
29516
|
}
|
|
29508
29517
|
};
|
|
29509
29518
|
|
|
29510
|
-
// bazel-out/
|
|
29519
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/imports/src/resolver.mjs
|
|
29511
29520
|
var ModuleResolver = class {
|
|
29512
29521
|
constructor(program, compilerOptions, host, moduleResolutionCache) {
|
|
29513
29522
|
this.program = program;
|
|
@@ -29524,16 +29533,16 @@ var ModuleResolver = class {
|
|
|
29524
29533
|
}
|
|
29525
29534
|
};
|
|
29526
29535
|
|
|
29527
|
-
// bazel-out/
|
|
29536
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/downlevel_decorators_transform.mjs
|
|
29528
29537
|
var import_typescript21 = __toESM(require("typescript"), 1);
|
|
29529
29538
|
|
|
29530
|
-
// bazel-out/
|
|
29539
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform.mjs
|
|
29531
29540
|
var import_typescript95 = __toESM(require("typescript"), 1);
|
|
29532
29541
|
|
|
29533
|
-
// bazel-out/
|
|
29542
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
29534
29543
|
var import_typescript23 = __toESM(require("typescript"), 1);
|
|
29535
29544
|
|
|
29536
|
-
// bazel-out/
|
|
29545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/util.mjs
|
|
29537
29546
|
var import_typescript22 = __toESM(require("typescript"), 1);
|
|
29538
29547
|
var CORE_MODULE2 = "@angular/core";
|
|
29539
29548
|
function valueReferenceToExpression(valueRef) {
|
|
@@ -29791,7 +29800,7 @@ function isAbstractClassDeclaration(clazz) {
|
|
|
29791
29800
|
return import_typescript22.default.canHaveModifiers(clazz) && clazz.modifiers !== void 0 ? clazz.modifiers.some((mod) => mod.kind === import_typescript22.default.SyntaxKind.AbstractKeyword) : false;
|
|
29792
29801
|
}
|
|
29793
29802
|
|
|
29794
|
-
// bazel-out/
|
|
29803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/di.mjs
|
|
29795
29804
|
function getConstructorDependencies(clazz, reflector, isCore) {
|
|
29796
29805
|
const deps = [];
|
|
29797
29806
|
const errors = [];
|
|
@@ -29935,10 +29944,10 @@ function createUnsuitableInjectionTokenError(clazz, error) {
|
|
|
29935
29944
|
return new FatalDiagnosticError(ErrorCode.PARAM_MISSING_TOKEN, param.nameNode, chain2, hints);
|
|
29936
29945
|
}
|
|
29937
29946
|
|
|
29938
|
-
// bazel-out/
|
|
29947
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
29939
29948
|
var import_typescript46 = __toESM(require("typescript"), 1);
|
|
29940
29949
|
|
|
29941
|
-
// bazel-out/
|
|
29950
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/api.mjs
|
|
29942
29951
|
var MetaKind;
|
|
29943
29952
|
(function(MetaKind2) {
|
|
29944
29953
|
MetaKind2[MetaKind2["Directive"] = 0] = "Directive";
|
|
@@ -29951,10 +29960,10 @@ var MatchSource;
|
|
|
29951
29960
|
MatchSource2[MatchSource2["HostDirective"] = 1] = "HostDirective";
|
|
29952
29961
|
})(MatchSource || (MatchSource = {}));
|
|
29953
29962
|
|
|
29954
|
-
// bazel-out/
|
|
29963
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
29955
29964
|
var import_typescript26 = __toESM(require("typescript"), 1);
|
|
29956
29965
|
|
|
29957
|
-
// bazel-out/
|
|
29966
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/property_mapping.mjs
|
|
29958
29967
|
var ClassPropertyMapping = class {
|
|
29959
29968
|
constructor(forwardMap) {
|
|
29960
29969
|
this.forwardMap = forwardMap;
|
|
@@ -30034,7 +30043,7 @@ function reverseMapFromForwardMap(forwardMap) {
|
|
|
30034
30043
|
return reverseMap;
|
|
30035
30044
|
}
|
|
30036
30045
|
|
|
30037
|
-
// bazel-out/
|
|
30046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/util.mjs
|
|
30038
30047
|
var import_typescript24 = __toESM(require("typescript"), 1);
|
|
30039
30048
|
function extractReferencesFromType(checker, def, bestGuessOwningModule) {
|
|
30040
30049
|
if (!import_typescript24.default.isTupleTypeNode(def)) {
|
|
@@ -30230,7 +30239,7 @@ function isHostDirectiveMetaForGlobalMode(hostDirectiveMeta) {
|
|
|
30230
30239
|
return hostDirectiveMeta.directive instanceof Reference2;
|
|
30231
30240
|
}
|
|
30232
30241
|
|
|
30233
|
-
// bazel-out/
|
|
30242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/dts.mjs
|
|
30234
30243
|
var DtsMetadataReader = class {
|
|
30235
30244
|
constructor(checker, reflector) {
|
|
30236
30245
|
this.checker = checker;
|
|
@@ -30413,7 +30422,7 @@ function readHostDirectivesType(checker, type, bestGuessOwningModule) {
|
|
|
30413
30422
|
return result.length > 0 ? result : null;
|
|
30414
30423
|
}
|
|
30415
30424
|
|
|
30416
|
-
// bazel-out/
|
|
30425
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/inheritance.mjs
|
|
30417
30426
|
function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
30418
30427
|
const topMeta = reader.getDirectiveMetadata(dir);
|
|
30419
30428
|
if (topMeta === null) {
|
|
@@ -30476,7 +30485,7 @@ function flattenInheritedDirectiveMetadata(reader, dir) {
|
|
|
30476
30485
|
});
|
|
30477
30486
|
}
|
|
30478
30487
|
|
|
30479
|
-
// bazel-out/
|
|
30488
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/registry.mjs
|
|
30480
30489
|
var LocalMetadataRegistry = class {
|
|
30481
30490
|
constructor() {
|
|
30482
30491
|
this.directives = /* @__PURE__ */ new Map();
|
|
@@ -30533,7 +30542,7 @@ var CompoundMetadataRegistry = class {
|
|
|
30533
30542
|
}
|
|
30534
30543
|
};
|
|
30535
30544
|
|
|
30536
|
-
// bazel-out/
|
|
30545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/resource_registry.mjs
|
|
30537
30546
|
var ResourceRegistry = class {
|
|
30538
30547
|
constructor() {
|
|
30539
30548
|
this.externalTemplateToComponentsMap = /* @__PURE__ */ new Map();
|
|
@@ -30598,7 +30607,7 @@ var ResourceRegistry = class {
|
|
|
30598
30607
|
}
|
|
30599
30608
|
};
|
|
30600
30609
|
|
|
30601
|
-
// bazel-out/
|
|
30610
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/providers.mjs
|
|
30602
30611
|
var ExportedProviderStatusResolver = class {
|
|
30603
30612
|
constructor(metaReader) {
|
|
30604
30613
|
this.metaReader = metaReader;
|
|
@@ -30642,7 +30651,7 @@ var ExportedProviderStatusResolver = class {
|
|
|
30642
30651
|
}
|
|
30643
30652
|
};
|
|
30644
30653
|
|
|
30645
|
-
// bazel-out/
|
|
30654
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/host_directives_resolver.mjs
|
|
30646
30655
|
var EMPTY_ARRAY = [];
|
|
30647
30656
|
var HostDirectivesResolver = class {
|
|
30648
30657
|
constructor(metaReader) {
|
|
@@ -30707,10 +30716,10 @@ function resolveOutput(bindingName) {
|
|
|
30707
30716
|
return bindingName;
|
|
30708
30717
|
}
|
|
30709
30718
|
|
|
30710
|
-
// bazel-out/
|
|
30719
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
30711
30720
|
var import_typescript28 = __toESM(require("typescript"), 1);
|
|
30712
30721
|
|
|
30713
|
-
// bazel-out/
|
|
30722
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/dynamic.mjs
|
|
30714
30723
|
var DynamicValue = class {
|
|
30715
30724
|
constructor(node, reason, code) {
|
|
30716
30725
|
this.node = node;
|
|
@@ -30800,7 +30809,7 @@ var DynamicValue = class {
|
|
|
30800
30809
|
}
|
|
30801
30810
|
};
|
|
30802
30811
|
|
|
30803
|
-
// bazel-out/
|
|
30812
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/result.mjs
|
|
30804
30813
|
var ResolvedModule = class {
|
|
30805
30814
|
constructor(exports, evaluate) {
|
|
30806
30815
|
this.exports = exports;
|
|
@@ -30830,7 +30839,7 @@ var EnumValue = class {
|
|
|
30830
30839
|
var KnownFn = class {
|
|
30831
30840
|
};
|
|
30832
30841
|
|
|
30833
|
-
// bazel-out/
|
|
30842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/diagnostics.mjs
|
|
30834
30843
|
function describeResolvedType(value, maxDepth = 1) {
|
|
30835
30844
|
var _a2, _b2;
|
|
30836
30845
|
if (value === null) {
|
|
@@ -30963,10 +30972,10 @@ function getContainerNode(node) {
|
|
|
30963
30972
|
return node.getSourceFile();
|
|
30964
30973
|
}
|
|
30965
30974
|
|
|
30966
|
-
// bazel-out/
|
|
30975
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
30967
30976
|
var import_typescript29 = __toESM(require("typescript"), 1);
|
|
30968
30977
|
|
|
30969
|
-
// bazel-out/
|
|
30978
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/builtin.mjs
|
|
30970
30979
|
var ArraySliceBuiltinFn = class extends KnownFn {
|
|
30971
30980
|
constructor(lhs) {
|
|
30972
30981
|
super();
|
|
@@ -31018,14 +31027,14 @@ var StringConcatBuiltinFn = class extends KnownFn {
|
|
|
31018
31027
|
}
|
|
31019
31028
|
};
|
|
31020
31029
|
|
|
31021
|
-
// bazel-out/
|
|
31030
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/synthetic.mjs
|
|
31022
31031
|
var SyntheticValue = class {
|
|
31023
31032
|
constructor(value) {
|
|
31024
31033
|
this.value = value;
|
|
31025
31034
|
}
|
|
31026
31035
|
};
|
|
31027
31036
|
|
|
31028
|
-
// bazel-out/
|
|
31037
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interpreter.mjs
|
|
31029
31038
|
function literalBinaryOp(op) {
|
|
31030
31039
|
return { op, literal: true };
|
|
31031
31040
|
}
|
|
@@ -31600,7 +31609,7 @@ function owningModule(context, override = null) {
|
|
|
31600
31609
|
}
|
|
31601
31610
|
}
|
|
31602
31611
|
|
|
31603
|
-
// bazel-out/
|
|
31612
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/partial_evaluator/src/interface.mjs
|
|
31604
31613
|
var PartialEvaluator = class {
|
|
31605
31614
|
constructor(host, checker, dependencyTracker) {
|
|
31606
31615
|
this.host = host;
|
|
@@ -31620,7 +31629,7 @@ var PartialEvaluator = class {
|
|
|
31620
31629
|
}
|
|
31621
31630
|
};
|
|
31622
31631
|
|
|
31623
|
-
// bazel-out/
|
|
31632
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/api.mjs
|
|
31624
31633
|
var CompilationMode;
|
|
31625
31634
|
(function(CompilationMode2) {
|
|
31626
31635
|
CompilationMode2[CompilationMode2["FULL"] = 0] = "FULL";
|
|
@@ -31634,7 +31643,7 @@ var HandlerPrecedence;
|
|
|
31634
31643
|
HandlerPrecedence2[HandlerPrecedence2["WEAK"] = 2] = "WEAK";
|
|
31635
31644
|
})(HandlerPrecedence || (HandlerPrecedence = {}));
|
|
31636
31645
|
|
|
31637
|
-
// bazel-out/
|
|
31646
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/alias.mjs
|
|
31638
31647
|
var import_typescript31 = __toESM(require("typescript"), 1);
|
|
31639
31648
|
function aliasTransformFactory(exportStatements) {
|
|
31640
31649
|
return () => {
|
|
@@ -31659,10 +31668,10 @@ function aliasTransformFactory(exportStatements) {
|
|
|
31659
31668
|
};
|
|
31660
31669
|
}
|
|
31661
31670
|
|
|
31662
|
-
// bazel-out/
|
|
31671
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
31663
31672
|
var import_typescript32 = __toESM(require("typescript"), 1);
|
|
31664
31673
|
|
|
31665
|
-
// bazel-out/
|
|
31674
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
|
|
31666
31675
|
var PerfPhase;
|
|
31667
31676
|
(function(PerfPhase2) {
|
|
31668
31677
|
PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
|
|
@@ -31730,7 +31739,7 @@ var PerfCheckpoint;
|
|
|
31730
31739
|
PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
|
|
31731
31740
|
})(PerfCheckpoint || (PerfCheckpoint = {}));
|
|
31732
31741
|
|
|
31733
|
-
// bazel-out/
|
|
31742
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
|
|
31734
31743
|
var NoopPerfRecorder = class {
|
|
31735
31744
|
eventCount() {
|
|
31736
31745
|
}
|
|
@@ -31747,7 +31756,7 @@ var NoopPerfRecorder = class {
|
|
|
31747
31756
|
};
|
|
31748
31757
|
var NOOP_PERF_RECORDER = new NoopPerfRecorder();
|
|
31749
31758
|
|
|
31750
|
-
// bazel-out/
|
|
31759
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
|
|
31751
31760
|
function mark() {
|
|
31752
31761
|
return process.hrtime();
|
|
31753
31762
|
}
|
|
@@ -31756,7 +31765,7 @@ function timeSinceInMicros(mark2) {
|
|
|
31756
31765
|
return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
|
|
31757
31766
|
}
|
|
31758
31767
|
|
|
31759
|
-
// bazel-out/
|
|
31768
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
|
|
31760
31769
|
var ActivePerfRecorder = class {
|
|
31761
31770
|
static zeroedToNow() {
|
|
31762
31771
|
return new ActivePerfRecorder(mark());
|
|
@@ -31850,7 +31859,7 @@ var DelegatingPerfRecorder = class {
|
|
|
31850
31859
|
}
|
|
31851
31860
|
};
|
|
31852
31861
|
|
|
31853
|
-
// bazel-out/
|
|
31862
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/trait.mjs
|
|
31854
31863
|
var TraitState;
|
|
31855
31864
|
(function(TraitState2) {
|
|
31856
31865
|
TraitState2[TraitState2["Pending"] = 0] = "Pending";
|
|
@@ -31907,7 +31916,7 @@ var TraitImpl = class {
|
|
|
31907
31916
|
}
|
|
31908
31917
|
};
|
|
31909
31918
|
|
|
31910
|
-
// bazel-out/
|
|
31919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/compilation.mjs
|
|
31911
31920
|
var TraitCompiler = class {
|
|
31912
31921
|
constructor(handlers, reflector, perf, incrementalBuild, compileNonExportedClasses, compilationMode, dtsTransforms, semanticDepGraphUpdater, sourceFileTypeIdentifier) {
|
|
31913
31922
|
this.handlers = handlers;
|
|
@@ -32366,10 +32375,10 @@ function containsErrors(diagnostics) {
|
|
|
32366
32375
|
return diagnostics !== null && diagnostics.some((diag) => diag.category === import_typescript32.default.DiagnosticCategory.Error);
|
|
32367
32376
|
}
|
|
32368
32377
|
|
|
32369
|
-
// bazel-out/
|
|
32378
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
32370
32379
|
var import_typescript43 = __toESM(require("typescript"), 1);
|
|
32371
32380
|
|
|
32372
|
-
// bazel-out/
|
|
32381
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
|
|
32373
32382
|
var Context = class {
|
|
32374
32383
|
constructor(isStatement) {
|
|
32375
32384
|
this.isStatement = isStatement;
|
|
@@ -32382,10 +32391,10 @@ var Context = class {
|
|
|
32382
32391
|
}
|
|
32383
32392
|
};
|
|
32384
32393
|
|
|
32385
|
-
// bazel-out/
|
|
32394
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32386
32395
|
var import_typescript38 = __toESM(require("typescript"), 1);
|
|
32387
32396
|
|
|
32388
|
-
// bazel-out/
|
|
32397
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/check_unique_identifier_name.mjs
|
|
32389
32398
|
var import_typescript34 = __toESM(require("typescript"), 1);
|
|
32390
32399
|
function createGenerateUniqueIdentifierHelper() {
|
|
32391
32400
|
const generatedIdentifiers = /* @__PURE__ */ new Set();
|
|
@@ -32411,7 +32420,7 @@ function createGenerateUniqueIdentifierHelper() {
|
|
|
32411
32420
|
};
|
|
32412
32421
|
}
|
|
32413
32422
|
|
|
32414
|
-
// bazel-out/
|
|
32423
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_typescript_transform.mjs
|
|
32415
32424
|
var import_typescript35 = __toESM(require("typescript"), 1);
|
|
32416
32425
|
function createTsTransformForImportManager(manager, extraStatementsForFiles) {
|
|
32417
32426
|
return (ctx) => {
|
|
@@ -32472,7 +32481,7 @@ function isImportStatement(stmt) {
|
|
|
32472
32481
|
return import_typescript35.default.isImportDeclaration(stmt) || import_typescript35.default.isImportEqualsDeclaration(stmt) || import_typescript35.default.isNamespaceImport(stmt);
|
|
32473
32482
|
}
|
|
32474
32483
|
|
|
32475
|
-
// bazel-out/
|
|
32484
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_generated_imports.mjs
|
|
32476
32485
|
var import_typescript36 = __toESM(require("typescript"), 1);
|
|
32477
32486
|
function attemptToReuseGeneratedImports(tracker, request) {
|
|
32478
32487
|
const requestHash = hashImportRequest(request);
|
|
@@ -32499,7 +32508,7 @@ function hashImportRequest(req) {
|
|
|
32499
32508
|
return `${req.requestedFile.fileName}:${req.exportModuleSpecifier}:${req.exportSymbolName}`;
|
|
32500
32509
|
}
|
|
32501
32510
|
|
|
32502
|
-
// bazel-out/
|
|
32511
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/reuse_source_file_imports.mjs
|
|
32503
32512
|
var import_typescript37 = __toESM(require("typescript"), 1);
|
|
32504
32513
|
function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
32505
32514
|
let candidateImportToBeUpdated = null;
|
|
@@ -32552,7 +32561,7 @@ function attemptToReuseExistingSourceFileImports(tracker, sourceFile, request) {
|
|
|
32552
32561
|
return fileUniqueAlias != null ? fileUniqueAlias : propertyName;
|
|
32553
32562
|
}
|
|
32554
32563
|
|
|
32555
|
-
// bazel-out/
|
|
32564
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager/import_manager.mjs
|
|
32556
32565
|
var presetImportManagerForceNamespaceImports = {
|
|
32557
32566
|
disableOriginalSourceFileReuse: true,
|
|
32558
32567
|
forceGenerateNamespacesForNewImports: true
|
|
@@ -32701,7 +32710,7 @@ function createImportReference(asTypeReference, ref) {
|
|
|
32701
32710
|
}
|
|
32702
32711
|
}
|
|
32703
32712
|
|
|
32704
|
-
// bazel-out/
|
|
32713
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
|
|
32705
32714
|
var UNARY_OPERATORS2 = /* @__PURE__ */ new Map([
|
|
32706
32715
|
[UnaryOperator.Minus, "-"],
|
|
32707
32716
|
[UnaryOperator.Plus, "+"]
|
|
@@ -32946,7 +32955,7 @@ function createRange(span) {
|
|
|
32946
32955
|
};
|
|
32947
32956
|
}
|
|
32948
32957
|
|
|
32949
|
-
// bazel-out/
|
|
32958
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
32950
32959
|
var import_typescript39 = __toESM(require("typescript"), 1);
|
|
32951
32960
|
var INELIGIBLE = {};
|
|
32952
32961
|
function canEmitType(type, canEmit) {
|
|
@@ -33021,10 +33030,10 @@ var TypeEmitter = class {
|
|
|
33021
33030
|
}
|
|
33022
33031
|
};
|
|
33023
33032
|
|
|
33024
|
-
// bazel-out/
|
|
33033
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33025
33034
|
var import_typescript41 = __toESM(require("typescript"), 1);
|
|
33026
33035
|
|
|
33027
|
-
// bazel-out/
|
|
33036
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
33028
33037
|
var import_typescript40 = __toESM(require("typescript"), 1);
|
|
33029
33038
|
function tsNumericExpression(value) {
|
|
33030
33039
|
if (value < 0) {
|
|
@@ -33034,7 +33043,7 @@ function tsNumericExpression(value) {
|
|
|
33034
33043
|
return import_typescript40.default.factory.createNumericLiteral(value);
|
|
33035
33044
|
}
|
|
33036
33045
|
|
|
33037
|
-
// bazel-out/
|
|
33046
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
33038
33047
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
33039
33048
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
33040
33049
|
}
|
|
@@ -33251,7 +33260,7 @@ var TypeTranslatorVisitor = class {
|
|
|
33251
33260
|
}
|
|
33252
33261
|
};
|
|
33253
33262
|
|
|
33254
|
-
// bazel-out/
|
|
33263
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
33255
33264
|
var import_typescript42 = __toESM(require("typescript"), 1);
|
|
33256
33265
|
var PureAnnotation;
|
|
33257
33266
|
(function(PureAnnotation2) {
|
|
@@ -33454,7 +33463,7 @@ function attachComments(statement, leadingComments) {
|
|
|
33454
33463
|
}
|
|
33455
33464
|
}
|
|
33456
33465
|
|
|
33457
|
-
// bazel-out/
|
|
33466
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
33458
33467
|
function translateExpression(contextFile, expression, imports, options = {}) {
|
|
33459
33468
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(false));
|
|
33460
33469
|
}
|
|
@@ -33462,7 +33471,7 @@ function translateStatement(contextFile, statement, imports, options = {}) {
|
|
|
33462
33471
|
return statement.visitStatement(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, contextFile, options), new Context(true));
|
|
33463
33472
|
}
|
|
33464
33473
|
|
|
33465
|
-
// bazel-out/
|
|
33474
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/declaration.mjs
|
|
33466
33475
|
var DtsTransformRegistry = class {
|
|
33467
33476
|
constructor() {
|
|
33468
33477
|
this.ivyDeclarationTransforms = /* @__PURE__ */ new Map();
|
|
@@ -33610,10 +33619,10 @@ function markForEmitAsSingleLine(node) {
|
|
|
33610
33619
|
import_typescript43.default.forEachChild(node, markForEmitAsSingleLine);
|
|
33611
33620
|
}
|
|
33612
33621
|
|
|
33613
|
-
// bazel-out/
|
|
33622
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
33614
33623
|
var import_typescript45 = __toESM(require("typescript"), 1);
|
|
33615
33624
|
|
|
33616
|
-
// bazel-out/
|
|
33625
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/util/src/visitor.mjs
|
|
33617
33626
|
var import_typescript44 = __toESM(require("typescript"), 1);
|
|
33618
33627
|
function visit(node, visitor, context) {
|
|
33619
33628
|
return visitor._visit(node, context);
|
|
@@ -33674,7 +33683,7 @@ var Visitor = class {
|
|
|
33674
33683
|
}
|
|
33675
33684
|
};
|
|
33676
33685
|
|
|
33677
|
-
// bazel-out/
|
|
33686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/transform/src/transform.mjs
|
|
33678
33687
|
var NO_DECORATORS = /* @__PURE__ */ new Set();
|
|
33679
33688
|
var CLOSURE_FILE_OVERVIEW_REGEXP = /\s+@fileoverview\s+/i;
|
|
33680
33689
|
function ivyTransformFactory(compilation, reflector, importRewriter, defaultImportTracker, localCompilationExtraImportsTracker, perf, isCore, isClosureCompilerEnabled) {
|
|
@@ -33909,7 +33918,7 @@ function nodeArrayFromDecoratorsArray(decorators) {
|
|
|
33909
33918
|
return array;
|
|
33910
33919
|
}
|
|
33911
33920
|
|
|
33912
|
-
// bazel-out/
|
|
33921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/diagnostics.mjs
|
|
33913
33922
|
function makeDuplicateDeclarationError(node, data, kind) {
|
|
33914
33923
|
const context = [];
|
|
33915
33924
|
for (const decl of data) {
|
|
@@ -34118,7 +34127,7 @@ function assertLocalCompilationUnresolvedConst(compilationMode, value, nodeToHig
|
|
|
34118
34127
|
}
|
|
34119
34128
|
}
|
|
34120
34129
|
|
|
34121
|
-
// bazel-out/
|
|
34130
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/evaluation.mjs
|
|
34122
34131
|
var import_typescript48 = __toESM(require("typescript"), 1);
|
|
34123
34132
|
function resolveEnumValue(evaluator, metadata, field, enumSymbolName) {
|
|
34124
34133
|
let resolved = null;
|
|
@@ -34168,7 +34177,7 @@ function resolveLiteral(decorator, literalCache) {
|
|
|
34168
34177
|
return meta;
|
|
34169
34178
|
}
|
|
34170
34179
|
|
|
34171
|
-
// bazel-out/
|
|
34180
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/factory.mjs
|
|
34172
34181
|
function compileNgFactoryDefField(metadata) {
|
|
34173
34182
|
const res = compileFactoryFunction(metadata);
|
|
34174
34183
|
return {
|
|
@@ -34190,7 +34199,7 @@ function compileDeclareFactory(metadata) {
|
|
|
34190
34199
|
};
|
|
34191
34200
|
}
|
|
34192
34201
|
|
|
34193
|
-
// bazel-out/
|
|
34202
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/injectable_registry.mjs
|
|
34194
34203
|
var InjectableClassRegistry = class {
|
|
34195
34204
|
constructor(host, isCore) {
|
|
34196
34205
|
this.host = host;
|
|
@@ -34216,7 +34225,7 @@ var InjectableClassRegistry = class {
|
|
|
34216
34225
|
}
|
|
34217
34226
|
};
|
|
34218
34227
|
|
|
34219
|
-
// bazel-out/
|
|
34228
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/metadata.mjs
|
|
34220
34229
|
var import_typescript49 = __toESM(require("typescript"), 1);
|
|
34221
34230
|
function extractClassMetadata(clazz, reflection, isCore, annotateForClosureCompiler, angularDecoratorTransform = (dec) => dec) {
|
|
34222
34231
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34302,7 +34311,7 @@ function removeIdentifierReferences(node, names) {
|
|
|
34302
34311
|
return result.transformed[0];
|
|
34303
34312
|
}
|
|
34304
34313
|
|
|
34305
|
-
// bazel-out/
|
|
34314
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/debug_info.mjs
|
|
34306
34315
|
var path = __toESM(require("path"), 1);
|
|
34307
34316
|
function extractClassDebugInfo(clazz, reflection, rootDirs, forbidOrphanRendering) {
|
|
34308
34317
|
if (!reflection.isClass(clazz)) {
|
|
@@ -34328,13 +34337,13 @@ function computeRelativePathIfPossible(filePath, rootDirs) {
|
|
|
34328
34337
|
return null;
|
|
34329
34338
|
}
|
|
34330
34339
|
|
|
34331
|
-
// bazel-out/
|
|
34340
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/references_registry.mjs
|
|
34332
34341
|
var NoopReferencesRegistry = class {
|
|
34333
34342
|
add(source, ...references) {
|
|
34334
34343
|
}
|
|
34335
34344
|
};
|
|
34336
34345
|
|
|
34337
|
-
// bazel-out/
|
|
34346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/schema.mjs
|
|
34338
34347
|
function extractSchemas(rawExpr, evaluator, context) {
|
|
34339
34348
|
const schemas = [];
|
|
34340
34349
|
const result = evaluator.evaluate(rawExpr);
|
|
@@ -34363,7 +34372,7 @@ function extractSchemas(rawExpr, evaluator, context) {
|
|
|
34363
34372
|
return schemas;
|
|
34364
34373
|
}
|
|
34365
34374
|
|
|
34366
|
-
// bazel-out/
|
|
34375
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/common/src/input_transforms.mjs
|
|
34367
34376
|
function compileInputTransformFields(inputs) {
|
|
34368
34377
|
const extraFields = [];
|
|
34369
34378
|
for (const input of inputs) {
|
|
@@ -34380,10 +34389,10 @@ function compileInputTransformFields(inputs) {
|
|
|
34380
34389
|
return extraFields;
|
|
34381
34390
|
}
|
|
34382
34391
|
|
|
34383
|
-
// bazel-out/
|
|
34392
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
34384
34393
|
var import_typescript88 = __toESM(require("typescript"), 1);
|
|
34385
34394
|
|
|
34386
|
-
// bazel-out/
|
|
34395
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/api.mjs
|
|
34387
34396
|
var import_typescript50 = __toESM(require("typescript"), 1);
|
|
34388
34397
|
var SemanticSymbol = class {
|
|
34389
34398
|
constructor(decl) {
|
|
@@ -34399,7 +34408,7 @@ function getSymbolIdentifier(decl) {
|
|
|
34399
34408
|
return decl.name.text;
|
|
34400
34409
|
}
|
|
34401
34410
|
|
|
34402
|
-
// bazel-out/
|
|
34411
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/graph.mjs
|
|
34403
34412
|
var OpaqueSymbol = class extends SemanticSymbol {
|
|
34404
34413
|
isPublicApiAffected() {
|
|
34405
34414
|
return false;
|
|
@@ -34541,10 +34550,10 @@ function getImportPath(expr) {
|
|
|
34541
34550
|
}
|
|
34542
34551
|
}
|
|
34543
34552
|
|
|
34544
|
-
// bazel-out/
|
|
34553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
34545
34554
|
var import_typescript51 = __toESM(require("typescript"), 1);
|
|
34546
34555
|
|
|
34547
|
-
// bazel-out/
|
|
34556
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/util.mjs
|
|
34548
34557
|
function isSymbolEqual(a, b) {
|
|
34549
34558
|
if (a.decl === b.decl) {
|
|
34550
34559
|
return true;
|
|
@@ -34594,7 +34603,7 @@ function isSetEqual(a, b, equalityTester = referenceEquality) {
|
|
|
34594
34603
|
return true;
|
|
34595
34604
|
}
|
|
34596
34605
|
|
|
34597
|
-
// bazel-out/
|
|
34606
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/semantic_graph/src/type_parameters.mjs
|
|
34598
34607
|
function extractSemanticTypeParameters(node) {
|
|
34599
34608
|
if (!import_typescript51.default.isClassDeclaration(node) || node.typeParameters === void 0) {
|
|
34600
34609
|
return null;
|
|
@@ -34616,14 +34625,14 @@ function isTypeParameterEqual(a, b) {
|
|
|
34616
34625
|
return a.hasGenericTypeBound === b.hasGenericTypeBound;
|
|
34617
34626
|
}
|
|
34618
34627
|
|
|
34619
|
-
// bazel-out/
|
|
34628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/api.mjs
|
|
34620
34629
|
var ComponentScopeKind;
|
|
34621
34630
|
(function(ComponentScopeKind2) {
|
|
34622
34631
|
ComponentScopeKind2[ComponentScopeKind2["NgModule"] = 0] = "NgModule";
|
|
34623
34632
|
ComponentScopeKind2[ComponentScopeKind2["Standalone"] = 1] = "Standalone";
|
|
34624
34633
|
})(ComponentScopeKind || (ComponentScopeKind = {}));
|
|
34625
34634
|
|
|
34626
|
-
// bazel-out/
|
|
34635
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/component_scope.mjs
|
|
34627
34636
|
var CompoundComponentScopeReader = class {
|
|
34628
34637
|
constructor(readers) {
|
|
34629
34638
|
this.readers = readers;
|
|
@@ -34648,7 +34657,7 @@ var CompoundComponentScopeReader = class {
|
|
|
34648
34657
|
}
|
|
34649
34658
|
};
|
|
34650
34659
|
|
|
34651
|
-
// bazel-out/
|
|
34660
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/dependency.mjs
|
|
34652
34661
|
var MetadataDtsModuleScopeResolver = class {
|
|
34653
34662
|
constructor(dtsMetaReader, aliasingHost) {
|
|
34654
34663
|
this.dtsMetaReader = dtsMetaReader;
|
|
@@ -34723,10 +34732,10 @@ var MetadataDtsModuleScopeResolver = class {
|
|
|
34723
34732
|
}
|
|
34724
34733
|
};
|
|
34725
34734
|
|
|
34726
|
-
// bazel-out/
|
|
34735
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
34727
34736
|
var import_typescript52 = __toESM(require("typescript"), 1);
|
|
34728
34737
|
|
|
34729
|
-
// bazel-out/
|
|
34738
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/util.mjs
|
|
34730
34739
|
function getDiagnosticNode(ref, rawExpr) {
|
|
34731
34740
|
return rawExpr !== null ? ref.getOriginForDiagnostics(rawExpr) : ref.node.name;
|
|
34732
34741
|
}
|
|
@@ -34752,7 +34761,7 @@ function makeUnknownComponentDeferredImportDiagnostic(ref, rawExpr) {
|
|
|
34752
34761
|
return makeDiagnostic(ErrorCode.COMPONENT_UNKNOWN_DEFERRED_IMPORT, getDiagnosticNode(ref, rawExpr), `Component deferred imports must be standalone components, directives or pipes.`);
|
|
34753
34762
|
}
|
|
34754
34763
|
|
|
34755
|
-
// bazel-out/
|
|
34764
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/local.mjs
|
|
34756
34765
|
var LocalModuleScopeRegistry = class {
|
|
34757
34766
|
constructor(localReader, fullReader, dependencyScopeReader, refEmitter, aliasingHost) {
|
|
34758
34767
|
this.localReader = localReader;
|
|
@@ -35093,7 +35102,7 @@ function reexportCollision(module2, refA, refB) {
|
|
|
35093
35102
|
]);
|
|
35094
35103
|
}
|
|
35095
35104
|
|
|
35096
|
-
// bazel-out/
|
|
35105
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/typecheck.mjs
|
|
35097
35106
|
var import_typescript54 = __toESM(require("typescript"), 1);
|
|
35098
35107
|
var TypeCheckScopeRegistry = class {
|
|
35099
35108
|
constructor(scopeReader, metaReader, hostDirectivesResolver) {
|
|
@@ -35173,10 +35182,10 @@ var TypeCheckScopeRegistry = class {
|
|
|
35173
35182
|
}
|
|
35174
35183
|
};
|
|
35175
35184
|
|
|
35176
|
-
// bazel-out/
|
|
35185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35177
35186
|
var import_typescript58 = __toESM(require("typescript"), 1);
|
|
35178
35187
|
|
|
35179
|
-
// bazel-out/
|
|
35188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_function_access.mjs
|
|
35180
35189
|
function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
35181
35190
|
if (!api.allowedAccessLevels.includes(member.accessLevel)) {
|
|
35182
35191
|
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 +35194,7 @@ function validateAccessOfInitializerApiMember({ api, call: call2 }, member) {
|
|
|
35185
35194
|
}
|
|
35186
35195
|
}
|
|
35187
35196
|
|
|
35188
|
-
// bazel-out/
|
|
35197
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/initializer_functions.mjs
|
|
35189
35198
|
var import_typescript55 = __toESM(require("typescript"), 1);
|
|
35190
35199
|
function tryParseInitializerApi(functions, expression, reflector, importTracker) {
|
|
35191
35200
|
if (!import_typescript55.default.isCallExpression(expression)) {
|
|
@@ -35254,7 +35263,7 @@ function parseTopLevelCallFromNamespace(call2, functions, importTracker) {
|
|
|
35254
35263
|
return { api: matchingApi, apiReference, isRequired };
|
|
35255
35264
|
}
|
|
35256
35265
|
|
|
35257
|
-
// bazel-out/
|
|
35266
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_output_parse_options.mjs
|
|
35258
35267
|
var import_typescript56 = __toESM(require("typescript"), 1);
|
|
35259
35268
|
function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
35260
35269
|
if (!import_typescript56.default.isObjectLiteralExpression(optionsNode)) {
|
|
@@ -35272,7 +35281,7 @@ function parseAndValidateInputAndOutputOptions(optionsNode) {
|
|
|
35272
35281
|
return { alias };
|
|
35273
35282
|
}
|
|
35274
35283
|
|
|
35275
|
-
// bazel-out/
|
|
35284
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/input_function.mjs
|
|
35276
35285
|
var INPUT_INITIALIZER_FN = {
|
|
35277
35286
|
functionName: "input",
|
|
35278
35287
|
owningModule: "@angular/core",
|
|
@@ -35304,7 +35313,7 @@ function tryParseSignalInputMapping(member, reflector, importTracker) {
|
|
|
35304
35313
|
};
|
|
35305
35314
|
}
|
|
35306
35315
|
|
|
35307
|
-
// bazel-out/
|
|
35316
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/model_function.mjs
|
|
35308
35317
|
var MODEL_INITIALIZER_FN = {
|
|
35309
35318
|
functionName: "model",
|
|
35310
35319
|
owningModule: "@angular/core",
|
|
@@ -35345,7 +35354,7 @@ function tryParseSignalModelMapping(member, reflector, importTracker) {
|
|
|
35345
35354
|
};
|
|
35346
35355
|
}
|
|
35347
35356
|
|
|
35348
|
-
// bazel-out/
|
|
35357
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/output_function.mjs
|
|
35349
35358
|
var allowedAccessLevels = [
|
|
35350
35359
|
ClassMemberAccessLevel.PublicWritable,
|
|
35351
35360
|
ClassMemberAccessLevel.PublicReadonly,
|
|
@@ -35389,7 +35398,7 @@ function tryParseInitializerBasedOutput(member, reflector, importTracker) {
|
|
|
35389
35398
|
};
|
|
35390
35399
|
}
|
|
35391
35400
|
|
|
35392
|
-
// bazel-out/
|
|
35401
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/query_functions.mjs
|
|
35393
35402
|
var import_typescript57 = __toESM(require("typescript"), 1);
|
|
35394
35403
|
var queryFunctionNames = [
|
|
35395
35404
|
"viewChild",
|
|
@@ -35473,7 +35482,7 @@ function parseDescendantsOption(value) {
|
|
|
35473
35482
|
throw new FatalDiagnosticError(ErrorCode.VALUE_HAS_WRONG_TYPE, value, `Expected "descendants" option to be a boolean literal.`);
|
|
35474
35483
|
}
|
|
35475
35484
|
|
|
35476
|
-
// bazel-out/
|
|
35485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/shared.mjs
|
|
35477
35486
|
var EMPTY_OBJECT = {};
|
|
35478
35487
|
var queryDecoratorNames = [
|
|
35479
35488
|
"ViewChild",
|
|
@@ -36271,7 +36280,7 @@ function toR3InputMetadata(mapping) {
|
|
|
36271
36280
|
};
|
|
36272
36281
|
}
|
|
36273
36282
|
|
|
36274
|
-
// bazel-out/
|
|
36283
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/symbol.mjs
|
|
36275
36284
|
var DirectiveSymbol = class extends SemanticSymbol {
|
|
36276
36285
|
constructor(decl, selector, inputs, outputs, exportAs, typeCheckMeta, typeParameters) {
|
|
36277
36286
|
super(decl);
|
|
@@ -36351,7 +36360,7 @@ function isBaseClassEqual(current, previous) {
|
|
|
36351
36360
|
return isSymbolEqual(current, previous);
|
|
36352
36361
|
}
|
|
36353
36362
|
|
|
36354
|
-
// bazel-out/
|
|
36363
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/directive/src/handler.mjs
|
|
36355
36364
|
var FIELD_DECORATORS = [
|
|
36356
36365
|
"Input",
|
|
36357
36366
|
"Output",
|
|
@@ -36544,10 +36553,10 @@ var DirectiveDecoratorHandler = class {
|
|
|
36544
36553
|
}
|
|
36545
36554
|
};
|
|
36546
36555
|
|
|
36547
|
-
// bazel-out/
|
|
36556
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36548
36557
|
var import_typescript60 = __toESM(require("typescript"), 1);
|
|
36549
36558
|
|
|
36550
|
-
// bazel-out/
|
|
36559
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/module_with_providers.mjs
|
|
36551
36560
|
var import_typescript59 = __toESM(require("typescript"), 1);
|
|
36552
36561
|
function createModuleWithProvidersResolver(reflector, isCore) {
|
|
36553
36562
|
function _reflectModuleFromTypeParam(type, node) {
|
|
@@ -36619,7 +36628,7 @@ function isResolvedModuleWithProviders(sv) {
|
|
|
36619
36628
|
return typeof sv.value === "object" && sv.value != null && sv.value.hasOwnProperty("ngModule") && sv.value.hasOwnProperty("mwpCall");
|
|
36620
36629
|
}
|
|
36621
36630
|
|
|
36622
|
-
// bazel-out/
|
|
36631
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/ng_module/src/handler.mjs
|
|
36623
36632
|
var NgModuleSymbol = class extends SemanticSymbol {
|
|
36624
36633
|
constructor(decl, hasProviders) {
|
|
36625
36634
|
super(decl);
|
|
@@ -37232,7 +37241,7 @@ function isSyntheticReference(ref) {
|
|
|
37232
37241
|
return ref.synthetic;
|
|
37233
37242
|
}
|
|
37234
37243
|
|
|
37235
|
-
// bazel-out/
|
|
37244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/diagnostics.mjs
|
|
37236
37245
|
function makeCyclicImportInfo(ref, type, cycle) {
|
|
37237
37246
|
const name = ref.debugName || "(unknown)";
|
|
37238
37247
|
const path4 = cycle.getPath().map((sf) => sf.fileName).join(" -> ");
|
|
@@ -37255,7 +37264,7 @@ function checkCustomElementSelectorForErrors(selector) {
|
|
|
37255
37264
|
return null;
|
|
37256
37265
|
}
|
|
37257
37266
|
|
|
37258
|
-
// bazel-out/
|
|
37267
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/resources.mjs
|
|
37259
37268
|
var import_typescript62 = __toESM(require("typescript"), 1);
|
|
37260
37269
|
function getTemplateDeclarationNodeForError(declaration) {
|
|
37261
37270
|
return declaration.isInline ? declaration.expression : declaration.templateUrlExpression;
|
|
@@ -37607,7 +37616,7 @@ function _extractTemplateStyleUrls(template2) {
|
|
|
37607
37616
|
}));
|
|
37608
37617
|
}
|
|
37609
37618
|
|
|
37610
|
-
// bazel-out/
|
|
37619
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/symbol.mjs
|
|
37611
37620
|
var ComponentSymbol = class extends DirectiveSymbol {
|
|
37612
37621
|
constructor() {
|
|
37613
37622
|
super(...arguments);
|
|
@@ -37642,7 +37651,7 @@ var ComponentSymbol = class extends DirectiveSymbol {
|
|
|
37642
37651
|
}
|
|
37643
37652
|
};
|
|
37644
37653
|
|
|
37645
|
-
// bazel-out/
|
|
37654
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/util.mjs
|
|
37646
37655
|
function collectAnimationNames(value, animationTriggerNames) {
|
|
37647
37656
|
if (value instanceof Map) {
|
|
37648
37657
|
const name = value.get("name");
|
|
@@ -37719,7 +37728,7 @@ function isLikelyModuleWithProviders(value) {
|
|
|
37719
37728
|
return false;
|
|
37720
37729
|
}
|
|
37721
37730
|
|
|
37722
|
-
// bazel-out/
|
|
37731
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/api.mjs
|
|
37723
37732
|
var NgOriginalFile = Symbol("NgOriginalFile");
|
|
37724
37733
|
var UpdateMode;
|
|
37725
37734
|
(function(UpdateMode2) {
|
|
@@ -37727,13 +37736,13 @@ var UpdateMode;
|
|
|
37727
37736
|
UpdateMode2[UpdateMode2["Incremental"] = 1] = "Incremental";
|
|
37728
37737
|
})(UpdateMode || (UpdateMode = {}));
|
|
37729
37738
|
|
|
37730
|
-
// bazel-out/
|
|
37739
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
37731
37740
|
var import_typescript66 = __toESM(require("typescript"), 1);
|
|
37732
37741
|
|
|
37733
|
-
// bazel-out/
|
|
37742
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
37734
37743
|
var import_typescript63 = __toESM(require("typescript"), 1);
|
|
37735
37744
|
|
|
37736
|
-
// bazel-out/
|
|
37745
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/expando.mjs
|
|
37737
37746
|
var NgExtension = Symbol("NgExtension");
|
|
37738
37747
|
function isExtended(sf) {
|
|
37739
37748
|
return sf[NgExtension] !== void 0;
|
|
@@ -37793,13 +37802,13 @@ function retagTsFile(sf) {
|
|
|
37793
37802
|
}
|
|
37794
37803
|
}
|
|
37795
37804
|
|
|
37796
|
-
// bazel-out/
|
|
37805
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/util.mjs
|
|
37797
37806
|
var TS_EXTENSIONS = /\.tsx?$/i;
|
|
37798
37807
|
function makeShimFileName(fileName, suffix) {
|
|
37799
37808
|
return absoluteFrom(fileName.replace(TS_EXTENSIONS, suffix));
|
|
37800
37809
|
}
|
|
37801
37810
|
|
|
37802
|
-
// bazel-out/
|
|
37811
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/adapter.mjs
|
|
37803
37812
|
var ShimAdapter = class {
|
|
37804
37813
|
constructor(delegate, tsRootFiles, topLevelGenerators, perFileGenerators, oldProgram) {
|
|
37805
37814
|
this.delegate = delegate;
|
|
@@ -37894,7 +37903,7 @@ var ShimAdapter = class {
|
|
|
37894
37903
|
}
|
|
37895
37904
|
};
|
|
37896
37905
|
|
|
37897
|
-
// bazel-out/
|
|
37906
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/shims/src/reference_tagger.mjs
|
|
37898
37907
|
var ShimReferenceTagger = class {
|
|
37899
37908
|
constructor(shimExtensions) {
|
|
37900
37909
|
this.tagged = /* @__PURE__ */ new Set();
|
|
@@ -37928,7 +37937,7 @@ var ShimReferenceTagger = class {
|
|
|
37928
37937
|
}
|
|
37929
37938
|
};
|
|
37930
37939
|
|
|
37931
|
-
// bazel-out/
|
|
37940
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program_driver/src/ts_create_program_driver.mjs
|
|
37932
37941
|
var DelegatingCompilerHost = class {
|
|
37933
37942
|
get jsDocParsingMode() {
|
|
37934
37943
|
return this.delegate.jsDocParsingMode;
|
|
@@ -38046,14 +38055,14 @@ var TsCreateProgramDriver = class {
|
|
|
38046
38055
|
}
|
|
38047
38056
|
};
|
|
38048
38057
|
|
|
38049
|
-
// bazel-out/
|
|
38058
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/checker.mjs
|
|
38050
38059
|
var OptimizeFor;
|
|
38051
38060
|
(function(OptimizeFor2) {
|
|
38052
38061
|
OptimizeFor2[OptimizeFor2["SingleFile"] = 0] = "SingleFile";
|
|
38053
38062
|
OptimizeFor2[OptimizeFor2["WholeProgram"] = 1] = "WholeProgram";
|
|
38054
38063
|
})(OptimizeFor || (OptimizeFor = {}));
|
|
38055
38064
|
|
|
38056
|
-
// bazel-out/
|
|
38065
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/completion.mjs
|
|
38057
38066
|
var CompletionKind;
|
|
38058
38067
|
(function(CompletionKind2) {
|
|
38059
38068
|
CompletionKind2[CompletionKind2["Reference"] = 0] = "Reference";
|
|
@@ -38061,7 +38070,7 @@ var CompletionKind;
|
|
|
38061
38070
|
CompletionKind2[CompletionKind2["LetDeclaration"] = 2] = "LetDeclaration";
|
|
38062
38071
|
})(CompletionKind || (CompletionKind = {}));
|
|
38063
38072
|
|
|
38064
|
-
// bazel-out/
|
|
38073
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/scope.mjs
|
|
38065
38074
|
var PotentialImportKind;
|
|
38066
38075
|
(function(PotentialImportKind2) {
|
|
38067
38076
|
PotentialImportKind2[PotentialImportKind2["NgModule"] = 0] = "NgModule";
|
|
@@ -38073,7 +38082,7 @@ var PotentialImportMode;
|
|
|
38073
38082
|
PotentialImportMode2[PotentialImportMode2["ForceDirect"] = 1] = "ForceDirect";
|
|
38074
38083
|
})(PotentialImportMode || (PotentialImportMode = {}));
|
|
38075
38084
|
|
|
38076
|
-
// bazel-out/
|
|
38085
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/api/symbols.mjs
|
|
38077
38086
|
var SymbolKind;
|
|
38078
38087
|
(function(SymbolKind2) {
|
|
38079
38088
|
SymbolKind2[SymbolKind2["Input"] = 0] = "Input";
|
|
@@ -38090,7 +38099,7 @@ var SymbolKind;
|
|
|
38090
38099
|
SymbolKind2[SymbolKind2["LetDeclaration"] = 11] = "LetDeclaration";
|
|
38091
38100
|
})(SymbolKind || (SymbolKind = {}));
|
|
38092
38101
|
|
|
38093
|
-
// bazel-out/
|
|
38102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/diagnostic.mjs
|
|
38094
38103
|
var import_typescript68 = __toESM(require("typescript"), 1);
|
|
38095
38104
|
function makeTemplateDiagnostic(templateId, mapping, span, category, code, messageText, relatedMessages) {
|
|
38096
38105
|
var _a2;
|
|
@@ -38201,7 +38210,7 @@ function parseTemplateAsSourceFile(fileName, template2) {
|
|
|
38201
38210
|
);
|
|
38202
38211
|
}
|
|
38203
38212
|
|
|
38204
|
-
// bazel-out/
|
|
38213
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/diagnostics/src/id.mjs
|
|
38205
38214
|
var TEMPLATE_ID = Symbol("ngTemplateId");
|
|
38206
38215
|
var NEXT_TEMPLATE_ID = Symbol("ngNextTemplateId");
|
|
38207
38216
|
function getTemplateId(clazz) {
|
|
@@ -38218,10 +38227,10 @@ function allocateTemplateId(sf) {
|
|
|
38218
38227
|
return `tcb${sf[NEXT_TEMPLATE_ID]++}`;
|
|
38219
38228
|
}
|
|
38220
38229
|
|
|
38221
|
-
// bazel-out/
|
|
38230
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38222
38231
|
var import_typescript70 = __toESM(require("typescript"), 1);
|
|
38223
38232
|
|
|
38224
|
-
// bazel-out/
|
|
38233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/comments.mjs
|
|
38225
38234
|
var import_typescript69 = __toESM(require("typescript"), 1);
|
|
38226
38235
|
var parseSpanComment = /^(\d+),(\d+)$/;
|
|
38227
38236
|
function readSpanComment(node, sourceFile = node.getSourceFile()) {
|
|
@@ -38351,7 +38360,7 @@ function hasExpressionIdentifier(sourceFile, node, identifier) {
|
|
|
38351
38360
|
}) || false;
|
|
38352
38361
|
}
|
|
38353
38362
|
|
|
38354
|
-
// bazel-out/
|
|
38363
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/completion.mjs
|
|
38355
38364
|
var CompletionEngine = class {
|
|
38356
38365
|
constructor(tcb, data, tcbPath, tcbIsShim) {
|
|
38357
38366
|
this.tcb = tcb;
|
|
@@ -39614,10 +39623,10 @@ var MagicString = class {
|
|
|
39614
39623
|
}
|
|
39615
39624
|
};
|
|
39616
39625
|
|
|
39617
|
-
// bazel-out/
|
|
39626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
39618
39627
|
var import_typescript84 = __toESM(require("typescript"), 1);
|
|
39619
39628
|
|
|
39620
|
-
// bazel-out/
|
|
39629
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/dom.mjs
|
|
39621
39630
|
var import_typescript71 = __toESM(require("typescript"), 1);
|
|
39622
39631
|
var REGISTRY = new DomElementSchemaRegistry();
|
|
39623
39632
|
var REMOVE_XHTML_REGEX = /^:xhtml:/;
|
|
@@ -39669,10 +39678,10 @@ var RegistryDomSchemaChecker = class {
|
|
|
39669
39678
|
}
|
|
39670
39679
|
};
|
|
39671
39680
|
|
|
39672
|
-
// bazel-out/
|
|
39681
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
39673
39682
|
var import_typescript77 = __toESM(require("typescript"), 1);
|
|
39674
39683
|
|
|
39675
|
-
// bazel-out/
|
|
39684
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/reference_emit_environment.mjs
|
|
39676
39685
|
var ReferenceEmitEnvironment = class {
|
|
39677
39686
|
constructor(importManager, refEmitter, reflector, contextFile) {
|
|
39678
39687
|
this.importManager = importManager;
|
|
@@ -39702,7 +39711,7 @@ var ReferenceEmitEnvironment = class {
|
|
|
39702
39711
|
}
|
|
39703
39712
|
};
|
|
39704
39713
|
|
|
39705
|
-
// bazel-out/
|
|
39714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/ts_util.mjs
|
|
39706
39715
|
var import_typescript72 = __toESM(require("typescript"), 1);
|
|
39707
39716
|
var SAFE_TO_CAST_WITHOUT_PARENS = /* @__PURE__ */ new Set([
|
|
39708
39717
|
import_typescript72.default.SyntaxKind.ParenthesizedExpression,
|
|
@@ -39785,13 +39794,13 @@ function tsNumericExpression2(value) {
|
|
|
39785
39794
|
return import_typescript72.default.factory.createNumericLiteral(value);
|
|
39786
39795
|
}
|
|
39787
39796
|
|
|
39788
|
-
// bazel-out/
|
|
39797
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
39789
39798
|
var import_typescript76 = __toESM(require("typescript"), 1);
|
|
39790
39799
|
|
|
39791
|
-
// bazel-out/
|
|
39800
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
39792
39801
|
var import_typescript74 = __toESM(require("typescript"), 1);
|
|
39793
39802
|
|
|
39794
|
-
// bazel-out/
|
|
39803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_parameter_emitter.mjs
|
|
39795
39804
|
var import_typescript73 = __toESM(require("typescript"), 1);
|
|
39796
39805
|
var TypeParameterEmitter = class {
|
|
39797
39806
|
constructor(typeParameters, reflector) {
|
|
@@ -39869,7 +39878,7 @@ var TypeParameterEmitter = class {
|
|
|
39869
39878
|
}
|
|
39870
39879
|
};
|
|
39871
39880
|
|
|
39872
|
-
// bazel-out/
|
|
39881
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/tcb_util.mjs
|
|
39873
39882
|
var TCB_FILE_IMPORT_GRAPH_PREPARE_IDENTIFIERS = [
|
|
39874
39883
|
Identifiers.InputSignalBrandWriteType
|
|
39875
39884
|
];
|
|
@@ -39961,7 +39970,7 @@ function checkIfGenericTypeBoundsCanBeEmitted(node, reflector, env) {
|
|
|
39961
39970
|
return emitter.canEmit((ref) => env.canReferenceType(ref));
|
|
39962
39971
|
}
|
|
39963
39972
|
|
|
39964
|
-
// bazel-out/
|
|
39973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_constructor.mjs
|
|
39965
39974
|
function generateTypeCtorDeclarationFn(env, meta, nodeTypeRef, typeParams) {
|
|
39966
39975
|
const rawTypeArgs = typeParams !== void 0 ? generateGenericArgs(typeParams) : void 0;
|
|
39967
39976
|
const rawType = import_typescript76.default.factory.createTypeReferenceNode(nodeTypeRef, rawTypeArgs);
|
|
@@ -40084,7 +40093,7 @@ function typeParametersWithDefaultTypes(params) {
|
|
|
40084
40093
|
});
|
|
40085
40094
|
}
|
|
40086
40095
|
|
|
40087
|
-
// bazel-out/
|
|
40096
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/environment.mjs
|
|
40088
40097
|
var Environment = class extends ReferenceEmitEnvironment {
|
|
40089
40098
|
constructor(config, importManager, refEmitter, reflector, contextFile) {
|
|
40090
40099
|
super(importManager, refEmitter, reflector, contextFile);
|
|
@@ -40156,7 +40165,7 @@ var Environment = class extends ReferenceEmitEnvironment {
|
|
|
40156
40165
|
}
|
|
40157
40166
|
};
|
|
40158
40167
|
|
|
40159
|
-
// bazel-out/
|
|
40168
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/oob.mjs
|
|
40160
40169
|
var import_typescript78 = __toESM(require("typescript"), 1);
|
|
40161
40170
|
var OutOfBandDiagnosticRecorderImpl = class {
|
|
40162
40171
|
constructor(resolver) {
|
|
@@ -40356,7 +40365,7 @@ function makeInlineDiagnostic(templateId, code, node, messageText, relatedInform
|
|
|
40356
40365
|
});
|
|
40357
40366
|
}
|
|
40358
40367
|
|
|
40359
|
-
// bazel-out/
|
|
40368
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/shim.mjs
|
|
40360
40369
|
var import_typescript79 = __toESM(require("typescript"), 1);
|
|
40361
40370
|
var TypeCheckShimGenerator = class {
|
|
40362
40371
|
constructor() {
|
|
@@ -40374,10 +40383,10 @@ var TypeCheckShimGenerator = class {
|
|
|
40374
40383
|
}
|
|
40375
40384
|
};
|
|
40376
40385
|
|
|
40377
|
-
// bazel-out/
|
|
40386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40378
40387
|
var import_typescript82 = __toESM(require("typescript"), 1);
|
|
40379
40388
|
|
|
40380
|
-
// bazel-out/
|
|
40389
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/diagnostics.mjs
|
|
40381
40390
|
var import_typescript80 = __toESM(require("typescript"), 1);
|
|
40382
40391
|
function wrapForDiagnostics(expr) {
|
|
40383
40392
|
return import_typescript80.default.factory.createParenthesizedExpression(expr);
|
|
@@ -40432,7 +40441,7 @@ function translateDiagnostic(diagnostic, resolver) {
|
|
|
40432
40441
|
return makeTemplateDiagnostic(sourceLocation.id, templateSourceMapping, span, diagnostic.category, diagnostic.code, diagnostic.messageText);
|
|
40433
40442
|
}
|
|
40434
40443
|
|
|
40435
|
-
// bazel-out/
|
|
40444
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/expression.mjs
|
|
40436
40445
|
var import_typescript81 = __toESM(require("typescript"), 1);
|
|
40437
40446
|
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
40447
|
var UNDEFINED = import_typescript81.default.factory.createIdentifier("undefined");
|
|
@@ -40764,7 +40773,7 @@ var VeSafeLhsInferenceBugDetector = _VeSafeLhsInferenceBugDetector;
|
|
|
40764
40773
|
_VeSafeLhsInferenceBugDetector.SINGLETON = new _VeSafeLhsInferenceBugDetector();
|
|
40765
40774
|
})();
|
|
40766
40775
|
|
|
40767
|
-
// bazel-out/
|
|
40776
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_block.mjs
|
|
40768
40777
|
var TcbGenericContextBehavior;
|
|
40769
40778
|
(function(TcbGenericContextBehavior2) {
|
|
40770
40779
|
TcbGenericContextBehavior2[TcbGenericContextBehavior2["UseEmitter"] = 0] = "UseEmitter";
|
|
@@ -41560,14 +41569,14 @@ var TcbIfOp = class extends TcbOp {
|
|
|
41560
41569
|
const branchScope = this.getBranchScope(this.scope, branch, index);
|
|
41561
41570
|
return import_typescript82.default.factory.createBlock(branchScope.render());
|
|
41562
41571
|
}
|
|
41563
|
-
const
|
|
41564
|
-
|
|
41565
|
-
this.expressionScopes.set(branch,
|
|
41566
|
-
let expression = tcbExpression(branch.expression, this.tcb,
|
|
41572
|
+
const outerScope = Scope3.forNodes(this.tcb, this.scope, branch, [], null);
|
|
41573
|
+
outerScope.render().forEach((stmt) => this.scope.addStatement(stmt));
|
|
41574
|
+
this.expressionScopes.set(branch, outerScope);
|
|
41575
|
+
let expression = tcbExpression(branch.expression, this.tcb, this.scope);
|
|
41567
41576
|
if (branch.expressionAlias !== null) {
|
|
41568
|
-
expression = import_typescript82.default.factory.createBinaryExpression(import_typescript82.default.factory.createParenthesizedExpression(expression), import_typescript82.default.SyntaxKind.AmpersandAmpersandToken,
|
|
41577
|
+
expression = import_typescript82.default.factory.createBinaryExpression(import_typescript82.default.factory.createParenthesizedExpression(expression), import_typescript82.default.SyntaxKind.AmpersandAmpersandToken, outerScope.resolve(branch.expressionAlias));
|
|
41569
41578
|
}
|
|
41570
|
-
const bodyScope = this.getBranchScope(
|
|
41579
|
+
const bodyScope = this.getBranchScope(outerScope, branch, index);
|
|
41571
41580
|
return import_typescript82.default.factory.createIfStatement(expression, import_typescript82.default.factory.createBlock(bodyScope.render()), this.generateBranch(index + 1));
|
|
41572
41581
|
}
|
|
41573
41582
|
getBranchScope(parentScope, branch, index) {
|
|
@@ -41659,7 +41668,7 @@ var TcbForOfOp = class extends TcbOp {
|
|
|
41659
41668
|
}
|
|
41660
41669
|
const initializer = import_typescript82.default.factory.createVariableDeclarationList([import_typescript82.default.factory.createVariableDeclaration(initializerId)], import_typescript82.default.NodeFlags.Const);
|
|
41661
41670
|
addParseSpanInfo(initializer, this.block.item.keySpan);
|
|
41662
|
-
const expression = import_typescript82.default.factory.createNonNullExpression(tcbExpression(this.block.expression, this.tcb,
|
|
41671
|
+
const expression = import_typescript82.default.factory.createNonNullExpression(tcbExpression(this.block.expression, this.tcb, this.scope));
|
|
41663
41672
|
const trackTranslator = new TcbForLoopTrackTranslator(this.tcb, loopScope, this.block);
|
|
41664
41673
|
const trackExpression = trackTranslator.translate(this.block.trackBy);
|
|
41665
41674
|
const statements = [
|
|
@@ -42102,10 +42111,14 @@ var TcbExpressionTranslator = class {
|
|
|
42102
42111
|
resolve(ast) {
|
|
42103
42112
|
if (ast instanceof PropertyRead && ast.receiver instanceof ImplicitReceiver) {
|
|
42104
42113
|
const target = this.tcb.boundTarget.getExpressionTarget(ast);
|
|
42105
|
-
|
|
42106
|
-
|
|
42114
|
+
const targetExpression = target === null ? null : this.getTargetNodeExpression(target, ast);
|
|
42115
|
+
if (target instanceof LetDeclaration && !this.isValidLetDeclarationAccess(target, ast)) {
|
|
42116
|
+
this.tcb.oobRecorder.letUsedBeforeDefinition(this.tcb.id, ast, target);
|
|
42117
|
+
if (targetExpression !== null) {
|
|
42118
|
+
return import_typescript82.default.factory.createAsExpression(targetExpression, import_typescript82.default.factory.createKeywordTypeNode(import_typescript82.default.SyntaxKind.AnyKeyword));
|
|
42119
|
+
}
|
|
42107
42120
|
}
|
|
42108
|
-
return
|
|
42121
|
+
return targetExpression;
|
|
42109
42122
|
} else if (ast instanceof PropertyWrite && ast.receiver instanceof ImplicitReceiver) {
|
|
42110
42123
|
const target = this.tcb.boundTarget.getExpressionTarget(ast);
|
|
42111
42124
|
if (target === null) {
|
|
@@ -42176,13 +42189,11 @@ var TcbExpressionTranslator = class {
|
|
|
42176
42189
|
addParseSpanInfo(expr, expressionNode.sourceSpan);
|
|
42177
42190
|
return expr;
|
|
42178
42191
|
}
|
|
42179
|
-
|
|
42192
|
+
isValidLetDeclarationAccess(target, ast) {
|
|
42180
42193
|
const targetStart = target.sourceSpan.start.offset;
|
|
42181
42194
|
const targetEnd = target.sourceSpan.end.offset;
|
|
42182
42195
|
const astStart = ast.sourceSpan.start;
|
|
42183
|
-
|
|
42184
|
-
this.tcb.oobRecorder.letUsedBeforeDefinition(this.tcb.id, ast, target);
|
|
42185
|
-
}
|
|
42196
|
+
return targetStart < astStart && astStart > targetEnd || !this.scope.isLocal(target);
|
|
42186
42197
|
}
|
|
42187
42198
|
};
|
|
42188
42199
|
function tcbCallTypeCtor(dir, tcb, inputs) {
|
|
@@ -42326,7 +42337,8 @@ var TcbEventHandlerTranslator = class extends TcbExpressionTranslator {
|
|
|
42326
42337
|
}
|
|
42327
42338
|
return super.resolve(ast);
|
|
42328
42339
|
}
|
|
42329
|
-
|
|
42340
|
+
isValidLetDeclarationAccess() {
|
|
42341
|
+
return true;
|
|
42330
42342
|
}
|
|
42331
42343
|
};
|
|
42332
42344
|
var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
@@ -42351,7 +42363,7 @@ var TcbForLoopTrackTranslator = class extends TcbExpressionTranslator {
|
|
|
42351
42363
|
}
|
|
42352
42364
|
};
|
|
42353
42365
|
|
|
42354
|
-
// bazel-out/
|
|
42366
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/type_check_file.mjs
|
|
42355
42367
|
var import_typescript83 = __toESM(require("typescript"), 1);
|
|
42356
42368
|
var TypeCheckFile = class extends Environment {
|
|
42357
42369
|
constructor(fileName, config, refEmitter, reflector, compilerHost) {
|
|
@@ -42399,7 +42411,7 @@ var TypeCheckFile = class extends Environment {
|
|
|
42399
42411
|
}
|
|
42400
42412
|
};
|
|
42401
42413
|
|
|
42402
|
-
// bazel-out/
|
|
42414
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/context.mjs
|
|
42403
42415
|
var InliningMode;
|
|
42404
42416
|
(function(InliningMode2) {
|
|
42405
42417
|
InliningMode2[InliningMode2["InlineOps"] = 0] = "InlineOps";
|
|
@@ -42651,7 +42663,7 @@ var TypeCtorOp = class {
|
|
|
42651
42663
|
}
|
|
42652
42664
|
};
|
|
42653
42665
|
|
|
42654
|
-
// bazel-out/
|
|
42666
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/line_mappings.mjs
|
|
42655
42667
|
var LF_CHAR = 10;
|
|
42656
42668
|
var CR_CHAR = 13;
|
|
42657
42669
|
var LINE_SEP_CHAR = 8232;
|
|
@@ -42692,7 +42704,7 @@ function findClosestLineStartPosition(linesMap, position, low = 0, high = linesM
|
|
|
42692
42704
|
return low - 1;
|
|
42693
42705
|
}
|
|
42694
42706
|
|
|
42695
|
-
// bazel-out/
|
|
42707
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/source.mjs
|
|
42696
42708
|
var TemplateSource = class {
|
|
42697
42709
|
constructor(mapping, file) {
|
|
42698
42710
|
this.mapping = mapping;
|
|
@@ -42743,7 +42755,7 @@ var TemplateSourceManager = class {
|
|
|
42743
42755
|
}
|
|
42744
42756
|
};
|
|
42745
42757
|
|
|
42746
|
-
// bazel-out/
|
|
42758
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/template_symbol_builder.mjs
|
|
42747
42759
|
var import_typescript85 = __toESM(require("typescript"), 1);
|
|
42748
42760
|
var SymbolBuilder = class {
|
|
42749
42761
|
constructor(tcbPath, tcbIsShim, typeCheckBlock, templateData, componentScopeReader, getTypeChecker) {
|
|
@@ -43310,7 +43322,7 @@ function unwrapSignalInputWriteTAccessor(expr) {
|
|
|
43310
43322
|
};
|
|
43311
43323
|
}
|
|
43312
43324
|
|
|
43313
|
-
// bazel-out/
|
|
43325
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/checker.mjs
|
|
43314
43326
|
var REGISTRY2 = new DomElementSchemaRegistry();
|
|
43315
43327
|
var TemplateTypeCheckerImpl = class {
|
|
43316
43328
|
constructor(originalProgram, programDriver, typeCheckAdapter, config, refEmitter, reflector, compilerHost, priorBuild, metaReader, localMetaReader, ngModuleIndex, componentScopeReader, typeCheckScopeRegistry, perf) {
|
|
@@ -44008,7 +44020,7 @@ var SingleShimTypeCheckingHost = class extends SingleFileTypeCheckingHost {
|
|
|
44008
44020
|
}
|
|
44009
44021
|
};
|
|
44010
44022
|
|
|
44011
|
-
// bazel-out/
|
|
44023
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/component/src/handler.mjs
|
|
44012
44024
|
var EMPTY_ARRAY2 = [];
|
|
44013
44025
|
var isUsedDirective = (decl) => decl.kind === R3TemplateDependencyKind.Directive;
|
|
44014
44026
|
var isUsedPipe = (decl) => decl.kind === R3TemplateDependencyKind.Pipe;
|
|
@@ -45027,7 +45039,7 @@ function isDefaultImport(node) {
|
|
|
45027
45039
|
return node.importClause !== void 0 && node.importClause.namedBindings === void 0;
|
|
45028
45040
|
}
|
|
45029
45041
|
|
|
45030
|
-
// bazel-out/
|
|
45042
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/injectable.mjs
|
|
45031
45043
|
var import_typescript90 = __toESM(require("typescript"), 1);
|
|
45032
45044
|
var InjectableDecoratorHandler = class {
|
|
45033
45045
|
constructor(reflector, evaluator, isCore, strictCtorDeps, injectableRegistry, perf, includeClassMetadata, compilationMode, errorOnDuplicateProv = true) {
|
|
@@ -45258,7 +45270,7 @@ function getDep(dep, reflector) {
|
|
|
45258
45270
|
return meta;
|
|
45259
45271
|
}
|
|
45260
45272
|
|
|
45261
|
-
// bazel-out/
|
|
45273
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/annotations/src/pipe.mjs
|
|
45262
45274
|
var import_typescript91 = __toESM(require("typescript"), 1);
|
|
45263
45275
|
var PipeSymbol = class extends SemanticSymbol {
|
|
45264
45276
|
constructor(decl, name) {
|
|
@@ -45414,13 +45426,13 @@ var PipeDecoratorHandler = class {
|
|
|
45414
45426
|
}
|
|
45415
45427
|
};
|
|
45416
45428
|
|
|
45417
|
-
// bazel-out/
|
|
45429
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/transform_api.mjs
|
|
45418
45430
|
var import_typescript92 = __toESM(require("typescript"), 1);
|
|
45419
45431
|
|
|
45420
|
-
// bazel-out/
|
|
45432
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/jit_transforms/initializer_api_transforms/model_function.mjs
|
|
45421
45433
|
var import_typescript93 = __toESM(require("typescript"), 1);
|
|
45422
45434
|
|
|
45423
|
-
// bazel-out/
|
|
45435
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/api.mjs
|
|
45424
45436
|
var EmitFlags;
|
|
45425
45437
|
(function(EmitFlags2) {
|
|
45426
45438
|
EmitFlags2[EmitFlags2["DTS"] = 1] = "DTS";
|
|
@@ -45432,13 +45444,13 @@ var EmitFlags;
|
|
|
45432
45444
|
EmitFlags2[EmitFlags2["All"] = 31] = "All";
|
|
45433
45445
|
})(EmitFlags || (EmitFlags = {}));
|
|
45434
45446
|
|
|
45435
|
-
// bazel-out/
|
|
45447
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/compiler_host.mjs
|
|
45436
45448
|
var import_typescript96 = __toESM(require("typescript"), 1);
|
|
45437
45449
|
|
|
45438
|
-
// bazel-out/
|
|
45450
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
45439
45451
|
var import_typescript123 = __toESM(require("typescript"), 1);
|
|
45440
45452
|
|
|
45441
|
-
// bazel-out/
|
|
45453
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/i18n.mjs
|
|
45442
45454
|
var path2 = __toESM(require("path"), 1);
|
|
45443
45455
|
function i18nGetExtension(formatName) {
|
|
45444
45456
|
const format = formatName.toLowerCase();
|
|
@@ -45488,10 +45500,10 @@ function getPathNormalizer(basePath) {
|
|
|
45488
45500
|
};
|
|
45489
45501
|
}
|
|
45490
45502
|
|
|
45491
|
-
// bazel-out/
|
|
45503
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
45492
45504
|
var import_typescript97 = __toESM(require("typescript"), 1);
|
|
45493
45505
|
|
|
45494
|
-
// bazel-out/
|
|
45506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version_helpers.mjs
|
|
45495
45507
|
function toNumbers(value) {
|
|
45496
45508
|
const suffixIndex = value.lastIndexOf("-");
|
|
45497
45509
|
return value.slice(0, suffixIndex === -1 ? value.length : suffixIndex).split(".").map((segment) => {
|
|
@@ -45526,7 +45538,7 @@ function compareVersions(v1, v2) {
|
|
|
45526
45538
|
return compareNumbers(toNumbers(v1), toNumbers(v2));
|
|
45527
45539
|
}
|
|
45528
45540
|
|
|
45529
|
-
// bazel-out/
|
|
45541
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/typescript_support.mjs
|
|
45530
45542
|
var MIN_TS_VERSION = "5.4.0";
|
|
45531
45543
|
var MAX_TS_VERSION = "5.6.0";
|
|
45532
45544
|
var tsVersion = import_typescript97.default.version;
|
|
@@ -45539,10 +45551,10 @@ function verifySupportedTypeScriptVersion() {
|
|
|
45539
45551
|
checkVersion(tsVersion, MIN_TS_VERSION, MAX_TS_VERSION);
|
|
45540
45552
|
}
|
|
45541
45553
|
|
|
45542
|
-
// bazel-out/
|
|
45554
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
45543
45555
|
var import_typescript119 = __toESM(require("typescript"), 1);
|
|
45544
45556
|
|
|
45545
|
-
// bazel-out/
|
|
45557
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/analyzer.mjs
|
|
45546
45558
|
var CycleAnalyzer = class {
|
|
45547
45559
|
constructor(importGraph) {
|
|
45548
45560
|
this.importGraph = importGraph;
|
|
@@ -45613,7 +45625,7 @@ var Cycle = class {
|
|
|
45613
45625
|
}
|
|
45614
45626
|
};
|
|
45615
45627
|
|
|
45616
|
-
// bazel-out/
|
|
45628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/cycles/src/imports.mjs
|
|
45617
45629
|
var import_typescript98 = __toESM(require("typescript"), 1);
|
|
45618
45630
|
var ImportGraph = class {
|
|
45619
45631
|
constructor(checker, perf) {
|
|
@@ -45705,13 +45717,13 @@ var Found = class {
|
|
|
45705
45717
|
}
|
|
45706
45718
|
};
|
|
45707
45719
|
|
|
45708
|
-
// bazel-out/
|
|
45720
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
45709
45721
|
var import_typescript107 = __toESM(require("typescript"), 1);
|
|
45710
45722
|
|
|
45711
|
-
// bazel-out/
|
|
45723
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
45712
45724
|
var import_typescript102 = __toESM(require("typescript"), 1);
|
|
45713
45725
|
|
|
45714
|
-
// bazel-out/
|
|
45726
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/entities.mjs
|
|
45715
45727
|
var EntryType;
|
|
45716
45728
|
(function(EntryType2) {
|
|
45717
45729
|
EntryType2["Block"] = "block";
|
|
@@ -45755,17 +45767,17 @@ var MemberTags;
|
|
|
45755
45767
|
MemberTags2["Inherited"] = "override";
|
|
45756
45768
|
})(MemberTags || (MemberTags = {}));
|
|
45757
45769
|
|
|
45758
|
-
// bazel-out/
|
|
45770
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/filters.mjs
|
|
45759
45771
|
function isAngularPrivateName(name) {
|
|
45760
45772
|
var _a2;
|
|
45761
45773
|
const firstChar = (_a2 = name[0]) != null ? _a2 : "";
|
|
45762
45774
|
return firstChar === "\u0275" || firstChar === "_";
|
|
45763
45775
|
}
|
|
45764
45776
|
|
|
45765
|
-
// bazel-out/
|
|
45777
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
45766
45778
|
var import_typescript100 = __toESM(require("typescript"), 1);
|
|
45767
45779
|
|
|
45768
|
-
// bazel-out/
|
|
45780
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/generics_extractor.mjs
|
|
45769
45781
|
function extractGenerics(declaration) {
|
|
45770
45782
|
var _a2, _b2;
|
|
45771
45783
|
return (_b2 = (_a2 = declaration.typeParameters) == null ? void 0 : _a2.map((typeParam) => {
|
|
@@ -45778,9 +45790,9 @@ function extractGenerics(declaration) {
|
|
|
45778
45790
|
})) != null ? _b2 : [];
|
|
45779
45791
|
}
|
|
45780
45792
|
|
|
45781
|
-
// bazel-out/
|
|
45793
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/jsdoc_extractor.mjs
|
|
45782
45794
|
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;
|
|
45795
|
+
var decoratorExpression = /@(?=(Injectable|Component|Directive|Pipe|NgModule|Input|Output|HostBinding|HostListener|Inject|Optional|Self|Host|SkipSelf|ViewChild|ViewChildren|ContentChild|ContentChildren))/g;
|
|
45784
45796
|
function extractJsDocTags(node) {
|
|
45785
45797
|
const escapedNode = getEscapedNode(node);
|
|
45786
45798
|
return import_typescript99.default.getJSDocTags(escapedNode).map((t) => {
|
|
@@ -45822,12 +45834,12 @@ function unescapeAngularDecorators(comment) {
|
|
|
45822
45834
|
return comment.replace(/_NG_AT_/g, "@");
|
|
45823
45835
|
}
|
|
45824
45836
|
|
|
45825
|
-
// bazel-out/
|
|
45837
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_extractor.mjs
|
|
45826
45838
|
function extractResolvedTypeString(node, checker) {
|
|
45827
45839
|
return checker.typeToString(checker.getTypeAtLocation(node));
|
|
45828
45840
|
}
|
|
45829
45841
|
|
|
45830
|
-
// bazel-out/
|
|
45842
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/function_extractor.mjs
|
|
45831
45843
|
var FunctionExtractor = class {
|
|
45832
45844
|
constructor(name, declaration, typeChecker) {
|
|
45833
45845
|
this.name = name;
|
|
@@ -45837,7 +45849,11 @@ var FunctionExtractor = class {
|
|
|
45837
45849
|
extract() {
|
|
45838
45850
|
var _a2;
|
|
45839
45851
|
const signature = this.typeChecker.getSignatureFromDeclaration(this.declaration);
|
|
45840
|
-
const returnType = signature ? this.typeChecker.typeToString(
|
|
45852
|
+
const returnType = signature ? this.typeChecker.typeToString(
|
|
45853
|
+
this.typeChecker.getReturnTypeOfSignature(signature),
|
|
45854
|
+
void 0,
|
|
45855
|
+
import_typescript100.default.TypeFormatFlags.NoTypeReduction | import_typescript100.default.TypeFormatFlags.NoTruncation
|
|
45856
|
+
) : "unknown";
|
|
45841
45857
|
const jsdocsTags = extractJsDocTags(this.declaration);
|
|
45842
45858
|
return {
|
|
45843
45859
|
params: extractAllParams(this.declaration.parameters, this.typeChecker),
|
|
@@ -45886,7 +45902,7 @@ function extractAllParams(params, typeChecker) {
|
|
|
45886
45902
|
}));
|
|
45887
45903
|
}
|
|
45888
45904
|
|
|
45889
|
-
// bazel-out/
|
|
45905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/internal.mjs
|
|
45890
45906
|
var import_typescript101 = __toESM(require("typescript"), 1);
|
|
45891
45907
|
function isInternal(member) {
|
|
45892
45908
|
return extractJsDocTags(member).some((tag) => tag.name === "internal") || hasLeadingInternalComment(member);
|
|
@@ -45905,7 +45921,7 @@ function hasLeadingInternalComment(member) {
|
|
|
45905
45921
|
)) != null ? _a2 : false;
|
|
45906
45922
|
}
|
|
45907
45923
|
|
|
45908
|
-
// bazel-out/
|
|
45924
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/class_extractor.mjs
|
|
45909
45925
|
var ClassExtractor = class {
|
|
45910
45926
|
constructor(declaration, typeChecker) {
|
|
45911
45927
|
this.declaration = declaration;
|
|
@@ -46042,13 +46058,19 @@ var ClassExtractor = class {
|
|
|
46042
46058
|
}
|
|
46043
46059
|
isMemberExcluded(member) {
|
|
46044
46060
|
var _a2;
|
|
46045
|
-
return !member.name || !this.isDocumentableMember(member) ||
|
|
46061
|
+
return !member.name || !this.isDocumentableMember(member) || !import_typescript102.default.isCallSignatureDeclaration(member) && ((_a2 = member.modifiers) == null ? void 0 : _a2.some((mod) => mod.kind === import_typescript102.default.SyntaxKind.PrivateKeyword)) || member.name.getText() === "prototype" || isAngularPrivateName(member.name.getText()) || isInternal(member);
|
|
46046
46062
|
}
|
|
46047
46063
|
isDocumentableMember(member) {
|
|
46048
|
-
return this.isMethod(member) || this.isProperty(member) || import_typescript102.default.isAccessor(member);
|
|
46064
|
+
return this.isMethod(member) || this.isProperty(member) || import_typescript102.default.isAccessor(member) || import_typescript102.default.isCallSignatureDeclaration(member);
|
|
46065
|
+
}
|
|
46066
|
+
isPublicConstructorParameterProperty(node) {
|
|
46067
|
+
if (import_typescript102.default.isParameterPropertyDeclaration(node, node.parent) && node.modifiers) {
|
|
46068
|
+
return node.modifiers.some((modifier) => modifier.kind === import_typescript102.default.SyntaxKind.PublicKeyword);
|
|
46069
|
+
}
|
|
46070
|
+
return false;
|
|
46049
46071
|
}
|
|
46050
46072
|
isProperty(member) {
|
|
46051
|
-
return import_typescript102.default.isPropertyDeclaration(member) || import_typescript102.default.isPropertySignature(member);
|
|
46073
|
+
return import_typescript102.default.isPropertyDeclaration(member) || import_typescript102.default.isPropertySignature(member) || this.isPublicConstructorParameterProperty(member);
|
|
46052
46074
|
}
|
|
46053
46075
|
isMethod(member) {
|
|
46054
46076
|
return import_typescript102.default.isMethodDeclaration(member) || import_typescript102.default.isMethodSignature(member);
|
|
@@ -46157,7 +46179,7 @@ function extractInterface(declaration, typeChecker) {
|
|
|
46157
46179
|
return extractor.extract();
|
|
46158
46180
|
}
|
|
46159
46181
|
|
|
46160
|
-
// bazel-out/
|
|
46182
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/constant_extractor.mjs
|
|
46161
46183
|
var import_typescript103 = __toESM(require("typescript"), 1);
|
|
46162
46184
|
var LITERAL_AS_ENUM_TAG = "object-literal-as-enum";
|
|
46163
46185
|
function extractConstant(declaration, typeChecker) {
|
|
@@ -46215,7 +46237,7 @@ function extractLiteralPropertiesAsEnumMembers(declaration) {
|
|
|
46215
46237
|
});
|
|
46216
46238
|
}
|
|
46217
46239
|
|
|
46218
|
-
// bazel-out/
|
|
46240
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/decorator_extractor.mjs
|
|
46219
46241
|
var import_typescript104 = __toESM(require("typescript"), 1);
|
|
46220
46242
|
function extractorDecorator(declaration, typeChecker) {
|
|
46221
46243
|
const documentedNode = getDecoratorJsDocNode(declaration);
|
|
@@ -46288,7 +46310,7 @@ function getDecoratorJsDocNode(declaration) {
|
|
|
46288
46310
|
return callSignature;
|
|
46289
46311
|
}
|
|
46290
46312
|
|
|
46291
|
-
// bazel-out/
|
|
46313
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/enum_extractor.mjs
|
|
46292
46314
|
var import_typescript105 = __toESM(require("typescript"), 1);
|
|
46293
46315
|
function extractEnum(declaration, typeChecker) {
|
|
46294
46316
|
return {
|
|
@@ -46319,7 +46341,7 @@ function getEnumMemberValue(memberNode) {
|
|
|
46319
46341
|
return (_a2 = literal3 == null ? void 0 : literal3.getText()) != null ? _a2 : "";
|
|
46320
46342
|
}
|
|
46321
46343
|
|
|
46322
|
-
// bazel-out/
|
|
46344
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/initializer_api_function_extractor.mjs
|
|
46323
46345
|
var import_typescript106 = __toESM(require("typescript"), 1);
|
|
46324
46346
|
var initializerApiTag = "initializerApiFunction";
|
|
46325
46347
|
function isInitializerApiFunction(node, typeChecker) {
|
|
@@ -46425,7 +46447,7 @@ function filterSignatureDeclarations(signatures) {
|
|
|
46425
46447
|
for (const signature of signatures) {
|
|
46426
46448
|
const decl = signature.getDeclaration();
|
|
46427
46449
|
if (import_typescript106.default.isFunctionDeclaration(decl) || import_typescript106.default.isCallSignatureDeclaration(decl)) {
|
|
46428
|
-
result.push(decl);
|
|
46450
|
+
result.push({ signature, decl });
|
|
46429
46451
|
}
|
|
46430
46452
|
}
|
|
46431
46453
|
return result;
|
|
@@ -46433,16 +46455,20 @@ function filterSignatureDeclarations(signatures) {
|
|
|
46433
46455
|
function extractFunctionWithOverloads(name, signatures, typeChecker) {
|
|
46434
46456
|
return {
|
|
46435
46457
|
name,
|
|
46436
|
-
signatures: filterSignatureDeclarations(signatures).map((
|
|
46458
|
+
signatures: filterSignatureDeclarations(signatures).map(({ decl, signature }) => ({
|
|
46437
46459
|
name,
|
|
46438
46460
|
entryType: EntryType.Function,
|
|
46439
|
-
description: extractJsDocDescription(
|
|
46440
|
-
generics: extractGenerics(
|
|
46461
|
+
description: extractJsDocDescription(decl),
|
|
46462
|
+
generics: extractGenerics(decl),
|
|
46441
46463
|
isNewType: false,
|
|
46442
|
-
jsdocTags: extractJsDocTags(
|
|
46443
|
-
params: extractAllParams(
|
|
46444
|
-
rawComment: extractRawJsDoc(
|
|
46445
|
-
returnType: typeChecker.typeToString(
|
|
46464
|
+
jsdocTags: extractJsDocTags(decl),
|
|
46465
|
+
params: extractAllParams(decl.parameters, typeChecker),
|
|
46466
|
+
rawComment: extractRawJsDoc(decl),
|
|
46467
|
+
returnType: typeChecker.typeToString(
|
|
46468
|
+
typeChecker.getReturnTypeOfSignature(signature),
|
|
46469
|
+
void 0,
|
|
46470
|
+
import_typescript106.default.TypeFormatFlags.NoTypeReduction | import_typescript106.default.TypeFormatFlags.NoTruncation
|
|
46471
|
+
)
|
|
46446
46472
|
})),
|
|
46447
46473
|
implementation: null
|
|
46448
46474
|
};
|
|
@@ -46456,7 +46482,7 @@ function findImplementationOfFunction(node, typeChecker) {
|
|
|
46456
46482
|
return (_a2 = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a2.find((s) => import_typescript106.default.isFunctionDeclaration(s) && s.body !== void 0);
|
|
46457
46483
|
}
|
|
46458
46484
|
|
|
46459
|
-
// bazel-out/
|
|
46485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/type_alias_extractor.mjs
|
|
46460
46486
|
function extractTypeAlias(declaration) {
|
|
46461
46487
|
return {
|
|
46462
46488
|
name: declaration.name.getText(),
|
|
@@ -46468,7 +46494,7 @@ function extractTypeAlias(declaration) {
|
|
|
46468
46494
|
};
|
|
46469
46495
|
}
|
|
46470
46496
|
|
|
46471
|
-
// bazel-out/
|
|
46497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/docs/src/extractor.mjs
|
|
46472
46498
|
var DocsExtractor = class {
|
|
46473
46499
|
constructor(typeChecker, metadataReader) {
|
|
46474
46500
|
this.typeChecker = typeChecker;
|
|
@@ -46552,7 +46578,7 @@ function getRelativeFilePath(sourceFile, rootDir) {
|
|
|
46552
46578
|
return relativePath;
|
|
46553
46579
|
}
|
|
46554
46580
|
|
|
46555
|
-
// bazel-out/
|
|
46581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/generator.mjs
|
|
46556
46582
|
var import_typescript108 = __toESM(require("typescript"), 1);
|
|
46557
46583
|
var FlatIndexGenerator = class {
|
|
46558
46584
|
constructor(entryPoint, relativeFlatIndexPath, moduleName) {
|
|
@@ -46577,7 +46603,7 @@ export * from '${relativeEntryPoint}';
|
|
|
46577
46603
|
}
|
|
46578
46604
|
};
|
|
46579
46605
|
|
|
46580
|
-
// bazel-out/
|
|
46606
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/logic.mjs
|
|
46581
46607
|
function findFlatIndexEntryPoint(rootFiles) {
|
|
46582
46608
|
const tsFiles = rootFiles.filter((file) => isNonDeclarationTsPath(file));
|
|
46583
46609
|
let resolvedEntryPoint = null;
|
|
@@ -46593,7 +46619,7 @@ function findFlatIndexEntryPoint(rootFiles) {
|
|
|
46593
46619
|
return resolvedEntryPoint;
|
|
46594
46620
|
}
|
|
46595
46621
|
|
|
46596
|
-
// bazel-out/
|
|
46622
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/private_export_checker.mjs
|
|
46597
46623
|
var import_typescript110 = __toESM(require("typescript"), 1);
|
|
46598
46624
|
function checkForPrivateExports(entryPoint, checker, refGraph) {
|
|
46599
46625
|
const diagnostics = [];
|
|
@@ -46673,7 +46699,7 @@ function getDescriptorOfDeclaration(decl) {
|
|
|
46673
46699
|
}
|
|
46674
46700
|
}
|
|
46675
46701
|
|
|
46676
|
-
// bazel-out/
|
|
46702
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/entry_point/src/reference_graph.mjs
|
|
46677
46703
|
var ReferenceGraph = class {
|
|
46678
46704
|
constructor() {
|
|
46679
46705
|
this.references = /* @__PURE__ */ new Map();
|
|
@@ -46727,7 +46753,7 @@ var ReferenceGraph = class {
|
|
|
46727
46753
|
}
|
|
46728
46754
|
};
|
|
46729
46755
|
|
|
46730
|
-
// bazel-out/
|
|
46756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/dependency_tracking.mjs
|
|
46731
46757
|
var FileDependencyGraph = class {
|
|
46732
46758
|
constructor() {
|
|
46733
46759
|
this.nodes = /* @__PURE__ */ new Map();
|
|
@@ -46794,7 +46820,7 @@ function isLogicallyChanged(sf, node, changedTsPaths, deletedTsPaths, changedRes
|
|
|
46794
46820
|
return false;
|
|
46795
46821
|
}
|
|
46796
46822
|
|
|
46797
|
-
// bazel-out/
|
|
46823
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/state.mjs
|
|
46798
46824
|
var IncrementalStateKind;
|
|
46799
46825
|
(function(IncrementalStateKind2) {
|
|
46800
46826
|
IncrementalStateKind2[IncrementalStateKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -46802,7 +46828,7 @@ var IncrementalStateKind;
|
|
|
46802
46828
|
IncrementalStateKind2[IncrementalStateKind2["Analyzed"] = 2] = "Analyzed";
|
|
46803
46829
|
})(IncrementalStateKind || (IncrementalStateKind = {}));
|
|
46804
46830
|
|
|
46805
|
-
// bazel-out/
|
|
46831
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/incremental.mjs
|
|
46806
46832
|
var PhaseKind;
|
|
46807
46833
|
(function(PhaseKind2) {
|
|
46808
46834
|
PhaseKind2[PhaseKind2["Analysis"] = 0] = "Analysis";
|
|
@@ -47003,7 +47029,7 @@ function toOriginalSourceFile(sf) {
|
|
|
47003
47029
|
}
|
|
47004
47030
|
}
|
|
47005
47031
|
|
|
47006
|
-
// bazel-out/
|
|
47032
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/incremental/src/strategy.mjs
|
|
47007
47033
|
var TrackedIncrementalBuildStrategy = class {
|
|
47008
47034
|
constructor() {
|
|
47009
47035
|
this.state = null;
|
|
@@ -47024,7 +47050,7 @@ var TrackedIncrementalBuildStrategy = class {
|
|
|
47024
47050
|
};
|
|
47025
47051
|
var SYM_INCREMENTAL_STATE = Symbol("NgIncrementalState");
|
|
47026
47052
|
|
|
47027
|
-
// bazel-out/
|
|
47053
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/api.mjs
|
|
47028
47054
|
var IdentifierKind;
|
|
47029
47055
|
(function(IdentifierKind2) {
|
|
47030
47056
|
IdentifierKind2[IdentifierKind2["Property"] = 0] = "Property";
|
|
@@ -47043,7 +47069,7 @@ var AbsoluteSourceSpan2 = class {
|
|
|
47043
47069
|
}
|
|
47044
47070
|
};
|
|
47045
47071
|
|
|
47046
|
-
// bazel-out/
|
|
47072
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/context.mjs
|
|
47047
47073
|
var IndexingContext = class {
|
|
47048
47074
|
constructor() {
|
|
47049
47075
|
this.components = /* @__PURE__ */ new Set();
|
|
@@ -47053,7 +47079,7 @@ var IndexingContext = class {
|
|
|
47053
47079
|
}
|
|
47054
47080
|
};
|
|
47055
47081
|
|
|
47056
|
-
// bazel-out/
|
|
47082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/template.mjs
|
|
47057
47083
|
var ExpressionVisitor = class extends RecursiveAstVisitor2 {
|
|
47058
47084
|
constructor(expressionStr, absoluteOffset, boundTemplate, targetToIdentifier) {
|
|
47059
47085
|
super();
|
|
@@ -47347,7 +47373,7 @@ function getTemplateIdentifiers(boundTemplate) {
|
|
|
47347
47373
|
return { identifiers: visitor.identifiers, errors: visitor.errors };
|
|
47348
47374
|
}
|
|
47349
47375
|
|
|
47350
|
-
// bazel-out/
|
|
47376
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/indexer/src/transform.mjs
|
|
47351
47377
|
function generateAnalysis(context) {
|
|
47352
47378
|
const analysis = /* @__PURE__ */ new Map();
|
|
47353
47379
|
context.components.forEach(({ declaration, selector, boundTemplate, templateMeta }) => {
|
|
@@ -47383,7 +47409,7 @@ function generateAnalysis(context) {
|
|
|
47383
47409
|
return analysis;
|
|
47384
47410
|
}
|
|
47385
47411
|
|
|
47386
|
-
// bazel-out/
|
|
47412
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/metadata/src/ng_module_index.mjs
|
|
47387
47413
|
var NgModuleIndexImpl = class {
|
|
47388
47414
|
constructor(metaReader, localReader) {
|
|
47389
47415
|
this.metaReader = metaReader;
|
|
@@ -47472,7 +47498,7 @@ var NgModuleIndexImpl = class {
|
|
|
47472
47498
|
}
|
|
47473
47499
|
};
|
|
47474
47500
|
|
|
47475
|
-
// bazel-out/
|
|
47501
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/resource/src/loader.mjs
|
|
47476
47502
|
var import_typescript112 = __toESM(require("typescript"), 1);
|
|
47477
47503
|
var CSS_PREPROCESSOR_EXT = /(\.scss|\.sass|\.less|\.styl)$/;
|
|
47478
47504
|
var RESOURCE_MARKER = ".$ngresource$";
|
|
@@ -47624,7 +47650,7 @@ function createLookupResolutionHost(adapter) {
|
|
|
47624
47650
|
};
|
|
47625
47651
|
}
|
|
47626
47652
|
|
|
47627
|
-
// bazel-out/
|
|
47653
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/scope/src/standalone.mjs
|
|
47628
47654
|
var StandaloneComponentScopeReader = class {
|
|
47629
47655
|
constructor(metaReader, localModuleReader, dtsModuleReader) {
|
|
47630
47656
|
this.metaReader = metaReader;
|
|
@@ -47720,7 +47746,7 @@ var StandaloneComponentScopeReader = class {
|
|
|
47720
47746
|
}
|
|
47721
47747
|
};
|
|
47722
47748
|
|
|
47723
|
-
// bazel-out/
|
|
47749
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.mjs
|
|
47724
47750
|
var import_typescript113 = __toESM(require("typescript"), 1);
|
|
47725
47751
|
var SIGNAL_FNS = /* @__PURE__ */ new Set([
|
|
47726
47752
|
"WritableSignal",
|
|
@@ -47740,7 +47766,7 @@ function isSignalSymbol(symbol) {
|
|
|
47740
47766
|
});
|
|
47741
47767
|
}
|
|
47742
47768
|
|
|
47743
|
-
// bazel-out/
|
|
47769
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/api/api.mjs
|
|
47744
47770
|
var TemplateCheckWithVisitor = class {
|
|
47745
47771
|
run(ctx, component, template2) {
|
|
47746
47772
|
const visitor = new TemplateVisitor2(ctx, component, this);
|
|
@@ -47867,7 +47893,7 @@ var TemplateVisitor2 = class extends RecursiveAstVisitor2 {
|
|
|
47867
47893
|
}
|
|
47868
47894
|
};
|
|
47869
47895
|
|
|
47870
|
-
// bazel-out/
|
|
47896
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.mjs
|
|
47871
47897
|
var SIGNAL_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["set", "update", "asReadonly"]);
|
|
47872
47898
|
var FUNCTION_INSTANCE_PROPERTIES = /* @__PURE__ */ new Set(["name", "length", "prototype"]);
|
|
47873
47899
|
var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
|
|
@@ -47919,7 +47945,7 @@ var factory = {
|
|
|
47919
47945
|
create: () => new InterpolatedSignalCheck()
|
|
47920
47946
|
};
|
|
47921
47947
|
|
|
47922
|
-
// bazel-out/
|
|
47948
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/invalid_banana_in_box/index.mjs
|
|
47923
47949
|
var InvalidBananaInBoxCheck = class extends TemplateCheckWithVisitor {
|
|
47924
47950
|
constructor() {
|
|
47925
47951
|
super(...arguments);
|
|
@@ -47944,7 +47970,7 @@ var factory2 = {
|
|
|
47944
47970
|
create: () => new InvalidBananaInBoxCheck()
|
|
47945
47971
|
};
|
|
47946
47972
|
|
|
47947
|
-
// bazel-out/
|
|
47973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_control_flow_directive/index.mjs
|
|
47948
47974
|
var KNOWN_CONTROL_FLOW_DIRECTIVES = /* @__PURE__ */ new Map([
|
|
47949
47975
|
["ngIf", { directive: "NgIf", builtIn: "@if" }],
|
|
47950
47976
|
["ngFor", { directive: "NgFor", builtIn: "@for" }],
|
|
@@ -47988,7 +48014,7 @@ var factory3 = {
|
|
|
47988
48014
|
}
|
|
47989
48015
|
};
|
|
47990
48016
|
|
|
47991
|
-
// bazel-out/
|
|
48017
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/missing_ngforof_let/index.mjs
|
|
47992
48018
|
var MissingNgForOfLetCheck = class extends TemplateCheckWithVisitor {
|
|
47993
48019
|
constructor() {
|
|
47994
48020
|
super(...arguments);
|
|
@@ -48020,7 +48046,7 @@ var factory4 = {
|
|
|
48020
48046
|
create: () => new MissingNgForOfLetCheck()
|
|
48021
48047
|
};
|
|
48022
48048
|
|
|
48023
|
-
// bazel-out/
|
|
48049
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/nullish_coalescing_not_nullable/index.mjs
|
|
48024
48050
|
var import_typescript114 = __toESM(require("typescript"), 1);
|
|
48025
48051
|
var NullishCoalescingNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48026
48052
|
constructor() {
|
|
@@ -48064,7 +48090,7 @@ var factory5 = {
|
|
|
48064
48090
|
}
|
|
48065
48091
|
};
|
|
48066
48092
|
|
|
48067
|
-
// bazel-out/
|
|
48093
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/optional_chain_not_nullable/index.mjs
|
|
48068
48094
|
var import_typescript115 = __toESM(require("typescript"), 1);
|
|
48069
48095
|
var OptionalChainNotNullableCheck = class extends TemplateCheckWithVisitor {
|
|
48070
48096
|
constructor() {
|
|
@@ -48109,7 +48135,7 @@ var factory6 = {
|
|
|
48109
48135
|
}
|
|
48110
48136
|
};
|
|
48111
48137
|
|
|
48112
|
-
// bazel-out/
|
|
48138
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/suffix_not_supported/index.mjs
|
|
48113
48139
|
var STYLE_SUFFIXES = ["px", "%", "em"];
|
|
48114
48140
|
var SuffixNotSupportedCheck = class extends TemplateCheckWithVisitor {
|
|
48115
48141
|
constructor() {
|
|
@@ -48132,7 +48158,7 @@ var factory7 = {
|
|
|
48132
48158
|
create: () => new SuffixNotSupportedCheck()
|
|
48133
48159
|
};
|
|
48134
48160
|
|
|
48135
|
-
// bazel-out/
|
|
48161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/text_attribute_not_binding/index.mjs
|
|
48136
48162
|
var TextAttributeNotBindingSpec = class extends TemplateCheckWithVisitor {
|
|
48137
48163
|
constructor() {
|
|
48138
48164
|
super(...arguments);
|
|
@@ -48170,7 +48196,7 @@ var factory8 = {
|
|
|
48170
48196
|
create: () => new TextAttributeNotBindingSpec()
|
|
48171
48197
|
};
|
|
48172
48198
|
|
|
48173
|
-
// bazel-out/
|
|
48199
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/checks/uninvoked_function_in_event_binding/index.mjs
|
|
48174
48200
|
var UninvokedFunctionInEventBindingSpec = class extends TemplateCheckWithVisitor {
|
|
48175
48201
|
constructor() {
|
|
48176
48202
|
super(...arguments);
|
|
@@ -48221,10 +48247,10 @@ var factory9 = {
|
|
|
48221
48247
|
create: () => new UninvokedFunctionInEventBindingSpec()
|
|
48222
48248
|
};
|
|
48223
48249
|
|
|
48224
|
-
// bazel-out/
|
|
48250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
48225
48251
|
var import_typescript116 = __toESM(require("typescript"), 1);
|
|
48226
48252
|
|
|
48227
|
-
// bazel-out/
|
|
48253
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/api/src/public_options.mjs
|
|
48228
48254
|
var DiagnosticCategoryLabel;
|
|
48229
48255
|
(function(DiagnosticCategoryLabel2) {
|
|
48230
48256
|
DiagnosticCategoryLabel2["Warning"] = "warning";
|
|
@@ -48232,7 +48258,7 @@ var DiagnosticCategoryLabel;
|
|
|
48232
48258
|
DiagnosticCategoryLabel2["Suppress"] = "suppress";
|
|
48233
48259
|
})(DiagnosticCategoryLabel || (DiagnosticCategoryLabel = {}));
|
|
48234
48260
|
|
|
48235
|
-
// bazel-out/
|
|
48261
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/src/extended_template_checker.mjs
|
|
48236
48262
|
var ExtendedTemplateCheckerImpl = class {
|
|
48237
48263
|
constructor(templateTypeChecker, typeChecker, templateCheckFactories, options) {
|
|
48238
48264
|
var _a2, _b2, _c2, _d2, _e2;
|
|
@@ -48284,7 +48310,7 @@ function assertNever(value) {
|
|
|
48284
48310
|
${value}`);
|
|
48285
48311
|
}
|
|
48286
48312
|
|
|
48287
|
-
// bazel-out/
|
|
48313
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/extended/index.mjs
|
|
48288
48314
|
var ALL_DIAGNOSTIC_FACTORIES = [
|
|
48289
48315
|
factory2,
|
|
48290
48316
|
factory5,
|
|
@@ -48301,7 +48327,7 @@ var SUPPORTED_DIAGNOSTIC_NAMES = /* @__PURE__ */ new Set([
|
|
|
48301
48327
|
...ALL_DIAGNOSTIC_FACTORIES.map((factory10) => factory10.name)
|
|
48302
48328
|
]);
|
|
48303
48329
|
|
|
48304
|
-
// bazel-out/
|
|
48330
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/typecheck/template_semantics/src/template_semantics_checker.mjs
|
|
48305
48331
|
var import_typescript117 = __toESM(require("typescript"), 1);
|
|
48306
48332
|
var TemplateSemanticsCheckerImpl = class {
|
|
48307
48333
|
constructor(templateTypeChecker) {
|
|
@@ -48391,7 +48417,7 @@ function unwrapAstWithSource(ast) {
|
|
|
48391
48417
|
return ast instanceof ASTWithSource ? ast.ast : ast;
|
|
48392
48418
|
}
|
|
48393
48419
|
|
|
48394
|
-
// bazel-out/
|
|
48420
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/rules/initializer_api_usage_rule.mjs
|
|
48395
48421
|
var import_typescript118 = __toESM(require("typescript"), 1);
|
|
48396
48422
|
var APIS_TO_CHECK = [
|
|
48397
48423
|
INPUT_INITIALIZER_FN,
|
|
@@ -48442,7 +48468,7 @@ var InitializerApiUsageRule = class {
|
|
|
48442
48468
|
}
|
|
48443
48469
|
};
|
|
48444
48470
|
|
|
48445
|
-
// bazel-out/
|
|
48471
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/validation/src/source_file_validator.mjs
|
|
48446
48472
|
var SourceFileValidator = class {
|
|
48447
48473
|
constructor(reflector, importedSymbolsTracker) {
|
|
48448
48474
|
this.rules = [new InitializerApiUsageRule(reflector, importedSymbolsTracker)];
|
|
@@ -48480,7 +48506,7 @@ var SourceFileValidator = class {
|
|
|
48480
48506
|
}
|
|
48481
48507
|
};
|
|
48482
48508
|
|
|
48483
|
-
// bazel-out/
|
|
48509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/core_version.mjs
|
|
48484
48510
|
function coreHasSymbol(program, symbol) {
|
|
48485
48511
|
const checker = program.getTypeChecker();
|
|
48486
48512
|
for (const sf of program.getSourceFiles().filter(isMaybeCore)) {
|
|
@@ -48499,7 +48525,7 @@ function isMaybeCore(sf) {
|
|
|
48499
48525
|
return sf.isDeclarationFile && sf.fileName.includes("@angular/core") && sf.fileName.endsWith("index.d.ts");
|
|
48500
48526
|
}
|
|
48501
48527
|
|
|
48502
|
-
// bazel-out/
|
|
48528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/feature_detection.mjs
|
|
48503
48529
|
var import_semver = __toESM(require_semver2(), 1);
|
|
48504
48530
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
48505
48531
|
if (coreVersion === `0.0.0-${"PLACEHOLDER"}`) {
|
|
@@ -48508,7 +48534,7 @@ function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
|
48508
48534
|
return import_semver.default.satisfies(coreVersion, minVersion);
|
|
48509
48535
|
}
|
|
48510
48536
|
|
|
48511
|
-
// bazel-out/
|
|
48537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/compiler.mjs
|
|
48512
48538
|
var CompilationTicketKind;
|
|
48513
48539
|
(function(CompilationTicketKind2) {
|
|
48514
48540
|
CompilationTicketKind2[CompilationTicketKind2["Fresh"] = 0] = "Fresh";
|
|
@@ -49291,7 +49317,7 @@ function versionMapFromProgram(program, driver) {
|
|
|
49291
49317
|
return versions;
|
|
49292
49318
|
}
|
|
49293
49319
|
|
|
49294
|
-
// bazel-out/
|
|
49320
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/core/src/host.mjs
|
|
49295
49321
|
var import_typescript121 = __toESM(require("typescript"), 1);
|
|
49296
49322
|
var DelegatingCompilerHost2 = class {
|
|
49297
49323
|
get jsDocParsingMode() {
|
|
@@ -49430,7 +49456,7 @@ var NgCompilerHost = class extends DelegatingCompilerHost2 {
|
|
|
49430
49456
|
}
|
|
49431
49457
|
};
|
|
49432
49458
|
|
|
49433
|
-
// bazel-out/
|
|
49459
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/program.mjs
|
|
49434
49460
|
var NgtscProgram = class {
|
|
49435
49461
|
constructor(rootNames, options, delegateHost, oldProgram) {
|
|
49436
49462
|
this.options = options;
|
|
@@ -49576,6 +49602,7 @@ var NgtscProgram = class {
|
|
|
49576
49602
|
};
|
|
49577
49603
|
}
|
|
49578
49604
|
}
|
|
49605
|
+
untagAllTsFiles(this.tsProgram);
|
|
49579
49606
|
const forceEmit = (_a2 = opts == null ? void 0 : opts.forceEmit) != null ? _a2 : false;
|
|
49580
49607
|
this.compiler.perfRecorder.memory(PerfCheckpoint.PreEmit);
|
|
49581
49608
|
const res = this.compiler.perfRecorder.inPhase(PerfPhase.TypeScriptEmit, () => {
|
|
@@ -49656,18 +49683,18 @@ function mergeEmitResults(emitResults) {
|
|
|
49656
49683
|
return { diagnostics, emitSkipped, emittedFiles };
|
|
49657
49684
|
}
|
|
49658
49685
|
|
|
49659
|
-
// bazel-out/
|
|
49686
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/program.mjs
|
|
49660
49687
|
function createProgram({ rootNames, options, host, oldProgram }) {
|
|
49661
49688
|
return new NgtscProgram(rootNames, options, host, oldProgram);
|
|
49662
49689
|
}
|
|
49663
49690
|
|
|
49664
|
-
// bazel-out/
|
|
49691
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_compile.mjs
|
|
49665
49692
|
var import_typescript125 = __toESM(require("typescript"), 1);
|
|
49666
49693
|
|
|
49667
|
-
// bazel-out/
|
|
49694
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/transformers/util.mjs
|
|
49668
49695
|
var import_typescript124 = __toESM(require("typescript"), 1);
|
|
49669
49696
|
|
|
49670
|
-
// bazel-out/
|
|
49697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
|
|
49671
49698
|
var GLOBAL_DEFS_FOR_TERSER = {
|
|
49672
49699
|
ngDevMode: false,
|
|
49673
49700
|
ngI18nClosureMode: false
|
|
@@ -49676,7 +49703,7 @@ var GLOBAL_DEFS_FOR_TERSER_WITH_AOT = __spreadProps(__spreadValues({}, GLOBAL_DE
|
|
|
49676
49703
|
ngJitMode: false
|
|
49677
49704
|
});
|
|
49678
49705
|
|
|
49679
|
-
// bazel-out/
|
|
49706
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/logger.mjs
|
|
49680
49707
|
var LogLevel;
|
|
49681
49708
|
(function(LogLevel2) {
|
|
49682
49709
|
LogLevel2[LogLevel2["debug"] = 0] = "debug";
|
|
@@ -49685,7 +49712,7 @@ var LogLevel;
|
|
|
49685
49712
|
LogLevel2[LogLevel2["error"] = 3] = "error";
|
|
49686
49713
|
})(LogLevel || (LogLevel = {}));
|
|
49687
49714
|
|
|
49688
|
-
// bazel-out/
|
|
49715
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/logging/src/console_logger.mjs
|
|
49689
49716
|
var RESET = "\x1B[0m";
|
|
49690
49717
|
var RED = "\x1B[31m";
|
|
49691
49718
|
var YELLOW = "\x1B[33m";
|
|
@@ -49694,18 +49721,18 @@ var DEBUG = `${BLUE}Debug:${RESET}`;
|
|
|
49694
49721
|
var WARN = `${YELLOW}Warning:${RESET}`;
|
|
49695
49722
|
var ERROR = `${RED}Error:${RESET}`;
|
|
49696
49723
|
|
|
49697
|
-
// bazel-out/
|
|
49724
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
49698
49725
|
setFileSystem(new NodeJSFileSystem());
|
|
49699
49726
|
|
|
49700
|
-
// bazel-out/
|
|
49727
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
49701
49728
|
var import_fs2 = require("fs");
|
|
49702
49729
|
var import_path8 = require("path");
|
|
49703
49730
|
var import_typescript138 = __toESM(require("typescript"), 1);
|
|
49704
49731
|
|
|
49705
|
-
// bazel-out/
|
|
49732
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
49706
49733
|
var import_typescript127 = __toESM(require("typescript"), 1);
|
|
49707
49734
|
|
|
49708
|
-
// bazel-out/
|
|
49735
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
49709
49736
|
var import_path4 = require("path");
|
|
49710
49737
|
var import_typescript126 = __toESM(require("typescript"), 1);
|
|
49711
49738
|
var ImportManager2 = class {
|
|
@@ -49889,7 +49916,7 @@ ${text2}`;
|
|
|
49889
49916
|
}
|
|
49890
49917
|
};
|
|
49891
49918
|
|
|
49892
|
-
// bazel-out/
|
|
49919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
49893
49920
|
var ChangeTracker = class {
|
|
49894
49921
|
constructor(_printer, _importRemapper) {
|
|
49895
49922
|
__publicField(this, "_printer");
|
|
@@ -49952,7 +49979,7 @@ function normalizePath(path4) {
|
|
|
49952
49979
|
return path4.replace(/\\/g, "/");
|
|
49953
49980
|
}
|
|
49954
49981
|
|
|
49955
|
-
// bazel-out/
|
|
49982
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
49956
49983
|
var import_core19 = require("@angular-devkit/core");
|
|
49957
49984
|
function getProjectTsConfigPaths(tree) {
|
|
49958
49985
|
return __async(this, null, function* () {
|
|
@@ -50032,11 +50059,11 @@ function getWorkspace(tree) {
|
|
|
50032
50059
|
});
|
|
50033
50060
|
}
|
|
50034
50061
|
|
|
50035
|
-
// bazel-out/
|
|
50062
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50036
50063
|
var import_path5 = require("path");
|
|
50037
50064
|
var import_typescript129 = __toESM(require("typescript"), 1);
|
|
50038
50065
|
|
|
50039
|
-
// bazel-out/
|
|
50066
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
50040
50067
|
var path3 = __toESM(require("path"), 1);
|
|
50041
50068
|
var import_typescript128 = __toESM(require("typescript"), 1);
|
|
50042
50069
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -50053,7 +50080,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
50053
50080
|
return import_typescript128.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
50054
50081
|
}
|
|
50055
50082
|
|
|
50056
|
-
// bazel-out/
|
|
50083
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
50057
50084
|
function createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles, optionOverrides) {
|
|
50058
50085
|
tsconfigPath = (0, import_path5.resolve)(basePath, tsconfigPath);
|
|
50059
50086
|
const parsed = parseTsconfigFile(tsconfigPath, (0, import_path5.dirname)(tsconfigPath));
|
|
@@ -50082,13 +50109,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
50082
50109
|
return !(0, import_path5.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
50083
50110
|
}
|
|
50084
50111
|
|
|
50085
|
-
// bazel-out/
|
|
50112
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50086
50113
|
var import_typescript134 = __toESM(require("typescript"), 1);
|
|
50087
50114
|
|
|
50088
|
-
// bazel-out/
|
|
50115
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50089
50116
|
var import_typescript131 = __toESM(require("typescript"), 1);
|
|
50090
50117
|
|
|
50091
|
-
// bazel-out/
|
|
50118
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
50092
50119
|
var import_typescript130 = __toESM(require("typescript"), 1);
|
|
50093
50120
|
function getImportOfIdentifier(typeChecker, node) {
|
|
50094
50121
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -50139,7 +50166,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
50139
50166
|
});
|
|
50140
50167
|
}
|
|
50141
50168
|
|
|
50142
|
-
// bazel-out/
|
|
50169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
50143
50170
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
50144
50171
|
if (!import_typescript131.default.isCallExpression(decorator.expression) || !import_typescript131.default.isIdentifier(decorator.expression.expression)) {
|
|
50145
50172
|
return null;
|
|
@@ -50148,7 +50175,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
50148
50175
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
50149
50176
|
}
|
|
50150
50177
|
|
|
50151
|
-
// bazel-out/
|
|
50178
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
50152
50179
|
function getAngularDecorators2(typeChecker, decorators) {
|
|
50153
50180
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
50154
50181
|
node,
|
|
@@ -50158,7 +50185,7 @@ function getAngularDecorators2(typeChecker, decorators) {
|
|
|
50158
50185
|
}));
|
|
50159
50186
|
}
|
|
50160
50187
|
|
|
50161
|
-
// bazel-out/
|
|
50188
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
50162
50189
|
var import_typescript132 = __toESM(require("typescript"), 1);
|
|
50163
50190
|
function closestNode(node, predicate) {
|
|
50164
50191
|
let current = node.parent;
|
|
@@ -50171,7 +50198,7 @@ function closestNode(node, predicate) {
|
|
|
50171
50198
|
return null;
|
|
50172
50199
|
}
|
|
50173
50200
|
|
|
50174
|
-
// bazel-out/
|
|
50201
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/util.mjs
|
|
50175
50202
|
var import_path6 = require("path");
|
|
50176
50203
|
var import_typescript133 = __toESM(require("typescript"), 1);
|
|
50177
50204
|
var UniqueItemTracker = class {
|
|
@@ -50349,7 +50376,7 @@ function isClassReferenceInAngularModule(node, className, moduleName, typeChecke
|
|
|
50349
50376
|
}));
|
|
50350
50377
|
}
|
|
50351
50378
|
|
|
50352
|
-
// bazel-out/
|
|
50379
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/prune-modules.mjs
|
|
50353
50380
|
function pruneNgModules(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles) {
|
|
50354
50381
|
const filesToRemove = /* @__PURE__ */ new Set();
|
|
50355
50382
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
@@ -50548,14 +50575,14 @@ function findNgModuleDecorator(node, typeChecker) {
|
|
|
50548
50575
|
return decorators.find((decorator) => decorator.name === "NgModule") || null;
|
|
50549
50576
|
}
|
|
50550
50577
|
|
|
50551
|
-
// bazel-out/
|
|
50578
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
50552
50579
|
var import_path7 = require("path");
|
|
50553
50580
|
var import_typescript137 = __toESM(require("typescript"), 1);
|
|
50554
50581
|
|
|
50555
|
-
// bazel-out/
|
|
50582
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
50556
50583
|
var import_typescript136 = __toESM(require("typescript"), 1);
|
|
50557
50584
|
|
|
50558
|
-
// bazel-out/
|
|
50585
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/symbol.mjs
|
|
50559
50586
|
var import_typescript135 = __toESM(require("typescript"), 1);
|
|
50560
50587
|
function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
50561
50588
|
var _a2, _b2;
|
|
@@ -50564,7 +50591,7 @@ function isReferenceToImport(typeChecker, node, importSpecifier) {
|
|
|
50564
50591
|
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
50592
|
}
|
|
50566
50593
|
|
|
50567
|
-
// bazel-out/
|
|
50594
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/to-standalone.mjs
|
|
50568
50595
|
function toStandalone(sourceFiles, program, printer, fileImportRemapper, componentImportRemapper) {
|
|
50569
50596
|
const templateTypeChecker = program.compiler.getTemplateTypeChecker();
|
|
50570
50597
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -50934,7 +50961,7 @@ function isStandaloneDeclaration(node, declarationsInMigration, templateTypeChec
|
|
|
50934
50961
|
return metadata != null && metadata.isStandalone;
|
|
50935
50962
|
}
|
|
50936
50963
|
|
|
50937
|
-
// bazel-out/
|
|
50964
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/standalone-bootstrap.mjs
|
|
50938
50965
|
function toStandaloneBootstrap(program, host, basePath, rootFileNames, sourceFiles, printer, importRemapper, referenceLookupExcludedFiles, componentImportRemapper) {
|
|
50939
50966
|
const tracker = new ChangeTracker(printer, importRemapper);
|
|
50940
50967
|
const typeChecker = program.getTsProgram().getTypeChecker();
|
|
@@ -51311,7 +51338,7 @@ function hasImport(program, rootFileNames, moduleName) {
|
|
|
51311
51338
|
return false;
|
|
51312
51339
|
}
|
|
51313
51340
|
|
|
51314
|
-
// bazel-out/
|
|
51341
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/standalone-migration/index.mjs
|
|
51315
51342
|
var MigrationMode;
|
|
51316
51343
|
(function(MigrationMode2) {
|
|
51317
51344
|
MigrationMode2["toStandalone"] = "convert-to-standalone";
|