@angular/core 17.2.1 → 17.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/application/application_ref.mjs +18 -5
- package/esm2022/src/cached_injector_service.mjs +49 -0
- package/esm2022/src/core_private_export.mjs +2 -1
- package/esm2022/src/defer/instructions.mjs +29 -3
- package/esm2022/src/defer/interfaces.mjs +1 -1
- package/esm2022/src/metadata/di.mjs +1 -1
- package/esm2022/src/render3/after_render_hooks.mjs +8 -5
- package/esm2022/src/render3/component_ref.mjs +3 -3
- package/esm2022/src/render3/instructions/shared.mjs +6 -3
- package/esm2022/src/render3/queue_state_update.mjs +41 -0
- package/esm2022/src/render3/reactivity/computed.mjs +3 -1
- package/esm2022/src/render3/reactivity/effect.mjs +3 -1
- package/esm2022/src/render3/reactivity/signal.mjs +3 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +223 -107
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +37 -10
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +184 -175
- package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
- package/schematics/migrations/compiler-options/bundle.js +13 -13
- package/schematics/migrations/transfer-state/bundle.js +13 -13
- package/schematics/ng-generate/control-flow-migration/bundle.js +197 -188
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +3372 -3237
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
|
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
63
63
|
});
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
// bazel-out/
|
|
66
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
|
|
67
67
|
var control_flow_migration_exports = {};
|
|
68
68
|
__export(control_flow_migration_exports, {
|
|
69
69
|
default: () => control_flow_migration_default
|
|
@@ -72,22 +72,22 @@ module.exports = __toCommonJS(control_flow_migration_exports);
|
|
|
72
72
|
var import_schematics = require("@angular-devkit/schematics");
|
|
73
73
|
var import_path3 = require("path");
|
|
74
74
|
|
|
75
|
-
// bazel-out/
|
|
75
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
76
76
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
77
77
|
|
|
78
|
-
// bazel-out/
|
|
78
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
79
79
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
80
80
|
|
|
81
|
-
// bazel-out/
|
|
81
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
82
82
|
function normalizePath(path2) {
|
|
83
83
|
return path2.replace(/\\/g, "/");
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
// bazel-out/
|
|
86
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
87
87
|
var import_path = require("path");
|
|
88
88
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
89
89
|
|
|
90
|
-
// bazel-out/
|
|
90
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
91
91
|
var path = __toESM(require("path"), 1);
|
|
92
92
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
93
93
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -104,7 +104,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
104
104
|
return import_typescript3.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
// bazel-out/
|
|
107
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
108
108
|
function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
|
|
109
109
|
const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
|
|
110
110
|
return import_typescript4.default.createProgram(rootNames, options, host);
|
|
@@ -137,7 +137,7 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
137
137
|
return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
// bazel-out/
|
|
140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
141
141
|
var _SELECTOR_REGEXP = new RegExp(
|
|
142
142
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
143
143
|
"g"
|
|
@@ -445,7 +445,7 @@ var SelectorContext = class {
|
|
|
445
445
|
}
|
|
446
446
|
};
|
|
447
447
|
|
|
448
|
-
// bazel-out/
|
|
448
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
449
449
|
var ViewEncapsulation;
|
|
450
450
|
(function(ViewEncapsulation2) {
|
|
451
451
|
ViewEncapsulation2[ViewEncapsulation2["Emulated"] = 0] = "Emulated";
|
|
@@ -513,7 +513,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
513
513
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
514
514
|
}
|
|
515
515
|
|
|
516
|
-
// bazel-out/
|
|
516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
517
517
|
var textEncoder;
|
|
518
518
|
function computeDigest(message) {
|
|
519
519
|
return sha1(serializeNodes(message.nodes).join("") + `[${message.meaning}]`);
|
|
@@ -753,7 +753,7 @@ function wordAt(bytes, index, endian) {
|
|
|
753
753
|
return word;
|
|
754
754
|
}
|
|
755
755
|
|
|
756
|
-
// bazel-out/
|
|
756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
757
757
|
var TypeModifier;
|
|
758
758
|
(function(TypeModifier2) {
|
|
759
759
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -1712,7 +1712,7 @@ function serializeTags(tags) {
|
|
|
1712
1712
|
return out;
|
|
1713
1713
|
}
|
|
1714
1714
|
|
|
1715
|
-
// bazel-out/
|
|
1715
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1716
1716
|
var CONSTANT_PREFIX = "_c";
|
|
1717
1717
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1718
1718
|
var KEY_CONTEXT = {};
|
|
@@ -1900,7 +1900,7 @@ function isLongStringLiteral(expr) {
|
|
|
1900
1900
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
1901
1901
|
}
|
|
1902
1902
|
|
|
1903
|
-
// bazel-out/
|
|
1903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
1904
1904
|
var CORE = "@angular/core";
|
|
1905
1905
|
var _Identifiers = class {
|
|
1906
1906
|
};
|
|
@@ -2566,7 +2566,7 @@ var Identifiers = _Identifiers;
|
|
|
2566
2566
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
2567
2567
|
})();
|
|
2568
2568
|
|
|
2569
|
-
// bazel-out/
|
|
2569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2570
2570
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2571
2571
|
function dashCaseToCamelCase(input) {
|
|
2572
2572
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2654,7 +2654,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
2654
2654
|
return [truthy, falsy];
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
-
// bazel-out/
|
|
2657
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2658
2658
|
var VERSION = 3;
|
|
2659
2659
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2660
2660
|
var SourceMapGenerator = class {
|
|
@@ -2783,7 +2783,7 @@ function toBase64Digit(value) {
|
|
|
2783
2783
|
return B64_DIGITS[value];
|
|
2784
2784
|
}
|
|
2785
2785
|
|
|
2786
|
-
// bazel-out/
|
|
2786
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2787
2787
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2788
2788
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2789
2789
|
var _INDENT_WITH = " ";
|
|
@@ -3271,7 +3271,7 @@ function _createIndent(count) {
|
|
|
3271
3271
|
return res;
|
|
3272
3272
|
}
|
|
3273
3273
|
|
|
3274
|
-
// bazel-out/
|
|
3274
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3275
3275
|
function typeWithParameters(type, numParams) {
|
|
3276
3276
|
if (numParams === 0) {
|
|
3277
3277
|
return expressionType(type);
|
|
@@ -3336,7 +3336,7 @@ function generateForwardRef(expr) {
|
|
|
3336
3336
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
3337
3337
|
}
|
|
3338
3338
|
|
|
3339
|
-
// bazel-out/
|
|
3339
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3340
3340
|
var R3FactoryDelegateType;
|
|
3341
3341
|
(function(R3FactoryDelegateType2) {
|
|
3342
3342
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3481,7 +3481,7 @@ function getInjectFn(target) {
|
|
|
3481
3481
|
}
|
|
3482
3482
|
}
|
|
3483
3483
|
|
|
3484
|
-
// bazel-out/
|
|
3484
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
3485
3485
|
var TagContentType;
|
|
3486
3486
|
(function(TagContentType2) {
|
|
3487
3487
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -3518,7 +3518,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
3518
3518
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
3519
3519
|
}
|
|
3520
3520
|
|
|
3521
|
-
// bazel-out/
|
|
3521
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3522
3522
|
var Comment = class {
|
|
3523
3523
|
constructor(value, sourceSpan) {
|
|
3524
3524
|
this.value = value;
|
|
@@ -3899,7 +3899,7 @@ function visitAll(visitor, nodes) {
|
|
|
3899
3899
|
return result;
|
|
3900
3900
|
}
|
|
3901
3901
|
|
|
3902
|
-
// bazel-out/
|
|
3902
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
3903
3903
|
var Message = class {
|
|
3904
3904
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
3905
3905
|
this.nodes = nodes;
|
|
@@ -4037,7 +4037,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4037
4037
|
}
|
|
4038
4038
|
};
|
|
4039
4039
|
|
|
4040
|
-
// bazel-out/
|
|
4040
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4041
4041
|
var _Visitor = class {
|
|
4042
4042
|
visitTag(tag) {
|
|
4043
4043
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4065,12 +4065,12 @@ ${doctype.dtd}
|
|
|
4065
4065
|
};
|
|
4066
4066
|
var _visitor = new _Visitor();
|
|
4067
4067
|
|
|
4068
|
-
// bazel-out/
|
|
4068
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4069
4069
|
function toPublicName(internalName) {
|
|
4070
4070
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4071
4071
|
}
|
|
4072
4072
|
|
|
4073
|
-
// bazel-out/
|
|
4073
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4074
4074
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
4075
4075
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
4076
4076
|
var I18N_ATTR = "i18n";
|
|
@@ -4172,7 +4172,7 @@ function declareI18nVariable(variable2) {
|
|
|
4172
4172
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
4173
4173
|
}
|
|
4174
4174
|
|
|
4175
|
-
// bazel-out/
|
|
4175
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4176
4176
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4177
4177
|
var TEMPORARY_NAME = "_t";
|
|
4178
4178
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4418,7 +4418,7 @@ function getInstructionStatements(instructions) {
|
|
|
4418
4418
|
return statements;
|
|
4419
4419
|
}
|
|
4420
4420
|
|
|
4421
|
-
// bazel-out/
|
|
4421
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4422
4422
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4423
4423
|
let result = null;
|
|
4424
4424
|
const factoryMeta = {
|
|
@@ -4503,7 +4503,7 @@ function createFactoryFunction(type) {
|
|
|
4503
4503
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
4504
4504
|
}
|
|
4505
4505
|
|
|
4506
|
-
// bazel-out/
|
|
4506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4507
4507
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4508
4508
|
/^\s*$/,
|
|
4509
4509
|
/[<>]/,
|
|
@@ -4525,7 +4525,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4525
4525
|
}
|
|
4526
4526
|
}
|
|
4527
4527
|
|
|
4528
|
-
// bazel-out/
|
|
4528
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
4529
4529
|
var InterpolationConfig = class {
|
|
4530
4530
|
static fromArray(markers) {
|
|
4531
4531
|
if (!markers) {
|
|
@@ -4542,7 +4542,7 @@ var InterpolationConfig = class {
|
|
|
4542
4542
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4543
4543
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
4544
4544
|
|
|
4545
|
-
// bazel-out/
|
|
4545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4546
4546
|
var $EOF = 0;
|
|
4547
4547
|
var $BSPACE = 8;
|
|
4548
4548
|
var $TAB = 9;
|
|
@@ -4624,7 +4624,7 @@ function isQuote(code) {
|
|
|
4624
4624
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4625
4625
|
}
|
|
4626
4626
|
|
|
4627
|
-
// bazel-out/
|
|
4627
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4628
4628
|
var ParseLocation = class {
|
|
4629
4629
|
constructor(file, offset, line, col) {
|
|
4630
4630
|
this.file = file;
|
|
@@ -4771,7 +4771,7 @@ function sanitizeIdentifier(name) {
|
|
|
4771
4771
|
return name.replace(/\W/g, "_");
|
|
4772
4772
|
}
|
|
4773
4773
|
|
|
4774
|
-
// bazel-out/
|
|
4774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
4775
4775
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
4776
4776
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
4777
4777
|
constructor() {
|
|
@@ -4864,7 +4864,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
4864
4864
|
}
|
|
4865
4865
|
};
|
|
4866
4866
|
|
|
4867
|
-
// bazel-out/
|
|
4867
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
4868
4868
|
var policy;
|
|
4869
4869
|
function getPolicy() {
|
|
4870
4870
|
if (policy === void 0) {
|
|
@@ -4902,7 +4902,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
4902
4902
|
return fn2.bind(_global);
|
|
4903
4903
|
}
|
|
4904
4904
|
|
|
4905
|
-
// bazel-out/
|
|
4905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
4906
4906
|
var JitEvaluator = class {
|
|
4907
4907
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
4908
4908
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -4993,7 +4993,7 @@ function isUseStrictStatement(statement) {
|
|
|
4993
4993
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
4994
4994
|
}
|
|
4995
4995
|
|
|
4996
|
-
// bazel-out/
|
|
4996
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
4997
4997
|
function compileInjector(meta) {
|
|
4998
4998
|
const definitionMap = new DefinitionMap();
|
|
4999
4999
|
if (meta.providers !== null) {
|
|
@@ -5010,7 +5010,7 @@ function createInjectorType(meta) {
|
|
|
5010
5010
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5011
5011
|
}
|
|
5012
5012
|
|
|
5013
|
-
// bazel-out/
|
|
5013
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5014
5014
|
var R3JitReflector = class {
|
|
5015
5015
|
constructor(context) {
|
|
5016
5016
|
this.context = context;
|
|
@@ -5026,7 +5026,7 @@ var R3JitReflector = class {
|
|
|
5026
5026
|
}
|
|
5027
5027
|
};
|
|
5028
5028
|
|
|
5029
|
-
// bazel-out/
|
|
5029
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5030
5030
|
var R3SelectorScopeMode;
|
|
5031
5031
|
(function(R3SelectorScopeMode2) {
|
|
5032
5032
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5167,7 +5167,7 @@ function tupleOfTypes(types) {
|
|
|
5167
5167
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5168
5168
|
}
|
|
5169
5169
|
|
|
5170
|
-
// bazel-out/
|
|
5170
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5171
5171
|
function compilePipeFromMetadata(metadata) {
|
|
5172
5172
|
const definitionMapValues = [];
|
|
5173
5173
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5188,7 +5188,7 @@ function createPipeType(metadata) {
|
|
|
5188
5188
|
]));
|
|
5189
5189
|
}
|
|
5190
5190
|
|
|
5191
|
-
// bazel-out/
|
|
5191
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5192
5192
|
var R3TemplateDependencyKind;
|
|
5193
5193
|
(function(R3TemplateDependencyKind2) {
|
|
5194
5194
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5196,7 +5196,7 @@ var R3TemplateDependencyKind;
|
|
|
5196
5196
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5197
5197
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5198
5198
|
|
|
5199
|
-
// bazel-out/
|
|
5199
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
5200
5200
|
var ParserError = class {
|
|
5201
5201
|
constructor(message, input, errLocation, ctxLocation) {
|
|
5202
5202
|
this.input = input;
|
|
@@ -5863,7 +5863,7 @@ var BoundElementProperty = class {
|
|
|
5863
5863
|
}
|
|
5864
5864
|
};
|
|
5865
5865
|
|
|
5866
|
-
// bazel-out/
|
|
5866
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
5867
5867
|
var _EventHandlerVars = class {
|
|
5868
5868
|
};
|
|
5869
5869
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -6554,7 +6554,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6554
6554
|
}
|
|
6555
6555
|
};
|
|
6556
6556
|
|
|
6557
|
-
// bazel-out/
|
|
6557
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6558
6558
|
var _SECURITY_SCHEMA;
|
|
6559
6559
|
function SECURITY_SCHEMA() {
|
|
6560
6560
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6612,7 +6612,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6612
6612
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6613
6613
|
}
|
|
6614
6614
|
|
|
6615
|
-
// bazel-out/
|
|
6615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6616
6616
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6617
6617
|
"inherit",
|
|
6618
6618
|
"initial",
|
|
@@ -7084,7 +7084,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7084
7084
|
}
|
|
7085
7085
|
}
|
|
7086
7086
|
|
|
7087
|
-
// bazel-out/
|
|
7087
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7088
7088
|
var OpKind;
|
|
7089
7089
|
(function(OpKind2) {
|
|
7090
7090
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -7247,7 +7247,7 @@ var TemplateKind;
|
|
|
7247
7247
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
7248
7248
|
})(TemplateKind || (TemplateKind = {}));
|
|
7249
7249
|
|
|
7250
|
-
// bazel-out/
|
|
7250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7251
7251
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7252
7252
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7253
7253
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -7279,7 +7279,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
7279
7279
|
return expr[UsesVarOffset] === true;
|
|
7280
7280
|
}
|
|
7281
7281
|
|
|
7282
|
-
// bazel-out/
|
|
7282
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
7283
7283
|
function createStatementOp(statement) {
|
|
7284
7284
|
return __spreadValues({
|
|
7285
7285
|
kind: OpKind.Statement,
|
|
@@ -7301,7 +7301,7 @@ var NEW_OP = {
|
|
|
7301
7301
|
next: null
|
|
7302
7302
|
};
|
|
7303
7303
|
|
|
7304
|
-
// bazel-out/
|
|
7304
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
7305
7305
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
7306
7306
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
7307
7307
|
kind: OpKind.InterpolateText,
|
|
@@ -7482,7 +7482,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
7482
7482
|
}, NEW_OP);
|
|
7483
7483
|
}
|
|
7484
7484
|
|
|
7485
|
-
// bazel-out/
|
|
7485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7486
7486
|
var _a;
|
|
7487
7487
|
var _b;
|
|
7488
7488
|
var _c;
|
|
@@ -8344,7 +8344,7 @@ function isStringLiteral(expr) {
|
|
|
8344
8344
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
8345
8345
|
}
|
|
8346
8346
|
|
|
8347
|
-
// bazel-out/
|
|
8347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
8348
8348
|
var _OpList = class {
|
|
8349
8349
|
constructor() {
|
|
8350
8350
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -8535,14 +8535,14 @@ var OpList = _OpList;
|
|
|
8535
8535
|
_OpList.nextListId = 0;
|
|
8536
8536
|
})();
|
|
8537
8537
|
|
|
8538
|
-
// bazel-out/
|
|
8538
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
8539
8539
|
var SlotHandle = class {
|
|
8540
8540
|
constructor() {
|
|
8541
8541
|
this.slot = null;
|
|
8542
8542
|
}
|
|
8543
8543
|
};
|
|
8544
8544
|
|
|
8545
|
-
// bazel-out/
|
|
8545
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
8546
8546
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
8547
8547
|
OpKind.Element,
|
|
8548
8548
|
OpKind.ElementStart,
|
|
@@ -8843,7 +8843,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
8843
8843
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
8844
8844
|
}
|
|
8845
8845
|
|
|
8846
|
-
// bazel-out/
|
|
8846
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
8847
8847
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
8848
8848
|
return __spreadValues(__spreadValues({
|
|
8849
8849
|
kind: OpKind.HostProperty,
|
|
@@ -8857,10 +8857,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
8857
8857
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
8858
8858
|
}
|
|
8859
8859
|
|
|
8860
|
-
// bazel-out/
|
|
8860
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
8861
8861
|
var CTX_REF = "CTX_REF_MARKER";
|
|
8862
8862
|
|
|
8863
|
-
// bazel-out/
|
|
8863
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
8864
8864
|
var CompilationJobKind;
|
|
8865
8865
|
(function(CompilationJobKind2) {
|
|
8866
8866
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -8968,7 +8968,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
8968
8968
|
}
|
|
8969
8969
|
};
|
|
8970
8970
|
|
|
8971
|
-
// bazel-out/
|
|
8971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
8972
8972
|
function deleteAnyCasts(job) {
|
|
8973
8973
|
for (const unit of job.units) {
|
|
8974
8974
|
for (const op of unit.ops()) {
|
|
@@ -8986,7 +8986,7 @@ function removeAnys(e) {
|
|
|
8986
8986
|
return e;
|
|
8987
8987
|
}
|
|
8988
8988
|
|
|
8989
|
-
// bazel-out/
|
|
8989
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
8990
8990
|
function applyI18nExpressions(job) {
|
|
8991
8991
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
8992
8992
|
for (const unit of job.units) {
|
|
@@ -9029,7 +9029,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
9029
9029
|
return false;
|
|
9030
9030
|
}
|
|
9031
9031
|
|
|
9032
|
-
// bazel-out/
|
|
9032
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
9033
9033
|
function assignI18nSlotDependencies(job) {
|
|
9034
9034
|
for (const unit of job.units) {
|
|
9035
9035
|
let updateOp = unit.update.head;
|
|
@@ -9074,7 +9074,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
9074
9074
|
}
|
|
9075
9075
|
}
|
|
9076
9076
|
|
|
9077
|
-
// bazel-out/
|
|
9077
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
9078
9078
|
function createOpXrefMap(unit) {
|
|
9079
9079
|
const map = /* @__PURE__ */ new Map();
|
|
9080
9080
|
for (const op of unit.create) {
|
|
@@ -9089,7 +9089,7 @@ function createOpXrefMap(unit) {
|
|
|
9089
9089
|
return map;
|
|
9090
9090
|
}
|
|
9091
9091
|
|
|
9092
|
-
// bazel-out/
|
|
9092
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
9093
9093
|
function extractAttributes(job) {
|
|
9094
9094
|
for (const unit of job.units) {
|
|
9095
9095
|
const elements = createOpXrefMap(unit);
|
|
@@ -9218,7 +9218,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
9218
9218
|
}
|
|
9219
9219
|
}
|
|
9220
9220
|
|
|
9221
|
-
// bazel-out/
|
|
9221
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
9222
9222
|
function lookupElement2(elements, xref) {
|
|
9223
9223
|
const el = elements.get(xref);
|
|
9224
9224
|
if (el === void 0) {
|
|
@@ -9275,7 +9275,7 @@ function specializeBindings(job) {
|
|
|
9275
9275
|
}
|
|
9276
9276
|
}
|
|
9277
9277
|
|
|
9278
|
-
// bazel-out/
|
|
9278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9279
9279
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9280
9280
|
Identifiers.attribute,
|
|
9281
9281
|
Identifiers.classProp,
|
|
@@ -9343,7 +9343,7 @@ function chainOperationsInList(opList) {
|
|
|
9343
9343
|
}
|
|
9344
9344
|
}
|
|
9345
9345
|
|
|
9346
|
-
// bazel-out/
|
|
9346
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
9347
9347
|
function collapseSingletonInterpolations(job) {
|
|
9348
9348
|
for (const unit of job.units) {
|
|
9349
9349
|
for (const op of unit.update) {
|
|
@@ -9355,7 +9355,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
9355
9355
|
}
|
|
9356
9356
|
}
|
|
9357
9357
|
|
|
9358
|
-
// bazel-out/
|
|
9358
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
9359
9359
|
function generateConditionalExpressions(job) {
|
|
9360
9360
|
for (const unit of job.units) {
|
|
9361
9361
|
for (const op of unit.ops()) {
|
|
@@ -9392,7 +9392,7 @@ function generateConditionalExpressions(job) {
|
|
|
9392
9392
|
}
|
|
9393
9393
|
}
|
|
9394
9394
|
|
|
9395
|
-
// bazel-out/
|
|
9395
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9396
9396
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9397
9397
|
["&&", BinaryOperator.And],
|
|
9398
9398
|
[">", BinaryOperator.Bigger],
|
|
@@ -9443,7 +9443,7 @@ function literalOrArrayLiteral(value) {
|
|
|
9443
9443
|
return literal(value);
|
|
9444
9444
|
}
|
|
9445
9445
|
|
|
9446
|
-
// bazel-out/
|
|
9446
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
9447
9447
|
function collectElementConsts(job) {
|
|
9448
9448
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
9449
9449
|
for (const unit of job.units) {
|
|
@@ -9612,7 +9612,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
9612
9612
|
return literalArr(attrArray);
|
|
9613
9613
|
}
|
|
9614
9614
|
|
|
9615
|
-
// bazel-out/
|
|
9615
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
9616
9616
|
function convertI18nBindings(job) {
|
|
9617
9617
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
9618
9618
|
for (const unit of job.units) {
|
|
@@ -9653,7 +9653,7 @@ function convertI18nBindings(job) {
|
|
|
9653
9653
|
}
|
|
9654
9654
|
}
|
|
9655
9655
|
|
|
9656
|
-
// bazel-out/
|
|
9656
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
|
|
9657
9657
|
function createDeferDepsFns(job) {
|
|
9658
9658
|
var _a2;
|
|
9659
9659
|
for (const unit of job.units) {
|
|
@@ -9693,7 +9693,7 @@ function createDeferDepsFns(job) {
|
|
|
9693
9693
|
}
|
|
9694
9694
|
}
|
|
9695
9695
|
|
|
9696
|
-
// bazel-out/
|
|
9696
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
9697
9697
|
function createI18nContexts(job) {
|
|
9698
9698
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
9699
9699
|
for (const unit of job.units) {
|
|
@@ -9771,7 +9771,7 @@ function createI18nContexts(job) {
|
|
|
9771
9771
|
}
|
|
9772
9772
|
}
|
|
9773
9773
|
|
|
9774
|
-
// bazel-out/
|
|
9774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
9775
9775
|
function deduplicateTextBindings(job) {
|
|
9776
9776
|
const seen = /* @__PURE__ */ new Map();
|
|
9777
9777
|
for (const unit of job.units) {
|
|
@@ -9793,7 +9793,7 @@ function deduplicateTextBindings(job) {
|
|
|
9793
9793
|
}
|
|
9794
9794
|
}
|
|
9795
9795
|
|
|
9796
|
-
// bazel-out/
|
|
9796
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
9797
9797
|
function configureDeferInstructions(job) {
|
|
9798
9798
|
for (const unit of job.units) {
|
|
9799
9799
|
for (const op of unit.create) {
|
|
@@ -9810,7 +9810,7 @@ function configureDeferInstructions(job) {
|
|
|
9810
9810
|
}
|
|
9811
9811
|
}
|
|
9812
9812
|
|
|
9813
|
-
// bazel-out/
|
|
9813
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
9814
9814
|
function resolveDeferTargetNames(job) {
|
|
9815
9815
|
const scopes = /* @__PURE__ */ new Map();
|
|
9816
9816
|
function getScopeForView2(view) {
|
|
@@ -9904,7 +9904,7 @@ var Scope = class {
|
|
|
9904
9904
|
}
|
|
9905
9905
|
};
|
|
9906
9906
|
|
|
9907
|
-
// bazel-out/
|
|
9907
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
9908
9908
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
9909
9909
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
9910
9910
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -9931,7 +9931,7 @@ function collapseEmptyInstructions(job) {
|
|
|
9931
9931
|
}
|
|
9932
9932
|
}
|
|
9933
9933
|
|
|
9934
|
-
// bazel-out/
|
|
9934
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
9935
9935
|
function expandSafeReads(job) {
|
|
9936
9936
|
for (const unit of job.units) {
|
|
9937
9937
|
for (const op of unit.ops()) {
|
|
@@ -10067,7 +10067,7 @@ function ternaryTransform(e) {
|
|
|
10067
10067
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
10068
10068
|
}
|
|
10069
10069
|
|
|
10070
|
-
// bazel-out/
|
|
10070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
10071
10071
|
var ESCAPE = "\uFFFD";
|
|
10072
10072
|
var ELEMENT_MARKER = "#";
|
|
10073
10073
|
var TEMPLATE_MARKER = "*";
|
|
@@ -10203,7 +10203,7 @@ function formatValue(value) {
|
|
|
10203
10203
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
10204
10204
|
}
|
|
10205
10205
|
|
|
10206
|
-
// bazel-out/
|
|
10206
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
10207
10207
|
function generateAdvance(job) {
|
|
10208
10208
|
for (const unit of job.units) {
|
|
10209
10209
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -10235,7 +10235,7 @@ function generateAdvance(job) {
|
|
|
10235
10235
|
}
|
|
10236
10236
|
}
|
|
10237
10237
|
|
|
10238
|
-
// bazel-out/
|
|
10238
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
10239
10239
|
function generateProjectionDefs(job) {
|
|
10240
10240
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
10241
10241
|
const selectors = [];
|
|
@@ -10259,7 +10259,7 @@ function generateProjectionDefs(job) {
|
|
|
10259
10259
|
}
|
|
10260
10260
|
}
|
|
10261
10261
|
|
|
10262
|
-
// bazel-out/
|
|
10262
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
10263
10263
|
function generateVariables(job) {
|
|
10264
10264
|
recursivelyProcessView(job.root, null);
|
|
10265
10265
|
}
|
|
@@ -10353,7 +10353,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
10353
10353
|
return newOps;
|
|
10354
10354
|
}
|
|
10355
10355
|
|
|
10356
|
-
// bazel-out/
|
|
10356
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
10357
10357
|
function collectConstExpressions(job) {
|
|
10358
10358
|
for (const unit of job.units) {
|
|
10359
10359
|
for (const op of unit.ops()) {
|
|
@@ -10367,7 +10367,7 @@ function collectConstExpressions(job) {
|
|
|
10367
10367
|
}
|
|
10368
10368
|
}
|
|
10369
10369
|
|
|
10370
|
-
// bazel-out/
|
|
10370
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
10371
10371
|
var STYLE_DOT = "style.";
|
|
10372
10372
|
var CLASS_DOT = "class.";
|
|
10373
10373
|
var STYLE_BANG = "style!";
|
|
@@ -10425,7 +10425,7 @@ function parseProperty(name) {
|
|
|
10425
10425
|
return { property: property2, suffix };
|
|
10426
10426
|
}
|
|
10427
10427
|
|
|
10428
|
-
// bazel-out/
|
|
10428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
10429
10429
|
function mapLiteral(obj, quoted = false) {
|
|
10430
10430
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
10431
10431
|
key,
|
|
@@ -10434,7 +10434,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
10434
10434
|
})));
|
|
10435
10435
|
}
|
|
10436
10436
|
|
|
10437
|
-
// bazel-out/
|
|
10437
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
10438
10438
|
var IcuSerializerVisitor = class {
|
|
10439
10439
|
visitText(text2) {
|
|
10440
10440
|
return text2.value;
|
|
@@ -10468,7 +10468,7 @@ function serializeIcuNode(icu) {
|
|
|
10468
10468
|
return icu.visit(serializer);
|
|
10469
10469
|
}
|
|
10470
10470
|
|
|
10471
|
-
// bazel-out/
|
|
10471
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
10472
10472
|
var TokenType;
|
|
10473
10473
|
(function(TokenType2) {
|
|
10474
10474
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -10829,7 +10829,7 @@ function parseIntAutoRadix(text2) {
|
|
|
10829
10829
|
return result;
|
|
10830
10830
|
}
|
|
10831
10831
|
|
|
10832
|
-
// bazel-out/
|
|
10832
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
10833
10833
|
var SplitInterpolation = class {
|
|
10834
10834
|
constructor(strings, expressions, offsets) {
|
|
10835
10835
|
this.strings = strings;
|
|
@@ -11711,7 +11711,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
11711
11711
|
return offsetMap;
|
|
11712
11712
|
}
|
|
11713
11713
|
|
|
11714
|
-
// bazel-out/
|
|
11714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
11715
11715
|
var NodeWithI18n = class {
|
|
11716
11716
|
constructor(sourceSpan, i18n2) {
|
|
11717
11717
|
this.sourceSpan = sourceSpan;
|
|
@@ -11863,18 +11863,18 @@ var RecursiveVisitor = class {
|
|
|
11863
11863
|
}
|
|
11864
11864
|
};
|
|
11865
11865
|
|
|
11866
|
-
// bazel-out/
|
|
11866
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
11867
11867
|
var ElementSchemaRegistry = class {
|
|
11868
11868
|
};
|
|
11869
11869
|
|
|
11870
|
-
// bazel-out/
|
|
11870
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
11871
11871
|
var BOOLEAN = "boolean";
|
|
11872
11872
|
var NUMBER = "number";
|
|
11873
11873
|
var STRING = "string";
|
|
11874
11874
|
var OBJECT = "object";
|
|
11875
11875
|
var SCHEMA = [
|
|
11876
11876
|
"[Element]|textContent,%ariaAtomic,%ariaAutoComplete,%ariaBusy,%ariaChecked,%ariaColCount,%ariaColIndex,%ariaColSpan,%ariaCurrent,%ariaDescription,%ariaDisabled,%ariaExpanded,%ariaHasPopup,%ariaHidden,%ariaKeyShortcuts,%ariaLabel,%ariaLevel,%ariaLive,%ariaModal,%ariaMultiLine,%ariaMultiSelectable,%ariaOrientation,%ariaPlaceholder,%ariaPosInSet,%ariaPressed,%ariaReadOnly,%ariaRelevant,%ariaRequired,%ariaRoleDescription,%ariaRowCount,%ariaRowIndex,%ariaRowSpan,%ariaSelected,%ariaSetSize,%ariaSort,%ariaValueMax,%ariaValueMin,%ariaValueNow,%ariaValueText,%classList,className,elementTiming,id,innerHTML,*beforecopy,*beforecut,*beforepaste,*fullscreenchange,*fullscreenerror,*search,*webkitfullscreenchange,*webkitfullscreenerror,outerHTML,%part,#scrollLeft,#scrollTop,slot,*message,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*webglcontextcreationerror,*webglcontextlost,*webglcontextrestored",
|
|
11877
|
-
"[HTMLElement]^[Element]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy",
|
|
11877
|
+
"[HTMLElement]^[Element]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,!inert,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy",
|
|
11878
11878
|
"abbr,address,article,aside,b,bdi,bdo,cite,content,code,dd,dfn,dt,em,figcaption,figure,footer,header,hgroup,i,kbd,main,mark,nav,noscript,rb,rp,rt,rtc,ruby,s,samp,section,small,strong,sub,sup,u,var,wbr^[HTMLElement]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy",
|
|
11879
11879
|
"media^[HTMLElement]|!autoplay,!controls,%controlsList,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,*waitingforkey,#playbackRate,preload,!preservesPitch,src,%srcObject,#volume",
|
|
11880
11880
|
":svg:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex",
|
|
@@ -12220,7 +12220,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12220
12220
|
}
|
|
12221
12221
|
}
|
|
12222
12222
|
|
|
12223
|
-
// bazel-out/
|
|
12223
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12224
12224
|
var HtmlTagDefinition = class {
|
|
12225
12225
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12226
12226
|
this.closedByChildren = {};
|
|
@@ -12338,7 +12338,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
12338
12338
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
12339
12339
|
}
|
|
12340
12340
|
|
|
12341
|
-
// bazel-out/
|
|
12341
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
12342
12342
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
12343
12343
|
"A": "LINK",
|
|
12344
12344
|
"B": "BOLD_TEXT",
|
|
@@ -12460,7 +12460,7 @@ var PlaceholderRegistry = class {
|
|
|
12460
12460
|
}
|
|
12461
12461
|
};
|
|
12462
12462
|
|
|
12463
|
-
// bazel-out/
|
|
12463
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
12464
12464
|
var _expParser = new Parser(new Lexer());
|
|
12465
12465
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
12466
12466
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -12639,14 +12639,14 @@ function extractPlaceholderName(input) {
|
|
|
12639
12639
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
12640
12640
|
}
|
|
12641
12641
|
|
|
12642
|
-
// bazel-out/
|
|
12642
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
12643
12643
|
var I18nError = class extends ParseError {
|
|
12644
12644
|
constructor(span, msg) {
|
|
12645
12645
|
super(span, msg);
|
|
12646
12646
|
}
|
|
12647
12647
|
};
|
|
12648
12648
|
|
|
12649
|
-
// bazel-out/
|
|
12649
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12650
12650
|
var NAMED_ENTITIES = {
|
|
12651
12651
|
"AElig": "\xC6",
|
|
12652
12652
|
"AMP": "&",
|
|
@@ -14777,7 +14777,7 @@ var NAMED_ENTITIES = {
|
|
|
14777
14777
|
var NGSP_UNICODE = "\uE500";
|
|
14778
14778
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14779
14779
|
|
|
14780
|
-
// bazel-out/
|
|
14780
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14781
14781
|
var TokenError = class extends ParseError {
|
|
14782
14782
|
constructor(errorMsg, tokenType, span) {
|
|
14783
14783
|
super(span, errorMsg);
|
|
@@ -15698,7 +15698,7 @@ var CursorError = class {
|
|
|
15698
15698
|
}
|
|
15699
15699
|
};
|
|
15700
15700
|
|
|
15701
|
-
// bazel-out/
|
|
15701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15702
15702
|
var TreeError = class extends ParseError {
|
|
15703
15703
|
static create(elementName, span, msg) {
|
|
15704
15704
|
return new TreeError(elementName, span, msg);
|
|
@@ -16082,7 +16082,7 @@ function decodeEntity(match, entity) {
|
|
|
16082
16082
|
return match;
|
|
16083
16083
|
}
|
|
16084
16084
|
|
|
16085
|
-
// bazel-out/
|
|
16085
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
16086
16086
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
16087
16087
|
"iframe|srcdoc",
|
|
16088
16088
|
"*|innerhtml",
|
|
@@ -16097,7 +16097,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
16097
16097
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
16098
16098
|
}
|
|
16099
16099
|
|
|
16100
|
-
// bazel-out/
|
|
16100
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16101
16101
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16102
16102
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16103
16103
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16254,7 +16254,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16254
16254
|
return jsDocComment(tags);
|
|
16255
16255
|
}
|
|
16256
16256
|
|
|
16257
|
-
// bazel-out/
|
|
16257
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16258
16258
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16259
16259
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16260
16260
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16305,7 +16305,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16305
16305
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16306
16306
|
}
|
|
16307
16307
|
|
|
16308
|
-
// bazel-out/
|
|
16308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16309
16309
|
function createLocalizeStatements(variable2, message, params) {
|
|
16310
16310
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16311
16311
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -16394,7 +16394,7 @@ function createEmptyMessagePart(location) {
|
|
|
16394
16394
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
16395
16395
|
}
|
|
16396
16396
|
|
|
16397
|
-
// bazel-out/
|
|
16397
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
16398
16398
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
16399
16399
|
var TRANSLATION_VAR_PREFIX2 = "i18n_";
|
|
16400
16400
|
var I18N_ICU_MAPPING_PREFIX2 = "I18N_EXP_";
|
|
@@ -16555,7 +16555,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
16555
16555
|
return variable(name);
|
|
16556
16556
|
}
|
|
16557
16557
|
|
|
16558
|
-
// bazel-out/
|
|
16558
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
16559
16559
|
function convertI18nText(job) {
|
|
16560
16560
|
var _a2, _b2, _c2;
|
|
16561
16561
|
for (const unit of job.units) {
|
|
@@ -16625,7 +16625,7 @@ function convertI18nText(job) {
|
|
|
16625
16625
|
}
|
|
16626
16626
|
}
|
|
16627
16627
|
|
|
16628
|
-
// bazel-out/
|
|
16628
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
16629
16629
|
function liftLocalRefs(job) {
|
|
16630
16630
|
for (const unit of job.units) {
|
|
16631
16631
|
for (const op of unit.create) {
|
|
@@ -16655,7 +16655,7 @@ function serializeLocalRefs(refs) {
|
|
|
16655
16655
|
return literalArr(constRefs);
|
|
16656
16656
|
}
|
|
16657
16657
|
|
|
16658
|
-
// bazel-out/
|
|
16658
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
16659
16659
|
function emitNamespaceChanges(job) {
|
|
16660
16660
|
for (const unit of job.units) {
|
|
16661
16661
|
let activeNamespace = Namespace.HTML;
|
|
@@ -16671,7 +16671,7 @@ function emitNamespaceChanges(job) {
|
|
|
16671
16671
|
}
|
|
16672
16672
|
}
|
|
16673
16673
|
|
|
16674
|
-
// bazel-out/
|
|
16674
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
16675
16675
|
function parse(value) {
|
|
16676
16676
|
const styles = [];
|
|
16677
16677
|
let i = 0;
|
|
@@ -16732,7 +16732,7 @@ function hyphenate2(value) {
|
|
|
16732
16732
|
}).toLowerCase();
|
|
16733
16733
|
}
|
|
16734
16734
|
|
|
16735
|
-
// bazel-out/
|
|
16735
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
16736
16736
|
function nameFunctionsAndVariables(job) {
|
|
16737
16737
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
16738
16738
|
}
|
|
@@ -16861,7 +16861,7 @@ function stripImportant(name) {
|
|
|
16861
16861
|
return name;
|
|
16862
16862
|
}
|
|
16863
16863
|
|
|
16864
|
-
// bazel-out/
|
|
16864
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
16865
16865
|
function mergeNextContextExpressions(job) {
|
|
16866
16866
|
for (const unit of job.units) {
|
|
16867
16867
|
for (const op of unit.create) {
|
|
@@ -16907,7 +16907,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
16907
16907
|
}
|
|
16908
16908
|
}
|
|
16909
16909
|
|
|
16910
|
-
// bazel-out/
|
|
16910
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
16911
16911
|
var CONTAINER_TAG = "ng-container";
|
|
16912
16912
|
function generateNgContainerOps(job) {
|
|
16913
16913
|
for (const unit of job.units) {
|
|
@@ -16924,7 +16924,7 @@ function generateNgContainerOps(job) {
|
|
|
16924
16924
|
}
|
|
16925
16925
|
}
|
|
16926
16926
|
|
|
16927
|
-
// bazel-out/
|
|
16927
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
16928
16928
|
function lookupElement3(elements, xref) {
|
|
16929
16929
|
const el = elements.get(xref);
|
|
16930
16930
|
if (el === void 0) {
|
|
@@ -16954,7 +16954,7 @@ function disableBindings(job) {
|
|
|
16954
16954
|
}
|
|
16955
16955
|
}
|
|
16956
16956
|
|
|
16957
|
-
// bazel-out/
|
|
16957
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
16958
16958
|
function generateNullishCoalesceExpressions(job) {
|
|
16959
16959
|
for (const unit of job.units) {
|
|
16960
16960
|
for (const op of unit.ops()) {
|
|
@@ -16970,7 +16970,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
16970
16970
|
}
|
|
16971
16971
|
}
|
|
16972
16972
|
|
|
16973
|
-
// bazel-out/
|
|
16973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
16974
16974
|
function kindTest(kind) {
|
|
16975
16975
|
return (op) => op.kind === kind;
|
|
16976
16976
|
}
|
|
@@ -17060,7 +17060,7 @@ function keepLast(ops) {
|
|
|
17060
17060
|
return ops.slice(ops.length - 1);
|
|
17061
17061
|
}
|
|
17062
17062
|
|
|
17063
|
-
// bazel-out/
|
|
17063
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
17064
17064
|
function parseExtractedStyles(job) {
|
|
17065
17065
|
const elements = /* @__PURE__ */ new Map();
|
|
17066
17066
|
for (const unit of job.units) {
|
|
@@ -17095,7 +17095,7 @@ function parseExtractedStyles(job) {
|
|
|
17095
17095
|
}
|
|
17096
17096
|
}
|
|
17097
17097
|
|
|
17098
|
-
// bazel-out/
|
|
17098
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
17099
17099
|
function removeContentSelectors(job) {
|
|
17100
17100
|
for (const unit of job.units) {
|
|
17101
17101
|
const elements = createOpXrefMap(unit);
|
|
@@ -17122,7 +17122,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
17122
17122
|
return el;
|
|
17123
17123
|
}
|
|
17124
17124
|
|
|
17125
|
-
// bazel-out/
|
|
17125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
17126
17126
|
function createPipes(job) {
|
|
17127
17127
|
for (const unit of job.units) {
|
|
17128
17128
|
processPipeBindingsInView(unit);
|
|
@@ -17170,7 +17170,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
17170
17170
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
17171
17171
|
}
|
|
17172
17172
|
|
|
17173
|
-
// bazel-out/
|
|
17173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
17174
17174
|
function createVariadicPipes(job) {
|
|
17175
17175
|
for (const unit of job.units) {
|
|
17176
17176
|
for (const op of unit.update) {
|
|
@@ -17187,7 +17187,7 @@ function createVariadicPipes(job) {
|
|
|
17187
17187
|
}
|
|
17188
17188
|
}
|
|
17189
17189
|
|
|
17190
|
-
// bazel-out/
|
|
17190
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
17191
17191
|
function propagateI18nBlocks(job) {
|
|
17192
17192
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
17193
17193
|
}
|
|
@@ -17241,7 +17241,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
17241
17241
|
}
|
|
17242
17242
|
}
|
|
17243
17243
|
|
|
17244
|
-
// bazel-out/
|
|
17244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
17245
17245
|
function extractPureFunctions(job) {
|
|
17246
17246
|
for (const view of job.units) {
|
|
17247
17247
|
for (const op of view.ops()) {
|
|
@@ -17283,7 +17283,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
17283
17283
|
}
|
|
17284
17284
|
};
|
|
17285
17285
|
|
|
17286
|
-
// bazel-out/
|
|
17286
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
17287
17287
|
function generatePureLiteralStructures(job) {
|
|
17288
17288
|
for (const unit of job.units) {
|
|
17289
17289
|
for (const op of unit.update) {
|
|
@@ -17330,7 +17330,7 @@ function transformLiteralMap(expr) {
|
|
|
17330
17330
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
17331
17331
|
}
|
|
17332
17332
|
|
|
17333
|
-
// bazel-out/
|
|
17333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
17334
17334
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
17335
17335
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
17336
17336
|
}
|
|
@@ -17865,7 +17865,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
17865
17865
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
17866
17866
|
}
|
|
17867
17867
|
|
|
17868
|
-
// bazel-out/
|
|
17868
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
17869
17869
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
17870
17870
|
["window", Identifiers.resolveWindow],
|
|
17871
17871
|
["document", Identifiers.resolveDocument],
|
|
@@ -18206,7 +18206,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
18206
18206
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
18207
18207
|
}
|
|
18208
18208
|
|
|
18209
|
-
// bazel-out/
|
|
18209
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
18210
18210
|
function removeEmptyBindings(job) {
|
|
18211
18211
|
for (const unit of job.units) {
|
|
18212
18212
|
for (const op of unit.update) {
|
|
@@ -18227,7 +18227,7 @@ function removeEmptyBindings(job) {
|
|
|
18227
18227
|
}
|
|
18228
18228
|
}
|
|
18229
18229
|
|
|
18230
|
-
// bazel-out/
|
|
18230
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
18231
18231
|
function removeI18nContexts(job) {
|
|
18232
18232
|
for (const unit of job.units) {
|
|
18233
18233
|
for (const op of unit.create) {
|
|
@@ -18243,7 +18243,7 @@ function removeI18nContexts(job) {
|
|
|
18243
18243
|
}
|
|
18244
18244
|
}
|
|
18245
18245
|
|
|
18246
|
-
// bazel-out/
|
|
18246
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
18247
18247
|
function removeUnusedI18nAttributesOps(job) {
|
|
18248
18248
|
for (const unit of job.units) {
|
|
18249
18249
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -18265,7 +18265,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
18265
18265
|
}
|
|
18266
18266
|
}
|
|
18267
18267
|
|
|
18268
|
-
// bazel-out/
|
|
18268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
18269
18269
|
function resolveContexts(job) {
|
|
18270
18270
|
for (const unit of job.units) {
|
|
18271
18271
|
processLexicalScope(unit, unit.create);
|
|
@@ -18307,7 +18307,7 @@ function processLexicalScope(view, ops) {
|
|
|
18307
18307
|
}
|
|
18308
18308
|
}
|
|
18309
18309
|
|
|
18310
|
-
// bazel-out/
|
|
18310
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
18311
18311
|
function resolveDollarEvent(job) {
|
|
18312
18312
|
for (const unit of job.units) {
|
|
18313
18313
|
transformDollarEvent(unit, unit.create);
|
|
@@ -18330,7 +18330,7 @@ function transformDollarEvent(unit, ops) {
|
|
|
18330
18330
|
}
|
|
18331
18331
|
}
|
|
18332
18332
|
|
|
18333
|
-
// bazel-out/
|
|
18333
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
18334
18334
|
function resolveI18nElementPlaceholders(job) {
|
|
18335
18335
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
18336
18336
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -18509,7 +18509,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
18509
18509
|
params.set(placeholder, values);
|
|
18510
18510
|
}
|
|
18511
18511
|
|
|
18512
|
-
// bazel-out/
|
|
18512
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
18513
18513
|
function resolveI18nExpressionPlaceholders(job) {
|
|
18514
18514
|
var _a2;
|
|
18515
18515
|
const subTemplateIndicies = /* @__PURE__ */ new Map();
|
|
@@ -18562,7 +18562,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
18562
18562
|
}
|
|
18563
18563
|
}
|
|
18564
18564
|
|
|
18565
|
-
// bazel-out/
|
|
18565
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
18566
18566
|
function resolveNames(job) {
|
|
18567
18567
|
for (const unit of job.units) {
|
|
18568
18568
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -18627,7 +18627,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
18627
18627
|
}
|
|
18628
18628
|
}
|
|
18629
18629
|
|
|
18630
|
-
// bazel-out/
|
|
18630
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
18631
18631
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
18632
18632
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
18633
18633
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -18697,7 +18697,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
18697
18697
|
return securityContext;
|
|
18698
18698
|
}
|
|
18699
18699
|
|
|
18700
|
-
// bazel-out/
|
|
18700
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
18701
18701
|
function transformTwoWayBindingSet(job) {
|
|
18702
18702
|
for (const unit of job.units) {
|
|
18703
18703
|
for (const op of unit.create) {
|
|
@@ -18744,7 +18744,7 @@ function wrapAction(target, value) {
|
|
|
18744
18744
|
throw new Error(`Unsupported expression in two-way action binding.`);
|
|
18745
18745
|
}
|
|
18746
18746
|
|
|
18747
|
-
// bazel-out/
|
|
18747
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
18748
18748
|
function saveAndRestoreView(job) {
|
|
18749
18749
|
for (const unit of job.units) {
|
|
18750
18750
|
unit.create.prepend([
|
|
@@ -18789,7 +18789,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
18789
18789
|
}
|
|
18790
18790
|
}
|
|
18791
18791
|
|
|
18792
|
-
// bazel-out/
|
|
18792
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
18793
18793
|
function allocateSlots(job) {
|
|
18794
18794
|
const slotMap = /* @__PURE__ */ new Map();
|
|
18795
18795
|
for (const unit of job.units) {
|
|
@@ -18814,7 +18814,7 @@ function allocateSlots(job) {
|
|
|
18814
18814
|
}
|
|
18815
18815
|
}
|
|
18816
18816
|
|
|
18817
|
-
// bazel-out/
|
|
18817
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
18818
18818
|
function specializeStyleBindings(job) {
|
|
18819
18819
|
for (const unit of job.units) {
|
|
18820
18820
|
for (const op of unit.update) {
|
|
@@ -18844,7 +18844,7 @@ function specializeStyleBindings(job) {
|
|
|
18844
18844
|
}
|
|
18845
18845
|
}
|
|
18846
18846
|
|
|
18847
|
-
// bazel-out/
|
|
18847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
18848
18848
|
function generateTemporaryVariables(job) {
|
|
18849
18849
|
for (const unit of job.units) {
|
|
18850
18850
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -18902,7 +18902,7 @@ function assignName(names, expr) {
|
|
|
18902
18902
|
expr.name = name;
|
|
18903
18903
|
}
|
|
18904
18904
|
|
|
18905
|
-
// bazel-out/
|
|
18905
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
18906
18906
|
function generateTrackFns(job) {
|
|
18907
18907
|
for (const unit of job.units) {
|
|
18908
18908
|
for (const op of unit.create) {
|
|
@@ -18935,7 +18935,7 @@ function generateTrackFns(job) {
|
|
|
18935
18935
|
}
|
|
18936
18936
|
}
|
|
18937
18937
|
|
|
18938
|
-
// bazel-out/
|
|
18938
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
18939
18939
|
function optimizeTrackFns(job) {
|
|
18940
18940
|
for (const unit of job.units) {
|
|
18941
18941
|
for (const op of unit.create) {
|
|
@@ -18982,7 +18982,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
18982
18982
|
return true;
|
|
18983
18983
|
}
|
|
18984
18984
|
|
|
18985
|
-
// bazel-out/
|
|
18985
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
18986
18986
|
function generateTrackVariables(job) {
|
|
18987
18987
|
for (const unit of job.units) {
|
|
18988
18988
|
for (const op of unit.create) {
|
|
@@ -19003,7 +19003,7 @@ function generateTrackVariables(job) {
|
|
|
19003
19003
|
}
|
|
19004
19004
|
}
|
|
19005
19005
|
|
|
19006
|
-
// bazel-out/
|
|
19006
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
19007
19007
|
function countVariables(job) {
|
|
19008
19008
|
for (const unit of job.units) {
|
|
19009
19009
|
let varCount = 0;
|
|
@@ -19113,7 +19113,7 @@ function isSingletonInterpolation(expr) {
|
|
|
19113
19113
|
return true;
|
|
19114
19114
|
}
|
|
19115
19115
|
|
|
19116
|
-
// bazel-out/
|
|
19116
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
19117
19117
|
function optimizeVariables(job) {
|
|
19118
19118
|
for (const unit of job.units) {
|
|
19119
19119
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -19363,7 +19363,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
19363
19363
|
}
|
|
19364
19364
|
}
|
|
19365
19365
|
|
|
19366
|
-
// bazel-out/
|
|
19366
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
19367
19367
|
function wrapI18nIcus(job) {
|
|
19368
19368
|
for (const unit of job.units) {
|
|
19369
19369
|
let currentI18nOp = null;
|
|
@@ -19393,7 +19393,7 @@ function wrapI18nIcus(job) {
|
|
|
19393
19393
|
}
|
|
19394
19394
|
}
|
|
19395
19395
|
|
|
19396
|
-
// bazel-out/
|
|
19396
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
19397
19397
|
var phases = [
|
|
19398
19398
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
19399
19399
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -19559,7 +19559,7 @@ function emitHostBindingFunction(job) {
|
|
|
19559
19559
|
);
|
|
19560
19560
|
}
|
|
19561
19561
|
|
|
19562
|
-
// bazel-out/
|
|
19562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
19563
19563
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
19564
19564
|
var domSchema = new DomElementSchemaRegistry();
|
|
19565
19565
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -20282,10 +20282,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
20282
20282
|
return null;
|
|
20283
20283
|
}
|
|
20284
20284
|
|
|
20285
|
-
// bazel-out/
|
|
20285
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
20286
20286
|
var USE_TEMPLATE_PIPELINE = false;
|
|
20287
20287
|
|
|
20288
|
-
// bazel-out/
|
|
20288
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
20289
20289
|
var HtmlParser = class extends Parser2 {
|
|
20290
20290
|
constructor() {
|
|
20291
20291
|
super(getHtmlTagDefinition);
|
|
@@ -20295,7 +20295,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
20295
20295
|
}
|
|
20296
20296
|
};
|
|
20297
20297
|
|
|
20298
|
-
// bazel-out/
|
|
20298
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
20299
20299
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
20300
20300
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
20301
20301
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -20361,7 +20361,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
20361
20361
|
return result;
|
|
20362
20362
|
}
|
|
20363
20363
|
|
|
20364
|
-
// bazel-out/
|
|
20364
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
20365
20365
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
20366
20366
|
var ATTRIBUTE_PREFIX = "attr";
|
|
20367
20367
|
var CLASS_PREFIX = "class";
|
|
@@ -20702,7 +20702,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
20702
20702
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
20703
20703
|
}
|
|
20704
20704
|
|
|
20705
|
-
// bazel-out/
|
|
20705
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
20706
20706
|
function isStyleUrlResolvable(url) {
|
|
20707
20707
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
20708
20708
|
return false;
|
|
@@ -20711,7 +20711,7 @@ function isStyleUrlResolvable(url) {
|
|
|
20711
20711
|
}
|
|
20712
20712
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
20713
20713
|
|
|
20714
|
-
// bazel-out/
|
|
20714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
20715
20715
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
20716
20716
|
var LINK_ELEMENT = "link";
|
|
20717
20717
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -20781,7 +20781,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
20781
20781
|
return selectAttr;
|
|
20782
20782
|
}
|
|
20783
20783
|
|
|
20784
|
-
// bazel-out/
|
|
20784
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
20785
20785
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
20786
20786
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
20787
20787
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -21092,7 +21092,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
21092
21092
|
return expression.slice(start, end);
|
|
21093
21093
|
}
|
|
21094
21094
|
|
|
21095
|
-
// bazel-out/
|
|
21095
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
21096
21096
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
21097
21097
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
21098
21098
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -21356,7 +21356,7 @@ function parseDeferredTime(value) {
|
|
|
21356
21356
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
21357
21357
|
}
|
|
21358
21358
|
|
|
21359
|
-
// bazel-out/
|
|
21359
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
21360
21360
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
21361
21361
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
21362
21362
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -21491,7 +21491,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
21491
21491
|
return { triggers, prefetchTriggers };
|
|
21492
21492
|
}
|
|
21493
21493
|
|
|
21494
|
-
// bazel-out/
|
|
21494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
21495
21495
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
21496
21496
|
var KW_BIND_IDX = 1;
|
|
21497
21497
|
var KW_LET_IDX = 2;
|
|
@@ -21922,7 +21922,7 @@ function textContents(node) {
|
|
|
21922
21922
|
}
|
|
21923
21923
|
}
|
|
21924
21924
|
|
|
21925
|
-
// bazel-out/
|
|
21925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
21926
21926
|
var TagType;
|
|
21927
21927
|
(function(TagType2) {
|
|
21928
21928
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -22067,7 +22067,7 @@ function serializePlaceholderValue(value) {
|
|
|
22067
22067
|
}
|
|
22068
22068
|
}
|
|
22069
22069
|
|
|
22070
|
-
// bazel-out/
|
|
22070
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
22071
22071
|
var IMPORTANT_FLAG = "!important";
|
|
22072
22072
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
22073
22073
|
var StylingBuilder = class {
|
|
@@ -22400,7 +22400,7 @@ function isEmptyExpression(ast) {
|
|
|
22400
22400
|
return ast instanceof EmptyExpr;
|
|
22401
22401
|
}
|
|
22402
22402
|
|
|
22403
|
-
// bazel-out/
|
|
22403
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
22404
22404
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
22405
22405
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
22406
22406
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -24092,7 +24092,7 @@ function createClosureModeGuard2() {
|
|
|
24092
24092
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
|
|
24093
24093
|
}
|
|
24094
24094
|
|
|
24095
|
-
// bazel-out/
|
|
24095
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
24096
24096
|
function toQueryFlags(query) {
|
|
24097
24097
|
return (query.descendants ? 1 : 0) | (query.static ? 2 : 0) | (query.emitDistinctChangesOnly ? 4 : 0);
|
|
24098
24098
|
}
|
|
@@ -24209,7 +24209,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
24209
24209
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
24210
24210
|
}
|
|
24211
24211
|
|
|
24212
|
-
// bazel-out/
|
|
24212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24213
24213
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
24214
24214
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24215
24215
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -24789,7 +24789,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
24789
24789
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
24790
24790
|
}
|
|
24791
24791
|
|
|
24792
|
-
// bazel-out/
|
|
24792
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
24793
24793
|
var R3TargetBinder = class {
|
|
24794
24794
|
constructor(directiveMatcher) {
|
|
24795
24795
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -24802,7 +24802,7 @@ var R3TargetBinder = class {
|
|
|
24802
24802
|
const scopedNodeEntities = extractScopedNodeEntities(scope);
|
|
24803
24803
|
const { directives, eagerDirectives, bindings, references } = DirectiveBinder.apply(target.template, this.directiveMatcher);
|
|
24804
24804
|
const { expressions, symbols, nestingLevel, usedPipes, eagerPipes, deferBlocks } = TemplateBinder.applyWithScope(target.template, scope);
|
|
24805
|
-
return new R3BoundTarget(target, directives, eagerDirectives, bindings, references, expressions, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks
|
|
24805
|
+
return new R3BoundTarget(target, directives, eagerDirectives, bindings, references, expressions, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks);
|
|
24806
24806
|
}
|
|
24807
24807
|
};
|
|
24808
24808
|
var Scope2 = class {
|
|
@@ -25099,7 +25099,7 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25099
25099
|
const usedPipes = /* @__PURE__ */ new Set();
|
|
25100
25100
|
const eagerPipes = /* @__PURE__ */ new Set();
|
|
25101
25101
|
const template2 = nodes instanceof Template ? nodes : null;
|
|
25102
|
-
const deferBlocks = /* @__PURE__ */ new
|
|
25102
|
+
const deferBlocks = /* @__PURE__ */ new Map();
|
|
25103
25103
|
const binder = new TemplateBinder(expressions, symbols, usedPipes, eagerPipes, deferBlocks, nestingLevel, scope, template2, 0);
|
|
25104
25104
|
binder.ingest(nodes);
|
|
25105
25105
|
return { expressions, symbols, nestingLevel, usedPipes, eagerPipes, deferBlocks };
|
|
@@ -25121,7 +25121,14 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25121
25121
|
nodeOrNodes.trackBy.visit(this);
|
|
25122
25122
|
nodeOrNodes.children.forEach(this.visitNode);
|
|
25123
25123
|
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25124
|
-
} else if (nodeOrNodes instanceof
|
|
25124
|
+
} else if (nodeOrNodes instanceof DeferredBlock) {
|
|
25125
|
+
if (this.scope.rootNode !== nodeOrNodes) {
|
|
25126
|
+
throw new Error(`Assertion error: resolved incorrect scope for deferred block ${nodeOrNodes}`);
|
|
25127
|
+
}
|
|
25128
|
+
this.deferBlocks.set(nodeOrNodes, this.scope);
|
|
25129
|
+
nodeOrNodes.children.forEach((node) => node.visit(this));
|
|
25130
|
+
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25131
|
+
} else if (nodeOrNodes instanceof SwitchBlockCase || nodeOrNodes instanceof ForLoopBlockEmpty || nodeOrNodes instanceof DeferredBlockError || nodeOrNodes instanceof DeferredBlockPlaceholder || nodeOrNodes instanceof DeferredBlockLoading) {
|
|
25125
25132
|
nodeOrNodes.children.forEach((node) => node.visit(this));
|
|
25126
25133
|
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25127
25134
|
} else {
|
|
@@ -25173,7 +25180,6 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25173
25180
|
}
|
|
25174
25181
|
visitDeferredBlock(deferred) {
|
|
25175
25182
|
var _a2, _b2;
|
|
25176
|
-
this.deferBlocks.add(deferred);
|
|
25177
25183
|
this.ingestScopedNode(deferred);
|
|
25178
25184
|
(_a2 = deferred.triggers.when) == null ? void 0 : _a2.value.visit(this);
|
|
25179
25185
|
(_b2 = deferred.prefetchTriggers.when) == null ? void 0 : _b2.value.visit(this);
|
|
@@ -25254,7 +25260,7 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25254
25260
|
}
|
|
25255
25261
|
};
|
|
25256
25262
|
var R3BoundTarget = class {
|
|
25257
|
-
constructor(target, directives, eagerDirectives, bindings, references, exprTargets, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes,
|
|
25263
|
+
constructor(target, directives, eagerDirectives, bindings, references, exprTargets, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks) {
|
|
25258
25264
|
this.target = target;
|
|
25259
25265
|
this.directives = directives;
|
|
25260
25266
|
this.eagerDirectives = eagerDirectives;
|
|
@@ -25266,8 +25272,7 @@ var R3BoundTarget = class {
|
|
|
25266
25272
|
this.scopedNodeEntities = scopedNodeEntities;
|
|
25267
25273
|
this.usedPipes = usedPipes;
|
|
25268
25274
|
this.eagerPipes = eagerPipes;
|
|
25269
|
-
this.
|
|
25270
|
-
this.rootScope = rootScope;
|
|
25275
|
+
this.deferBlocks = deferBlocks;
|
|
25271
25276
|
}
|
|
25272
25277
|
getEntitiesInScope(node) {
|
|
25273
25278
|
var _a2;
|
|
@@ -25307,7 +25312,7 @@ var R3BoundTarget = class {
|
|
|
25307
25312
|
return Array.from(this.eagerPipes);
|
|
25308
25313
|
}
|
|
25309
25314
|
getDeferBlocks() {
|
|
25310
|
-
return Array.from(this.
|
|
25315
|
+
return Array.from(this.deferBlocks.keys());
|
|
25311
25316
|
}
|
|
25312
25317
|
getDeferredTriggerTarget(block, trigger) {
|
|
25313
25318
|
if (!(trigger instanceof InteractionDeferredTrigger) && !(trigger instanceof ViewportDeferredTrigger) && !(trigger instanceof HoverDeferredTrigger)) {
|
|
@@ -25348,10 +25353,14 @@ var R3BoundTarget = class {
|
|
|
25348
25353
|
return null;
|
|
25349
25354
|
}
|
|
25350
25355
|
isDeferred(element2) {
|
|
25351
|
-
for (const
|
|
25352
|
-
const
|
|
25353
|
-
|
|
25354
|
-
|
|
25356
|
+
for (const deferredScope of this.deferBlocks.values()) {
|
|
25357
|
+
const stack = [deferredScope];
|
|
25358
|
+
while (stack.length > 0) {
|
|
25359
|
+
const current = stack.pop();
|
|
25360
|
+
if (current.elementsInScope.has(element2)) {
|
|
25361
|
+
return true;
|
|
25362
|
+
}
|
|
25363
|
+
stack.push(...current.childScopes.values());
|
|
25355
25364
|
}
|
|
25356
25365
|
}
|
|
25357
25366
|
return false;
|
|
@@ -25406,11 +25415,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25406
25415
|
return templateEntities;
|
|
25407
25416
|
}
|
|
25408
25417
|
|
|
25409
|
-
// bazel-out/
|
|
25418
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25410
25419
|
var ResourceLoader = class {
|
|
25411
25420
|
};
|
|
25412
25421
|
|
|
25413
|
-
// bazel-out/
|
|
25422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25414
25423
|
var SHOULD_USE_TEMPLATE_PIPELINE_FOR_JIT = false;
|
|
25415
25424
|
var CompilerFacadeImpl = class {
|
|
25416
25425
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
@@ -25991,17 +26000,17 @@ function publishFacade(global) {
|
|
|
25991
26000
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
25992
26001
|
}
|
|
25993
26002
|
|
|
25994
|
-
// bazel-out/
|
|
25995
|
-
var VERSION2 = new Version("17.2.
|
|
26003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26004
|
+
var VERSION2 = new Version("17.2.3");
|
|
25996
26005
|
|
|
25997
|
-
// bazel-out/
|
|
26006
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
25998
26007
|
var _VisitorMode;
|
|
25999
26008
|
(function(_VisitorMode2) {
|
|
26000
26009
|
_VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
|
|
26001
26010
|
_VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
|
|
26002
26011
|
})(_VisitorMode || (_VisitorMode = {}));
|
|
26003
26012
|
|
|
26004
|
-
// bazel-out/
|
|
26013
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26005
26014
|
var XmlTagDefinition = class {
|
|
26006
26015
|
constructor() {
|
|
26007
26016
|
this.closedByParent = false;
|
|
@@ -26023,7 +26032,7 @@ var XmlTagDefinition = class {
|
|
|
26023
26032
|
};
|
|
26024
26033
|
var _TAG_DEFINITION = new XmlTagDefinition();
|
|
26025
26034
|
|
|
26026
|
-
// bazel-out/
|
|
26035
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
26027
26036
|
var FactoryTarget2;
|
|
26028
26037
|
(function(FactoryTarget3) {
|
|
26029
26038
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -26033,10 +26042,10 @@ var FactoryTarget2;
|
|
|
26033
26042
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
26034
26043
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
26035
26044
|
|
|
26036
|
-
// bazel-out/
|
|
26045
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
26037
26046
|
publishFacade(_global);
|
|
26038
26047
|
|
|
26039
|
-
// bazel-out/
|
|
26048
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/identifier-lookup.mjs
|
|
26040
26049
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
26041
26050
|
function lookupIdentifiersInSourceFile(sourceFile, names) {
|
|
26042
26051
|
const results = /* @__PURE__ */ new Set();
|
|
@@ -26050,7 +26059,7 @@ function lookupIdentifiersInSourceFile(sourceFile, names) {
|
|
|
26050
26059
|
return results;
|
|
26051
26060
|
}
|
|
26052
26061
|
|
|
26053
|
-
// bazel-out/
|
|
26062
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/types.mjs
|
|
26054
26063
|
var ngtemplate = "ng-template";
|
|
26055
26064
|
var boundngifelse = "[ngIfElse]";
|
|
26056
26065
|
var boundngifthenelse = "[ngIfThenElse]";
|
|
@@ -26383,7 +26392,7 @@ var TemplateCollector = class extends RecursiveVisitor {
|
|
|
26383
26392
|
}
|
|
26384
26393
|
};
|
|
26385
26394
|
|
|
26386
|
-
// bazel-out/
|
|
26395
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/util.mjs
|
|
26387
26396
|
var import_path2 = require("path");
|
|
26388
26397
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
26389
26398
|
var startMarkerRegex = new RegExp(startMarker, "gm");
|
|
@@ -26804,10 +26813,10 @@ function formatTemplate(tmpl, templateType) {
|
|
|
26804
26813
|
const selfClosingRegex = new RegExp(`^\\s*<(${selfClosingList}).+\\/?>`);
|
|
26805
26814
|
const openSelfClosingRegex = new RegExp(`^\\s*<(${selfClosingList})(?![^>]*\\/>)[^>]*$`);
|
|
26806
26815
|
const closeBlockRegex = /^\s*\}\s*$|^\s*\}\s\@else/;
|
|
26807
|
-
const closeElRegex = /\s*<\/([a-zA-Z0-9\-]+)
|
|
26808
|
-
const closeMultiLineElRegex = /^\s*([a-zA-Z0-9
|
|
26809
|
-
const closeSelfClosingMultiLineRegex = /^\s*([a-zA-Z0-9
|
|
26810
|
-
const singleLineElRegex = /\s*<([a-zA-Z0-9]+)(?![^>]*\/>)[^>]*>.*<\/([a-zA-Z0-9\-]+)*>/;
|
|
26816
|
+
const closeElRegex = /\s*<\/([a-zA-Z0-9\-_]+)\s*>/m;
|
|
26817
|
+
const closeMultiLineElRegex = /^\s*([a-zA-Z0-9\-_\[\]]+)?=?"?([^”<]+)?"?\s?\/>$/;
|
|
26818
|
+
const closeSelfClosingMultiLineRegex = /^\s*([a-zA-Z0-9\-_\[\]]+)?=?"?([^”\/<]+)?"?\s?>$/;
|
|
26819
|
+
const singleLineElRegex = /\s*<([a-zA-Z0-9]+)(?![^>]*\/>)[^>]*>.*<\/([a-zA-Z0-9\-_]+)\s*>/;
|
|
26811
26820
|
const lines = tmpl.split("\n");
|
|
26812
26821
|
const formatted = [];
|
|
26813
26822
|
let indent = "";
|
|
@@ -26883,7 +26892,7 @@ function forEachClass(sourceFile, callback) {
|
|
|
26883
26892
|
});
|
|
26884
26893
|
}
|
|
26885
26894
|
|
|
26886
|
-
// bazel-out/
|
|
26895
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/cases.mjs
|
|
26887
26896
|
var boundcase = "[ngSwitchCase]";
|
|
26888
26897
|
var switchcase = "*ngSwitchCase";
|
|
26889
26898
|
var nakedcase = "ngSwitchCase";
|
|
@@ -26961,7 +26970,7 @@ function migrateNgSwitchDefault(etm, tmpl, offset) {
|
|
|
26961
26970
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
26962
26971
|
}
|
|
26963
26972
|
|
|
26964
|
-
// bazel-out/
|
|
26973
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/fors.mjs
|
|
26965
26974
|
var ngfor = "*ngFor";
|
|
26966
26975
|
var nakedngfor2 = "ngFor";
|
|
26967
26976
|
var fors = [
|
|
@@ -27135,7 +27144,7 @@ function getNgForParts(expression) {
|
|
|
27135
27144
|
return parts;
|
|
27136
27145
|
}
|
|
27137
27146
|
|
|
27138
|
-
// bazel-out/
|
|
27147
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/ifs.mjs
|
|
27139
27148
|
var ngif = "*ngIf";
|
|
27140
27149
|
var boundngif = "[ngIf]";
|
|
27141
27150
|
var nakedngif = "ngIf";
|
|
@@ -27288,7 +27297,7 @@ function buildIfThenBlock(etm, tmpl, condition, thenPlaceholder, offset) {
|
|
|
27288
27297
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
27289
27298
|
}
|
|
27290
27299
|
|
|
27291
|
-
// bazel-out/
|
|
27300
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/switches.mjs
|
|
27292
27301
|
var ngswitch = "[ngSwitch]";
|
|
27293
27302
|
var switches = [
|
|
27294
27303
|
ngswitch
|
|
@@ -27356,7 +27365,7 @@ function migrateNgSwitch(etm, tmpl, offset) {
|
|
|
27356
27365
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
27357
27366
|
}
|
|
27358
27367
|
|
|
27359
|
-
// bazel-out/
|
|
27368
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/migration.mjs
|
|
27360
27369
|
function migrateTemplate(template2, templateType, node, file, format = true, analyzedFiles) {
|
|
27361
27370
|
let errors = [];
|
|
27362
27371
|
let migrated = template2;
|
|
@@ -27407,7 +27416,7 @@ function migrateTemplate(template2, templateType, node, file, format = true, ana
|
|
|
27407
27416
|
return { migrated, errors };
|
|
27408
27417
|
}
|
|
27409
27418
|
|
|
27410
|
-
// bazel-out/
|
|
27419
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
|
|
27411
27420
|
function control_flow_migration_default(options) {
|
|
27412
27421
|
return (tree, context) => __async(this, null, function* () {
|
|
27413
27422
|
const basePath = process.cwd();
|