@angular/core 18.0.0-next.2 → 18.0.0-next.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/rxjs-interop/src/to_signal.mjs +2 -2
- package/esm2022/src/application/application_init.mjs +2 -2
- package/esm2022/src/application/application_ref.mjs +10 -15
- package/esm2022/src/application/application_tokens.mjs +3 -3
- package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +20 -3
- package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +7 -6
- package/esm2022/src/core_private_export.mjs +3 -3
- package/esm2022/src/defer/instructions.mjs +2 -2
- package/esm2022/src/di/interface/provider.mjs +1 -1
- package/esm2022/src/di/metadata.mjs +1 -1
- package/esm2022/src/hydration/annotate.mjs +35 -49
- package/esm2022/src/hydration/api.mjs +36 -13
- package/esm2022/src/hydration/cleanup.mjs +4 -18
- package/esm2022/src/hydration/i18n.mjs +378 -0
- package/esm2022/src/hydration/interfaces.mjs +2 -1
- package/esm2022/src/hydration/node_lookup_utils.mjs +24 -10
- package/esm2022/src/hydration/utils.mjs +61 -2
- package/esm2022/src/linker/component_factory.mjs +1 -1
- package/esm2022/src/linker/view_container_ref.mjs +2 -2
- package/esm2022/src/linker/view_ref.mjs +4 -4
- package/esm2022/src/metadata/directives.mjs +1 -1
- package/esm2022/src/metadata/ng_module.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/i18n/i18n_apply.mjs +28 -6
- package/esm2022/src/render3/i18n/i18n_parse.mjs +2 -5
- package/esm2022/src/render3/i18n/i18n_util.mjs +6 -1
- package/esm2022/src/render3/instructions/i18n.mjs +3 -1
- package/esm2022/src/render3/util/injector_discovery_utils.mjs +12 -8
- package/esm2022/src/render3/util/view_utils.mjs +4 -14
- package/esm2022/src/util/callback_scheduler.mjs +23 -33
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/src/zone/ng_zone.mjs +3 -3
- package/esm2022/testing/src/component_fixture.mjs +2 -2
- package/esm2022/testing/src/fake_async.mjs +6 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/esm2022/testing/src/private_export.mjs +9 -0
- package/esm2022/testing/src/test_hooks.mjs +3 -3
- package/esm2022/testing/src/testing.mjs +3 -2
- package/fesm2022/core.mjs +1124 -688
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +2 -2
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +41 -36
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +80 -33
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +2 -2
- package/schematics/migrations/block-template-entities/bundle.js +157 -157
- 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 +158 -158
- 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 +189 -177
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +3 -3
- package/schematics/ng-generate/standalone-migration/bundle.js +450 -467
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +7 -1
- package/esm2022/src/change_detection/flags.mjs +0 -17
|
@@ -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";
|
|
@@ -1760,7 +1760,7 @@ function serializeTags(tags) {
|
|
|
1760
1760
|
return out;
|
|
1761
1761
|
}
|
|
1762
1762
|
|
|
1763
|
-
// bazel-out/
|
|
1763
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1764
1764
|
var CONSTANT_PREFIX = "_c";
|
|
1765
1765
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1766
1766
|
var KEY_CONTEXT = {};
|
|
@@ -1948,7 +1948,7 @@ function isLongStringLiteral(expr) {
|
|
|
1948
1948
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
1949
1949
|
}
|
|
1950
1950
|
|
|
1951
|
-
// bazel-out/
|
|
1951
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
1952
1952
|
var CORE = "@angular/core";
|
|
1953
1953
|
var _Identifiers = class {
|
|
1954
1954
|
};
|
|
@@ -2617,7 +2617,7 @@ var Identifiers = _Identifiers;
|
|
|
2617
2617
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
2618
2618
|
})();
|
|
2619
2619
|
|
|
2620
|
-
// bazel-out/
|
|
2620
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2621
2621
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2622
2622
|
function dashCaseToCamelCase(input) {
|
|
2623
2623
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2694,7 +2694,7 @@ var Version = class {
|
|
|
2694
2694
|
};
|
|
2695
2695
|
var _global = globalThis;
|
|
2696
2696
|
|
|
2697
|
-
// bazel-out/
|
|
2697
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2698
2698
|
var VERSION = 3;
|
|
2699
2699
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2700
2700
|
var SourceMapGenerator = class {
|
|
@@ -2823,7 +2823,7 @@ function toBase64Digit(value) {
|
|
|
2823
2823
|
return B64_DIGITS[value];
|
|
2824
2824
|
}
|
|
2825
2825
|
|
|
2826
|
-
// bazel-out/
|
|
2826
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2827
2827
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2828
2828
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2829
2829
|
var _INDENT_WITH = " ";
|
|
@@ -3311,7 +3311,7 @@ function _createIndent(count) {
|
|
|
3311
3311
|
return res;
|
|
3312
3312
|
}
|
|
3313
3313
|
|
|
3314
|
-
// bazel-out/
|
|
3314
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3315
3315
|
function typeWithParameters(type, numParams) {
|
|
3316
3316
|
if (numParams === 0) {
|
|
3317
3317
|
return expressionType(type);
|
|
@@ -3366,7 +3366,7 @@ function generateForwardRef(expr) {
|
|
|
3366
3366
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
3367
3367
|
}
|
|
3368
3368
|
|
|
3369
|
-
// bazel-out/
|
|
3369
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3370
3370
|
var R3FactoryDelegateType;
|
|
3371
3371
|
(function(R3FactoryDelegateType2) {
|
|
3372
3372
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3511,7 +3511,7 @@ function getInjectFn(target) {
|
|
|
3511
3511
|
}
|
|
3512
3512
|
}
|
|
3513
3513
|
|
|
3514
|
-
// bazel-out/
|
|
3514
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
3515
3515
|
var ParserError = class {
|
|
3516
3516
|
constructor(message, input, errLocation, ctxLocation) {
|
|
3517
3517
|
this.input = input;
|
|
@@ -3949,7 +3949,7 @@ var BoundElementProperty = class {
|
|
|
3949
3949
|
}
|
|
3950
3950
|
};
|
|
3951
3951
|
|
|
3952
|
-
// bazel-out/
|
|
3952
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
3953
3953
|
var TagContentType;
|
|
3954
3954
|
(function(TagContentType2) {
|
|
3955
3955
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -3986,7 +3986,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
3986
3986
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
3987
3987
|
}
|
|
3988
3988
|
|
|
3989
|
-
// bazel-out/
|
|
3989
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
3990
3990
|
var Comment = class {
|
|
3991
3991
|
constructor(value, sourceSpan) {
|
|
3992
3992
|
this.value = value;
|
|
@@ -4368,7 +4368,7 @@ function visitAll(visitor, nodes) {
|
|
|
4368
4368
|
return result;
|
|
4369
4369
|
}
|
|
4370
4370
|
|
|
4371
|
-
// bazel-out/
|
|
4371
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
4372
4372
|
var Message = class {
|
|
4373
4373
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
4374
4374
|
this.nodes = nodes;
|
|
@@ -4506,7 +4506,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4506
4506
|
}
|
|
4507
4507
|
};
|
|
4508
4508
|
|
|
4509
|
-
// bazel-out/
|
|
4509
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4510
4510
|
var _Visitor = class {
|
|
4511
4511
|
visitTag(tag) {
|
|
4512
4512
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4534,12 +4534,12 @@ ${doctype.dtd}
|
|
|
4534
4534
|
};
|
|
4535
4535
|
var _visitor = new _Visitor();
|
|
4536
4536
|
|
|
4537
|
-
// bazel-out/
|
|
4537
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4538
4538
|
function toPublicName(internalName) {
|
|
4539
4539
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4540
4540
|
}
|
|
4541
4541
|
|
|
4542
|
-
// bazel-out/
|
|
4542
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4543
4543
|
var I18N_ATTR = "i18n";
|
|
4544
4544
|
var I18N_ATTR_PREFIX = "i18n-";
|
|
4545
4545
|
var I18N_ICU_VAR_PREFIX = "VAR_";
|
|
@@ -4579,7 +4579,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
|
|
|
4579
4579
|
return postfix ? `${raw}_${postfix}` : raw;
|
|
4580
4580
|
}
|
|
4581
4581
|
|
|
4582
|
-
// bazel-out/
|
|
4582
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4583
4583
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4584
4584
|
var TEMPORARY_NAME = "_t";
|
|
4585
4585
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4716,7 +4716,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
|
|
|
4716
4716
|
return attributesMap;
|
|
4717
4717
|
}
|
|
4718
4718
|
|
|
4719
|
-
// bazel-out/
|
|
4719
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4720
4720
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4721
4721
|
let result = null;
|
|
4722
4722
|
const factoryMeta = {
|
|
@@ -4801,7 +4801,7 @@ function createFactoryFunction(type) {
|
|
|
4801
4801
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
4802
4802
|
}
|
|
4803
4803
|
|
|
4804
|
-
// bazel-out/
|
|
4804
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4805
4805
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4806
4806
|
/^\s*$/,
|
|
4807
4807
|
/[<>]/,
|
|
@@ -4823,7 +4823,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4823
4823
|
}
|
|
4824
4824
|
}
|
|
4825
4825
|
|
|
4826
|
-
// bazel-out/
|
|
4826
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
4827
4827
|
var InterpolationConfig = class {
|
|
4828
4828
|
static fromArray(markers) {
|
|
4829
4829
|
if (!markers) {
|
|
@@ -4840,7 +4840,7 @@ var InterpolationConfig = class {
|
|
|
4840
4840
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4841
4841
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
4842
4842
|
|
|
4843
|
-
// bazel-out/
|
|
4843
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
4844
4844
|
var $EOF = 0;
|
|
4845
4845
|
var $BSPACE = 8;
|
|
4846
4846
|
var $TAB = 9;
|
|
@@ -4922,7 +4922,7 @@ function isQuote(code) {
|
|
|
4922
4922
|
return code === $SQ || code === $DQ || code === $BT;
|
|
4923
4923
|
}
|
|
4924
4924
|
|
|
4925
|
-
// bazel-out/
|
|
4925
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
4926
4926
|
var ParseLocation = class {
|
|
4927
4927
|
constructor(file, offset, line, col) {
|
|
4928
4928
|
this.file = file;
|
|
@@ -5069,7 +5069,7 @@ function sanitizeIdentifier(name) {
|
|
|
5069
5069
|
return name.replace(/\W/g, "_");
|
|
5070
5070
|
}
|
|
5071
5071
|
|
|
5072
|
-
// bazel-out/
|
|
5072
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5073
5073
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5074
5074
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5075
5075
|
constructor() {
|
|
@@ -5162,7 +5162,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5162
5162
|
}
|
|
5163
5163
|
};
|
|
5164
5164
|
|
|
5165
|
-
// bazel-out/
|
|
5165
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5166
5166
|
var policy;
|
|
5167
5167
|
function getPolicy() {
|
|
5168
5168
|
if (policy === void 0) {
|
|
@@ -5200,7 +5200,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5200
5200
|
return fn2.bind(_global);
|
|
5201
5201
|
}
|
|
5202
5202
|
|
|
5203
|
-
// bazel-out/
|
|
5203
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5204
5204
|
var JitEvaluator = class {
|
|
5205
5205
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5206
5206
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5291,7 +5291,7 @@ function isUseStrictStatement(statement) {
|
|
|
5291
5291
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5292
5292
|
}
|
|
5293
5293
|
|
|
5294
|
-
// bazel-out/
|
|
5294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5295
5295
|
function compileInjector(meta) {
|
|
5296
5296
|
const definitionMap = new DefinitionMap();
|
|
5297
5297
|
if (meta.providers !== null) {
|
|
@@ -5308,7 +5308,7 @@ function createInjectorType(meta) {
|
|
|
5308
5308
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5309
5309
|
}
|
|
5310
5310
|
|
|
5311
|
-
// bazel-out/
|
|
5311
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5312
5312
|
var R3JitReflector = class {
|
|
5313
5313
|
constructor(context) {
|
|
5314
5314
|
this.context = context;
|
|
@@ -5324,7 +5324,7 @@ var R3JitReflector = class {
|
|
|
5324
5324
|
}
|
|
5325
5325
|
};
|
|
5326
5326
|
|
|
5327
|
-
// bazel-out/
|
|
5327
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5328
5328
|
var R3SelectorScopeMode;
|
|
5329
5329
|
(function(R3SelectorScopeMode2) {
|
|
5330
5330
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5465,7 +5465,7 @@ function tupleOfTypes(types) {
|
|
|
5465
5465
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5466
5466
|
}
|
|
5467
5467
|
|
|
5468
|
-
// bazel-out/
|
|
5468
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5469
5469
|
function compilePipeFromMetadata(metadata) {
|
|
5470
5470
|
const definitionMapValues = [];
|
|
5471
5471
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5486,7 +5486,7 @@ function createPipeType(metadata) {
|
|
|
5486
5486
|
]));
|
|
5487
5487
|
}
|
|
5488
5488
|
|
|
5489
|
-
// bazel-out/
|
|
5489
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5490
5490
|
var R3TemplateDependencyKind;
|
|
5491
5491
|
(function(R3TemplateDependencyKind2) {
|
|
5492
5492
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5494,7 +5494,7 @@ var R3TemplateDependencyKind;
|
|
|
5494
5494
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5495
5495
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5496
5496
|
|
|
5497
|
-
// bazel-out/
|
|
5497
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
5498
5498
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
5499
5499
|
"inherit",
|
|
5500
5500
|
"initial",
|
|
@@ -5966,7 +5966,7 @@ function repeatGroups(groups, multiples) {
|
|
|
5966
5966
|
}
|
|
5967
5967
|
}
|
|
5968
5968
|
|
|
5969
|
-
// bazel-out/
|
|
5969
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
5970
5970
|
var OpKind;
|
|
5971
5971
|
(function(OpKind2) {
|
|
5972
5972
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -6120,7 +6120,7 @@ var TemplateKind;
|
|
|
6120
6120
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
6121
6121
|
})(TemplateKind || (TemplateKind = {}));
|
|
6122
6122
|
|
|
6123
|
-
// bazel-out/
|
|
6123
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
6124
6124
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
6125
6125
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
6126
6126
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -6148,7 +6148,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
6148
6148
|
return expr[UsesVarOffset] === true;
|
|
6149
6149
|
}
|
|
6150
6150
|
|
|
6151
|
-
// bazel-out/
|
|
6151
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
6152
6152
|
function createStatementOp(statement) {
|
|
6153
6153
|
return __spreadValues({
|
|
6154
6154
|
kind: OpKind.Statement,
|
|
@@ -6170,7 +6170,7 @@ var NEW_OP = {
|
|
|
6170
6170
|
next: null
|
|
6171
6171
|
};
|
|
6172
6172
|
|
|
6173
|
-
// bazel-out/
|
|
6173
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
6174
6174
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
6175
6175
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
6176
6176
|
kind: OpKind.InterpolateText,
|
|
@@ -6351,7 +6351,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
6351
6351
|
}, NEW_OP);
|
|
6352
6352
|
}
|
|
6353
6353
|
|
|
6354
|
-
// bazel-out/
|
|
6354
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
6355
6355
|
var _a;
|
|
6356
6356
|
var _b;
|
|
6357
6357
|
var _c;
|
|
@@ -7213,7 +7213,7 @@ function isStringLiteral(expr) {
|
|
|
7213
7213
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
7214
7214
|
}
|
|
7215
7215
|
|
|
7216
|
-
// bazel-out/
|
|
7216
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
7217
7217
|
var _OpList = class {
|
|
7218
7218
|
constructor() {
|
|
7219
7219
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -7404,14 +7404,14 @@ var OpList = _OpList;
|
|
|
7404
7404
|
_OpList.nextListId = 0;
|
|
7405
7405
|
})();
|
|
7406
7406
|
|
|
7407
|
-
// bazel-out/
|
|
7407
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
7408
7408
|
var SlotHandle = class {
|
|
7409
7409
|
constructor() {
|
|
7410
7410
|
this.slot = null;
|
|
7411
7411
|
}
|
|
7412
7412
|
};
|
|
7413
7413
|
|
|
7414
|
-
// bazel-out/
|
|
7414
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
7415
7415
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
7416
7416
|
OpKind.Element,
|
|
7417
7417
|
OpKind.ElementStart,
|
|
@@ -7715,7 +7715,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
7715
7715
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
7716
7716
|
}
|
|
7717
7717
|
|
|
7718
|
-
// bazel-out/
|
|
7718
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
7719
7719
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
7720
7720
|
return __spreadValues(__spreadValues({
|
|
7721
7721
|
kind: OpKind.HostProperty,
|
|
@@ -7729,10 +7729,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
7729
7729
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
7730
7730
|
}
|
|
7731
7731
|
|
|
7732
|
-
// bazel-out/
|
|
7732
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
7733
7733
|
var CTX_REF = "CTX_REF_MARKER";
|
|
7734
7734
|
|
|
7735
|
-
// bazel-out/
|
|
7735
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
7736
7736
|
var CompilationJobKind;
|
|
7737
7737
|
(function(CompilationJobKind2) {
|
|
7738
7738
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -7840,7 +7840,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
7840
7840
|
}
|
|
7841
7841
|
};
|
|
7842
7842
|
|
|
7843
|
-
// bazel-out/
|
|
7843
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
7844
7844
|
function deleteAnyCasts(job) {
|
|
7845
7845
|
for (const unit of job.units) {
|
|
7846
7846
|
for (const op of unit.ops()) {
|
|
@@ -7858,7 +7858,7 @@ function removeAnys(e) {
|
|
|
7858
7858
|
return e;
|
|
7859
7859
|
}
|
|
7860
7860
|
|
|
7861
|
-
// bazel-out/
|
|
7861
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
7862
7862
|
function applyI18nExpressions(job) {
|
|
7863
7863
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
7864
7864
|
for (const unit of job.units) {
|
|
@@ -7901,7 +7901,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
7901
7901
|
return false;
|
|
7902
7902
|
}
|
|
7903
7903
|
|
|
7904
|
-
// bazel-out/
|
|
7904
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
7905
7905
|
function assignI18nSlotDependencies(job) {
|
|
7906
7906
|
for (const unit of job.units) {
|
|
7907
7907
|
let updateOp = unit.update.head;
|
|
@@ -7946,7 +7946,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
7946
7946
|
}
|
|
7947
7947
|
}
|
|
7948
7948
|
|
|
7949
|
-
// bazel-out/
|
|
7949
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
7950
7950
|
function createOpXrefMap(unit) {
|
|
7951
7951
|
const map = /* @__PURE__ */ new Map();
|
|
7952
7952
|
for (const op of unit.create) {
|
|
@@ -7961,7 +7961,7 @@ function createOpXrefMap(unit) {
|
|
|
7961
7961
|
return map;
|
|
7962
7962
|
}
|
|
7963
7963
|
|
|
7964
|
-
// bazel-out/
|
|
7964
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
7965
7965
|
function extractAttributes(job) {
|
|
7966
7966
|
for (const unit of job.units) {
|
|
7967
7967
|
const elements = createOpXrefMap(unit);
|
|
@@ -8090,7 +8090,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
8090
8090
|
}
|
|
8091
8091
|
}
|
|
8092
8092
|
|
|
8093
|
-
// bazel-out/
|
|
8093
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
8094
8094
|
function lookupElement2(elements, xref) {
|
|
8095
8095
|
const el = elements.get(xref);
|
|
8096
8096
|
if (el === void 0) {
|
|
@@ -8147,7 +8147,7 @@ function specializeBindings(job) {
|
|
|
8147
8147
|
}
|
|
8148
8148
|
}
|
|
8149
8149
|
|
|
8150
|
-
// bazel-out/
|
|
8150
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
8151
8151
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
8152
8152
|
Identifiers.attribute,
|
|
8153
8153
|
Identifiers.classProp,
|
|
@@ -8215,7 +8215,7 @@ function chainOperationsInList(opList) {
|
|
|
8215
8215
|
}
|
|
8216
8216
|
}
|
|
8217
8217
|
|
|
8218
|
-
// bazel-out/
|
|
8218
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
8219
8219
|
function collapseSingletonInterpolations(job) {
|
|
8220
8220
|
for (const unit of job.units) {
|
|
8221
8221
|
for (const op of unit.update) {
|
|
@@ -8227,7 +8227,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
8227
8227
|
}
|
|
8228
8228
|
}
|
|
8229
8229
|
|
|
8230
|
-
// bazel-out/
|
|
8230
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
8231
8231
|
function generateConditionalExpressions(job) {
|
|
8232
8232
|
for (const unit of job.units) {
|
|
8233
8233
|
for (const op of unit.ops()) {
|
|
@@ -8264,7 +8264,7 @@ function generateConditionalExpressions(job) {
|
|
|
8264
8264
|
}
|
|
8265
8265
|
}
|
|
8266
8266
|
|
|
8267
|
-
// bazel-out/
|
|
8267
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
8268
8268
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
8269
8269
|
["&&", BinaryOperator.And],
|
|
8270
8270
|
[">", BinaryOperator.Bigger],
|
|
@@ -8315,7 +8315,7 @@ function literalOrArrayLiteral(value) {
|
|
|
8315
8315
|
return literal(value);
|
|
8316
8316
|
}
|
|
8317
8317
|
|
|
8318
|
-
// bazel-out/
|
|
8318
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
8319
8319
|
function collectElementConsts(job) {
|
|
8320
8320
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
8321
8321
|
for (const unit of job.units) {
|
|
@@ -8484,7 +8484,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
8484
8484
|
return literalArr(attrArray);
|
|
8485
8485
|
}
|
|
8486
8486
|
|
|
8487
|
-
// bazel-out/
|
|
8487
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
8488
8488
|
function convertI18nBindings(job) {
|
|
8489
8489
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
8490
8490
|
for (const unit of job.units) {
|
|
@@ -8525,7 +8525,7 @@ function convertI18nBindings(job) {
|
|
|
8525
8525
|
}
|
|
8526
8526
|
}
|
|
8527
8527
|
|
|
8528
|
-
// bazel-out/
|
|
8528
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
8529
8529
|
function resolveDeferDepsFns(job) {
|
|
8530
8530
|
var _a2;
|
|
8531
8531
|
for (const unit of job.units) {
|
|
@@ -8550,7 +8550,7 @@ function resolveDeferDepsFns(job) {
|
|
|
8550
8550
|
}
|
|
8551
8551
|
}
|
|
8552
8552
|
|
|
8553
|
-
// bazel-out/
|
|
8553
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
8554
8554
|
function createI18nContexts(job) {
|
|
8555
8555
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
8556
8556
|
for (const unit of job.units) {
|
|
@@ -8628,7 +8628,7 @@ function createI18nContexts(job) {
|
|
|
8628
8628
|
}
|
|
8629
8629
|
}
|
|
8630
8630
|
|
|
8631
|
-
// bazel-out/
|
|
8631
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
8632
8632
|
function deduplicateTextBindings(job) {
|
|
8633
8633
|
const seen = /* @__PURE__ */ new Map();
|
|
8634
8634
|
for (const unit of job.units) {
|
|
@@ -8650,7 +8650,7 @@ function deduplicateTextBindings(job) {
|
|
|
8650
8650
|
}
|
|
8651
8651
|
}
|
|
8652
8652
|
|
|
8653
|
-
// bazel-out/
|
|
8653
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
8654
8654
|
function configureDeferInstructions(job) {
|
|
8655
8655
|
for (const unit of job.units) {
|
|
8656
8656
|
for (const op of unit.create) {
|
|
@@ -8667,7 +8667,7 @@ function configureDeferInstructions(job) {
|
|
|
8667
8667
|
}
|
|
8668
8668
|
}
|
|
8669
8669
|
|
|
8670
|
-
// bazel-out/
|
|
8670
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
8671
8671
|
function resolveDeferTargetNames(job) {
|
|
8672
8672
|
const scopes = /* @__PURE__ */ new Map();
|
|
8673
8673
|
function getScopeForView2(view) {
|
|
@@ -8761,7 +8761,7 @@ var Scope = class {
|
|
|
8761
8761
|
}
|
|
8762
8762
|
};
|
|
8763
8763
|
|
|
8764
|
-
// bazel-out/
|
|
8764
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
8765
8765
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
8766
8766
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
8767
8767
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -8788,7 +8788,7 @@ function collapseEmptyInstructions(job) {
|
|
|
8788
8788
|
}
|
|
8789
8789
|
}
|
|
8790
8790
|
|
|
8791
|
-
// bazel-out/
|
|
8791
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
8792
8792
|
function expandSafeReads(job) {
|
|
8793
8793
|
for (const unit of job.units) {
|
|
8794
8794
|
for (const op of unit.ops()) {
|
|
@@ -8924,7 +8924,7 @@ function ternaryTransform(e) {
|
|
|
8924
8924
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
8925
8925
|
}
|
|
8926
8926
|
|
|
8927
|
-
// bazel-out/
|
|
8927
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
8928
8928
|
var ESCAPE = "\uFFFD";
|
|
8929
8929
|
var ELEMENT_MARKER = "#";
|
|
8930
8930
|
var TEMPLATE_MARKER = "*";
|
|
@@ -9060,7 +9060,7 @@ function formatValue(value) {
|
|
|
9060
9060
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
9061
9061
|
}
|
|
9062
9062
|
|
|
9063
|
-
// bazel-out/
|
|
9063
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
9064
9064
|
function generateAdvance(job) {
|
|
9065
9065
|
for (const unit of job.units) {
|
|
9066
9066
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -9092,7 +9092,7 @@ function generateAdvance(job) {
|
|
|
9092
9092
|
}
|
|
9093
9093
|
}
|
|
9094
9094
|
|
|
9095
|
-
// bazel-out/
|
|
9095
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
9096
9096
|
function generateProjectionDefs(job) {
|
|
9097
9097
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
9098
9098
|
const selectors = [];
|
|
@@ -9116,7 +9116,7 @@ function generateProjectionDefs(job) {
|
|
|
9116
9116
|
}
|
|
9117
9117
|
}
|
|
9118
9118
|
|
|
9119
|
-
// bazel-out/
|
|
9119
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
9120
9120
|
function generateVariables(job) {
|
|
9121
9121
|
recursivelyProcessView(job.root, null);
|
|
9122
9122
|
}
|
|
@@ -9215,7 +9215,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
9215
9215
|
return newOps;
|
|
9216
9216
|
}
|
|
9217
9217
|
|
|
9218
|
-
// bazel-out/
|
|
9218
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
9219
9219
|
function collectConstExpressions(job) {
|
|
9220
9220
|
for (const unit of job.units) {
|
|
9221
9221
|
for (const op of unit.ops()) {
|
|
@@ -9229,7 +9229,7 @@ function collectConstExpressions(job) {
|
|
|
9229
9229
|
}
|
|
9230
9230
|
}
|
|
9231
9231
|
|
|
9232
|
-
// bazel-out/
|
|
9232
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
9233
9233
|
var STYLE_DOT = "style.";
|
|
9234
9234
|
var CLASS_DOT = "class.";
|
|
9235
9235
|
var STYLE_BANG = "style!";
|
|
@@ -9287,7 +9287,7 @@ function parseProperty(name) {
|
|
|
9287
9287
|
return { property: property2, suffix };
|
|
9288
9288
|
}
|
|
9289
9289
|
|
|
9290
|
-
// bazel-out/
|
|
9290
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
9291
9291
|
function mapLiteral(obj, quoted = false) {
|
|
9292
9292
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
9293
9293
|
key,
|
|
@@ -9296,7 +9296,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
9296
9296
|
})));
|
|
9297
9297
|
}
|
|
9298
9298
|
|
|
9299
|
-
// bazel-out/
|
|
9299
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
9300
9300
|
var IcuSerializerVisitor = class {
|
|
9301
9301
|
visitText(text2) {
|
|
9302
9302
|
return text2.value;
|
|
@@ -9330,7 +9330,7 @@ function serializeIcuNode(icu) {
|
|
|
9330
9330
|
return icu.visit(serializer);
|
|
9331
9331
|
}
|
|
9332
9332
|
|
|
9333
|
-
// bazel-out/
|
|
9333
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
9334
9334
|
var TokenType;
|
|
9335
9335
|
(function(TokenType2) {
|
|
9336
9336
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -9691,7 +9691,7 @@ function parseIntAutoRadix(text2) {
|
|
|
9691
9691
|
return result;
|
|
9692
9692
|
}
|
|
9693
9693
|
|
|
9694
|
-
// bazel-out/
|
|
9694
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
9695
9695
|
var SplitInterpolation = class {
|
|
9696
9696
|
constructor(strings, expressions, offsets) {
|
|
9697
9697
|
this.strings = strings;
|
|
@@ -10573,7 +10573,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
10573
10573
|
return offsetMap;
|
|
10574
10574
|
}
|
|
10575
10575
|
|
|
10576
|
-
// bazel-out/
|
|
10576
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
10577
10577
|
var NodeWithI18n = class {
|
|
10578
10578
|
constructor(sourceSpan, i18n2) {
|
|
10579
10579
|
this.sourceSpan = sourceSpan;
|
|
@@ -10725,7 +10725,7 @@ var RecursiveVisitor = class {
|
|
|
10725
10725
|
}
|
|
10726
10726
|
};
|
|
10727
10727
|
|
|
10728
|
-
// bazel-out/
|
|
10728
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
10729
10729
|
var _SECURITY_SCHEMA;
|
|
10730
10730
|
function SECURITY_SCHEMA() {
|
|
10731
10731
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -10783,11 +10783,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
10783
10783
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
10784
10784
|
}
|
|
10785
10785
|
|
|
10786
|
-
// bazel-out/
|
|
10786
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
10787
10787
|
var ElementSchemaRegistry = class {
|
|
10788
10788
|
};
|
|
10789
10789
|
|
|
10790
|
-
// bazel-out/
|
|
10790
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
10791
10791
|
var BOOLEAN = "boolean";
|
|
10792
10792
|
var NUMBER = "number";
|
|
10793
10793
|
var STRING = "string";
|
|
@@ -11140,7 +11140,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
11140
11140
|
}
|
|
11141
11141
|
}
|
|
11142
11142
|
|
|
11143
|
-
// bazel-out/
|
|
11143
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
11144
11144
|
var HtmlTagDefinition = class {
|
|
11145
11145
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
11146
11146
|
this.closedByChildren = {};
|
|
@@ -11258,7 +11258,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
11258
11258
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
11259
11259
|
}
|
|
11260
11260
|
|
|
11261
|
-
// bazel-out/
|
|
11261
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
11262
11262
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
11263
11263
|
"A": "LINK",
|
|
11264
11264
|
"B": "BOLD_TEXT",
|
|
@@ -11380,7 +11380,7 @@ var PlaceholderRegistry = class {
|
|
|
11380
11380
|
}
|
|
11381
11381
|
};
|
|
11382
11382
|
|
|
11383
|
-
// bazel-out/
|
|
11383
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
11384
11384
|
var _expParser = new Parser(new Lexer());
|
|
11385
11385
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
11386
11386
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -11559,14 +11559,14 @@ function extractPlaceholderName(input) {
|
|
|
11559
11559
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
11560
11560
|
}
|
|
11561
11561
|
|
|
11562
|
-
// bazel-out/
|
|
11562
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
11563
11563
|
var I18nError = class extends ParseError {
|
|
11564
11564
|
constructor(span, msg) {
|
|
11565
11565
|
super(span, msg);
|
|
11566
11566
|
}
|
|
11567
11567
|
};
|
|
11568
11568
|
|
|
11569
|
-
// bazel-out/
|
|
11569
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
11570
11570
|
var NAMED_ENTITIES = {
|
|
11571
11571
|
"AElig": "\xC6",
|
|
11572
11572
|
"AMP": "&",
|
|
@@ -13697,7 +13697,7 @@ var NAMED_ENTITIES = {
|
|
|
13697
13697
|
var NGSP_UNICODE = "\uE500";
|
|
13698
13698
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
13699
13699
|
|
|
13700
|
-
// bazel-out/
|
|
13700
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
13701
13701
|
var TokenError = class extends ParseError {
|
|
13702
13702
|
constructor(errorMsg, tokenType, span) {
|
|
13703
13703
|
super(span, errorMsg);
|
|
@@ -14618,7 +14618,7 @@ var CursorError = class {
|
|
|
14618
14618
|
}
|
|
14619
14619
|
};
|
|
14620
14620
|
|
|
14621
|
-
// bazel-out/
|
|
14621
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
14622
14622
|
var TreeError = class extends ParseError {
|
|
14623
14623
|
static create(elementName, span, msg) {
|
|
14624
14624
|
return new TreeError(elementName, span, msg);
|
|
@@ -15002,7 +15002,7 @@ function decodeEntity(match, entity) {
|
|
|
15002
15002
|
return match;
|
|
15003
15003
|
}
|
|
15004
15004
|
|
|
15005
|
-
// bazel-out/
|
|
15005
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
15006
15006
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
15007
15007
|
"iframe|srcdoc",
|
|
15008
15008
|
"*|innerhtml",
|
|
@@ -15017,7 +15017,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
15017
15017
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
15018
15018
|
}
|
|
15019
15019
|
|
|
15020
|
-
// bazel-out/
|
|
15020
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
15021
15021
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
15022
15022
|
if (htmlNode instanceof NodeWithI18n) {
|
|
15023
15023
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -15174,7 +15174,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
15174
15174
|
return jsDocComment(tags);
|
|
15175
15175
|
}
|
|
15176
15176
|
|
|
15177
|
-
// bazel-out/
|
|
15177
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
15178
15178
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
15179
15179
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
15180
15180
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -15225,7 +15225,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
15225
15225
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
15226
15226
|
}
|
|
15227
15227
|
|
|
15228
|
-
// bazel-out/
|
|
15228
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
15229
15229
|
function createLocalizeStatements(variable2, message, params) {
|
|
15230
15230
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
15231
15231
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -15314,7 +15314,7 @@ function createEmptyMessagePart(location) {
|
|
|
15314
15314
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
15315
15315
|
}
|
|
15316
15316
|
|
|
15317
|
-
// bazel-out/
|
|
15317
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
15318
15318
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
15319
15319
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
15320
15320
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -15482,7 +15482,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
15482
15482
|
return variable(name);
|
|
15483
15483
|
}
|
|
15484
15484
|
|
|
15485
|
-
// bazel-out/
|
|
15485
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
15486
15486
|
function convertI18nText(job) {
|
|
15487
15487
|
var _a2, _b2, _c2;
|
|
15488
15488
|
for (const unit of job.units) {
|
|
@@ -15552,7 +15552,7 @@ function convertI18nText(job) {
|
|
|
15552
15552
|
}
|
|
15553
15553
|
}
|
|
15554
15554
|
|
|
15555
|
-
// bazel-out/
|
|
15555
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
15556
15556
|
function liftLocalRefs(job) {
|
|
15557
15557
|
for (const unit of job.units) {
|
|
15558
15558
|
for (const op of unit.create) {
|
|
@@ -15582,7 +15582,7 @@ function serializeLocalRefs(refs) {
|
|
|
15582
15582
|
return literalArr(constRefs);
|
|
15583
15583
|
}
|
|
15584
15584
|
|
|
15585
|
-
// bazel-out/
|
|
15585
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
15586
15586
|
function emitNamespaceChanges(job) {
|
|
15587
15587
|
for (const unit of job.units) {
|
|
15588
15588
|
let activeNamespace = Namespace.HTML;
|
|
@@ -15598,7 +15598,7 @@ function emitNamespaceChanges(job) {
|
|
|
15598
15598
|
}
|
|
15599
15599
|
}
|
|
15600
15600
|
|
|
15601
|
-
// bazel-out/
|
|
15601
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
15602
15602
|
function parse(value) {
|
|
15603
15603
|
const styles = [];
|
|
15604
15604
|
let i = 0;
|
|
@@ -15692,7 +15692,7 @@ function parseExtractedStyles(job) {
|
|
|
15692
15692
|
}
|
|
15693
15693
|
}
|
|
15694
15694
|
|
|
15695
|
-
// bazel-out/
|
|
15695
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
15696
15696
|
function nameFunctionsAndVariables(job) {
|
|
15697
15697
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
15698
15698
|
}
|
|
@@ -15833,7 +15833,7 @@ function stripImportant(name) {
|
|
|
15833
15833
|
return name;
|
|
15834
15834
|
}
|
|
15835
15835
|
|
|
15836
|
-
// bazel-out/
|
|
15836
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
15837
15837
|
function mergeNextContextExpressions(job) {
|
|
15838
15838
|
for (const unit of job.units) {
|
|
15839
15839
|
for (const op of unit.create) {
|
|
@@ -15879,7 +15879,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
15879
15879
|
}
|
|
15880
15880
|
}
|
|
15881
15881
|
|
|
15882
|
-
// bazel-out/
|
|
15882
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
15883
15883
|
var CONTAINER_TAG = "ng-container";
|
|
15884
15884
|
function generateNgContainerOps(job) {
|
|
15885
15885
|
for (const unit of job.units) {
|
|
@@ -15896,7 +15896,7 @@ function generateNgContainerOps(job) {
|
|
|
15896
15896
|
}
|
|
15897
15897
|
}
|
|
15898
15898
|
|
|
15899
|
-
// bazel-out/
|
|
15899
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
15900
15900
|
function lookupElement3(elements, xref) {
|
|
15901
15901
|
const el = elements.get(xref);
|
|
15902
15902
|
if (el === void 0) {
|
|
@@ -15926,7 +15926,7 @@ function disableBindings(job) {
|
|
|
15926
15926
|
}
|
|
15927
15927
|
}
|
|
15928
15928
|
|
|
15929
|
-
// bazel-out/
|
|
15929
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
15930
15930
|
function generateNullishCoalesceExpressions(job) {
|
|
15931
15931
|
for (const unit of job.units) {
|
|
15932
15932
|
for (const op of unit.ops()) {
|
|
@@ -15942,7 +15942,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
15942
15942
|
}
|
|
15943
15943
|
}
|
|
15944
15944
|
|
|
15945
|
-
// bazel-out/
|
|
15945
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
15946
15946
|
function kindTest(kind) {
|
|
15947
15947
|
return (op) => op.kind === kind;
|
|
15948
15948
|
}
|
|
@@ -16032,7 +16032,7 @@ function keepLast(ops) {
|
|
|
16032
16032
|
return ops.slice(ops.length - 1);
|
|
16033
16033
|
}
|
|
16034
16034
|
|
|
16035
|
-
// bazel-out/
|
|
16035
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
16036
16036
|
function removeContentSelectors(job) {
|
|
16037
16037
|
for (const unit of job.units) {
|
|
16038
16038
|
const elements = createOpXrefMap(unit);
|
|
@@ -16059,7 +16059,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
16059
16059
|
return el;
|
|
16060
16060
|
}
|
|
16061
16061
|
|
|
16062
|
-
// bazel-out/
|
|
16062
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
16063
16063
|
function createPipes(job) {
|
|
16064
16064
|
for (const unit of job.units) {
|
|
16065
16065
|
processPipeBindingsInView(unit);
|
|
@@ -16107,7 +16107,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
16107
16107
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
16108
16108
|
}
|
|
16109
16109
|
|
|
16110
|
-
// bazel-out/
|
|
16110
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
16111
16111
|
function createVariadicPipes(job) {
|
|
16112
16112
|
for (const unit of job.units) {
|
|
16113
16113
|
for (const op of unit.update) {
|
|
@@ -16124,7 +16124,7 @@ function createVariadicPipes(job) {
|
|
|
16124
16124
|
}
|
|
16125
16125
|
}
|
|
16126
16126
|
|
|
16127
|
-
// bazel-out/
|
|
16127
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
16128
16128
|
function propagateI18nBlocks(job) {
|
|
16129
16129
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
16130
16130
|
}
|
|
@@ -16178,7 +16178,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
16178
16178
|
}
|
|
16179
16179
|
}
|
|
16180
16180
|
|
|
16181
|
-
// bazel-out/
|
|
16181
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
16182
16182
|
function extractPureFunctions(job) {
|
|
16183
16183
|
for (const view of job.units) {
|
|
16184
16184
|
for (const op of view.ops()) {
|
|
@@ -16220,7 +16220,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
16220
16220
|
}
|
|
16221
16221
|
};
|
|
16222
16222
|
|
|
16223
|
-
// bazel-out/
|
|
16223
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
16224
16224
|
function generatePureLiteralStructures(job) {
|
|
16225
16225
|
for (const unit of job.units) {
|
|
16226
16226
|
for (const op of unit.update) {
|
|
@@ -16267,7 +16267,7 @@ function transformLiteralMap(expr) {
|
|
|
16267
16267
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
16268
16268
|
}
|
|
16269
16269
|
|
|
16270
|
-
// bazel-out/
|
|
16270
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
16271
16271
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
16272
16272
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
16273
16273
|
}
|
|
@@ -16808,7 +16808,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
16808
16808
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
16809
16809
|
}
|
|
16810
16810
|
|
|
16811
|
-
// bazel-out/
|
|
16811
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
16812
16812
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
16813
16813
|
["window", Identifiers.resolveWindow],
|
|
16814
16814
|
["document", Identifiers.resolveDocument],
|
|
@@ -17167,7 +17167,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
17167
17167
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
17168
17168
|
}
|
|
17169
17169
|
|
|
17170
|
-
// bazel-out/
|
|
17170
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
17171
17171
|
function removeEmptyBindings(job) {
|
|
17172
17172
|
for (const unit of job.units) {
|
|
17173
17173
|
for (const op of unit.update) {
|
|
@@ -17188,7 +17188,7 @@ function removeEmptyBindings(job) {
|
|
|
17188
17188
|
}
|
|
17189
17189
|
}
|
|
17190
17190
|
|
|
17191
|
-
// bazel-out/
|
|
17191
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
17192
17192
|
function removeI18nContexts(job) {
|
|
17193
17193
|
for (const unit of job.units) {
|
|
17194
17194
|
for (const op of unit.create) {
|
|
@@ -17204,7 +17204,7 @@ function removeI18nContexts(job) {
|
|
|
17204
17204
|
}
|
|
17205
17205
|
}
|
|
17206
17206
|
|
|
17207
|
-
// bazel-out/
|
|
17207
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
17208
17208
|
function removeUnusedI18nAttributesOps(job) {
|
|
17209
17209
|
for (const unit of job.units) {
|
|
17210
17210
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -17226,7 +17226,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
17226
17226
|
}
|
|
17227
17227
|
}
|
|
17228
17228
|
|
|
17229
|
-
// bazel-out/
|
|
17229
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
17230
17230
|
function resolveContexts(job) {
|
|
17231
17231
|
for (const unit of job.units) {
|
|
17232
17232
|
processLexicalScope(unit, unit.create);
|
|
@@ -17268,7 +17268,7 @@ function processLexicalScope(view, ops) {
|
|
|
17268
17268
|
}
|
|
17269
17269
|
}
|
|
17270
17270
|
|
|
17271
|
-
// bazel-out/
|
|
17271
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
17272
17272
|
function resolveDollarEvent(job) {
|
|
17273
17273
|
for (const unit of job.units) {
|
|
17274
17274
|
transformDollarEvent(unit.create);
|
|
@@ -17291,7 +17291,7 @@ function transformDollarEvent(ops) {
|
|
|
17291
17291
|
}
|
|
17292
17292
|
}
|
|
17293
17293
|
|
|
17294
|
-
// bazel-out/
|
|
17294
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
17295
17295
|
function resolveI18nElementPlaceholders(job) {
|
|
17296
17296
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
17297
17297
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -17470,7 +17470,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
17470
17470
|
params.set(placeholder, values);
|
|
17471
17471
|
}
|
|
17472
17472
|
|
|
17473
|
-
// bazel-out/
|
|
17473
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
17474
17474
|
function resolveI18nExpressionPlaceholders(job) {
|
|
17475
17475
|
var _a2;
|
|
17476
17476
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -17523,7 +17523,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
17523
17523
|
}
|
|
17524
17524
|
}
|
|
17525
17525
|
|
|
17526
|
-
// bazel-out/
|
|
17526
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
17527
17527
|
function resolveNames(job) {
|
|
17528
17528
|
for (const unit of job.units) {
|
|
17529
17529
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -17588,7 +17588,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
17588
17588
|
}
|
|
17589
17589
|
}
|
|
17590
17590
|
|
|
17591
|
-
// bazel-out/
|
|
17591
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
17592
17592
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
17593
17593
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
17594
17594
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -17658,7 +17658,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
17658
17658
|
return securityContext;
|
|
17659
17659
|
}
|
|
17660
17660
|
|
|
17661
|
-
// bazel-out/
|
|
17661
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
17662
17662
|
function transformTwoWayBindingSet(job) {
|
|
17663
17663
|
for (const unit of job.units) {
|
|
17664
17664
|
for (const op of unit.create) {
|
|
@@ -17708,7 +17708,7 @@ function wrapAction(target, value) {
|
|
|
17708
17708
|
throw new Error(`Unsupported expression in two-way action binding.`);
|
|
17709
17709
|
}
|
|
17710
17710
|
|
|
17711
|
-
// bazel-out/
|
|
17711
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
17712
17712
|
function saveAndRestoreView(job) {
|
|
17713
17713
|
for (const unit of job.units) {
|
|
17714
17714
|
unit.create.prepend([
|
|
@@ -17753,7 +17753,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
17753
17753
|
}
|
|
17754
17754
|
}
|
|
17755
17755
|
|
|
17756
|
-
// bazel-out/
|
|
17756
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
17757
17757
|
function allocateSlots(job) {
|
|
17758
17758
|
const slotMap = /* @__PURE__ */ new Map();
|
|
17759
17759
|
for (const unit of job.units) {
|
|
@@ -17778,7 +17778,7 @@ function allocateSlots(job) {
|
|
|
17778
17778
|
}
|
|
17779
17779
|
}
|
|
17780
17780
|
|
|
17781
|
-
// bazel-out/
|
|
17781
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
17782
17782
|
function specializeStyleBindings(job) {
|
|
17783
17783
|
for (const unit of job.units) {
|
|
17784
17784
|
for (const op of unit.update) {
|
|
@@ -17808,7 +17808,7 @@ function specializeStyleBindings(job) {
|
|
|
17808
17808
|
}
|
|
17809
17809
|
}
|
|
17810
17810
|
|
|
17811
|
-
// bazel-out/
|
|
17811
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
17812
17812
|
function generateTemporaryVariables(job) {
|
|
17813
17813
|
for (const unit of job.units) {
|
|
17814
17814
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -17866,7 +17866,7 @@ function assignName(names, expr) {
|
|
|
17866
17866
|
expr.name = name;
|
|
17867
17867
|
}
|
|
17868
17868
|
|
|
17869
|
-
// bazel-out/
|
|
17869
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
17870
17870
|
function generateTrackFns(job) {
|
|
17871
17871
|
for (const unit of job.units) {
|
|
17872
17872
|
for (const op of unit.create) {
|
|
@@ -17899,7 +17899,7 @@ function generateTrackFns(job) {
|
|
|
17899
17899
|
}
|
|
17900
17900
|
}
|
|
17901
17901
|
|
|
17902
|
-
// bazel-out/
|
|
17902
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
17903
17903
|
function optimizeTrackFns(job) {
|
|
17904
17904
|
for (const unit of job.units) {
|
|
17905
17905
|
for (const op of unit.create) {
|
|
@@ -17947,7 +17947,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
17947
17947
|
return true;
|
|
17948
17948
|
}
|
|
17949
17949
|
|
|
17950
|
-
// bazel-out/
|
|
17950
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
17951
17951
|
function generateTrackVariables(job) {
|
|
17952
17952
|
for (const unit of job.units) {
|
|
17953
17953
|
for (const op of unit.create) {
|
|
@@ -17968,7 +17968,7 @@ function generateTrackVariables(job) {
|
|
|
17968
17968
|
}
|
|
17969
17969
|
}
|
|
17970
17970
|
|
|
17971
|
-
// bazel-out/
|
|
17971
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
17972
17972
|
function countVariables(job) {
|
|
17973
17973
|
for (const unit of job.units) {
|
|
17974
17974
|
let varCount = 0;
|
|
@@ -18078,7 +18078,7 @@ function isSingletonInterpolation(expr) {
|
|
|
18078
18078
|
return true;
|
|
18079
18079
|
}
|
|
18080
18080
|
|
|
18081
|
-
// bazel-out/
|
|
18081
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
18082
18082
|
function optimizeVariables(job) {
|
|
18083
18083
|
for (const unit of job.units) {
|
|
18084
18084
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -18327,7 +18327,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
18327
18327
|
}
|
|
18328
18328
|
}
|
|
18329
18329
|
|
|
18330
|
-
// bazel-out/
|
|
18330
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
18331
18331
|
function wrapI18nIcus(job) {
|
|
18332
18332
|
for (const unit of job.units) {
|
|
18333
18333
|
let currentI18nOp = null;
|
|
@@ -18357,7 +18357,7 @@ function wrapI18nIcus(job) {
|
|
|
18357
18357
|
}
|
|
18358
18358
|
}
|
|
18359
18359
|
|
|
18360
|
-
// bazel-out/
|
|
18360
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
18361
18361
|
var phases = [
|
|
18362
18362
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
18363
18363
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -18523,7 +18523,7 @@ function emitHostBindingFunction(job) {
|
|
|
18523
18523
|
);
|
|
18524
18524
|
}
|
|
18525
18525
|
|
|
18526
|
-
// bazel-out/
|
|
18526
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
18527
18527
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
18528
18528
|
var domSchema = new DomElementSchemaRegistry();
|
|
18529
18529
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -19268,7 +19268,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
19268
19268
|
return null;
|
|
19269
19269
|
}
|
|
19270
19270
|
|
|
19271
|
-
// bazel-out/
|
|
19271
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
19272
19272
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
19273
19273
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
19274
19274
|
}
|
|
@@ -19388,7 +19388,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
19388
19388
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
19389
19389
|
}
|
|
19390
19390
|
|
|
19391
|
-
// bazel-out/
|
|
19391
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
19392
19392
|
var HtmlParser = class extends Parser2 {
|
|
19393
19393
|
constructor() {
|
|
19394
19394
|
super(getHtmlTagDefinition);
|
|
@@ -19398,7 +19398,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
19398
19398
|
}
|
|
19399
19399
|
};
|
|
19400
19400
|
|
|
19401
|
-
// bazel-out/
|
|
19401
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
19402
19402
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
19403
19403
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
19404
19404
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -19464,7 +19464,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
19464
19464
|
return result;
|
|
19465
19465
|
}
|
|
19466
19466
|
|
|
19467
|
-
// bazel-out/
|
|
19467
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
19468
19468
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
19469
19469
|
var ATTRIBUTE_PREFIX = "attr";
|
|
19470
19470
|
var CLASS_PREFIX = "class";
|
|
@@ -19805,7 +19805,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
19805
19805
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
19806
19806
|
}
|
|
19807
19807
|
|
|
19808
|
-
// bazel-out/
|
|
19808
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
19809
19809
|
function isStyleUrlResolvable(url) {
|
|
19810
19810
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
19811
19811
|
return false;
|
|
@@ -19814,7 +19814,7 @@ function isStyleUrlResolvable(url) {
|
|
|
19814
19814
|
}
|
|
19815
19815
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
19816
19816
|
|
|
19817
|
-
// bazel-out/
|
|
19817
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
19818
19818
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
19819
19819
|
var LINK_ELEMENT = "link";
|
|
19820
19820
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -19884,7 +19884,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
19884
19884
|
return selectAttr;
|
|
19885
19885
|
}
|
|
19886
19886
|
|
|
19887
|
-
// bazel-out/
|
|
19887
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
19888
19888
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
19889
19889
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
19890
19890
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -20200,7 +20200,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
20200
20200
|
return expression.slice(start, end);
|
|
20201
20201
|
}
|
|
20202
20202
|
|
|
20203
|
-
// bazel-out/
|
|
20203
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
20204
20204
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
20205
20205
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
20206
20206
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -20464,7 +20464,7 @@ function parseDeferredTime(value) {
|
|
|
20464
20464
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
20465
20465
|
}
|
|
20466
20466
|
|
|
20467
|
-
// bazel-out/
|
|
20467
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
20468
20468
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
20469
20469
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
20470
20470
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -20599,7 +20599,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
20599
20599
|
return { triggers, prefetchTriggers };
|
|
20600
20600
|
}
|
|
20601
20601
|
|
|
20602
|
-
// bazel-out/
|
|
20602
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
20603
20603
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
20604
20604
|
var KW_BIND_IDX = 1;
|
|
20605
20605
|
var KW_LET_IDX = 2;
|
|
@@ -21021,7 +21021,7 @@ function textContents(node) {
|
|
|
21021
21021
|
}
|
|
21022
21022
|
}
|
|
21023
21023
|
|
|
21024
|
-
// bazel-out/
|
|
21024
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
21025
21025
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
21026
21026
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
21027
21027
|
var _a2;
|
|
@@ -21095,7 +21095,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG) {
|
|
|
21095
21095
|
return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, []);
|
|
21096
21096
|
}
|
|
21097
21097
|
|
|
21098
|
-
// bazel-out/
|
|
21098
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
21099
21099
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
21100
21100
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
21101
21101
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -21457,7 +21457,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
21457
21457
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
21458
21458
|
}
|
|
21459
21459
|
|
|
21460
|
-
// bazel-out/
|
|
21460
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
21461
21461
|
var R3TargetBinder = class {
|
|
21462
21462
|
constructor(directiveMatcher) {
|
|
21463
21463
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -22090,11 +22090,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
22090
22090
|
return templateEntities;
|
|
22091
22091
|
}
|
|
22092
22092
|
|
|
22093
|
-
// bazel-out/
|
|
22093
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
22094
22094
|
var ResourceLoader = class {
|
|
22095
22095
|
};
|
|
22096
22096
|
|
|
22097
|
-
// bazel-out/
|
|
22097
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
22098
22098
|
var CompilerFacadeImpl = class {
|
|
22099
22099
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
22100
22100
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -22655,17 +22655,17 @@ function publishFacade(global) {
|
|
|
22655
22655
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
22656
22656
|
}
|
|
22657
22657
|
|
|
22658
|
-
// bazel-out/
|
|
22659
|
-
var VERSION2 = new Version("18.0.0-next.
|
|
22658
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/version.mjs
|
|
22659
|
+
var VERSION2 = new Version("18.0.0-next.3");
|
|
22660
22660
|
|
|
22661
|
-
// bazel-out/
|
|
22661
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
22662
22662
|
var _VisitorMode;
|
|
22663
22663
|
(function(_VisitorMode2) {
|
|
22664
22664
|
_VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
|
|
22665
22665
|
_VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
|
|
22666
22666
|
})(_VisitorMode || (_VisitorMode = {}));
|
|
22667
22667
|
|
|
22668
|
-
// bazel-out/
|
|
22668
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
22669
22669
|
var XmlTagDefinition = class {
|
|
22670
22670
|
constructor() {
|
|
22671
22671
|
this.closedByParent = false;
|
|
@@ -22687,7 +22687,7 @@ var XmlTagDefinition = class {
|
|
|
22687
22687
|
};
|
|
22688
22688
|
var _TAG_DEFINITION = new XmlTagDefinition();
|
|
22689
22689
|
|
|
22690
|
-
// bazel-out/
|
|
22690
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
22691
22691
|
var FactoryTarget2;
|
|
22692
22692
|
(function(FactoryTarget3) {
|
|
22693
22693
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -22697,10 +22697,10 @@ var FactoryTarget2;
|
|
|
22697
22697
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
22698
22698
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
22699
22699
|
|
|
22700
|
-
// bazel-out/
|
|
22700
|
+
// bazel-out/k8-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
22701
22701
|
publishFacade(_global);
|
|
22702
22702
|
|
|
22703
|
-
// bazel-out/
|
|
22703
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/util.mjs
|
|
22704
22704
|
var import_path2 = require("path");
|
|
22705
22705
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
22706
22706
|
var REPLACEMENTS2 = {
|
|
@@ -22808,7 +22808,7 @@ function forEachClass(sourceFile, callback) {
|
|
|
22808
22808
|
});
|
|
22809
22809
|
}
|
|
22810
22810
|
|
|
22811
|
-
// bazel-out/
|
|
22811
|
+
// bazel-out/k8-fastbuild/bin/packages/core/schematics/migrations/block-template-entities/index.mjs
|
|
22812
22812
|
function block_template_entities_default() {
|
|
22813
22813
|
return (tree) => __async(this, null, function* () {
|
|
22814
22814
|
const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);
|