@angular/core 17.3.4 → 17.3.6
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/defer/instructions.mjs +31 -8
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/async.mjs +2 -2
- package/esm2022/testing/src/defer.mjs +1 -2
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +33 -10
- 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 +2 -3
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +2 -2
- 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 +162 -162
- package/schematics/migrations/block-template-entities/bundle.js.map +1 -1
- package/schematics/migrations/compiler-options/bundle.js +13 -13
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +163 -163
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +1 -1
- package/schematics/migrations/transfer-state/bundle.js +13 -13
- package/schematics/ng-generate/control-flow-migration/bundle.js +171 -171
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +1 -1
- package/schematics/ng-generate/standalone-migration/bundle.js +447 -447
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +2 -2
|
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
63
63
|
});
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
// bazel-out/
|
|
66
|
+
// bazel-out/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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/k8-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";
|
|
@@ -7307,7 +7307,7 @@ var TemplateKind;
|
|
|
7307
7307
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
7308
7308
|
})(TemplateKind || (TemplateKind = {}));
|
|
7309
7309
|
|
|
7310
|
-
// bazel-out/
|
|
7310
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
7311
7311
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
7312
7312
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
7313
7313
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -7335,7 +7335,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
7335
7335
|
return expr[UsesVarOffset] === true;
|
|
7336
7336
|
}
|
|
7337
7337
|
|
|
7338
|
-
// bazel-out/
|
|
7338
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
7339
7339
|
function createStatementOp(statement) {
|
|
7340
7340
|
return __spreadValues({
|
|
7341
7341
|
kind: OpKind.Statement,
|
|
@@ -7357,7 +7357,7 @@ var NEW_OP = {
|
|
|
7357
7357
|
next: null
|
|
7358
7358
|
};
|
|
7359
7359
|
|
|
7360
|
-
// bazel-out/
|
|
7360
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
7361
7361
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
7362
7362
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
7363
7363
|
kind: OpKind.InterpolateText,
|
|
@@ -7538,7 +7538,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
7538
7538
|
}, NEW_OP);
|
|
7539
7539
|
}
|
|
7540
7540
|
|
|
7541
|
-
// bazel-out/
|
|
7541
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
7542
7542
|
var _a;
|
|
7543
7543
|
var _b;
|
|
7544
7544
|
var _c;
|
|
@@ -8400,7 +8400,7 @@ function isStringLiteral(expr) {
|
|
|
8400
8400
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
8401
8401
|
}
|
|
8402
8402
|
|
|
8403
|
-
// bazel-out/
|
|
8403
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
8404
8404
|
var _OpList = class {
|
|
8405
8405
|
constructor() {
|
|
8406
8406
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -8591,14 +8591,14 @@ var OpList = _OpList;
|
|
|
8591
8591
|
_OpList.nextListId = 0;
|
|
8592
8592
|
})();
|
|
8593
8593
|
|
|
8594
|
-
// bazel-out/
|
|
8594
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
8595
8595
|
var SlotHandle = class {
|
|
8596
8596
|
constructor() {
|
|
8597
8597
|
this.slot = null;
|
|
8598
8598
|
}
|
|
8599
8599
|
};
|
|
8600
8600
|
|
|
8601
|
-
// bazel-out/
|
|
8601
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
8602
8602
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
8603
8603
|
OpKind.Element,
|
|
8604
8604
|
OpKind.ElementStart,
|
|
@@ -8899,7 +8899,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
8899
8899
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
8900
8900
|
}
|
|
8901
8901
|
|
|
8902
|
-
// bazel-out/
|
|
8902
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
8903
8903
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
8904
8904
|
return __spreadValues(__spreadValues({
|
|
8905
8905
|
kind: OpKind.HostProperty,
|
|
@@ -8913,10 +8913,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
8913
8913
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
8914
8914
|
}
|
|
8915
8915
|
|
|
8916
|
-
// bazel-out/
|
|
8916
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
8917
8917
|
var CTX_REF = "CTX_REF_MARKER";
|
|
8918
8918
|
|
|
8919
|
-
// bazel-out/
|
|
8919
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
8920
8920
|
var CompilationJobKind;
|
|
8921
8921
|
(function(CompilationJobKind2) {
|
|
8922
8922
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -9024,7 +9024,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
9024
9024
|
}
|
|
9025
9025
|
};
|
|
9026
9026
|
|
|
9027
|
-
// bazel-out/
|
|
9027
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
9028
9028
|
function deleteAnyCasts(job) {
|
|
9029
9029
|
for (const unit of job.units) {
|
|
9030
9030
|
for (const op of unit.ops()) {
|
|
@@ -9042,7 +9042,7 @@ function removeAnys(e) {
|
|
|
9042
9042
|
return e;
|
|
9043
9043
|
}
|
|
9044
9044
|
|
|
9045
|
-
// bazel-out/
|
|
9045
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
9046
9046
|
function applyI18nExpressions(job) {
|
|
9047
9047
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
9048
9048
|
for (const unit of job.units) {
|
|
@@ -9085,7 +9085,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
9085
9085
|
return false;
|
|
9086
9086
|
}
|
|
9087
9087
|
|
|
9088
|
-
// bazel-out/
|
|
9088
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
9089
9089
|
function assignI18nSlotDependencies(job) {
|
|
9090
9090
|
for (const unit of job.units) {
|
|
9091
9091
|
let updateOp = unit.update.head;
|
|
@@ -9130,7 +9130,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
9130
9130
|
}
|
|
9131
9131
|
}
|
|
9132
9132
|
|
|
9133
|
-
// bazel-out/
|
|
9133
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
9134
9134
|
function createOpXrefMap(unit) {
|
|
9135
9135
|
const map = /* @__PURE__ */ new Map();
|
|
9136
9136
|
for (const op of unit.create) {
|
|
@@ -9145,7 +9145,7 @@ function createOpXrefMap(unit) {
|
|
|
9145
9145
|
return map;
|
|
9146
9146
|
}
|
|
9147
9147
|
|
|
9148
|
-
// bazel-out/
|
|
9148
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
9149
9149
|
function extractAttributes(job) {
|
|
9150
9150
|
for (const unit of job.units) {
|
|
9151
9151
|
const elements = createOpXrefMap(unit);
|
|
@@ -9274,7 +9274,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
9274
9274
|
}
|
|
9275
9275
|
}
|
|
9276
9276
|
|
|
9277
|
-
// bazel-out/
|
|
9277
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
9278
9278
|
function lookupElement2(elements, xref) {
|
|
9279
9279
|
const el = elements.get(xref);
|
|
9280
9280
|
if (el === void 0) {
|
|
@@ -9331,7 +9331,7 @@ function specializeBindings(job) {
|
|
|
9331
9331
|
}
|
|
9332
9332
|
}
|
|
9333
9333
|
|
|
9334
|
-
// bazel-out/
|
|
9334
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
9335
9335
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
9336
9336
|
Identifiers.attribute,
|
|
9337
9337
|
Identifiers.classProp,
|
|
@@ -9399,7 +9399,7 @@ function chainOperationsInList(opList) {
|
|
|
9399
9399
|
}
|
|
9400
9400
|
}
|
|
9401
9401
|
|
|
9402
|
-
// bazel-out/
|
|
9402
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
9403
9403
|
function collapseSingletonInterpolations(job) {
|
|
9404
9404
|
for (const unit of job.units) {
|
|
9405
9405
|
for (const op of unit.update) {
|
|
@@ -9411,7 +9411,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
9411
9411
|
}
|
|
9412
9412
|
}
|
|
9413
9413
|
|
|
9414
|
-
// bazel-out/
|
|
9414
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
9415
9415
|
function generateConditionalExpressions(job) {
|
|
9416
9416
|
for (const unit of job.units) {
|
|
9417
9417
|
for (const op of unit.ops()) {
|
|
@@ -9448,7 +9448,7 @@ function generateConditionalExpressions(job) {
|
|
|
9448
9448
|
}
|
|
9449
9449
|
}
|
|
9450
9450
|
|
|
9451
|
-
// bazel-out/
|
|
9451
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
9452
9452
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
9453
9453
|
["&&", BinaryOperator.And],
|
|
9454
9454
|
[">", BinaryOperator.Bigger],
|
|
@@ -9499,7 +9499,7 @@ function literalOrArrayLiteral(value) {
|
|
|
9499
9499
|
return literal(value);
|
|
9500
9500
|
}
|
|
9501
9501
|
|
|
9502
|
-
// bazel-out/
|
|
9502
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
9503
9503
|
function collectElementConsts(job) {
|
|
9504
9504
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
9505
9505
|
for (const unit of job.units) {
|
|
@@ -9668,7 +9668,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
9668
9668
|
return literalArr(attrArray);
|
|
9669
9669
|
}
|
|
9670
9670
|
|
|
9671
|
-
// bazel-out/
|
|
9671
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
9672
9672
|
function convertI18nBindings(job) {
|
|
9673
9673
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
9674
9674
|
for (const unit of job.units) {
|
|
@@ -9709,7 +9709,7 @@ function convertI18nBindings(job) {
|
|
|
9709
9709
|
}
|
|
9710
9710
|
}
|
|
9711
9711
|
|
|
9712
|
-
// bazel-out/
|
|
9712
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_defer_deps_fns.mjs
|
|
9713
9713
|
function createDeferDepsFns(job) {
|
|
9714
9714
|
var _a2;
|
|
9715
9715
|
for (const unit of job.units) {
|
|
@@ -9749,7 +9749,7 @@ function createDeferDepsFns(job) {
|
|
|
9749
9749
|
}
|
|
9750
9750
|
}
|
|
9751
9751
|
|
|
9752
|
-
// bazel-out/
|
|
9752
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
9753
9753
|
function createI18nContexts(job) {
|
|
9754
9754
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
9755
9755
|
for (const unit of job.units) {
|
|
@@ -9827,7 +9827,7 @@ function createI18nContexts(job) {
|
|
|
9827
9827
|
}
|
|
9828
9828
|
}
|
|
9829
9829
|
|
|
9830
|
-
// bazel-out/
|
|
9830
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
9831
9831
|
function deduplicateTextBindings(job) {
|
|
9832
9832
|
const seen = /* @__PURE__ */ new Map();
|
|
9833
9833
|
for (const unit of job.units) {
|
|
@@ -9849,7 +9849,7 @@ function deduplicateTextBindings(job) {
|
|
|
9849
9849
|
}
|
|
9850
9850
|
}
|
|
9851
9851
|
|
|
9852
|
-
// bazel-out/
|
|
9852
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
9853
9853
|
function configureDeferInstructions(job) {
|
|
9854
9854
|
for (const unit of job.units) {
|
|
9855
9855
|
for (const op of unit.create) {
|
|
@@ -9866,7 +9866,7 @@ function configureDeferInstructions(job) {
|
|
|
9866
9866
|
}
|
|
9867
9867
|
}
|
|
9868
9868
|
|
|
9869
|
-
// bazel-out/
|
|
9869
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
9870
9870
|
function resolveDeferTargetNames(job) {
|
|
9871
9871
|
const scopes = /* @__PURE__ */ new Map();
|
|
9872
9872
|
function getScopeForView2(view) {
|
|
@@ -9960,7 +9960,7 @@ var Scope = class {
|
|
|
9960
9960
|
}
|
|
9961
9961
|
};
|
|
9962
9962
|
|
|
9963
|
-
// bazel-out/
|
|
9963
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
9964
9964
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
9965
9965
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
9966
9966
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -9987,7 +9987,7 @@ function collapseEmptyInstructions(job) {
|
|
|
9987
9987
|
}
|
|
9988
9988
|
}
|
|
9989
9989
|
|
|
9990
|
-
// bazel-out/
|
|
9990
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
9991
9991
|
function expandSafeReads(job) {
|
|
9992
9992
|
for (const unit of job.units) {
|
|
9993
9993
|
for (const op of unit.ops()) {
|
|
@@ -10123,7 +10123,7 @@ function ternaryTransform(e) {
|
|
|
10123
10123
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
10124
10124
|
}
|
|
10125
10125
|
|
|
10126
|
-
// bazel-out/
|
|
10126
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
10127
10127
|
var ESCAPE = "\uFFFD";
|
|
10128
10128
|
var ELEMENT_MARKER = "#";
|
|
10129
10129
|
var TEMPLATE_MARKER = "*";
|
|
@@ -10259,7 +10259,7 @@ function formatValue(value) {
|
|
|
10259
10259
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
10260
10260
|
}
|
|
10261
10261
|
|
|
10262
|
-
// bazel-out/
|
|
10262
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
10263
10263
|
function generateAdvance(job) {
|
|
10264
10264
|
for (const unit of job.units) {
|
|
10265
10265
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -10291,7 +10291,7 @@ function generateAdvance(job) {
|
|
|
10291
10291
|
}
|
|
10292
10292
|
}
|
|
10293
10293
|
|
|
10294
|
-
// bazel-out/
|
|
10294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
10295
10295
|
function generateProjectionDefs(job) {
|
|
10296
10296
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
10297
10297
|
const selectors = [];
|
|
@@ -10315,7 +10315,7 @@ function generateProjectionDefs(job) {
|
|
|
10315
10315
|
}
|
|
10316
10316
|
}
|
|
10317
10317
|
|
|
10318
|
-
// bazel-out/
|
|
10318
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
10319
10319
|
function generateVariables(job) {
|
|
10320
10320
|
recursivelyProcessView(job.root, null);
|
|
10321
10321
|
}
|
|
@@ -10409,7 +10409,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
10409
10409
|
return newOps;
|
|
10410
10410
|
}
|
|
10411
10411
|
|
|
10412
|
-
// bazel-out/
|
|
10412
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
10413
10413
|
function collectConstExpressions(job) {
|
|
10414
10414
|
for (const unit of job.units) {
|
|
10415
10415
|
for (const op of unit.ops()) {
|
|
@@ -10423,7 +10423,7 @@ function collectConstExpressions(job) {
|
|
|
10423
10423
|
}
|
|
10424
10424
|
}
|
|
10425
10425
|
|
|
10426
|
-
// bazel-out/
|
|
10426
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
10427
10427
|
var STYLE_DOT = "style.";
|
|
10428
10428
|
var CLASS_DOT = "class.";
|
|
10429
10429
|
var STYLE_BANG = "style!";
|
|
@@ -10481,7 +10481,7 @@ function parseProperty(name) {
|
|
|
10481
10481
|
return { property: property2, suffix };
|
|
10482
10482
|
}
|
|
10483
10483
|
|
|
10484
|
-
// bazel-out/
|
|
10484
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
10485
10485
|
function mapLiteral(obj, quoted = false) {
|
|
10486
10486
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
10487
10487
|
key,
|
|
@@ -10490,7 +10490,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
10490
10490
|
})));
|
|
10491
10491
|
}
|
|
10492
10492
|
|
|
10493
|
-
// bazel-out/
|
|
10493
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
10494
10494
|
var IcuSerializerVisitor = class {
|
|
10495
10495
|
visitText(text2) {
|
|
10496
10496
|
return text2.value;
|
|
@@ -10524,7 +10524,7 @@ function serializeIcuNode(icu) {
|
|
|
10524
10524
|
return icu.visit(serializer);
|
|
10525
10525
|
}
|
|
10526
10526
|
|
|
10527
|
-
// bazel-out/
|
|
10527
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
10528
10528
|
var TokenType;
|
|
10529
10529
|
(function(TokenType2) {
|
|
10530
10530
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -10885,7 +10885,7 @@ function parseIntAutoRadix(text2) {
|
|
|
10885
10885
|
return result;
|
|
10886
10886
|
}
|
|
10887
10887
|
|
|
10888
|
-
// bazel-out/
|
|
10888
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
10889
10889
|
var SplitInterpolation = class {
|
|
10890
10890
|
constructor(strings, expressions, offsets) {
|
|
10891
10891
|
this.strings = strings;
|
|
@@ -11767,7 +11767,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
11767
11767
|
return offsetMap;
|
|
11768
11768
|
}
|
|
11769
11769
|
|
|
11770
|
-
// bazel-out/
|
|
11770
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
11771
11771
|
var NodeWithI18n = class {
|
|
11772
11772
|
constructor(sourceSpan, i18n2) {
|
|
11773
11773
|
this.sourceSpan = sourceSpan;
|
|
@@ -11919,11 +11919,11 @@ var RecursiveVisitor = class {
|
|
|
11919
11919
|
}
|
|
11920
11920
|
};
|
|
11921
11921
|
|
|
11922
|
-
// bazel-out/
|
|
11922
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
11923
11923
|
var ElementSchemaRegistry = class {
|
|
11924
11924
|
};
|
|
11925
11925
|
|
|
11926
|
-
// bazel-out/
|
|
11926
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
11927
11927
|
var BOOLEAN = "boolean";
|
|
11928
11928
|
var NUMBER = "number";
|
|
11929
11929
|
var STRING = "string";
|
|
@@ -12276,7 +12276,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
12276
12276
|
}
|
|
12277
12277
|
}
|
|
12278
12278
|
|
|
12279
|
-
// bazel-out/
|
|
12279
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
12280
12280
|
var HtmlTagDefinition = class {
|
|
12281
12281
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
12282
12282
|
this.closedByChildren = {};
|
|
@@ -12394,7 +12394,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
12394
12394
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
12395
12395
|
}
|
|
12396
12396
|
|
|
12397
|
-
// bazel-out/
|
|
12397
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
12398
12398
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
12399
12399
|
"A": "LINK",
|
|
12400
12400
|
"B": "BOLD_TEXT",
|
|
@@ -12516,7 +12516,7 @@ var PlaceholderRegistry = class {
|
|
|
12516
12516
|
}
|
|
12517
12517
|
};
|
|
12518
12518
|
|
|
12519
|
-
// bazel-out/
|
|
12519
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
12520
12520
|
var _expParser = new Parser(new Lexer());
|
|
12521
12521
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
12522
12522
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -12695,14 +12695,14 @@ function extractPlaceholderName(input) {
|
|
|
12695
12695
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
12696
12696
|
}
|
|
12697
12697
|
|
|
12698
|
-
// bazel-out/
|
|
12698
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
12699
12699
|
var I18nError = class extends ParseError {
|
|
12700
12700
|
constructor(span, msg) {
|
|
12701
12701
|
super(span, msg);
|
|
12702
12702
|
}
|
|
12703
12703
|
};
|
|
12704
12704
|
|
|
12705
|
-
// bazel-out/
|
|
12705
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
12706
12706
|
var NAMED_ENTITIES = {
|
|
12707
12707
|
"AElig": "\xC6",
|
|
12708
12708
|
"AMP": "&",
|
|
@@ -14833,7 +14833,7 @@ var NAMED_ENTITIES = {
|
|
|
14833
14833
|
var NGSP_UNICODE = "\uE500";
|
|
14834
14834
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
14835
14835
|
|
|
14836
|
-
// bazel-out/
|
|
14836
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
14837
14837
|
var TokenError = class extends ParseError {
|
|
14838
14838
|
constructor(errorMsg, tokenType, span) {
|
|
14839
14839
|
super(span, errorMsg);
|
|
@@ -15754,7 +15754,7 @@ var CursorError = class {
|
|
|
15754
15754
|
}
|
|
15755
15755
|
};
|
|
15756
15756
|
|
|
15757
|
-
// bazel-out/
|
|
15757
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
15758
15758
|
var TreeError = class extends ParseError {
|
|
15759
15759
|
static create(elementName, span, msg) {
|
|
15760
15760
|
return new TreeError(elementName, span, msg);
|
|
@@ -16138,7 +16138,7 @@ function decodeEntity(match, entity) {
|
|
|
16138
16138
|
return match;
|
|
16139
16139
|
}
|
|
16140
16140
|
|
|
16141
|
-
// bazel-out/
|
|
16141
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
16142
16142
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
16143
16143
|
"iframe|srcdoc",
|
|
16144
16144
|
"*|innerhtml",
|
|
@@ -16153,7 +16153,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
16153
16153
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
16154
16154
|
}
|
|
16155
16155
|
|
|
16156
|
-
// bazel-out/
|
|
16156
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
16157
16157
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
16158
16158
|
if (htmlNode instanceof NodeWithI18n) {
|
|
16159
16159
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -16310,7 +16310,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
16310
16310
|
return jsDocComment(tags);
|
|
16311
16311
|
}
|
|
16312
16312
|
|
|
16313
|
-
// bazel-out/
|
|
16313
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
16314
16314
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
16315
16315
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
16316
16316
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -16361,7 +16361,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
16361
16361
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
16362
16362
|
}
|
|
16363
16363
|
|
|
16364
|
-
// bazel-out/
|
|
16364
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
16365
16365
|
function createLocalizeStatements(variable2, message, params) {
|
|
16366
16366
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
16367
16367
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -16450,7 +16450,7 @@ function createEmptyMessagePart(location) {
|
|
|
16450
16450
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
16451
16451
|
}
|
|
16452
16452
|
|
|
16453
|
-
// bazel-out/
|
|
16453
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
16454
16454
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
16455
16455
|
var TRANSLATION_VAR_PREFIX2 = "i18n_";
|
|
16456
16456
|
var I18N_ICU_MAPPING_PREFIX2 = "I18N_EXP_";
|
|
@@ -16611,7 +16611,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
16611
16611
|
return variable(name);
|
|
16612
16612
|
}
|
|
16613
16613
|
|
|
16614
|
-
// bazel-out/
|
|
16614
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
16615
16615
|
function convertI18nText(job) {
|
|
16616
16616
|
var _a2, _b2, _c2;
|
|
16617
16617
|
for (const unit of job.units) {
|
|
@@ -16681,7 +16681,7 @@ function convertI18nText(job) {
|
|
|
16681
16681
|
}
|
|
16682
16682
|
}
|
|
16683
16683
|
|
|
16684
|
-
// bazel-out/
|
|
16684
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
16685
16685
|
function liftLocalRefs(job) {
|
|
16686
16686
|
for (const unit of job.units) {
|
|
16687
16687
|
for (const op of unit.create) {
|
|
@@ -16711,7 +16711,7 @@ function serializeLocalRefs(refs) {
|
|
|
16711
16711
|
return literalArr(constRefs);
|
|
16712
16712
|
}
|
|
16713
16713
|
|
|
16714
|
-
// bazel-out/
|
|
16714
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
16715
16715
|
function emitNamespaceChanges(job) {
|
|
16716
16716
|
for (const unit of job.units) {
|
|
16717
16717
|
let activeNamespace = Namespace.HTML;
|
|
@@ -16727,7 +16727,7 @@ function emitNamespaceChanges(job) {
|
|
|
16727
16727
|
}
|
|
16728
16728
|
}
|
|
16729
16729
|
|
|
16730
|
-
// bazel-out/
|
|
16730
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/style_parser.mjs
|
|
16731
16731
|
function parse(value) {
|
|
16732
16732
|
const styles = [];
|
|
16733
16733
|
let i = 0;
|
|
@@ -16788,7 +16788,7 @@ function hyphenate2(value) {
|
|
|
16788
16788
|
}).toLowerCase();
|
|
16789
16789
|
}
|
|
16790
16790
|
|
|
16791
|
-
// bazel-out/
|
|
16791
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
16792
16792
|
function nameFunctionsAndVariables(job) {
|
|
16793
16793
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
16794
16794
|
}
|
|
@@ -16917,7 +16917,7 @@ function stripImportant(name) {
|
|
|
16917
16917
|
return name;
|
|
16918
16918
|
}
|
|
16919
16919
|
|
|
16920
|
-
// bazel-out/
|
|
16920
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
16921
16921
|
function mergeNextContextExpressions(job) {
|
|
16922
16922
|
for (const unit of job.units) {
|
|
16923
16923
|
for (const op of unit.create) {
|
|
@@ -16963,7 +16963,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
16963
16963
|
}
|
|
16964
16964
|
}
|
|
16965
16965
|
|
|
16966
|
-
// bazel-out/
|
|
16966
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
16967
16967
|
var CONTAINER_TAG = "ng-container";
|
|
16968
16968
|
function generateNgContainerOps(job) {
|
|
16969
16969
|
for (const unit of job.units) {
|
|
@@ -16980,7 +16980,7 @@ function generateNgContainerOps(job) {
|
|
|
16980
16980
|
}
|
|
16981
16981
|
}
|
|
16982
16982
|
|
|
16983
|
-
// bazel-out/
|
|
16983
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
16984
16984
|
function lookupElement3(elements, xref) {
|
|
16985
16985
|
const el = elements.get(xref);
|
|
16986
16986
|
if (el === void 0) {
|
|
@@ -17010,7 +17010,7 @@ function disableBindings(job) {
|
|
|
17010
17010
|
}
|
|
17011
17011
|
}
|
|
17012
17012
|
|
|
17013
|
-
// bazel-out/
|
|
17013
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
17014
17014
|
function generateNullishCoalesceExpressions(job) {
|
|
17015
17015
|
for (const unit of job.units) {
|
|
17016
17016
|
for (const op of unit.ops()) {
|
|
@@ -17026,7 +17026,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
17026
17026
|
}
|
|
17027
17027
|
}
|
|
17028
17028
|
|
|
17029
|
-
// bazel-out/
|
|
17029
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
17030
17030
|
function kindTest(kind) {
|
|
17031
17031
|
return (op) => op.kind === kind;
|
|
17032
17032
|
}
|
|
@@ -17116,7 +17116,7 @@ function keepLast(ops) {
|
|
|
17116
17116
|
return ops.slice(ops.length - 1);
|
|
17117
17117
|
}
|
|
17118
17118
|
|
|
17119
|
-
// bazel-out/
|
|
17119
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
17120
17120
|
function parseExtractedStyles(job) {
|
|
17121
17121
|
const elements = /* @__PURE__ */ new Map();
|
|
17122
17122
|
for (const unit of job.units) {
|
|
@@ -17151,7 +17151,7 @@ function parseExtractedStyles(job) {
|
|
|
17151
17151
|
}
|
|
17152
17152
|
}
|
|
17153
17153
|
|
|
17154
|
-
// bazel-out/
|
|
17154
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
17155
17155
|
function removeContentSelectors(job) {
|
|
17156
17156
|
for (const unit of job.units) {
|
|
17157
17157
|
const elements = createOpXrefMap(unit);
|
|
@@ -17178,7 +17178,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
17178
17178
|
return el;
|
|
17179
17179
|
}
|
|
17180
17180
|
|
|
17181
|
-
// bazel-out/
|
|
17181
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
17182
17182
|
function createPipes(job) {
|
|
17183
17183
|
for (const unit of job.units) {
|
|
17184
17184
|
processPipeBindingsInView(unit);
|
|
@@ -17226,7 +17226,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
17226
17226
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
17227
17227
|
}
|
|
17228
17228
|
|
|
17229
|
-
// bazel-out/
|
|
17229
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
17230
17230
|
function createVariadicPipes(job) {
|
|
17231
17231
|
for (const unit of job.units) {
|
|
17232
17232
|
for (const op of unit.update) {
|
|
@@ -17243,7 +17243,7 @@ function createVariadicPipes(job) {
|
|
|
17243
17243
|
}
|
|
17244
17244
|
}
|
|
17245
17245
|
|
|
17246
|
-
// bazel-out/
|
|
17246
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
17247
17247
|
function propagateI18nBlocks(job) {
|
|
17248
17248
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
17249
17249
|
}
|
|
@@ -17297,7 +17297,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
17297
17297
|
}
|
|
17298
17298
|
}
|
|
17299
17299
|
|
|
17300
|
-
// bazel-out/
|
|
17300
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
17301
17301
|
function extractPureFunctions(job) {
|
|
17302
17302
|
for (const view of job.units) {
|
|
17303
17303
|
for (const op of view.ops()) {
|
|
@@ -17339,7 +17339,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
17339
17339
|
}
|
|
17340
17340
|
};
|
|
17341
17341
|
|
|
17342
|
-
// bazel-out/
|
|
17342
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
17343
17343
|
function generatePureLiteralStructures(job) {
|
|
17344
17344
|
for (const unit of job.units) {
|
|
17345
17345
|
for (const op of unit.update) {
|
|
@@ -17386,7 +17386,7 @@ function transformLiteralMap(expr) {
|
|
|
17386
17386
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
17387
17387
|
}
|
|
17388
17388
|
|
|
17389
|
-
// bazel-out/
|
|
17389
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
17390
17390
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
17391
17391
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
17392
17392
|
}
|
|
@@ -17921,7 +17921,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
17921
17921
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
17922
17922
|
}
|
|
17923
17923
|
|
|
17924
|
-
// bazel-out/
|
|
17924
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
17925
17925
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
17926
17926
|
["window", Identifiers.resolveWindow],
|
|
17927
17927
|
["document", Identifiers.resolveDocument],
|
|
@@ -18262,7 +18262,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
18262
18262
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
18263
18263
|
}
|
|
18264
18264
|
|
|
18265
|
-
// bazel-out/
|
|
18265
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
18266
18266
|
function removeEmptyBindings(job) {
|
|
18267
18267
|
for (const unit of job.units) {
|
|
18268
18268
|
for (const op of unit.update) {
|
|
@@ -18283,7 +18283,7 @@ function removeEmptyBindings(job) {
|
|
|
18283
18283
|
}
|
|
18284
18284
|
}
|
|
18285
18285
|
|
|
18286
|
-
// bazel-out/
|
|
18286
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
18287
18287
|
function removeI18nContexts(job) {
|
|
18288
18288
|
for (const unit of job.units) {
|
|
18289
18289
|
for (const op of unit.create) {
|
|
@@ -18299,7 +18299,7 @@ function removeI18nContexts(job) {
|
|
|
18299
18299
|
}
|
|
18300
18300
|
}
|
|
18301
18301
|
|
|
18302
|
-
// bazel-out/
|
|
18302
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
18303
18303
|
function removeUnusedI18nAttributesOps(job) {
|
|
18304
18304
|
for (const unit of job.units) {
|
|
18305
18305
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -18321,7 +18321,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
18321
18321
|
}
|
|
18322
18322
|
}
|
|
18323
18323
|
|
|
18324
|
-
// bazel-out/
|
|
18324
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
18325
18325
|
function resolveContexts(job) {
|
|
18326
18326
|
for (const unit of job.units) {
|
|
18327
18327
|
processLexicalScope(unit, unit.create);
|
|
@@ -18363,7 +18363,7 @@ function processLexicalScope(view, ops) {
|
|
|
18363
18363
|
}
|
|
18364
18364
|
}
|
|
18365
18365
|
|
|
18366
|
-
// bazel-out/
|
|
18366
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
18367
18367
|
function resolveDollarEvent(job) {
|
|
18368
18368
|
for (const unit of job.units) {
|
|
18369
18369
|
transformDollarEvent(unit.create);
|
|
@@ -18386,7 +18386,7 @@ function transformDollarEvent(ops) {
|
|
|
18386
18386
|
}
|
|
18387
18387
|
}
|
|
18388
18388
|
|
|
18389
|
-
// bazel-out/
|
|
18389
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
18390
18390
|
function resolveI18nElementPlaceholders(job) {
|
|
18391
18391
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
18392
18392
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -18565,7 +18565,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
18565
18565
|
params.set(placeholder, values);
|
|
18566
18566
|
}
|
|
18567
18567
|
|
|
18568
|
-
// bazel-out/
|
|
18568
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
18569
18569
|
function resolveI18nExpressionPlaceholders(job) {
|
|
18570
18570
|
var _a2;
|
|
18571
18571
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -18618,7 +18618,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
18618
18618
|
}
|
|
18619
18619
|
}
|
|
18620
18620
|
|
|
18621
|
-
// bazel-out/
|
|
18621
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
18622
18622
|
function resolveNames(job) {
|
|
18623
18623
|
for (const unit of job.units) {
|
|
18624
18624
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -18683,7 +18683,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
18683
18683
|
}
|
|
18684
18684
|
}
|
|
18685
18685
|
|
|
18686
|
-
// bazel-out/
|
|
18686
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
18687
18687
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
18688
18688
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
18689
18689
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -18753,7 +18753,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
18753
18753
|
return securityContext;
|
|
18754
18754
|
}
|
|
18755
18755
|
|
|
18756
|
-
// bazel-out/
|
|
18756
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
18757
18757
|
function transformTwoWayBindingSet(job) {
|
|
18758
18758
|
for (const unit of job.units) {
|
|
18759
18759
|
for (const op of unit.create) {
|
|
@@ -18803,7 +18803,7 @@ function wrapAction(target, value) {
|
|
|
18803
18803
|
throw new Error(`Unsupported expression in two-way action binding.`);
|
|
18804
18804
|
}
|
|
18805
18805
|
|
|
18806
|
-
// bazel-out/
|
|
18806
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
18807
18807
|
function saveAndRestoreView(job) {
|
|
18808
18808
|
for (const unit of job.units) {
|
|
18809
18809
|
unit.create.prepend([
|
|
@@ -18848,7 +18848,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
18848
18848
|
}
|
|
18849
18849
|
}
|
|
18850
18850
|
|
|
18851
|
-
// bazel-out/
|
|
18851
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
18852
18852
|
function allocateSlots(job) {
|
|
18853
18853
|
const slotMap = /* @__PURE__ */ new Map();
|
|
18854
18854
|
for (const unit of job.units) {
|
|
@@ -18873,7 +18873,7 @@ function allocateSlots(job) {
|
|
|
18873
18873
|
}
|
|
18874
18874
|
}
|
|
18875
18875
|
|
|
18876
|
-
// bazel-out/
|
|
18876
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
18877
18877
|
function specializeStyleBindings(job) {
|
|
18878
18878
|
for (const unit of job.units) {
|
|
18879
18879
|
for (const op of unit.update) {
|
|
@@ -18903,7 +18903,7 @@ function specializeStyleBindings(job) {
|
|
|
18903
18903
|
}
|
|
18904
18904
|
}
|
|
18905
18905
|
|
|
18906
|
-
// bazel-out/
|
|
18906
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
18907
18907
|
function generateTemporaryVariables(job) {
|
|
18908
18908
|
for (const unit of job.units) {
|
|
18909
18909
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -18961,7 +18961,7 @@ function assignName(names, expr) {
|
|
|
18961
18961
|
expr.name = name;
|
|
18962
18962
|
}
|
|
18963
18963
|
|
|
18964
|
-
// bazel-out/
|
|
18964
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
18965
18965
|
function generateTrackFns(job) {
|
|
18966
18966
|
for (const unit of job.units) {
|
|
18967
18967
|
for (const op of unit.create) {
|
|
@@ -18994,7 +18994,7 @@ function generateTrackFns(job) {
|
|
|
18994
18994
|
}
|
|
18995
18995
|
}
|
|
18996
18996
|
|
|
18997
|
-
// bazel-out/
|
|
18997
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
18998
18998
|
function optimizeTrackFns(job) {
|
|
18999
18999
|
for (const unit of job.units) {
|
|
19000
19000
|
for (const op of unit.create) {
|
|
@@ -19042,7 +19042,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
19042
19042
|
return true;
|
|
19043
19043
|
}
|
|
19044
19044
|
|
|
19045
|
-
// bazel-out/
|
|
19045
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
19046
19046
|
function generateTrackVariables(job) {
|
|
19047
19047
|
for (const unit of job.units) {
|
|
19048
19048
|
for (const op of unit.create) {
|
|
@@ -19063,7 +19063,7 @@ function generateTrackVariables(job) {
|
|
|
19063
19063
|
}
|
|
19064
19064
|
}
|
|
19065
19065
|
|
|
19066
|
-
// bazel-out/
|
|
19066
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
19067
19067
|
function countVariables(job) {
|
|
19068
19068
|
for (const unit of job.units) {
|
|
19069
19069
|
let varCount = 0;
|
|
@@ -19173,7 +19173,7 @@ function isSingletonInterpolation(expr) {
|
|
|
19173
19173
|
return true;
|
|
19174
19174
|
}
|
|
19175
19175
|
|
|
19176
|
-
// bazel-out/
|
|
19176
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
19177
19177
|
function optimizeVariables(job) {
|
|
19178
19178
|
for (const unit of job.units) {
|
|
19179
19179
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -19422,7 +19422,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
19422
19422
|
}
|
|
19423
19423
|
}
|
|
19424
19424
|
|
|
19425
|
-
// bazel-out/
|
|
19425
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
19426
19426
|
function wrapI18nIcus(job) {
|
|
19427
19427
|
for (const unit of job.units) {
|
|
19428
19428
|
let currentI18nOp = null;
|
|
@@ -19452,7 +19452,7 @@ function wrapI18nIcus(job) {
|
|
|
19452
19452
|
}
|
|
19453
19453
|
}
|
|
19454
19454
|
|
|
19455
|
-
// bazel-out/
|
|
19455
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
19456
19456
|
var phases = [
|
|
19457
19457
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
19458
19458
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -19618,7 +19618,7 @@ function emitHostBindingFunction(job) {
|
|
|
19618
19618
|
);
|
|
19619
19619
|
}
|
|
19620
19620
|
|
|
19621
|
-
// bazel-out/
|
|
19621
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
19622
19622
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
19623
19623
|
var domSchema = new DomElementSchemaRegistry();
|
|
19624
19624
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -20346,10 +20346,10 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
20346
20346
|
return null;
|
|
20347
20347
|
}
|
|
20348
20348
|
|
|
20349
|
-
// bazel-out/
|
|
20349
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/switch/index.mjs
|
|
20350
20350
|
var USE_TEMPLATE_PIPELINE = false;
|
|
20351
20351
|
|
|
20352
|
-
// bazel-out/
|
|
20352
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
20353
20353
|
var HtmlParser = class extends Parser2 {
|
|
20354
20354
|
constructor() {
|
|
20355
20355
|
super(getHtmlTagDefinition);
|
|
@@ -20359,7 +20359,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
20359
20359
|
}
|
|
20360
20360
|
};
|
|
20361
20361
|
|
|
20362
|
-
// bazel-out/
|
|
20362
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
20363
20363
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
20364
20364
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
20365
20365
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -20425,7 +20425,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
20425
20425
|
return result;
|
|
20426
20426
|
}
|
|
20427
20427
|
|
|
20428
|
-
// bazel-out/
|
|
20428
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
20429
20429
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
20430
20430
|
var ATTRIBUTE_PREFIX = "attr";
|
|
20431
20431
|
var CLASS_PREFIX = "class";
|
|
@@ -20766,7 +20766,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
20766
20766
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
20767
20767
|
}
|
|
20768
20768
|
|
|
20769
|
-
// bazel-out/
|
|
20769
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
20770
20770
|
function isStyleUrlResolvable(url) {
|
|
20771
20771
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
20772
20772
|
return false;
|
|
@@ -20775,7 +20775,7 @@ function isStyleUrlResolvable(url) {
|
|
|
20775
20775
|
}
|
|
20776
20776
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
20777
20777
|
|
|
20778
|
-
// bazel-out/
|
|
20778
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
20779
20779
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
20780
20780
|
var LINK_ELEMENT = "link";
|
|
20781
20781
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -20845,7 +20845,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
20845
20845
|
return selectAttr;
|
|
20846
20846
|
}
|
|
20847
20847
|
|
|
20848
|
-
// bazel-out/
|
|
20848
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
20849
20849
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
20850
20850
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
20851
20851
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -21159,7 +21159,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
21159
21159
|
return expression.slice(start, end);
|
|
21160
21160
|
}
|
|
21161
21161
|
|
|
21162
|
-
// bazel-out/
|
|
21162
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
21163
21163
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
21164
21164
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
21165
21165
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -21423,7 +21423,7 @@ function parseDeferredTime(value) {
|
|
|
21423
21423
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
21424
21424
|
}
|
|
21425
21425
|
|
|
21426
|
-
// bazel-out/
|
|
21426
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
21427
21427
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
21428
21428
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
21429
21429
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -21558,7 +21558,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
21558
21558
|
return { triggers, prefetchTriggers };
|
|
21559
21559
|
}
|
|
21560
21560
|
|
|
21561
|
-
// bazel-out/
|
|
21561
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
21562
21562
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
21563
21563
|
var KW_BIND_IDX = 1;
|
|
21564
21564
|
var KW_LET_IDX = 2;
|
|
@@ -21989,7 +21989,7 @@ function textContents(node) {
|
|
|
21989
21989
|
}
|
|
21990
21990
|
}
|
|
21991
21991
|
|
|
21992
|
-
// bazel-out/
|
|
21992
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/context.mjs
|
|
21993
21993
|
var TagType;
|
|
21994
21994
|
(function(TagType2) {
|
|
21995
21995
|
TagType2[TagType2["ELEMENT"] = 0] = "ELEMENT";
|
|
@@ -22134,7 +22134,7 @@ function serializePlaceholderValue(value) {
|
|
|
22134
22134
|
}
|
|
22135
22135
|
}
|
|
22136
22136
|
|
|
22137
|
-
// bazel-out/
|
|
22137
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/styling_builder.mjs
|
|
22138
22138
|
var IMPORTANT_FLAG = "!important";
|
|
22139
22139
|
var MIN_STYLING_BINDING_SLOTS_REQUIRED = 2;
|
|
22140
22140
|
var StylingBuilder = class {
|
|
@@ -22467,7 +22467,7 @@ function isEmptyExpression(ast) {
|
|
|
22467
22467
|
return ast instanceof EmptyExpr;
|
|
22468
22468
|
}
|
|
22469
22469
|
|
|
22470
|
-
// bazel-out/
|
|
22470
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
22471
22471
|
var NG_CONTENT_SELECT_ATTR2 = "select";
|
|
22472
22472
|
var NG_PROJECT_AS_ATTR_NAME = "ngProjectAs";
|
|
22473
22473
|
var EVENT_BINDING_SCOPE_GLOBALS = /* @__PURE__ */ new Set(["$event"]);
|
|
@@ -24159,7 +24159,7 @@ function createClosureModeGuard2() {
|
|
|
24159
24159
|
return typeofExpr(variable(NG_I18N_CLOSURE_MODE2)).notIdentical(literal("undefined", STRING_TYPE)).and(variable(NG_I18N_CLOSURE_MODE2));
|
|
24160
24160
|
}
|
|
24161
24161
|
|
|
24162
|
-
// bazel-out/
|
|
24162
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
24163
24163
|
function toQueryFlags(query) {
|
|
24164
24164
|
return (query.descendants ? 1 : 0) | (query.static ? 2 : 0) | (query.emitDistinctChangesOnly ? 4 : 0);
|
|
24165
24165
|
}
|
|
@@ -24276,7 +24276,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
24276
24276
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
24277
24277
|
}
|
|
24278
24278
|
|
|
24279
|
-
// bazel-out/
|
|
24279
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
24280
24280
|
var ATTR_REGEX = /attr\.([^\]]+)/;
|
|
24281
24281
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
24282
24282
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
@@ -24856,7 +24856,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
24856
24856
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
24857
24857
|
}
|
|
24858
24858
|
|
|
24859
|
-
// bazel-out/
|
|
24859
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
24860
24860
|
var R3TargetBinder = class {
|
|
24861
24861
|
constructor(directiveMatcher) {
|
|
24862
24862
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -25482,11 +25482,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
25482
25482
|
return templateEntities;
|
|
25483
25483
|
}
|
|
25484
25484
|
|
|
25485
|
-
// bazel-out/
|
|
25485
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
25486
25486
|
var ResourceLoader = class {
|
|
25487
25487
|
};
|
|
25488
25488
|
|
|
25489
|
-
// bazel-out/
|
|
25489
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
25490
25490
|
var SHOULD_USE_TEMPLATE_PIPELINE_FOR_JIT = true;
|
|
25491
25491
|
var CompilerFacadeImpl = class {
|
|
25492
25492
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
@@ -26067,17 +26067,17 @@ function publishFacade(global) {
|
|
|
26067
26067
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
26068
26068
|
}
|
|
26069
26069
|
|
|
26070
|
-
// bazel-out/
|
|
26071
|
-
var VERSION2 = new Version("17.3.
|
|
26070
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
|
|
26071
|
+
var VERSION2 = new Version("17.3.6");
|
|
26072
26072
|
|
|
26073
|
-
// bazel-out/
|
|
26073
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
26074
26074
|
var _VisitorMode;
|
|
26075
26075
|
(function(_VisitorMode2) {
|
|
26076
26076
|
_VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
|
|
26077
26077
|
_VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
|
|
26078
26078
|
})(_VisitorMode || (_VisitorMode = {}));
|
|
26079
26079
|
|
|
26080
|
-
// bazel-out/
|
|
26080
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
26081
26081
|
var XmlTagDefinition = class {
|
|
26082
26082
|
constructor() {
|
|
26083
26083
|
this.closedByParent = false;
|
|
@@ -26099,7 +26099,7 @@ var XmlTagDefinition = class {
|
|
|
26099
26099
|
};
|
|
26100
26100
|
var _TAG_DEFINITION = new XmlTagDefinition();
|
|
26101
26101
|
|
|
26102
|
-
// bazel-out/
|
|
26102
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
26103
26103
|
var FactoryTarget2;
|
|
26104
26104
|
(function(FactoryTarget3) {
|
|
26105
26105
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -26109,10 +26109,10 @@ var FactoryTarget2;
|
|
|
26109
26109
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
26110
26110
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
26111
26111
|
|
|
26112
|
-
// bazel-out/
|
|
26112
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
26113
26113
|
publishFacade(_global);
|
|
26114
26114
|
|
|
26115
|
-
// bazel-out/
|
|
26115
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/util.mjs
|
|
26116
26116
|
var import_path2 = require("path");
|
|
26117
26117
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
26118
26118
|
var REPLACEMENTS2 = {
|
|
@@ -26220,7 +26220,7 @@ function forEachClass(sourceFile, callback) {
|
|
|
26220
26220
|
});
|
|
26221
26221
|
}
|
|
26222
26222
|
|
|
26223
|
-
// bazel-out/
|
|
26223
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/index.mjs
|
|
26224
26224
|
function block_template_entities_default() {
|
|
26225
26225
|
return (tree) => __async(this, null, function* () {
|
|
26226
26226
|
const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);
|