@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/migrations/block-template-entities/index.mjs
|
|
67
67
|
var block_template_entities_exports = {};
|
|
68
68
|
__export(block_template_entities_exports, {
|
|
69
69
|
default: () => block_template_entities_default
|
|
@@ -72,7 +72,7 @@ module.exports = __toCommonJS(block_template_entities_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/project_tsconfig_paths.mjs
|
|
76
76
|
var import_core = require("@angular-devkit/core");
|
|
77
77
|
function getProjectTsConfigPaths(tree) {
|
|
78
78
|
return __async(this, null, function* () {
|
|
@@ -152,11 +152,11 @@ function getWorkspace(tree) {
|
|
|
152
152
|
});
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
// bazel-out/
|
|
155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
156
156
|
var import_path = require("path");
|
|
157
157
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
158
158
|
|
|
159
|
-
// bazel-out/
|
|
159
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
160
160
|
var path = __toESM(require("path"), 1);
|
|
161
161
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
162
162
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -173,7 +173,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
173
173
|
return import_typescript.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
// bazel-out/
|
|
176
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
177
177
|
function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
|
|
178
178
|
const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
|
|
179
179
|
return import_typescript2.default.createProgram(rootNames, options, host);
|
|
@@ -206,7 +206,7 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
206
206
|
return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
// bazel-out/
|
|
209
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
210
210
|
var _SELECTOR_REGEXP = new RegExp(
|
|
211
211
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
212
212
|
"g"
|
|
@@ -514,7 +514,7 @@ var SelectorContext = class {
|
|
|
514
514
|
}
|
|
515
515
|
};
|
|
516
516
|
|
|
517
|
-
// bazel-out/
|
|
517
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
518
518
|
var ViewEncapsulation;
|
|
519
519
|
(function(ViewEncapsulation2) {
|
|
520
520
|
ViewEncapsulation2[ViewEncapsulation2["Emulated"] = 0] = "Emulated";
|
|
@@ -582,7 +582,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
582
582
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
583
583
|
}
|
|
584
584
|
|
|
585
|
-
// bazel-out/
|
|
585
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
586
586
|
var textEncoder;
|
|
587
587
|
function computeDigest(message) {
|
|
588
588
|
return sha1(serializeNodes(message.nodes).join("") + `[${message.meaning}]`);
|
|
@@ -822,7 +822,7 @@ function wordAt(bytes, index, endian) {
|
|
|
822
822
|
return word;
|
|
823
823
|
}
|
|
824
824
|
|
|
825
|
-
// bazel-out/
|
|
825
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
826
826
|
var TypeModifier;
|
|
827
827
|
(function(TypeModifier2) {
|
|
828
828
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -1781,7 +1781,7 @@ function serializeTags(tags) {
|
|
|
1781
1781
|
return out;
|
|
1782
1782
|
}
|
|
1783
1783
|
|
|
1784
|
-
// bazel-out/
|
|
1784
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1785
1785
|
var CONSTANT_PREFIX = "_c";
|
|
1786
1786
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1787
1787
|
var KEY_CONTEXT = {};
|
|
@@ -1969,7 +1969,7 @@ function isLongStringLiteral(expr) {
|
|
|
1969
1969
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
1970
1970
|
}
|
|
1971
1971
|
|
|
1972
|
-
// bazel-out/
|
|
1972
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
1973
1973
|
var CORE = "@angular/core";
|
|
1974
1974
|
var _Identifiers = class {
|
|
1975
1975
|
};
|
|
@@ -2635,7 +2635,7 @@ var Identifiers = _Identifiers;
|
|
|
2635
2635
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
2636
2636
|
})();
|
|
2637
2637
|
|
|
2638
|
-
// bazel-out/
|
|
2638
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2639
2639
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2640
2640
|
function dashCaseToCamelCase(input) {
|
|
2641
2641
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2723,7 +2723,7 @@ function partitionArray(arr, conditionFn) {
|
|
|
2723
2723
|
return [truthy, falsy];
|
|
2724
2724
|
}
|
|
2725
2725
|
|
|
2726
|
-
// bazel-out/
|
|
2726
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2727
2727
|
var VERSION = 3;
|
|
2728
2728
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2729
2729
|
var SourceMapGenerator = class {
|
|
@@ -2852,7 +2852,7 @@ function toBase64Digit(value) {
|
|
|
2852
2852
|
return B64_DIGITS[value];
|
|
2853
2853
|
}
|
|
2854
2854
|
|
|
2855
|
-
// bazel-out/
|
|
2855
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2856
2856
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2857
2857
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2858
2858
|
var _INDENT_WITH = " ";
|
|
@@ -3340,7 +3340,7 @@ function _createIndent(count) {
|
|
|
3340
3340
|
return res;
|
|
3341
3341
|
}
|
|
3342
3342
|
|
|
3343
|
-
// bazel-out/
|
|
3343
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3344
3344
|
function typeWithParameters(type, numParams) {
|
|
3345
3345
|
if (numParams === 0) {
|
|
3346
3346
|
return expressionType(type);
|
|
@@ -3405,7 +3405,7 @@ function generateForwardRef(expr) {
|
|
|
3405
3405
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
3406
3406
|
}
|
|
3407
3407
|
|
|
3408
|
-
// bazel-out/
|
|
3408
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3409
3409
|
var R3FactoryDelegateType;
|
|
3410
3410
|
(function(R3FactoryDelegateType2) {
|
|
3411
3411
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3550,7 +3550,7 @@ function getInjectFn(target) {
|
|
|
3550
3550
|
}
|
|
3551
3551
|
}
|
|
3552
3552
|
|
|
3553
|
-
// bazel-out/
|
|
3553
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
3554
3554
|
var TagContentType;
|
|
3555
3555
|
(function(TagContentType2) {
|
|
3556
3556
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -3587,7 +3587,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
3587
3587
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
3588
3588
|
}
|
|
3589
3589
|
|
|
3590
|
-
// bazel-out/
|
|
3590
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3591
3591
|
var Comment = class {
|
|
3592
3592
|
constructor(value, sourceSpan) {
|
|
3593
3593
|
this.value = value;
|
|
@@ -3968,7 +3968,7 @@ function visitAll(visitor, nodes) {
|
|
|
3968
3968
|
return result;
|
|
3969
3969
|
}
|
|
3970
3970
|
|
|
3971
|
-
// bazel-out/
|
|
3971
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
3972
3972
|
var Message = class {
|
|
3973
3973
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
3974
3974
|
this.nodes = nodes;
|
|
@@ -4106,7 +4106,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4106
4106
|
}
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
|
-
// bazel-out/
|
|
4109
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4110
4110
|
var _Visitor = class {
|
|
4111
4111
|
visitTag(tag) {
|
|
4112
4112
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4134,12 +4134,12 @@ ${doctype.dtd}
|
|
|
4134
4134
|
};
|
|
4135
4135
|
var _visitor = new _Visitor();
|
|
4136
4136
|
|
|
4137
|
-
// bazel-out/
|
|
4137
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4138
4138
|
function toPublicName(internalName) {
|
|
4139
4139
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4140
4140
|
}
|
|
4141
4141
|
|
|
4142
|
-
// bazel-out/
|
|
4142
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4143
4143
|
var CLOSURE_TRANSLATION_VAR_PREFIX = "MSG_";
|
|
4144
4144
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
4145
4145
|
var I18N_ATTR = "i18n";
|
|
@@ -4241,7 +4241,7 @@ function declareI18nVariable(variable2) {
|
|
|
4241
4241
|
return new DeclareVarStmt(variable2.name, void 0, INFERRED_TYPE, void 0, variable2.sourceSpan);
|
|
4242
4242
|
}
|
|
4243
4243
|
|
|
4244
|
-
// bazel-out/
|
|
4244
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4245
4245
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4246
4246
|
var TEMPORARY_NAME = "_t";
|
|
4247
4247
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4487,7 +4487,7 @@ function getInstructionStatements(instructions) {
|
|
|
4487
4487
|
return statements;
|
|
4488
4488
|
}
|
|
4489
4489
|
|
|
4490
|
-
// bazel-out/
|
|
4490
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4491
4491
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4492
4492
|
let result = null;
|
|
4493
4493
|
const factoryMeta = {
|
|
@@ -4572,7 +4572,7 @@ function createFactoryFunction(type) {
|
|
|
4572
4572
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
4573
4573
|
}
|
|
4574
4574
|
|
|
4575
|
-
// bazel-out/
|
|
4575
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4576
4576
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4577
4577
|
/^\s*$/,
|
|
4578
4578
|
/[<>]/,
|
|
@@ -4594,7 +4594,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4594
4594
|
}
|
|
4595
4595
|
}
|
|
4596
4596
|
|
|
4597
|
-
// bazel-out/
|
|
4597
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
4598
4598
|
var InterpolationConfig = class {
|
|
4599
4599
|
static fromArray(markers) {
|
|
4600
4600
|
if (!markers) {
|
|
@@ -4611,7 +4611,7 @@ var InterpolationConfig = class {
|
|
|
4611
4611
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4612
4612
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
4613
4613
|
|
|
4614
|
-
// bazel-out/
|
|
4614
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4615
4615
|
var $EOF = 0;
|
|
4616
4616
|
var $BSPACE = 8;
|
|
4617
4617
|
var $TAB = 9;
|
|
@@ -4693,7 +4693,7 @@ function isQuote(code) {
|
|
|
4693
4693
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4694
4694
|
}
|
|
4695
4695
|
|
|
4696
|
-
// bazel-out/
|
|
4696
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4697
4697
|
var ParseLocation = class {
|
|
4698
4698
|
constructor(file, offset, line, col) {
|
|
4699
4699
|
this.file = file;
|
|
@@ -4840,7 +4840,7 @@ function sanitizeIdentifier(name) {
|
|
|
4840
4840
|
return name.replace(/\W/g, "_");
|
|
4841
4841
|
}
|
|
4842
4842
|
|
|
4843
|
-
// bazel-out/
|
|
4843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
4844
4844
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
4845
4845
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
4846
4846
|
constructor() {
|
|
@@ -4933,7 +4933,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
4933
4933
|
}
|
|
4934
4934
|
};
|
|
4935
4935
|
|
|
4936
|
-
// bazel-out/
|
|
4936
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
4937
4937
|
var policy;
|
|
4938
4938
|
function getPolicy() {
|
|
4939
4939
|
if (policy === void 0) {
|
|
@@ -4971,7 +4971,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
4971
4971
|
return fn2.bind(_global);
|
|
4972
4972
|
}
|
|
4973
4973
|
|
|
4974
|
-
// bazel-out/
|
|
4974
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
4975
4975
|
var JitEvaluator = class {
|
|
4976
4976
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
4977
4977
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5062,7 +5062,7 @@ function isUseStrictStatement(statement) {
|
|
|
5062
5062
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5063
5063
|
}
|
|
5064
5064
|
|
|
5065
|
-
// bazel-out/
|
|
5065
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5066
5066
|
function compileInjector(meta) {
|
|
5067
5067
|
const definitionMap = new DefinitionMap();
|
|
5068
5068
|
if (meta.providers !== null) {
|
|
@@ -5079,7 +5079,7 @@ function createInjectorType(meta) {
|
|
|
5079
5079
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5080
5080
|
}
|
|
5081
5081
|
|
|
5082
|
-
// bazel-out/
|
|
5082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5083
5083
|
var R3JitReflector = class {
|
|
5084
5084
|
constructor(context) {
|
|
5085
5085
|
this.context = context;
|
|
@@ -5095,7 +5095,7 @@ var R3JitReflector = class {
|
|
|
5095
5095
|
}
|
|
5096
5096
|
};
|
|
5097
5097
|
|
|
5098
|
-
// bazel-out/
|
|
5098
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5099
5099
|
var R3SelectorScopeMode;
|
|
5100
5100
|
(function(R3SelectorScopeMode2) {
|
|
5101
5101
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5236,7 +5236,7 @@ function tupleOfTypes(types) {
|
|
|
5236
5236
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5237
5237
|
}
|
|
5238
5238
|
|
|
5239
|
-
// bazel-out/
|
|
5239
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5240
5240
|
function compilePipeFromMetadata(metadata) {
|
|
5241
5241
|
const definitionMapValues = [];
|
|
5242
5242
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5257,7 +5257,7 @@ function createPipeType(metadata) {
|
|
|
5257
5257
|
]));
|
|
5258
5258
|
}
|
|
5259
5259
|
|
|
5260
|
-
// bazel-out/
|
|
5260
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5261
5261
|
var R3TemplateDependencyKind;
|
|
5262
5262
|
(function(R3TemplateDependencyKind2) {
|
|
5263
5263
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5265,7 +5265,7 @@ var R3TemplateDependencyKind;
|
|
|
5265
5265
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5266
5266
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5267
5267
|
|
|
5268
|
-
// bazel-out/
|
|
5268
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
5269
5269
|
var ParserError = class {
|
|
5270
5270
|
constructor(message, input, errLocation, ctxLocation) {
|
|
5271
5271
|
this.input = input;
|
|
@@ -5932,7 +5932,7 @@ var BoundElementProperty = class {
|
|
|
5932
5932
|
}
|
|
5933
5933
|
};
|
|
5934
5934
|
|
|
5935
|
-
// bazel-out/
|
|
5935
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler_util/expression_converter.mjs
|
|
5936
5936
|
var _EventHandlerVars = class {
|
|
5937
5937
|
};
|
|
5938
5938
|
var EventHandlerVars = _EventHandlerVars;
|
|
@@ -6623,7 +6623,7 @@ var BuiltinFunctionCall = class extends Call {
|
|
|
6623
6623
|
}
|
|
6624
6624
|
};
|
|
6625
6625
|
|
|
6626
|
-
// bazel-out/
|
|
6626
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
6627
6627
|
var _SECURITY_SCHEMA;
|
|
6628
6628
|
function SECURITY_SCHEMA() {
|
|
6629
6629
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -6681,7 +6681,7 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
6681
6681
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
6682
6682
|
}
|
|
6683
6683
|
|
|
6684
|
-
// bazel-out/
|
|
6684
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
6685
6685
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
6686
6686
|
"inherit",
|
|
6687
6687
|
"initial",
|
|
@@ -7153,7 +7153,7 @@ function repeatGroups(groups, multiples) {
|
|
|
7153
7153
|
}
|
|
7154
7154
|
}
|
|
7155
7155
|
|
|
7156
|
-
// bazel-out/
|
|
7156
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
7157
7157
|
var OpKind;
|
|
7158
7158
|
(function(OpKind2) {
|
|
7159
7159
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -7316,7 +7316,7 @@ var TemplateKind;
|
|
|
7316
7316
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
7317
7317
|
})(TemplateKind || (TemplateKind = {}));
|
|
7318
7318
|
|
|
7319
|
-
// bazel-out/
|
|
7319
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7320
7320
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7321
7321
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7322
7322
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -7348,7 +7348,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
7348
7348
|
return expr[UsesVarOffset] === true;
|
|
7349
7349
|
}
|
|
7350
7350
|
|
|
7351
|
-
// bazel-out/
|
|
7351
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
7352
7352
|
function createStatementOp(statement) {
|
|
7353
7353
|
return __spreadValues({
|
|
7354
7354
|
kind: OpKind.Statement,
|
|
@@ -7370,7 +7370,7 @@ var NEW_OP = {
|
|
|
7370
7370
|
next: null
|
|
7371
7371
|
};
|
|
7372
7372
|
|
|
7373
|
-
// bazel-out/
|
|
7373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
7374
7374
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
7375
7375
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
7376
7376
|
kind: OpKind.InterpolateText,
|
|
@@ -7551,7 +7551,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
7551
7551
|
}, NEW_OP);
|
|
7552
7552
|
}
|
|
7553
7553
|
|
|
7554
|
-
// bazel-out/
|
|
7554
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7555
7555
|
var _a;
|
|
7556
7556
|
var _b;
|
|
7557
7557
|
var _c;
|
|
@@ -8413,7 +8413,7 @@ function isStringLiteral(expr) {
|
|
|
8413
8413
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
8414
8414
|
}
|
|
8415
8415
|
|
|
8416
|
-
// bazel-out/
|
|
8416
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
8417
8417
|
var _OpList = class {
|
|
8418
8418
|
constructor() {
|
|
8419
8419
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -8604,14 +8604,14 @@ var OpList = _OpList;
|
|
|
8604
8604
|
_OpList.nextListId = 0;
|
|
8605
8605
|
})();
|
|
8606
8606
|
|
|
8607
|
-
// bazel-out/
|
|
8607
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
8608
8608
|
var SlotHandle = class {
|
|
8609
8609
|
constructor() {
|
|
8610
8610
|
this.slot = null;
|
|
8611
8611
|
}
|
|
8612
8612
|
};
|
|
8613
8613
|
|
|
8614
|
-
// bazel-out/
|
|
8614
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
8615
8615
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
8616
8616
|
OpKind.Element,
|
|
8617
8617
|
OpKind.ElementStart,
|
|
@@ -8912,7 +8912,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
8912
8912
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
8913
8913
|
}
|
|
8914
8914
|
|
|
8915
|
-
// bazel-out/
|
|
8915
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
8916
8916
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
8917
8917
|
return __spreadValues(__spreadValues({
|
|
8918
8918
|
kind: OpKind.HostProperty,
|
|
@@ -8926,10 +8926,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
8926
8926
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
8927
8927
|
}
|
|
8928
8928
|
|
|
8929
|
-
// bazel-out/
|
|
8929
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
8930
8930
|
var CTX_REF = "CTX_REF_MARKER";
|
|
8931
8931
|
|
|
8932
|
-
// bazel-out/
|
|
8932
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
8933
8933
|
var CompilationJobKind;
|
|
8934
8934
|
(function(CompilationJobKind2) {
|
|
8935
8935
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -9037,7 +9037,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
9037
9037
|
}
|
|
9038
9038
|
};
|
|
9039
9039
|
|
|
9040
|
-
// bazel-out/
|
|
9040
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
9041
9041
|
function deleteAnyCasts(job) {
|
|
9042
9042
|
for (const unit of job.units) {
|
|
9043
9043
|
for (const op of unit.ops()) {
|
|
@@ -9055,7 +9055,7 @@ function removeAnys(e) {
|
|
|
9055
9055
|
return e;
|
|
9056
9056
|
}
|
|
9057
9057
|
|
|
9058
|
-
// bazel-out/
|
|
9058
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
9059
9059
|
function applyI18nExpressions(job) {
|
|
9060
9060
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
9061
9061
|
for (const unit of job.units) {
|
|
@@ -9098,7 +9098,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
9098
9098
|
return false;
|
|
9099
9099
|
}
|
|
9100
9100
|
|
|
9101
|
-
// bazel-out/
|
|
9101
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
9102
9102
|
function assignI18nSlotDependencies(job) {
|
|
9103
9103
|
for (const unit of job.units) {
|
|
9104
9104
|
let updateOp = unit.update.head;
|
|
@@ -9143,7 +9143,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
9143
9143
|
}
|
|
9144
9144
|
}
|
|
9145
9145
|
|
|
9146
|
-
// bazel-out/
|
|
9146
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
9147
9147
|
function createOpXrefMap(unit) {
|
|
9148
9148
|
const map = /* @__PURE__ */ new Map();
|
|
9149
9149
|
for (const op of unit.create) {
|
|
@@ -9158,7 +9158,7 @@ function createOpXrefMap(unit) {
|
|
|
9158
9158
|
return map;
|
|
9159
9159
|
}
|
|
9160
9160
|
|
|
9161
|
-
// bazel-out/
|
|
9161
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
9162
9162
|
function extractAttributes(job) {
|
|
9163
9163
|
for (const unit of job.units) {
|
|
9164
9164
|
const elements = createOpXrefMap(unit);
|
|
@@ -9287,7 +9287,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
9287
9287
|
}
|
|
9288
9288
|
}
|
|
9289
9289
|
|
|
9290
|
-
// bazel-out/
|
|
9290
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
9291
9291
|
function lookupElement2(elements, xref) {
|
|
9292
9292
|
const el = elements.get(xref);
|
|
9293
9293
|
if (el === void 0) {
|
|
@@ -9344,7 +9344,7 @@ function specializeBindings(job) {
|
|
|
9344
9344
|
}
|
|
9345
9345
|
}
|
|
9346
9346
|
|
|
9347
|
-
// bazel-out/
|
|
9347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9348
9348
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9349
9349
|
Identifiers.attribute,
|
|
9350
9350
|
Identifiers.classProp,
|
|
@@ -9412,7 +9412,7 @@ function chainOperationsInList(opList) {
|
|
|
9412
9412
|
}
|
|
9413
9413
|
}
|
|
9414
9414
|
|
|
9415
|
-
// bazel-out/
|
|
9415
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
9416
9416
|
function collapseSingletonInterpolations(job) {
|
|
9417
9417
|
for (const unit of job.units) {
|
|
9418
9418
|
for (const op of unit.update) {
|
|
@@ -9424,7 +9424,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
9424
9424
|
}
|
|
9425
9425
|
}
|
|
9426
9426
|
|
|
9427
|
-
// bazel-out/
|
|
9427
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
9428
9428
|
function generateConditionalExpressions(job) {
|
|
9429
9429
|
for (const unit of job.units) {
|
|
9430
9430
|
for (const op of unit.ops()) {
|
|
@@ -9461,7 +9461,7 @@ function generateConditionalExpressions(job) {
|
|
|
9461
9461
|
}
|
|
9462
9462
|
}
|
|
9463
9463
|
|
|
9464
|
-
// bazel-out/
|
|
9464
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9465
9465
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9466
9466
|
["&&", BinaryOperator.And],
|
|
9467
9467
|
[">", BinaryOperator.Bigger],
|
|
@@ -9512,7 +9512,7 @@ function literalOrArrayLiteral(value) {
|
|
|
9512
9512
|
return literal(value);
|
|
9513
9513
|
}
|
|
9514
9514
|
|
|
9515
|
-
// bazel-out/
|
|
9515
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
9516
9516
|
function collectElementConsts(job) {
|
|
9517
9517
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
9518
9518
|
for (const unit of job.units) {
|
|
@@ -9681,7 +9681,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
9681
9681
|
return literalArr(attrArray);
|
|
9682
9682
|
}
|
|
9683
9683
|
|
|
9684
|
-
// bazel-out/
|
|
9684
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
9685
9685
|
function convertI18nBindings(job) {
|
|
9686
9686
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
9687
9687
|
for (const unit of job.units) {
|
|
@@ -9722,7 +9722,7 @@ function convertI18nBindings(job) {
|
|
|
9722
9722
|
}
|
|
9723
9723
|
}
|
|
9724
9724
|
|
|
9725
|
-
// bazel-out/
|
|
9725
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
|
|
9726
9726
|
function createDeferDepsFns(job) {
|
|
9727
9727
|
var _a2;
|
|
9728
9728
|
for (const unit of job.units) {
|
|
@@ -9762,7 +9762,7 @@ function createDeferDepsFns(job) {
|
|
|
9762
9762
|
}
|
|
9763
9763
|
}
|
|
9764
9764
|
|
|
9765
|
-
// bazel-out/
|
|
9765
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
9766
9766
|
function createI18nContexts(job) {
|
|
9767
9767
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
9768
9768
|
for (const unit of job.units) {
|
|
@@ -9840,7 +9840,7 @@ function createI18nContexts(job) {
|
|
|
9840
9840
|
}
|
|
9841
9841
|
}
|
|
9842
9842
|
|
|
9843
|
-
// bazel-out/
|
|
9843
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
9844
9844
|
function deduplicateTextBindings(job) {
|
|
9845
9845
|
const seen = /* @__PURE__ */ new Map();
|
|
9846
9846
|
for (const unit of job.units) {
|
|
@@ -9862,7 +9862,7 @@ function deduplicateTextBindings(job) {
|
|
|
9862
9862
|
}
|
|
9863
9863
|
}
|
|
9864
9864
|
|
|
9865
|
-
// bazel-out/
|
|
9865
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
9866
9866
|
function configureDeferInstructions(job) {
|
|
9867
9867
|
for (const unit of job.units) {
|
|
9868
9868
|
for (const op of unit.create) {
|
|
@@ -9879,7 +9879,7 @@ function configureDeferInstructions(job) {
|
|
|
9879
9879
|
}
|
|
9880
9880
|
}
|
|
9881
9881
|
|
|
9882
|
-
// bazel-out/
|
|
9882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
9883
9883
|
function resolveDeferTargetNames(job) {
|
|
9884
9884
|
const scopes = /* @__PURE__ */ new Map();
|
|
9885
9885
|
function getScopeForView2(view) {
|
|
@@ -9973,7 +9973,7 @@ var Scope = class {
|
|
|
9973
9973
|
}
|
|
9974
9974
|
};
|
|
9975
9975
|
|
|
9976
|
-
// bazel-out/
|
|
9976
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
9977
9977
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
9978
9978
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
9979
9979
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -10000,7 +10000,7 @@ function collapseEmptyInstructions(job) {
|
|
|
10000
10000
|
}
|
|
10001
10001
|
}
|
|
10002
10002
|
|
|
10003
|
-
// bazel-out/
|
|
10003
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
10004
10004
|
function expandSafeReads(job) {
|
|
10005
10005
|
for (const unit of job.units) {
|
|
10006
10006
|
for (const op of unit.ops()) {
|
|
@@ -10136,7 +10136,7 @@ function ternaryTransform(e) {
|
|
|
10136
10136
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
10137
10137
|
}
|
|
10138
10138
|
|
|
10139
|
-
// bazel-out/
|
|
10139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
10140
10140
|
var ESCAPE = "\uFFFD";
|
|
10141
10141
|
var ELEMENT_MARKER = "#";
|
|
10142
10142
|
var TEMPLATE_MARKER = "*";
|
|
@@ -10272,7 +10272,7 @@ function formatValue(value) {
|
|
|
10272
10272
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
10273
10273
|
}
|
|
10274
10274
|
|
|
10275
|
-
// bazel-out/
|
|
10275
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
10276
10276
|
function generateAdvance(job) {
|
|
10277
10277
|
for (const unit of job.units) {
|
|
10278
10278
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -10304,7 +10304,7 @@ function generateAdvance(job) {
|
|
|
10304
10304
|
}
|
|
10305
10305
|
}
|
|
10306
10306
|
|
|
10307
|
-
// bazel-out/
|
|
10307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
10308
10308
|
function generateProjectionDefs(job) {
|
|
10309
10309
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
10310
10310
|
const selectors = [];
|
|
@@ -10328,7 +10328,7 @@ function generateProjectionDefs(job) {
|
|
|
10328
10328
|
}
|
|
10329
10329
|
}
|
|
10330
10330
|
|
|
10331
|
-
// bazel-out/
|
|
10331
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
10332
10332
|
function generateVariables(job) {
|
|
10333
10333
|
recursivelyProcessView(job.root, null);
|
|
10334
10334
|
}
|
|
@@ -10422,7 +10422,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
10422
10422
|
return newOps;
|
|
10423
10423
|
}
|
|
10424
10424
|
|
|
10425
|
-
// bazel-out/
|
|
10425
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
10426
10426
|
function collectConstExpressions(job) {
|
|
10427
10427
|
for (const unit of job.units) {
|
|
10428
10428
|
for (const op of unit.ops()) {
|
|
@@ -10436,7 +10436,7 @@ function collectConstExpressions(job) {
|
|
|
10436
10436
|
}
|
|
10437
10437
|
}
|
|
10438
10438
|
|
|
10439
|
-
// bazel-out/
|
|
10439
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
10440
10440
|
var STYLE_DOT = "style.";
|
|
10441
10441
|
var CLASS_DOT = "class.";
|
|
10442
10442
|
var STYLE_BANG = "style!";
|
|
@@ -10494,7 +10494,7 @@ function parseProperty(name) {
|
|
|
10494
10494
|
return { property: property2, suffix };
|
|
10495
10495
|
}
|
|
10496
10496
|
|
|
10497
|
-
// bazel-out/
|
|
10497
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
10498
10498
|
function mapLiteral(obj, quoted = false) {
|
|
10499
10499
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
10500
10500
|
key,
|
|
@@ -10503,7 +10503,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
10503
10503
|
})));
|
|
10504
10504
|
}
|
|
10505
10505
|
|
|
10506
|
-
// bazel-out/
|
|
10506
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
10507
10507
|
var IcuSerializerVisitor = class {
|
|
10508
10508
|
visitText(text2) {
|
|
10509
10509
|
return text2.value;
|
|
@@ -10537,7 +10537,7 @@ function serializeIcuNode(icu) {
|
|
|
10537
10537
|
return icu.visit(serializer);
|
|
10538
10538
|
}
|
|
10539
10539
|
|
|
10540
|
-
// bazel-out/
|
|
10540
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
10541
10541
|
var TokenType;
|
|
10542
10542
|
(function(TokenType2) {
|
|
10543
10543
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -10898,7 +10898,7 @@ function parseIntAutoRadix(text2) {
|
|
|
10898
10898
|
return result;
|
|
10899
10899
|
}
|
|
10900
10900
|
|
|
10901
|
-
// bazel-out/
|
|
10901
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
10902
10902
|
var SplitInterpolation = class {
|
|
10903
10903
|
constructor(strings, expressions, offsets) {
|
|
10904
10904
|
this.strings = strings;
|
|
@@ -11780,7 +11780,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
11780
11780
|
return offsetMap;
|
|
11781
11781
|
}
|
|
11782
11782
|
|
|
11783
|
-
// bazel-out/
|
|
11783
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
11784
11784
|
var NodeWithI18n = class {
|
|
11785
11785
|
constructor(sourceSpan, i18n2) {
|
|
11786
11786
|
this.sourceSpan = sourceSpan;
|
|
@@ -11932,18 +11932,18 @@ var RecursiveVisitor = class {
|
|
|
11932
11932
|
}
|
|
11933
11933
|
};
|
|
11934
11934
|
|
|
11935
|
-
// bazel-out/
|
|
11935
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
11936
11936
|
var ElementSchemaRegistry = class {
|
|
11937
11937
|
};
|
|
11938
11938
|
|
|
11939
|
-
// bazel-out/
|
|
11939
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
11940
11940
|
var BOOLEAN = "boolean";
|
|
11941
11941
|
var NUMBER = "number";
|
|
11942
11942
|
var STRING = "string";
|
|
11943
11943
|
var OBJECT = "object";
|
|
11944
11944
|
var SCHEMA = [
|
|
11945
11945
|
"[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",
|
|
11946
|
-
"[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",
|
|
11946
|
+
"[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",
|
|
11947
11947
|
"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",
|
|
11948
11948
|
"media^[HTMLElement]|!autoplay,!controls,%controlsList,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,*waitingforkey,#playbackRate,preload,!preservesPitch,src,%srcObject,#volume",
|
|
11949
11949
|
":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",
|
|
@@ -12289,7 +12289,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12289
12289
|
}
|
|
12290
12290
|
}
|
|
12291
12291
|
|
|
12292
|
-
// bazel-out/
|
|
12292
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12293
12293
|
var HtmlTagDefinition = class {
|
|
12294
12294
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12295
12295
|
this.closedByChildren = {};
|
|
@@ -12407,7 +12407,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
12407
12407
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
12408
12408
|
}
|
|
12409
12409
|
|
|
12410
|
-
// bazel-out/
|
|
12410
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
12411
12411
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
12412
12412
|
"A": "LINK",
|
|
12413
12413
|
"B": "BOLD_TEXT",
|
|
@@ -12529,7 +12529,7 @@ var PlaceholderRegistry = class {
|
|
|
12529
12529
|
}
|
|
12530
12530
|
};
|
|
12531
12531
|
|
|
12532
|
-
// bazel-out/
|
|
12532
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
12533
12533
|
var _expParser = new Parser(new Lexer());
|
|
12534
12534
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
12535
12535
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -12708,14 +12708,14 @@ function extractPlaceholderName(input) {
|
|
|
12708
12708
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
12709
12709
|
}
|
|
12710
12710
|
|
|
12711
|
-
// bazel-out/
|
|
12711
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
12712
12712
|
var I18nError = class extends ParseError {
|
|
12713
12713
|
constructor(span, msg) {
|
|
12714
12714
|
super(span, msg);
|
|
12715
12715
|
}
|
|
12716
12716
|
};
|
|
12717
12717
|
|
|
12718
|
-
// bazel-out/
|
|
12718
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12719
12719
|
var NAMED_ENTITIES = {
|
|
12720
12720
|
"AElig": "\xC6",
|
|
12721
12721
|
"AMP": "&",
|
|
@@ -14846,7 +14846,7 @@ var NAMED_ENTITIES = {
|
|
|
14846
14846
|
var NGSP_UNICODE = "\uE500";
|
|
14847
14847
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14848
14848
|
|
|
14849
|
-
// bazel-out/
|
|
14849
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14850
14850
|
var TokenError = class extends ParseError {
|
|
14851
14851
|
constructor(errorMsg, tokenType, span) {
|
|
14852
14852
|
super(span, errorMsg);
|
|
@@ -15767,7 +15767,7 @@ var CursorError = class {
|
|
|
15767
15767
|
}
|
|
15768
15768
|
};
|
|
15769
15769
|
|
|
15770
|
-
// bazel-out/
|
|
15770
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15771
15771
|
var TreeError = class extends ParseError {
|
|
15772
15772
|
static create(elementName, span, msg) {
|
|
15773
15773
|
return new TreeError(elementName, span, msg);
|
|
@@ -16151,7 +16151,7 @@ function decodeEntity(match, entity) {
|
|
|
16151
16151
|
return match;
|
|
16152
16152
|
}
|
|
16153
16153
|
|
|
16154
|
-
// bazel-out/
|
|
16154
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
16155
16155
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
16156
16156
|
"iframe|srcdoc",
|
|
16157
16157
|
"*|innerhtml",
|
|
@@ -16166,7 +16166,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
16166
16166
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
16167
16167
|
}
|
|
16168
16168
|
|
|
16169
|
-
// bazel-out/
|
|
16169
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16170
16170
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16171
16171
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16172
16172
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16323,7 +16323,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16323
16323
|
return jsDocComment(tags);
|
|
16324
16324
|
}
|
|
16325
16325
|
|
|
16326
|
-
// bazel-out/
|
|
16326
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16327
16327
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16328
16328
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16329
16329
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16374,7 +16374,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16374
16374
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16375
16375
|
}
|
|
16376
16376
|
|
|
16377
|
-
// bazel-out/
|
|
16377
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16378
16378
|
function createLocalizeStatements(variable2, message, params) {
|
|
16379
16379
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16380
16380
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -16463,7 +16463,7 @@ function createEmptyMessagePart(location) {
|
|
|
16463
16463
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
16464
16464
|
}
|
|
16465
16465
|
|
|
16466
|
-
// bazel-out/
|
|
16466
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
16467
16467
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
16468
16468
|
var TRANSLATION_VAR_PREFIX2 = "i18n_";
|
|
16469
16469
|
var I18N_ICU_MAPPING_PREFIX2 = "I18N_EXP_";
|
|
@@ -16624,7 +16624,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
16624
16624
|
return variable(name);
|
|
16625
16625
|
}
|
|
16626
16626
|
|
|
16627
|
-
// bazel-out/
|
|
16627
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
16628
16628
|
function convertI18nText(job) {
|
|
16629
16629
|
var _a2, _b2, _c2;
|
|
16630
16630
|
for (const unit of job.units) {
|
|
@@ -16694,7 +16694,7 @@ function convertI18nText(job) {
|
|
|
16694
16694
|
}
|
|
16695
16695
|
}
|
|
16696
16696
|
|
|
16697
|
-
// bazel-out/
|
|
16697
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
16698
16698
|
function liftLocalRefs(job) {
|
|
16699
16699
|
for (const unit of job.units) {
|
|
16700
16700
|
for (const op of unit.create) {
|
|
@@ -16724,7 +16724,7 @@ function serializeLocalRefs(refs) {
|
|
|
16724
16724
|
return literalArr(constRefs);
|
|
16725
16725
|
}
|
|
16726
16726
|
|
|
16727
|
-
// bazel-out/
|
|
16727
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
16728
16728
|
function emitNamespaceChanges(job) {
|
|
16729
16729
|
for (const unit of job.units) {
|
|
16730
16730
|
let activeNamespace = Namespace.HTML;
|
|
@@ -16740,7 +16740,7 @@ function emitNamespaceChanges(job) {
|
|
|
16740
16740
|
}
|
|
16741
16741
|
}
|
|
16742
16742
|
|
|
16743
|
-
// bazel-out/
|
|
16743
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
16744
16744
|
function parse(value) {
|
|
16745
16745
|
const styles = [];
|
|
16746
16746
|
let i = 0;
|
|
@@ -16801,7 +16801,7 @@ function hyphenate2(value) {
|
|
|
16801
16801
|
}).toLowerCase();
|
|
16802
16802
|
}
|
|
16803
16803
|
|
|
16804
|
-
// bazel-out/
|
|
16804
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
16805
16805
|
function nameFunctionsAndVariables(job) {
|
|
16806
16806
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
16807
16807
|
}
|
|
@@ -16930,7 +16930,7 @@ function stripImportant(name) {
|
|
|
16930
16930
|
return name;
|
|
16931
16931
|
}
|
|
16932
16932
|
|
|
16933
|
-
// bazel-out/
|
|
16933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
16934
16934
|
function mergeNextContextExpressions(job) {
|
|
16935
16935
|
for (const unit of job.units) {
|
|
16936
16936
|
for (const op of unit.create) {
|
|
@@ -16976,7 +16976,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
16976
16976
|
}
|
|
16977
16977
|
}
|
|
16978
16978
|
|
|
16979
|
-
// bazel-out/
|
|
16979
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
16980
16980
|
var CONTAINER_TAG = "ng-container";
|
|
16981
16981
|
function generateNgContainerOps(job) {
|
|
16982
16982
|
for (const unit of job.units) {
|
|
@@ -16993,7 +16993,7 @@ function generateNgContainerOps(job) {
|
|
|
16993
16993
|
}
|
|
16994
16994
|
}
|
|
16995
16995
|
|
|
16996
|
-
// bazel-out/
|
|
16996
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
16997
16997
|
function lookupElement3(elements, xref) {
|
|
16998
16998
|
const el = elements.get(xref);
|
|
16999
16999
|
if (el === void 0) {
|
|
@@ -17023,7 +17023,7 @@ function disableBindings(job) {
|
|
|
17023
17023
|
}
|
|
17024
17024
|
}
|
|
17025
17025
|
|
|
17026
|
-
// bazel-out/
|
|
17026
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
17027
17027
|
function generateNullishCoalesceExpressions(job) {
|
|
17028
17028
|
for (const unit of job.units) {
|
|
17029
17029
|
for (const op of unit.ops()) {
|
|
@@ -17039,7 +17039,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
17039
17039
|
}
|
|
17040
17040
|
}
|
|
17041
17041
|
|
|
17042
|
-
// bazel-out/
|
|
17042
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
17043
17043
|
function kindTest(kind) {
|
|
17044
17044
|
return (op) => op.kind === kind;
|
|
17045
17045
|
}
|
|
@@ -17129,7 +17129,7 @@ function keepLast(ops) {
|
|
|
17129
17129
|
return ops.slice(ops.length - 1);
|
|
17130
17130
|
}
|
|
17131
17131
|
|
|
17132
|
-
// bazel-out/
|
|
17132
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
17133
17133
|
function parseExtractedStyles(job) {
|
|
17134
17134
|
const elements = /* @__PURE__ */ new Map();
|
|
17135
17135
|
for (const unit of job.units) {
|
|
@@ -17164,7 +17164,7 @@ function parseExtractedStyles(job) {
|
|
|
17164
17164
|
}
|
|
17165
17165
|
}
|
|
17166
17166
|
|
|
17167
|
-
// bazel-out/
|
|
17167
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
17168
17168
|
function removeContentSelectors(job) {
|
|
17169
17169
|
for (const unit of job.units) {
|
|
17170
17170
|
const elements = createOpXrefMap(unit);
|
|
@@ -17191,7 +17191,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
17191
17191
|
return el;
|
|
17192
17192
|
}
|
|
17193
17193
|
|
|
17194
|
-
// bazel-out/
|
|
17194
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
17195
17195
|
function createPipes(job) {
|
|
17196
17196
|
for (const unit of job.units) {
|
|
17197
17197
|
processPipeBindingsInView(unit);
|
|
@@ -17239,7 +17239,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
17239
17239
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
17240
17240
|
}
|
|
17241
17241
|
|
|
17242
|
-
// bazel-out/
|
|
17242
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
17243
17243
|
function createVariadicPipes(job) {
|
|
17244
17244
|
for (const unit of job.units) {
|
|
17245
17245
|
for (const op of unit.update) {
|
|
@@ -17256,7 +17256,7 @@ function createVariadicPipes(job) {
|
|
|
17256
17256
|
}
|
|
17257
17257
|
}
|
|
17258
17258
|
|
|
17259
|
-
// bazel-out/
|
|
17259
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
17260
17260
|
function propagateI18nBlocks(job) {
|
|
17261
17261
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
17262
17262
|
}
|
|
@@ -17310,7 +17310,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
17310
17310
|
}
|
|
17311
17311
|
}
|
|
17312
17312
|
|
|
17313
|
-
// bazel-out/
|
|
17313
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
17314
17314
|
function extractPureFunctions(job) {
|
|
17315
17315
|
for (const view of job.units) {
|
|
17316
17316
|
for (const op of view.ops()) {
|
|
@@ -17352,7 +17352,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
17352
17352
|
}
|
|
17353
17353
|
};
|
|
17354
17354
|
|
|
17355
|
-
// bazel-out/
|
|
17355
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
17356
17356
|
function generatePureLiteralStructures(job) {
|
|
17357
17357
|
for (const unit of job.units) {
|
|
17358
17358
|
for (const op of unit.update) {
|
|
@@ -17399,7 +17399,7 @@ function transformLiteralMap(expr) {
|
|
|
17399
17399
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
17400
17400
|
}
|
|
17401
17401
|
|
|
17402
|
-
// bazel-out/
|
|
17402
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
17403
17403
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
17404
17404
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
17405
17405
|
}
|
|
@@ -17934,7 +17934,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
17934
17934
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
17935
17935
|
}
|
|
17936
17936
|
|
|
17937
|
-
// bazel-out/
|
|
17937
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
17938
17938
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
17939
17939
|
["window", Identifiers.resolveWindow],
|
|
17940
17940
|
["document", Identifiers.resolveDocument],
|
|
@@ -18275,7 +18275,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
18275
18275
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
18276
18276
|
}
|
|
18277
18277
|
|
|
18278
|
-
// bazel-out/
|
|
18278
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
18279
18279
|
function removeEmptyBindings(job) {
|
|
18280
18280
|
for (const unit of job.units) {
|
|
18281
18281
|
for (const op of unit.update) {
|
|
@@ -18296,7 +18296,7 @@ function removeEmptyBindings(job) {
|
|
|
18296
18296
|
}
|
|
18297
18297
|
}
|
|
18298
18298
|
|
|
18299
|
-
// bazel-out/
|
|
18299
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
18300
18300
|
function removeI18nContexts(job) {
|
|
18301
18301
|
for (const unit of job.units) {
|
|
18302
18302
|
for (const op of unit.create) {
|
|
@@ -18312,7 +18312,7 @@ function removeI18nContexts(job) {
|
|
|
18312
18312
|
}
|
|
18313
18313
|
}
|
|
18314
18314
|
|
|
18315
|
-
// bazel-out/
|
|
18315
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
18316
18316
|
function removeUnusedI18nAttributesOps(job) {
|
|
18317
18317
|
for (const unit of job.units) {
|
|
18318
18318
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -18334,7 +18334,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
18334
18334
|
}
|
|
18335
18335
|
}
|
|
18336
18336
|
|
|
18337
|
-
// bazel-out/
|
|
18337
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
18338
18338
|
function resolveContexts(job) {
|
|
18339
18339
|
for (const unit of job.units) {
|
|
18340
18340
|
processLexicalScope(unit, unit.create);
|
|
@@ -18376,7 +18376,7 @@ function processLexicalScope(view, ops) {
|
|
|
18376
18376
|
}
|
|
18377
18377
|
}
|
|
18378
18378
|
|
|
18379
|
-
// bazel-out/
|
|
18379
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
18380
18380
|
function resolveDollarEvent(job) {
|
|
18381
18381
|
for (const unit of job.units) {
|
|
18382
18382
|
transformDollarEvent(unit, unit.create);
|
|
@@ -18399,7 +18399,7 @@ function transformDollarEvent(unit, ops) {
|
|
|
18399
18399
|
}
|
|
18400
18400
|
}
|
|
18401
18401
|
|
|
18402
|
-
// bazel-out/
|
|
18402
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
18403
18403
|
function resolveI18nElementPlaceholders(job) {
|
|
18404
18404
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
18405
18405
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -18578,7 +18578,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
18578
18578
|
params.set(placeholder, values);
|
|
18579
18579
|
}
|
|
18580
18580
|
|
|
18581
|
-
// bazel-out/
|
|
18581
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
18582
18582
|
function resolveI18nExpressionPlaceholders(job) {
|
|
18583
18583
|
var _a2;
|
|
18584
18584
|
const subTemplateIndicies = /* @__PURE__ */ new Map();
|
|
@@ -18631,7 +18631,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
18631
18631
|
}
|
|
18632
18632
|
}
|
|
18633
18633
|
|
|
18634
|
-
// bazel-out/
|
|
18634
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
18635
18635
|
function resolveNames(job) {
|
|
18636
18636
|
for (const unit of job.units) {
|
|
18637
18637
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -18696,7 +18696,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
18696
18696
|
}
|
|
18697
18697
|
}
|
|
18698
18698
|
|
|
18699
|
-
// bazel-out/
|
|
18699
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
18700
18700
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
18701
18701
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
18702
18702
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -18766,7 +18766,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
18766
18766
|
return securityContext;
|
|
18767
18767
|
}
|
|
18768
18768
|
|
|
18769
|
-
// bazel-out/
|
|
18769
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
18770
18770
|
function transformTwoWayBindingSet(job) {
|
|
18771
18771
|
for (const unit of job.units) {
|
|
18772
18772
|
for (const op of unit.create) {
|
|
@@ -18813,7 +18813,7 @@ function wrapAction(target, value) {
|
|
|
18813
18813
|
throw new Error(`Unsupported expression in two-way action binding.`);
|
|
18814
18814
|
}
|
|
18815
18815
|
|
|
18816
|
-
// bazel-out/
|
|
18816
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
18817
18817
|
function saveAndRestoreView(job) {
|
|
18818
18818
|
for (const unit of job.units) {
|
|
18819
18819
|
unit.create.prepend([
|
|
@@ -18858,7 +18858,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
18858
18858
|
}
|
|
18859
18859
|
}
|
|
18860
18860
|
|
|
18861
|
-
// bazel-out/
|
|
18861
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
18862
18862
|
function allocateSlots(job) {
|
|
18863
18863
|
const slotMap = /* @__PURE__ */ new Map();
|
|
18864
18864
|
for (const unit of job.units) {
|
|
@@ -18883,7 +18883,7 @@ function allocateSlots(job) {
|
|
|
18883
18883
|
}
|
|
18884
18884
|
}
|
|
18885
18885
|
|
|
18886
|
-
// bazel-out/
|
|
18886
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
18887
18887
|
function specializeStyleBindings(job) {
|
|
18888
18888
|
for (const unit of job.units) {
|
|
18889
18889
|
for (const op of unit.update) {
|
|
@@ -18913,7 +18913,7 @@ function specializeStyleBindings(job) {
|
|
|
18913
18913
|
}
|
|
18914
18914
|
}
|
|
18915
18915
|
|
|
18916
|
-
// bazel-out/
|
|
18916
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
18917
18917
|
function generateTemporaryVariables(job) {
|
|
18918
18918
|
for (const unit of job.units) {
|
|
18919
18919
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -18971,7 +18971,7 @@ function assignName(names, expr) {
|
|
|
18971
18971
|
expr.name = name;
|
|
18972
18972
|
}
|
|
18973
18973
|
|
|
18974
|
-
// bazel-out/
|
|
18974
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
18975
18975
|
function generateTrackFns(job) {
|
|
18976
18976
|
for (const unit of job.units) {
|
|
18977
18977
|
for (const op of unit.create) {
|
|
@@ -19004,7 +19004,7 @@ function generateTrackFns(job) {
|
|
|
19004
19004
|
}
|
|
19005
19005
|
}
|
|
19006
19006
|
|
|
19007
|
-
// bazel-out/
|
|
19007
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
19008
19008
|
function optimizeTrackFns(job) {
|
|
19009
19009
|
for (const unit of job.units) {
|
|
19010
19010
|
for (const op of unit.create) {
|
|
@@ -19051,7 +19051,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
19051
19051
|
return true;
|
|
19052
19052
|
}
|
|
19053
19053
|
|
|
19054
|
-
// bazel-out/
|
|
19054
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
19055
19055
|
function generateTrackVariables(job) {
|
|
19056
19056
|
for (const unit of job.units) {
|
|
19057
19057
|
for (const op of unit.create) {
|
|
@@ -19072,7 +19072,7 @@ function generateTrackVariables(job) {
|
|
|
19072
19072
|
}
|
|
19073
19073
|
}
|
|
19074
19074
|
|
|
19075
|
-
// bazel-out/
|
|
19075
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
19076
19076
|
function countVariables(job) {
|
|
19077
19077
|
for (const unit of job.units) {
|
|
19078
19078
|
let varCount = 0;
|
|
@@ -19182,7 +19182,7 @@ function isSingletonInterpolation(expr) {
|
|
|
19182
19182
|
return true;
|
|
19183
19183
|
}
|
|
19184
19184
|
|
|
19185
|
-
// bazel-out/
|
|
19185
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
19186
19186
|
function optimizeVariables(job) {
|
|
19187
19187
|
for (const unit of job.units) {
|
|
19188
19188
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -19432,7 +19432,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
19432
19432
|
}
|
|
19433
19433
|
}
|
|
19434
19434
|
|
|
19435
|
-
// bazel-out/
|
|
19435
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
19436
19436
|
function wrapI18nIcus(job) {
|
|
19437
19437
|
for (const unit of job.units) {
|
|
19438
19438
|
let currentI18nOp = null;
|
|
@@ -19462,7 +19462,7 @@ function wrapI18nIcus(job) {
|
|
|
19462
19462
|
}
|
|
19463
19463
|
}
|
|
19464
19464
|
|
|
19465
|
-
// bazel-out/
|
|
19465
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
19466
19466
|
var phases = [
|
|
19467
19467
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
19468
19468
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -19628,7 +19628,7 @@ function emitHostBindingFunction(job) {
|
|
|
19628
19628
|
);
|
|
19629
19629
|
}
|
|
19630
19630
|
|
|
19631
|
-
// bazel-out/
|
|
19631
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
19632
19632
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
19633
19633
|
var domSchema = new DomElementSchemaRegistry();
|
|
19634
19634
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -20351,10 +20351,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
20351
20351
|
return null;
|
|
20352
20352
|
}
|
|
20353
20353
|
|
|
20354
|
-
// bazel-out/
|
|
20354
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
20355
20355
|
var USE_TEMPLATE_PIPELINE = false;
|
|
20356
20356
|
|
|
20357
|
-
// bazel-out/
|
|
20357
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
20358
20358
|
var HtmlParser = class extends Parser2 {
|
|
20359
20359
|
constructor() {
|
|
20360
20360
|
super(getHtmlTagDefinition);
|
|
@@ -20364,7 +20364,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
20364
20364
|
}
|
|
20365
20365
|
};
|
|
20366
20366
|
|
|
20367
|
-
// bazel-out/
|
|
20367
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
20368
20368
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
20369
20369
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
20370
20370
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -20430,7 +20430,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
20430
20430
|
return result;
|
|
20431
20431
|
}
|
|
20432
20432
|
|
|
20433
|
-
// bazel-out/
|
|
20433
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
20434
20434
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
20435
20435
|
var ATTRIBUTE_PREFIX = "attr";
|
|
20436
20436
|
var CLASS_PREFIX = "class";
|
|
@@ -20771,7 +20771,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
20771
20771
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
20772
20772
|
}
|
|
20773
20773
|
|
|
20774
|
-
// bazel-out/
|
|
20774
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
20775
20775
|
function isStyleUrlResolvable(url) {
|
|
20776
20776
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
20777
20777
|
return false;
|
|
@@ -20780,7 +20780,7 @@ function isStyleUrlResolvable(url) {
|
|
|
20780
20780
|
}
|
|
20781
20781
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
20782
20782
|
|
|
20783
|
-
// bazel-out/
|
|
20783
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
20784
20784
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
20785
20785
|
var LINK_ELEMENT = "link";
|
|
20786
20786
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -20850,7 +20850,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
20850
20850
|
return selectAttr;
|
|
20851
20851
|
}
|
|
20852
20852
|
|
|
20853
|
-
// bazel-out/
|
|
20853
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
20854
20854
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
20855
20855
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
20856
20856
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -21161,7 +21161,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
21161
21161
|
return expression.slice(start, end);
|
|
21162
21162
|
}
|
|
21163
21163
|
|
|
21164
|
-
// bazel-out/
|
|
21164
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
21165
21165
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
21166
21166
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
21167
21167
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -21425,7 +21425,7 @@ function parseDeferredTime(value) {
|
|
|
21425
21425
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
21426
21426
|
}
|
|
21427
21427
|
|
|
21428
|
-
// bazel-out/
|
|
21428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
21429
21429
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
21430
21430
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
21431
21431
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -21560,7 +21560,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
21560
21560
|
return { triggers, prefetchTriggers };
|
|
21561
21561
|
}
|
|
21562
21562
|
|
|
21563
|
-
// bazel-out/
|
|
21563
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
21564
21564
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
21565
21565
|
var KW_BIND_IDX = 1;
|
|
21566
21566
|
var KW_LET_IDX = 2;
|
|
@@ -21991,7 +21991,7 @@ function textContents(node) {
|
|
|
21991
21991
|
}
|
|
21992
21992
|
}
|
|
21993
21993
|
|
|
21994
|
-
// bazel-out/
|
|
21994
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
21995
21995
|
var TagType;
|
|
21996
21996
|
(function(TagType2) {
|
|
21997
21997
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -22136,7 +22136,7 @@ function serializePlaceholderValue(value) {
|
|
|
22136
22136
|
}
|
|
22137
22137
|
}
|
|
22138
22138
|
|
|
22139
|
-
// bazel-out/
|
|
22139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
22140
22140
|
var IMPORTANT_FLAG = "!important";
|
|
22141
22141
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
22142
22142
|
var StylingBuilder = class {
|
|
@@ -22469,7 +22469,7 @@ function isEmptyExpression(ast) {
|
|
|
22469
22469
|
return ast instanceof EmptyExpr;
|
|
22470
22470
|
}
|
|
22471
22471
|
|
|
22472
|
-
// bazel-out/
|
|
22472
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
22473
22473
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
22474
22474
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
22475
22475
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -24161,7 +24161,7 @@ function createClosureModeGuard2() {
|
|
|
24161
24161
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
|
|
24162
24162
|
}
|
|
24163
24163
|
|
|
24164
|
-
// bazel-out/
|
|
24164
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
24165
24165
|
function toQueryFlags(query) {
|
|
24166
24166
|
return (query.descendants ? 1 : 0) | (query.static ? 2 : 0) | (query.emitDistinctChangesOnly ? 4 : 0);
|
|
24167
24167
|
}
|
|
@@ -24278,7 +24278,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
24278
24278
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
24279
24279
|
}
|
|
24280
24280
|
|
|
24281
|
-
// bazel-out/
|
|
24281
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24282
24282
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
24283
24283
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24284
24284
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -24858,7 +24858,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
24858
24858
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
24859
24859
|
}
|
|
24860
24860
|
|
|
24861
|
-
// bazel-out/
|
|
24861
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
24862
24862
|
var R3TargetBinder = class {
|
|
24863
24863
|
constructor(directiveMatcher) {
|
|
24864
24864
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -24871,7 +24871,7 @@ var R3TargetBinder = class {
|
|
|
24871
24871
|
const scopedNodeEntities = extractScopedNodeEntities(scope);
|
|
24872
24872
|
const { directives, eagerDirectives, bindings, references } = DirectiveBinder.apply(target.template, this.directiveMatcher);
|
|
24873
24873
|
const { expressions, symbols, nestingLevel, usedPipes, eagerPipes, deferBlocks } = TemplateBinder.applyWithScope(target.template, scope);
|
|
24874
|
-
return new R3BoundTarget(target, directives, eagerDirectives, bindings, references, expressions, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks
|
|
24874
|
+
return new R3BoundTarget(target, directives, eagerDirectives, bindings, references, expressions, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks);
|
|
24875
24875
|
}
|
|
24876
24876
|
};
|
|
24877
24877
|
var Scope2 = class {
|
|
@@ -25168,7 +25168,7 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25168
25168
|
const usedPipes = /* @__PURE__ */ new Set();
|
|
25169
25169
|
const eagerPipes = /* @__PURE__ */ new Set();
|
|
25170
25170
|
const template2 = nodes instanceof Template ? nodes : null;
|
|
25171
|
-
const deferBlocks = /* @__PURE__ */ new
|
|
25171
|
+
const deferBlocks = /* @__PURE__ */ new Map();
|
|
25172
25172
|
const binder = new TemplateBinder(expressions, symbols, usedPipes, eagerPipes, deferBlocks, nestingLevel, scope, template2, 0);
|
|
25173
25173
|
binder.ingest(nodes);
|
|
25174
25174
|
return { expressions, symbols, nestingLevel, usedPipes, eagerPipes, deferBlocks };
|
|
@@ -25190,7 +25190,14 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25190
25190
|
nodeOrNodes.trackBy.visit(this);
|
|
25191
25191
|
nodeOrNodes.children.forEach(this.visitNode);
|
|
25192
25192
|
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25193
|
-
} else if (nodeOrNodes instanceof
|
|
25193
|
+
} else if (nodeOrNodes instanceof DeferredBlock) {
|
|
25194
|
+
if (this.scope.rootNode !== nodeOrNodes) {
|
|
25195
|
+
throw new Error(`Assertion error: resolved incorrect scope for deferred block ${nodeOrNodes}`);
|
|
25196
|
+
}
|
|
25197
|
+
this.deferBlocks.set(nodeOrNodes, this.scope);
|
|
25198
|
+
nodeOrNodes.children.forEach((node) => node.visit(this));
|
|
25199
|
+
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25200
|
+
} else if (nodeOrNodes instanceof SwitchBlockCase || nodeOrNodes instanceof ForLoopBlockEmpty || nodeOrNodes instanceof DeferredBlockError || nodeOrNodes instanceof DeferredBlockPlaceholder || nodeOrNodes instanceof DeferredBlockLoading) {
|
|
25194
25201
|
nodeOrNodes.children.forEach((node) => node.visit(this));
|
|
25195
25202
|
this.nestingLevel.set(nodeOrNodes, this.level);
|
|
25196
25203
|
} else {
|
|
@@ -25242,7 +25249,6 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25242
25249
|
}
|
|
25243
25250
|
visitDeferredBlock(deferred) {
|
|
25244
25251
|
var _a2, _b2;
|
|
25245
|
-
this.deferBlocks.add(deferred);
|
|
25246
25252
|
this.ingestScopedNode(deferred);
|
|
25247
25253
|
(_a2 = deferred.triggers.when) == null ? void 0 : _a2.value.visit(this);
|
|
25248
25254
|
(_b2 = deferred.prefetchTriggers.when) == null ? void 0 : _b2.value.visit(this);
|
|
@@ -25323,7 +25329,7 @@ var TemplateBinder = class extends RecursiveAstVisitor {
|
|
|
25323
25329
|
}
|
|
25324
25330
|
};
|
|
25325
25331
|
var R3BoundTarget = class {
|
|
25326
|
-
constructor(target, directives, eagerDirectives, bindings, references, exprTargets, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes,
|
|
25332
|
+
constructor(target, directives, eagerDirectives, bindings, references, exprTargets, symbols, nestingLevel, scopedNodeEntities, usedPipes, eagerPipes, deferBlocks) {
|
|
25327
25333
|
this.target = target;
|
|
25328
25334
|
this.directives = directives;
|
|
25329
25335
|
this.eagerDirectives = eagerDirectives;
|
|
@@ -25335,8 +25341,7 @@ var R3BoundTarget = class {
|
|
|
25335
25341
|
this.scopedNodeEntities = scopedNodeEntities;
|
|
25336
25342
|
this.usedPipes = usedPipes;
|
|
25337
25343
|
this.eagerPipes = eagerPipes;
|
|
25338
|
-
this.
|
|
25339
|
-
this.rootScope = rootScope;
|
|
25344
|
+
this.deferBlocks = deferBlocks;
|
|
25340
25345
|
}
|
|
25341
25346
|
getEntitiesInScope(node) {
|
|
25342
25347
|
var _a2;
|
|
@@ -25376,7 +25381,7 @@ var R3BoundTarget = class {
|
|
|
25376
25381
|
return Array.from(this.eagerPipes);
|
|
25377
25382
|
}
|
|
25378
25383
|
getDeferBlocks() {
|
|
25379
|
-
return Array.from(this.
|
|
25384
|
+
return Array.from(this.deferBlocks.keys());
|
|
25380
25385
|
}
|
|
25381
25386
|
getDeferredTriggerTarget(block, trigger) {
|
|
25382
25387
|
if (!(trigger instanceof InteractionDeferredTrigger) && !(trigger instanceof ViewportDeferredTrigger) && !(trigger instanceof HoverDeferredTrigger)) {
|
|
@@ -25417,10 +25422,14 @@ var R3BoundTarget = class {
|
|
|
25417
25422
|
return null;
|
|
25418
25423
|
}
|
|
25419
25424
|
isDeferred(element2) {
|
|
25420
|
-
for (const
|
|
25421
|
-
const
|
|
25422
|
-
|
|
25423
|
-
|
|
25425
|
+
for (const deferredScope of this.deferBlocks.values()) {
|
|
25426
|
+
const stack = [deferredScope];
|
|
25427
|
+
while (stack.length > 0) {
|
|
25428
|
+
const current = stack.pop();
|
|
25429
|
+
if (current.elementsInScope.has(element2)) {
|
|
25430
|
+
return true;
|
|
25431
|
+
}
|
|
25432
|
+
stack.push(...current.childScopes.values());
|
|
25424
25433
|
}
|
|
25425
25434
|
}
|
|
25426
25435
|
return false;
|
|
@@ -25475,11 +25484,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25475
25484
|
return templateEntities;
|
|
25476
25485
|
}
|
|
25477
25486
|
|
|
25478
|
-
// bazel-out/
|
|
25487
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25479
25488
|
var ResourceLoader = class {
|
|
25480
25489
|
};
|
|
25481
25490
|
|
|
25482
|
-
// bazel-out/
|
|
25491
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25483
25492
|
var SHOULD_USE_TEMPLATE_PIPELINE_FOR_JIT = false;
|
|
25484
25493
|
var CompilerFacadeImpl = class {
|
|
25485
25494
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
@@ -26060,17 +26069,17 @@ function publishFacade(global) {
|
|
|
26060
26069
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26061
26070
|
}
|
|
26062
26071
|
|
|
26063
|
-
// bazel-out/
|
|
26064
|
-
var VERSION2 = new Version("17.2.
|
|
26072
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26073
|
+
var VERSION2 = new Version("17.2.3");
|
|
26065
26074
|
|
|
26066
|
-
// bazel-out/
|
|
26075
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26067
26076
|
var _VisitorMode;
|
|
26068
26077
|
(function(_VisitorMode2) {
|
|
26069
26078
|
_VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
|
|
26070
26079
|
_VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
|
|
26071
26080
|
})(_VisitorMode || (_VisitorMode = {}));
|
|
26072
26081
|
|
|
26073
|
-
// bazel-out/
|
|
26082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26074
26083
|
var XmlTagDefinition = class {
|
|
26075
26084
|
constructor() {
|
|
26076
26085
|
this.closedByParent = false;
|
|
@@ -26092,7 +26101,7 @@ var XmlTagDefinition = class {
|
|
|
26092
26101
|
};
|
|
26093
26102
|
var _TAG_DEFINITION = new XmlTagDefinition();
|
|
26094
26103
|
|
|
26095
|
-
// bazel-out/
|
|
26104
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
26096
26105
|
var FactoryTarget2;
|
|
26097
26106
|
(function(FactoryTarget3) {
|
|
26098
26107
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -26102,10 +26111,10 @@ var FactoryTarget2;
|
|
|
26102
26111
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
26103
26112
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
26104
26113
|
|
|
26105
|
-
// bazel-out/
|
|
26114
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
26106
26115
|
publishFacade(_global);
|
|
26107
26116
|
|
|
26108
|
-
// bazel-out/
|
|
26117
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/util.mjs
|
|
26109
26118
|
var import_path2 = require("path");
|
|
26110
26119
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
26111
26120
|
var REPLACEMENTS2 = {
|
|
@@ -26213,7 +26222,7 @@ function forEachClass(sourceFile, callback) {
|
|
|
26213
26222
|
});
|
|
26214
26223
|
}
|
|
26215
26224
|
|
|
26216
|
-
// bazel-out/
|
|
26225
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/index.mjs
|
|
26217
26226
|
function block_template_entities_default() {
|
|
26218
26227
|
return (tree) => __async(this, null, function* () {
|
|
26219
26228
|
const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);
|