@angular/core 18.1.0-next.1 → 18.1.0-next.2
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/core.mjs +1 -1
- package/esm2022/src/event_emitter.mjs +20 -11
- package/esm2022/src/pending_tasks.mjs +15 -20
- package/esm2022/src/render3/after_render_hooks.mjs +67 -132
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/instructions/change_detection.mjs +27 -24
- package/esm2022/src/render3/reactive_lview_consumer.mjs +56 -3
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +344 -349
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +212 -28
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/after-render-phase/bundle.js +602 -0
- package/schematics/migrations/after-render-phase/bundle.js.map +7 -0
- package/schematics/migrations/http-providers/bundle.js +15 -15
- 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.json +5 -0
- package/schematics/ng-generate/control-flow-migration/bundle.js +166 -166
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +1 -1
- package/schematics/ng-generate/standalone-migration/bundle.js +483 -1096
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
|
@@ -63,7 +63,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
63
63
|
});
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
// bazel-out/
|
|
66
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
|
|
67
67
|
var control_flow_migration_exports = {};
|
|
68
68
|
__export(control_flow_migration_exports, {
|
|
69
69
|
default: () => control_flow_migration_default
|
|
@@ -72,22 +72,22 @@ module.exports = __toCommonJS(control_flow_migration_exports);
|
|
|
72
72
|
var import_schematics = require("@angular-devkit/schematics");
|
|
73
73
|
var import_path3 = require("path");
|
|
74
74
|
|
|
75
|
-
// bazel-out/
|
|
75
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
76
76
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
77
77
|
|
|
78
|
-
// bazel-out/
|
|
78
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
79
79
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
80
80
|
|
|
81
|
-
// bazel-out/
|
|
81
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
82
82
|
function normalizePath(path2) {
|
|
83
83
|
return path2.replace(/\\/g, "/");
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
// bazel-out/
|
|
86
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
87
87
|
var import_path = require("path");
|
|
88
88
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
89
89
|
|
|
90
|
-
// bazel-out/
|
|
90
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
91
91
|
var path = __toESM(require("path"), 1);
|
|
92
92
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
93
93
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -104,7 +104,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
104
104
|
return import_typescript3.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
// bazel-out/
|
|
107
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
108
108
|
function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
|
|
109
109
|
const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
|
|
110
110
|
return import_typescript4.default.createProgram(rootNames, options, host);
|
|
@@ -137,7 +137,7 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
137
137
|
return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
// bazel-out/
|
|
140
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/selector.mjs
|
|
141
141
|
var _SELECTOR_REGEXP = new RegExp(
|
|
142
142
|
`(\\:not\\()|(([\\.\\#]?)[-\\w]+)|(?:\\[([-.\\w*\\\\$]+)(?:=(["']?)([^\\]"']*)\\5)?\\])|(\\))|(\\s*,\\s*)`,
|
|
143
143
|
"g"
|
|
@@ -445,7 +445,7 @@ var SelectorContext = class {
|
|
|
445
445
|
}
|
|
446
446
|
};
|
|
447
447
|
|
|
448
|
-
// bazel-out/
|
|
448
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/core.mjs
|
|
449
449
|
var ViewEncapsulation;
|
|
450
450
|
(function(ViewEncapsulation2) {
|
|
451
451
|
ViewEncapsulation2[ViewEncapsulation2["Emulated"] = 0] = "Emulated";
|
|
@@ -513,7 +513,7 @@ function parseSelectorToR3Selector(selector) {
|
|
|
513
513
|
return selector ? CssSelector.parse(selector).map(parserSelectorToR3Selector) : [];
|
|
514
514
|
}
|
|
515
515
|
|
|
516
|
-
// bazel-out/
|
|
516
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/digest.mjs
|
|
517
517
|
var textEncoder;
|
|
518
518
|
function computeDigest(message) {
|
|
519
519
|
return sha1(serializeNodes(message.nodes).join("") + `[${message.meaning}]`);
|
|
@@ -753,7 +753,7 @@ function wordAt(bytes, index, endian) {
|
|
|
753
753
|
return word;
|
|
754
754
|
}
|
|
755
755
|
|
|
756
|
-
// bazel-out/
|
|
756
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_ast.mjs
|
|
757
757
|
var TypeModifier;
|
|
758
758
|
(function(TypeModifier2) {
|
|
759
759
|
TypeModifier2[TypeModifier2["None"] = 0] = "None";
|
|
@@ -1691,7 +1691,7 @@ function serializeTags(tags) {
|
|
|
1691
1691
|
return out;
|
|
1692
1692
|
}
|
|
1693
1693
|
|
|
1694
|
-
// bazel-out/
|
|
1694
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/constant_pool.mjs
|
|
1695
1695
|
var CONSTANT_PREFIX = "_c";
|
|
1696
1696
|
var UNKNOWN_VALUE_KEY = variable("<unknown>");
|
|
1697
1697
|
var KEY_CONTEXT = {};
|
|
@@ -1879,7 +1879,7 @@ function isLongStringLiteral(expr) {
|
|
|
1879
1879
|
return expr instanceof LiteralExpr && typeof expr.value === "string" && expr.value.length >= POOL_INCLUSION_LENGTH_THRESHOLD_FOR_STRINGS;
|
|
1880
1880
|
}
|
|
1881
1881
|
|
|
1882
|
-
// bazel-out/
|
|
1882
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_identifiers.mjs
|
|
1883
1883
|
var CORE = "@angular/core";
|
|
1884
1884
|
var _Identifiers = class {
|
|
1885
1885
|
};
|
|
@@ -2767,7 +2767,7 @@ var Identifiers = _Identifiers;
|
|
|
2767
2767
|
_Identifiers.unwrapWritableSignal = { name: "\u0275unwrapWritableSignal", moduleName: CORE };
|
|
2768
2768
|
})();
|
|
2769
2769
|
|
|
2770
|
-
// bazel-out/
|
|
2770
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/util.mjs
|
|
2771
2771
|
var DASH_CASE_REGEXP = /-+([a-z0-9])/g;
|
|
2772
2772
|
function dashCaseToCamelCase(input) {
|
|
2773
2773
|
return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());
|
|
@@ -2844,7 +2844,7 @@ var Version = class {
|
|
|
2844
2844
|
};
|
|
2845
2845
|
var _global = globalThis;
|
|
2846
2846
|
|
|
2847
|
-
// bazel-out/
|
|
2847
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/source_map.mjs
|
|
2848
2848
|
var VERSION = 3;
|
|
2849
2849
|
var JS_B64_PREFIX = "# sourceMappingURL=data:application/json;base64,";
|
|
2850
2850
|
var SourceMapGenerator = class {
|
|
@@ -2973,7 +2973,7 @@ function toBase64Digit(value) {
|
|
|
2973
2973
|
return B64_DIGITS[value];
|
|
2974
2974
|
}
|
|
2975
2975
|
|
|
2976
|
-
// bazel-out/
|
|
2976
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_emitter.mjs
|
|
2977
2977
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
|
2978
2978
|
var _LEGAL_IDENTIFIER_RE = /^[$A-Z_][0-9A-Z_$]*$/i;
|
|
2979
2979
|
var _INDENT_WITH = " ";
|
|
@@ -3461,7 +3461,7 @@ function _createIndent(count) {
|
|
|
3461
3461
|
return res;
|
|
3462
3462
|
}
|
|
3463
3463
|
|
|
3464
|
-
// bazel-out/
|
|
3464
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/util.mjs
|
|
3465
3465
|
function typeWithParameters(type, numParams) {
|
|
3466
3466
|
if (numParams === 0) {
|
|
3467
3467
|
return expressionType(type);
|
|
@@ -3516,7 +3516,7 @@ function generateForwardRef(expr) {
|
|
|
3516
3516
|
return importExpr(Identifiers.forwardRef).callFn([arrowFn([], expr)]);
|
|
3517
3517
|
}
|
|
3518
3518
|
|
|
3519
|
-
// bazel-out/
|
|
3519
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_factory.mjs
|
|
3520
3520
|
var R3FactoryDelegateType;
|
|
3521
3521
|
(function(R3FactoryDelegateType2) {
|
|
3522
3522
|
R3FactoryDelegateType2[R3FactoryDelegateType2["Class"] = 0] = "Class";
|
|
@@ -3661,7 +3661,7 @@ function getInjectFn(target) {
|
|
|
3661
3661
|
}
|
|
3662
3662
|
}
|
|
3663
3663
|
|
|
3664
|
-
// bazel-out/
|
|
3664
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/ast.mjs
|
|
3665
3665
|
var ParserError = class {
|
|
3666
3666
|
constructor(message, input, errLocation, ctxLocation) {
|
|
3667
3667
|
this.input = input;
|
|
@@ -4099,7 +4099,7 @@ var BoundElementProperty = class {
|
|
|
4099
4099
|
}
|
|
4100
4100
|
};
|
|
4101
4101
|
|
|
4102
|
-
// bazel-out/
|
|
4102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/tags.mjs
|
|
4103
4103
|
var TagContentType;
|
|
4104
4104
|
(function(TagContentType2) {
|
|
4105
4105
|
TagContentType2[TagContentType2["RAW_TEXT"] = 0] = "RAW_TEXT";
|
|
@@ -4136,7 +4136,7 @@ function mergeNsAndName(prefix, localName) {
|
|
|
4136
4136
|
return prefix ? `:${prefix}:${localName}` : localName;
|
|
4137
4137
|
}
|
|
4138
4138
|
|
|
4139
|
-
// bazel-out/
|
|
4139
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_ast.mjs
|
|
4140
4140
|
var Comment = class {
|
|
4141
4141
|
constructor(value, sourceSpan) {
|
|
4142
4142
|
this.value = value;
|
|
@@ -4530,7 +4530,7 @@ function visitAll(visitor, nodes) {
|
|
|
4530
4530
|
return result;
|
|
4531
4531
|
}
|
|
4532
4532
|
|
|
4533
|
-
// bazel-out/
|
|
4533
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_ast.mjs
|
|
4534
4534
|
var Message = class {
|
|
4535
4535
|
constructor(nodes, placeholders, placeholderToMessage, meaning, description, customId) {
|
|
4536
4536
|
this.nodes = nodes;
|
|
@@ -4670,7 +4670,7 @@ var LocalizeMessageStringVisitor = class {
|
|
|
4670
4670
|
}
|
|
4671
4671
|
};
|
|
4672
4672
|
|
|
4673
|
-
// bazel-out/
|
|
4673
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xml_helper.mjs
|
|
4674
4674
|
var _Visitor = class {
|
|
4675
4675
|
visitTag(tag) {
|
|
4676
4676
|
const strAttrs = this._serializeAttributes(tag.attrs);
|
|
@@ -4698,12 +4698,12 @@ ${doctype.dtd}
|
|
|
4698
4698
|
};
|
|
4699
4699
|
var _visitor = new _Visitor();
|
|
4700
4700
|
|
|
4701
|
-
// bazel-out/
|
|
4701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/xmb.mjs
|
|
4702
4702
|
function toPublicName(internalName) {
|
|
4703
4703
|
return internalName.toUpperCase().replace(/[^A-Z0-9_]/g, "_");
|
|
4704
4704
|
}
|
|
4705
4705
|
|
|
4706
|
-
// bazel-out/
|
|
4706
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/util.mjs
|
|
4707
4707
|
var I18N_ATTR = "i18n";
|
|
4708
4708
|
var I18N_ATTR_PREFIX = "i18n-";
|
|
4709
4709
|
var I18N_ICU_VAR_PREFIX = "VAR_";
|
|
@@ -4743,7 +4743,7 @@ function formatI18nPlaceholderName(name, useCamelCase = true) {
|
|
|
4743
4743
|
return postfix ? `${raw}_${postfix}` : raw;
|
|
4744
4744
|
}
|
|
4745
4745
|
|
|
4746
|
-
// bazel-out/
|
|
4746
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/util.mjs
|
|
4747
4747
|
var UNSAFE_OBJECT_KEY_NAME_REGEXP = /[-.]/;
|
|
4748
4748
|
var TEMPORARY_NAME = "_t";
|
|
4749
4749
|
var CONTEXT_NAME = "ctx";
|
|
@@ -4870,7 +4870,7 @@ function getAttrsForDirectiveMatching(elOrTpl) {
|
|
|
4870
4870
|
return attributesMap;
|
|
4871
4871
|
}
|
|
4872
4872
|
|
|
4873
|
-
// bazel-out/
|
|
4873
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/injectable_compiler_2.mjs
|
|
4874
4874
|
function compileInjectable(meta, resolveForwardRefs) {
|
|
4875
4875
|
let result = null;
|
|
4876
4876
|
const factoryMeta = {
|
|
@@ -4957,7 +4957,7 @@ function createFactoryFunction(type) {
|
|
|
4957
4957
|
return arrowFn([new FnParam("t", DYNAMIC_TYPE)], type.prop("\u0275fac").callFn([variable("t")]));
|
|
4958
4958
|
}
|
|
4959
4959
|
|
|
4960
|
-
// bazel-out/
|
|
4960
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/assertions.mjs
|
|
4961
4961
|
var UNUSABLE_INTERPOLATION_REGEXPS = [
|
|
4962
4962
|
/@/,
|
|
4963
4963
|
/^\s*$/,
|
|
@@ -4980,7 +4980,7 @@ function assertInterpolationSymbols(identifier, value) {
|
|
|
4980
4980
|
}
|
|
4981
4981
|
}
|
|
4982
4982
|
|
|
4983
|
-
// bazel-out/
|
|
4983
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/defaults.mjs
|
|
4984
4984
|
var InterpolationConfig = class {
|
|
4985
4985
|
static fromArray(markers) {
|
|
4986
4986
|
if (!markers) {
|
|
@@ -4997,7 +4997,7 @@ var InterpolationConfig = class {
|
|
|
4997
4997
|
var DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig("{{", "}}");
|
|
4998
4998
|
var DEFAULT_CONTAINER_BLOCKS = /* @__PURE__ */ new Set(["switch"]);
|
|
4999
4999
|
|
|
5000
|
-
// bazel-out/
|
|
5000
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/chars.mjs
|
|
5001
5001
|
var $EOF = 0;
|
|
5002
5002
|
var $BSPACE = 8;
|
|
5003
5003
|
var $TAB = 9;
|
|
@@ -5079,7 +5079,7 @@ function isQuote(code) {
|
|
|
5079
5079
|
return code === $SQ || code === $DQ || code === $BT;
|
|
5080
5080
|
}
|
|
5081
5081
|
|
|
5082
|
-
// bazel-out/
|
|
5082
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/parse_util.mjs
|
|
5083
5083
|
var ParseLocation = class {
|
|
5084
5084
|
constructor(file, offset, line, col) {
|
|
5085
5085
|
this.file = file;
|
|
@@ -5226,7 +5226,7 @@ function sanitizeIdentifier(name) {
|
|
|
5226
5226
|
return name.replace(/\W/g, "_");
|
|
5227
5227
|
}
|
|
5228
5228
|
|
|
5229
|
-
// bazel-out/
|
|
5229
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/abstract_js_emitter.mjs
|
|
5230
5230
|
var makeTemplateObjectPolyfill = '(this&&this.__makeTemplateObject||function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e})';
|
|
5231
5231
|
var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
5232
5232
|
constructor() {
|
|
@@ -5319,7 +5319,7 @@ var AbstractJsEmitterVisitor = class extends AbstractEmitterVisitor {
|
|
|
5319
5319
|
}
|
|
5320
5320
|
};
|
|
5321
5321
|
|
|
5322
|
-
// bazel-out/
|
|
5322
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit_trusted_types.mjs
|
|
5323
5323
|
var policy;
|
|
5324
5324
|
function getPolicy() {
|
|
5325
5325
|
if (policy === void 0) {
|
|
@@ -5357,7 +5357,7 @@ function newTrustedFunctionForJIT(...args) {
|
|
|
5357
5357
|
return fn2.bind(_global);
|
|
5358
5358
|
}
|
|
5359
5359
|
|
|
5360
|
-
// bazel-out/
|
|
5360
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/output_jit.mjs
|
|
5361
5361
|
var JitEvaluator = class {
|
|
5362
5362
|
evaluateStatements(sourceUrl, statements, refResolver, createSourceMaps) {
|
|
5363
5363
|
const converter = new JitEmitterVisitor(refResolver);
|
|
@@ -5445,7 +5445,7 @@ function isUseStrictStatement(statement) {
|
|
|
5445
5445
|
return statement.isEquivalent(literal("use strict").toStmt());
|
|
5446
5446
|
}
|
|
5447
5447
|
|
|
5448
|
-
// bazel-out/
|
|
5448
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_injector_compiler.mjs
|
|
5449
5449
|
function compileInjector(meta) {
|
|
5450
5450
|
const definitionMap = new DefinitionMap();
|
|
5451
5451
|
if (meta.providers !== null) {
|
|
@@ -5462,7 +5462,7 @@ function createInjectorType(meta) {
|
|
|
5462
5462
|
return new ExpressionType(importExpr(Identifiers.InjectorDeclaration, [new ExpressionType(meta.type.type)]));
|
|
5463
5463
|
}
|
|
5464
5464
|
|
|
5465
|
-
// bazel-out/
|
|
5465
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_jit.mjs
|
|
5466
5466
|
var R3JitReflector = class {
|
|
5467
5467
|
constructor(context) {
|
|
5468
5468
|
this.context = context;
|
|
@@ -5478,7 +5478,7 @@ var R3JitReflector = class {
|
|
|
5478
5478
|
}
|
|
5479
5479
|
};
|
|
5480
5480
|
|
|
5481
|
-
// bazel-out/
|
|
5481
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_module_compiler.mjs
|
|
5482
5482
|
var R3SelectorScopeMode;
|
|
5483
5483
|
(function(R3SelectorScopeMode2) {
|
|
5484
5484
|
R3SelectorScopeMode2[R3SelectorScopeMode2["Inline"] = 0] = "Inline";
|
|
@@ -5613,7 +5613,7 @@ function tupleOfTypes(types) {
|
|
|
5613
5613
|
return types.length > 0 ? expressionType(literalArr(typeofTypes)) : NONE_TYPE;
|
|
5614
5614
|
}
|
|
5615
5615
|
|
|
5616
|
-
// bazel-out/
|
|
5616
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_pipe_compiler.mjs
|
|
5617
5617
|
function compilePipeFromMetadata(metadata) {
|
|
5618
5618
|
const definitionMapValues = [];
|
|
5619
5619
|
definitionMapValues.push({ key: "name", value: literal(metadata.pipeName), quoted: false });
|
|
@@ -5634,7 +5634,7 @@ function createPipeType(metadata) {
|
|
|
5634
5634
|
]));
|
|
5635
5635
|
}
|
|
5636
5636
|
|
|
5637
|
-
// bazel-out/
|
|
5637
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/api.mjs
|
|
5638
5638
|
var R3TemplateDependencyKind;
|
|
5639
5639
|
(function(R3TemplateDependencyKind2) {
|
|
5640
5640
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["Directive"] = 0] = "Directive";
|
|
@@ -5642,7 +5642,7 @@ var R3TemplateDependencyKind;
|
|
|
5642
5642
|
R3TemplateDependencyKind2[R3TemplateDependencyKind2["NgModule"] = 2] = "NgModule";
|
|
5643
5643
|
})(R3TemplateDependencyKind || (R3TemplateDependencyKind = {}));
|
|
5644
5644
|
|
|
5645
|
-
// bazel-out/
|
|
5645
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/shadow_css.mjs
|
|
5646
5646
|
var animationKeywords = /* @__PURE__ */ new Set([
|
|
5647
5647
|
"inherit",
|
|
5648
5648
|
"initial",
|
|
@@ -6122,7 +6122,7 @@ function repeatGroups(groups, multiples) {
|
|
|
6122
6122
|
}
|
|
6123
6123
|
}
|
|
6124
6124
|
|
|
6125
|
-
// bazel-out/
|
|
6125
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/enums.mjs
|
|
6126
6126
|
var OpKind;
|
|
6127
6127
|
(function(OpKind2) {
|
|
6128
6128
|
OpKind2[OpKind2["ListEnd"] = 0] = "ListEnd";
|
|
@@ -6276,7 +6276,7 @@ var TemplateKind;
|
|
|
6276
6276
|
TemplateKind2[TemplateKind2["Block"] = 2] = "Block";
|
|
6277
6277
|
})(TemplateKind || (TemplateKind = {}));
|
|
6278
6278
|
|
|
6279
|
-
// bazel-out/
|
|
6279
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/traits.mjs
|
|
6280
6280
|
var ConsumesSlot = Symbol("ConsumesSlot");
|
|
6281
6281
|
var DependsOnSlotContext = Symbol("DependsOnSlotContext");
|
|
6282
6282
|
var ConsumesVarsTrait = Symbol("ConsumesVars");
|
|
@@ -6304,7 +6304,7 @@ function hasUsesVarOffsetTrait(expr) {
|
|
|
6304
6304
|
return expr[UsesVarOffset] === true;
|
|
6305
6305
|
}
|
|
6306
6306
|
|
|
6307
|
-
// bazel-out/
|
|
6307
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/shared.mjs
|
|
6308
6308
|
function createStatementOp(statement) {
|
|
6309
6309
|
return __spreadValues({
|
|
6310
6310
|
kind: OpKind.Statement,
|
|
@@ -6326,7 +6326,7 @@ var NEW_OP = {
|
|
|
6326
6326
|
next: null
|
|
6327
6327
|
};
|
|
6328
6328
|
|
|
6329
|
-
// bazel-out/
|
|
6329
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/update.mjs
|
|
6330
6330
|
function createInterpolateTextOp(xref, interpolation, sourceSpan) {
|
|
6331
6331
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
6332
6332
|
kind: OpKind.InterpolateText,
|
|
@@ -6506,7 +6506,7 @@ function createI18nApplyOp(owner, handle, sourceSpan) {
|
|
|
6506
6506
|
}, NEW_OP);
|
|
6507
6507
|
}
|
|
6508
6508
|
|
|
6509
|
-
// bazel-out/
|
|
6509
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/expression.mjs
|
|
6510
6510
|
var _a;
|
|
6511
6511
|
var _b;
|
|
6512
6512
|
var _c;
|
|
@@ -7368,7 +7368,7 @@ function isStringLiteral(expr) {
|
|
|
7368
7368
|
return expr instanceof LiteralExpr && typeof expr.value === "string";
|
|
7369
7369
|
}
|
|
7370
7370
|
|
|
7371
|
-
// bazel-out/
|
|
7371
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/operations.mjs
|
|
7372
7372
|
var _OpList = class {
|
|
7373
7373
|
constructor() {
|
|
7374
7374
|
this.debugListId = _OpList.nextListId++;
|
|
@@ -7559,14 +7559,14 @@ var OpList = _OpList;
|
|
|
7559
7559
|
_OpList.nextListId = 0;
|
|
7560
7560
|
})();
|
|
7561
7561
|
|
|
7562
|
-
// bazel-out/
|
|
7562
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/handle.mjs
|
|
7563
7563
|
var SlotHandle = class {
|
|
7564
7564
|
constructor() {
|
|
7565
7565
|
this.slot = null;
|
|
7566
7566
|
}
|
|
7567
7567
|
};
|
|
7568
7568
|
|
|
7569
|
-
// bazel-out/
|
|
7569
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/create.mjs
|
|
7570
7570
|
var elementContainerOpKinds = /* @__PURE__ */ new Set([
|
|
7571
7571
|
OpKind.Element,
|
|
7572
7572
|
OpKind.ElementStart,
|
|
@@ -7870,7 +7870,7 @@ function createI18nAttributesOp(xref, handle, target) {
|
|
|
7870
7870
|
}, NEW_OP), TRAIT_CONSUMES_SLOT);
|
|
7871
7871
|
}
|
|
7872
7872
|
|
|
7873
|
-
// bazel-out/
|
|
7873
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/ops/host.mjs
|
|
7874
7874
|
function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext, securityContext, sourceSpan) {
|
|
7875
7875
|
return __spreadValues(__spreadValues({
|
|
7876
7876
|
kind: OpKind.HostProperty,
|
|
@@ -7884,10 +7884,10 @@ function createHostPropertyOp(name, expression, isAnimationTrigger, i18nContext,
|
|
|
7884
7884
|
}, TRAIT_CONSUMES_VARS), NEW_OP);
|
|
7885
7885
|
}
|
|
7886
7886
|
|
|
7887
|
-
// bazel-out/
|
|
7887
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/ir/src/variable.mjs
|
|
7888
7888
|
var CTX_REF = "CTX_REF_MARKER";
|
|
7889
7889
|
|
|
7890
|
-
// bazel-out/
|
|
7890
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/compilation.mjs
|
|
7891
7891
|
var CompilationJobKind;
|
|
7892
7892
|
(function(CompilationJobKind2) {
|
|
7893
7893
|
CompilationJobKind2[CompilationJobKind2["Tmpl"] = 0] = "Tmpl";
|
|
@@ -7995,7 +7995,7 @@ var HostBindingCompilationUnit = class extends CompilationUnit {
|
|
|
7995
7995
|
}
|
|
7996
7996
|
};
|
|
7997
7997
|
|
|
7998
|
-
// bazel-out/
|
|
7998
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/any_cast.mjs
|
|
7999
7999
|
function deleteAnyCasts(job) {
|
|
8000
8000
|
for (const unit of job.units) {
|
|
8001
8001
|
for (const op of unit.ops()) {
|
|
@@ -8013,7 +8013,7 @@ function removeAnys(e) {
|
|
|
8013
8013
|
return e;
|
|
8014
8014
|
}
|
|
8015
8015
|
|
|
8016
|
-
// bazel-out/
|
|
8016
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/apply_i18n_expressions.mjs
|
|
8017
8017
|
function applyI18nExpressions(job) {
|
|
8018
8018
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
8019
8019
|
for (const unit of job.units) {
|
|
@@ -8056,7 +8056,7 @@ function needsApplication(i18nContexts, op) {
|
|
|
8056
8056
|
return false;
|
|
8057
8057
|
}
|
|
8058
8058
|
|
|
8059
|
-
// bazel-out/
|
|
8059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/assign_i18n_slot_dependencies.mjs
|
|
8060
8060
|
function assignI18nSlotDependencies(job) {
|
|
8061
8061
|
for (const unit of job.units) {
|
|
8062
8062
|
let updateOp = unit.update.head;
|
|
@@ -8101,7 +8101,7 @@ function assignI18nSlotDependencies(job) {
|
|
|
8101
8101
|
}
|
|
8102
8102
|
}
|
|
8103
8103
|
|
|
8104
|
-
// bazel-out/
|
|
8104
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/util/elements.mjs
|
|
8105
8105
|
function createOpXrefMap(unit) {
|
|
8106
8106
|
const map = /* @__PURE__ */ new Map();
|
|
8107
8107
|
for (const op of unit.create) {
|
|
@@ -8116,7 +8116,7 @@ function createOpXrefMap(unit) {
|
|
|
8116
8116
|
return map;
|
|
8117
8117
|
}
|
|
8118
8118
|
|
|
8119
|
-
// bazel-out/
|
|
8119
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/attribute_extraction.mjs
|
|
8120
8120
|
function extractAttributes(job) {
|
|
8121
8121
|
for (const unit of job.units) {
|
|
8122
8122
|
const elements = createOpXrefMap(unit);
|
|
@@ -8245,7 +8245,7 @@ function extractAttributeOp(unit, op, elements) {
|
|
|
8245
8245
|
}
|
|
8246
8246
|
}
|
|
8247
8247
|
|
|
8248
|
-
// bazel-out/
|
|
8248
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/binding_specialization.mjs
|
|
8249
8249
|
function lookupElement2(elements, xref) {
|
|
8250
8250
|
const el = elements.get(xref);
|
|
8251
8251
|
if (el === void 0) {
|
|
@@ -8302,7 +8302,7 @@ function specializeBindings(job) {
|
|
|
8302
8302
|
}
|
|
8303
8303
|
}
|
|
8304
8304
|
|
|
8305
|
-
// bazel-out/
|
|
8305
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/chaining.mjs
|
|
8306
8306
|
var CHAINABLE = /* @__PURE__ */ new Set([
|
|
8307
8307
|
Identifiers.attribute,
|
|
8308
8308
|
Identifiers.classProp,
|
|
@@ -8370,7 +8370,7 @@ function chainOperationsInList(opList) {
|
|
|
8370
8370
|
}
|
|
8371
8371
|
}
|
|
8372
8372
|
|
|
8373
|
-
// bazel-out/
|
|
8373
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/collapse_singleton_interpolations.mjs
|
|
8374
8374
|
function collapseSingletonInterpolations(job) {
|
|
8375
8375
|
for (const unit of job.units) {
|
|
8376
8376
|
for (const op of unit.update) {
|
|
@@ -8382,7 +8382,7 @@ function collapseSingletonInterpolations(job) {
|
|
|
8382
8382
|
}
|
|
8383
8383
|
}
|
|
8384
8384
|
|
|
8385
|
-
// bazel-out/
|
|
8385
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/conditionals.mjs
|
|
8386
8386
|
function generateConditionalExpressions(job) {
|
|
8387
8387
|
for (const unit of job.units) {
|
|
8388
8388
|
for (const op of unit.ops()) {
|
|
@@ -8419,7 +8419,7 @@ function generateConditionalExpressions(job) {
|
|
|
8419
8419
|
}
|
|
8420
8420
|
}
|
|
8421
8421
|
|
|
8422
|
-
// bazel-out/
|
|
8422
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/conversion.mjs
|
|
8423
8423
|
var BINARY_OPERATORS = /* @__PURE__ */ new Map([
|
|
8424
8424
|
["&&", BinaryOperator.And],
|
|
8425
8425
|
[">", BinaryOperator.Bigger],
|
|
@@ -8476,7 +8476,7 @@ function literalOrArrayLiteral(value) {
|
|
|
8476
8476
|
return literal(value);
|
|
8477
8477
|
}
|
|
8478
8478
|
|
|
8479
|
-
// bazel-out/
|
|
8479
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/const_collection.mjs
|
|
8480
8480
|
function collectElementConsts(job) {
|
|
8481
8481
|
const allElementAttributes = /* @__PURE__ */ new Map();
|
|
8482
8482
|
for (const unit of job.units) {
|
|
@@ -8645,7 +8645,7 @@ function serializeAttributes({ attributes, bindings, classes, i18n: i18n2, proje
|
|
|
8645
8645
|
return literalArr(attrArray);
|
|
8646
8646
|
}
|
|
8647
8647
|
|
|
8648
|
-
// bazel-out/
|
|
8648
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/convert_i18n_bindings.mjs
|
|
8649
8649
|
function convertI18nBindings(job) {
|
|
8650
8650
|
const i18nAttributesByElem = /* @__PURE__ */ new Map();
|
|
8651
8651
|
for (const unit of job.units) {
|
|
@@ -8686,7 +8686,7 @@ function convertI18nBindings(job) {
|
|
|
8686
8686
|
}
|
|
8687
8687
|
}
|
|
8688
8688
|
|
|
8689
|
-
// bazel-out/
|
|
8689
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_defer_deps_fns.mjs
|
|
8690
8690
|
function resolveDeferDepsFns(job) {
|
|
8691
8691
|
var _a2;
|
|
8692
8692
|
for (const unit of job.units) {
|
|
@@ -8711,7 +8711,7 @@ function resolveDeferDepsFns(job) {
|
|
|
8711
8711
|
}
|
|
8712
8712
|
}
|
|
8713
8713
|
|
|
8714
|
-
// bazel-out/
|
|
8714
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/create_i18n_contexts.mjs
|
|
8715
8715
|
function createI18nContexts(job) {
|
|
8716
8716
|
const attrContextByMessage = /* @__PURE__ */ new Map();
|
|
8717
8717
|
for (const unit of job.units) {
|
|
@@ -8789,7 +8789,7 @@ function createI18nContexts(job) {
|
|
|
8789
8789
|
}
|
|
8790
8790
|
}
|
|
8791
8791
|
|
|
8792
|
-
// bazel-out/
|
|
8792
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/deduplicate_text_bindings.mjs
|
|
8793
8793
|
function deduplicateTextBindings(job) {
|
|
8794
8794
|
const seen = /* @__PURE__ */ new Map();
|
|
8795
8795
|
for (const unit of job.units) {
|
|
@@ -8811,7 +8811,7 @@ function deduplicateTextBindings(job) {
|
|
|
8811
8811
|
}
|
|
8812
8812
|
}
|
|
8813
8813
|
|
|
8814
|
-
// bazel-out/
|
|
8814
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_configs.mjs
|
|
8815
8815
|
function configureDeferInstructions(job) {
|
|
8816
8816
|
for (const unit of job.units) {
|
|
8817
8817
|
for (const op of unit.create) {
|
|
@@ -8828,7 +8828,7 @@ function configureDeferInstructions(job) {
|
|
|
8828
8828
|
}
|
|
8829
8829
|
}
|
|
8830
8830
|
|
|
8831
|
-
// bazel-out/
|
|
8831
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/defer_resolve_targets.mjs
|
|
8832
8832
|
function resolveDeferTargetNames(job) {
|
|
8833
8833
|
const scopes = /* @__PURE__ */ new Map();
|
|
8834
8834
|
function getScopeForView2(view) {
|
|
@@ -8922,7 +8922,7 @@ var Scope = class {
|
|
|
8922
8922
|
}
|
|
8923
8923
|
};
|
|
8924
8924
|
|
|
8925
|
-
// bazel-out/
|
|
8925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/empty_elements.mjs
|
|
8926
8926
|
var REPLACEMENTS = /* @__PURE__ */ new Map([
|
|
8927
8927
|
[OpKind.ElementEnd, [OpKind.ElementStart, OpKind.Element]],
|
|
8928
8928
|
[OpKind.ContainerEnd, [OpKind.ContainerStart, OpKind.Container]],
|
|
@@ -8949,7 +8949,7 @@ function collapseEmptyInstructions(job) {
|
|
|
8949
8949
|
}
|
|
8950
8950
|
}
|
|
8951
8951
|
|
|
8952
|
-
// bazel-out/
|
|
8952
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/expand_safe_reads.mjs
|
|
8953
8953
|
function expandSafeReads(job) {
|
|
8954
8954
|
for (const unit of job.units) {
|
|
8955
8955
|
for (const op of unit.ops()) {
|
|
@@ -9085,7 +9085,7 @@ function ternaryTransform(e) {
|
|
|
9085
9085
|
return new ConditionalExpr(new BinaryOperatorExpr(BinaryOperator.Equals, e.guard, NULL_EXPR), NULL_EXPR, e.expr);
|
|
9086
9086
|
}
|
|
9087
9087
|
|
|
9088
|
-
// bazel-out/
|
|
9088
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/extract_i18n_messages.mjs
|
|
9089
9089
|
var ESCAPE = "\uFFFD";
|
|
9090
9090
|
var ELEMENT_MARKER = "#";
|
|
9091
9091
|
var TEMPLATE_MARKER = "*";
|
|
@@ -9221,7 +9221,7 @@ function formatValue(value) {
|
|
|
9221
9221
|
return `${ESCAPE}${closeMarker}${tagMarker}${value.value}${context}${ESCAPE}`;
|
|
9222
9222
|
}
|
|
9223
9223
|
|
|
9224
|
-
// bazel-out/
|
|
9224
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_advance.mjs
|
|
9225
9225
|
function generateAdvance(job) {
|
|
9226
9226
|
for (const unit of job.units) {
|
|
9227
9227
|
const slotMap = /* @__PURE__ */ new Map();
|
|
@@ -9253,7 +9253,7 @@ function generateAdvance(job) {
|
|
|
9253
9253
|
}
|
|
9254
9254
|
}
|
|
9255
9255
|
|
|
9256
|
-
// bazel-out/
|
|
9256
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_projection_def.mjs
|
|
9257
9257
|
function generateProjectionDefs(job) {
|
|
9258
9258
|
const share = job.compatibility === CompatibilityMode.TemplateDefinitionBuilder;
|
|
9259
9259
|
const selectors = [];
|
|
@@ -9277,7 +9277,7 @@ function generateProjectionDefs(job) {
|
|
|
9277
9277
|
}
|
|
9278
9278
|
}
|
|
9279
9279
|
|
|
9280
|
-
// bazel-out/
|
|
9280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/generate_variables.mjs
|
|
9281
9281
|
function generateVariables(job) {
|
|
9282
9282
|
recursivelyProcessView(job.root, null);
|
|
9283
9283
|
}
|
|
@@ -9376,7 +9376,7 @@ function generateVariablesInScopeForView(view, scope) {
|
|
|
9376
9376
|
return newOps;
|
|
9377
9377
|
}
|
|
9378
9378
|
|
|
9379
|
-
// bazel-out/
|
|
9379
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/has_const_expression_collection.mjs
|
|
9380
9380
|
function collectConstExpressions(job) {
|
|
9381
9381
|
for (const unit of job.units) {
|
|
9382
9382
|
for (const op of unit.ops()) {
|
|
@@ -9390,7 +9390,7 @@ function collectConstExpressions(job) {
|
|
|
9390
9390
|
}
|
|
9391
9391
|
}
|
|
9392
9392
|
|
|
9393
|
-
// bazel-out/
|
|
9393
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/host_style_property_parsing.mjs
|
|
9394
9394
|
var STYLE_DOT = "style.";
|
|
9395
9395
|
var CLASS_DOT = "class.";
|
|
9396
9396
|
var STYLE_BANG = "style!";
|
|
@@ -9448,7 +9448,7 @@ function parseProperty(name) {
|
|
|
9448
9448
|
return { property: property2, suffix };
|
|
9449
9449
|
}
|
|
9450
9450
|
|
|
9451
|
-
// bazel-out/
|
|
9451
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/output/map_util.mjs
|
|
9452
9452
|
function mapLiteral(obj, quoted = false) {
|
|
9453
9453
|
return literalMap(Object.keys(obj).map((key) => ({
|
|
9454
9454
|
key,
|
|
@@ -9457,7 +9457,7 @@ function mapLiteral(obj, quoted = false) {
|
|
|
9457
9457
|
})));
|
|
9458
9458
|
}
|
|
9459
9459
|
|
|
9460
|
-
// bazel-out/
|
|
9460
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/icu_serializer.mjs
|
|
9461
9461
|
var IcuSerializerVisitor = class {
|
|
9462
9462
|
visitText(text2) {
|
|
9463
9463
|
return text2.value;
|
|
@@ -9491,7 +9491,7 @@ function serializeIcuNode(icu) {
|
|
|
9491
9491
|
return icu.visit(serializer);
|
|
9492
9492
|
}
|
|
9493
9493
|
|
|
9494
|
-
// bazel-out/
|
|
9494
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/lexer.mjs
|
|
9495
9495
|
var TokenType;
|
|
9496
9496
|
(function(TokenType2) {
|
|
9497
9497
|
TokenType2[TokenType2["Character"] = 0] = "Character";
|
|
@@ -9852,7 +9852,7 @@ function parseIntAutoRadix(text2) {
|
|
|
9852
9852
|
return result;
|
|
9853
9853
|
}
|
|
9854
9854
|
|
|
9855
|
-
// bazel-out/
|
|
9855
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/expression_parser/parser.mjs
|
|
9856
9856
|
var SplitInterpolation = class {
|
|
9857
9857
|
constructor(strings, expressions, offsets) {
|
|
9858
9858
|
this.strings = strings;
|
|
@@ -10734,7 +10734,7 @@ function getIndexMapForOriginalTemplate(interpolatedTokens) {
|
|
|
10734
10734
|
return offsetMap;
|
|
10735
10735
|
}
|
|
10736
10736
|
|
|
10737
|
-
// bazel-out/
|
|
10737
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/ast.mjs
|
|
10738
10738
|
var NodeWithI18n = class {
|
|
10739
10739
|
constructor(sourceSpan, i18n2) {
|
|
10740
10740
|
this.sourceSpan = sourceSpan;
|
|
@@ -10900,7 +10900,7 @@ var RecursiveVisitor = class {
|
|
|
10900
10900
|
}
|
|
10901
10901
|
};
|
|
10902
10902
|
|
|
10903
|
-
// bazel-out/
|
|
10903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_security_schema.mjs
|
|
10904
10904
|
var _SECURITY_SCHEMA;
|
|
10905
10905
|
function SECURITY_SCHEMA() {
|
|
10906
10906
|
if (!_SECURITY_SCHEMA) {
|
|
@@ -10961,11 +10961,11 @@ function isIframeSecuritySensitiveAttr(attrName) {
|
|
|
10961
10961
|
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
10962
10962
|
}
|
|
10963
10963
|
|
|
10964
|
-
// bazel-out/
|
|
10964
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/element_schema_registry.mjs
|
|
10965
10965
|
var ElementSchemaRegistry = class {
|
|
10966
10966
|
};
|
|
10967
10967
|
|
|
10968
|
-
// bazel-out/
|
|
10968
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/dom_element_schema_registry.mjs
|
|
10969
10969
|
var BOOLEAN = "boolean";
|
|
10970
10970
|
var NUMBER = "number";
|
|
10971
10971
|
var STRING = "string";
|
|
@@ -11348,7 +11348,7 @@ function _isPixelDimensionStyle(prop) {
|
|
|
11348
11348
|
}
|
|
11349
11349
|
}
|
|
11350
11350
|
|
|
11351
|
-
// bazel-out/
|
|
11351
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_tags.mjs
|
|
11352
11352
|
var HtmlTagDefinition = class {
|
|
11353
11353
|
constructor({ closedByChildren, implicitNamespacePrefix, contentType = TagContentType.PARSABLE_DATA, closedByParent = false, isVoid = false, ignoreFirstLf = false, preventNamespaceInheritance = false, canSelfClose = false } = {}) {
|
|
11354
11354
|
this.closedByChildren = {};
|
|
@@ -11484,7 +11484,7 @@ function getHtmlTagDefinition(tagName) {
|
|
|
11484
11484
|
return (_b2 = (_a2 = TAG_DEFINITIONS[tagName]) != null ? _a2 : TAG_DEFINITIONS[tagName.toLowerCase()]) != null ? _b2 : DEFAULT_TAG_DEFINITION;
|
|
11485
11485
|
}
|
|
11486
11486
|
|
|
11487
|
-
// bazel-out/
|
|
11487
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/serializers/placeholder.mjs
|
|
11488
11488
|
var TAG_TO_PLACEHOLDER_NAMES = {
|
|
11489
11489
|
"A": "LINK",
|
|
11490
11490
|
"B": "BOLD_TEXT",
|
|
@@ -11606,7 +11606,7 @@ var PlaceholderRegistry = class {
|
|
|
11606
11606
|
}
|
|
11607
11607
|
};
|
|
11608
11608
|
|
|
11609
|
-
// bazel-out/
|
|
11609
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/i18n_parser.mjs
|
|
11610
11610
|
var _expParser = new Parser(new Lexer());
|
|
11611
11611
|
function createI18nMessageFactory(interpolationConfig, containerBlocks) {
|
|
11612
11612
|
const visitor = new _I18nVisitor(_expParser, interpolationConfig, containerBlocks);
|
|
@@ -11788,14 +11788,14 @@ function extractPlaceholderName(input) {
|
|
|
11788
11788
|
return input.split(_CUSTOM_PH_EXP)[2];
|
|
11789
11789
|
}
|
|
11790
11790
|
|
|
11791
|
-
// bazel-out/
|
|
11791
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/parse_util.mjs
|
|
11792
11792
|
var I18nError = class extends ParseError {
|
|
11793
11793
|
constructor(span, msg) {
|
|
11794
11794
|
super(span, msg);
|
|
11795
11795
|
}
|
|
11796
11796
|
};
|
|
11797
11797
|
|
|
11798
|
-
// bazel-out/
|
|
11798
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/entities.mjs
|
|
11799
11799
|
var NAMED_ENTITIES = {
|
|
11800
11800
|
"AElig": "\xC6",
|
|
11801
11801
|
"AMP": "&",
|
|
@@ -13926,7 +13926,7 @@ var NAMED_ENTITIES = {
|
|
|
13926
13926
|
var NGSP_UNICODE = "\uE500";
|
|
13927
13927
|
NAMED_ENTITIES["ngsp"] = NGSP_UNICODE;
|
|
13928
13928
|
|
|
13929
|
-
// bazel-out/
|
|
13929
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/lexer.mjs
|
|
13930
13930
|
var TokenError = class extends ParseError {
|
|
13931
13931
|
constructor(errorMsg, tokenType, span) {
|
|
13932
13932
|
super(span, errorMsg);
|
|
@@ -14916,7 +14916,7 @@ var CursorError = class {
|
|
|
14916
14916
|
}
|
|
14917
14917
|
};
|
|
14918
14918
|
|
|
14919
|
-
// bazel-out/
|
|
14919
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/parser.mjs
|
|
14920
14920
|
var TreeError = class extends ParseError {
|
|
14921
14921
|
static create(elementName, span, msg) {
|
|
14922
14922
|
return new TreeError(elementName, span, msg);
|
|
@@ -15344,7 +15344,7 @@ function decodeEntity(match, entity) {
|
|
|
15344
15344
|
return match;
|
|
15345
15345
|
}
|
|
15346
15346
|
|
|
15347
|
-
// bazel-out/
|
|
15347
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/schema/trusted_types_sinks.mjs
|
|
15348
15348
|
var TRUSTED_TYPES_SINKS = /* @__PURE__ */ new Set([
|
|
15349
15349
|
"iframe|srcdoc",
|
|
15350
15350
|
"*|innerhtml",
|
|
@@ -15359,7 +15359,7 @@ function isTrustedTypesSink(tagName, propName) {
|
|
|
15359
15359
|
return TRUSTED_TYPES_SINKS.has(tagName + "|" + propName) || TRUSTED_TYPES_SINKS.has("*|" + propName);
|
|
15360
15360
|
}
|
|
15361
15361
|
|
|
15362
|
-
// bazel-out/
|
|
15362
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/meta.mjs
|
|
15363
15363
|
var setI18nRefs = (htmlNode, i18nNode) => {
|
|
15364
15364
|
if (htmlNode instanceof NodeWithI18n) {
|
|
15365
15365
|
if (i18nNode instanceof IcuPlaceholder && htmlNode.i18n instanceof Message) {
|
|
@@ -15519,7 +15519,7 @@ function i18nMetaToJSDoc(meta) {
|
|
|
15519
15519
|
return jsDocComment(tags);
|
|
15520
15520
|
}
|
|
15521
15521
|
|
|
15522
|
-
// bazel-out/
|
|
15522
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/get_msg_utils.mjs
|
|
15523
15523
|
var GOOG_GET_MSG = "goog.getMsg";
|
|
15524
15524
|
function createGoogleGetMsgStatements(variable2, message, closureVar, placeholderValues) {
|
|
15525
15525
|
const messageString = serializeI18nMessageForGetMsg(message);
|
|
@@ -15570,7 +15570,7 @@ function serializeI18nMessageForGetMsg(message) {
|
|
|
15570
15570
|
return message.nodes.map((node) => node.visit(serializerVisitor2, null)).join("");
|
|
15571
15571
|
}
|
|
15572
15572
|
|
|
15573
|
-
// bazel-out/
|
|
15573
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/i18n/localize_utils.mjs
|
|
15574
15574
|
function createLocalizeStatements(variable2, message, params) {
|
|
15575
15575
|
const { messageParts, placeHolders } = serializeI18nMessageForLocalize(message);
|
|
15576
15576
|
const sourceSpan = getSourceSpan(message);
|
|
@@ -15659,7 +15659,7 @@ function createEmptyMessagePart(location) {
|
|
|
15659
15659
|
return new LiteralPiece("", new ParseSourceSpan(location, location));
|
|
15660
15660
|
}
|
|
15661
15661
|
|
|
15662
|
-
// bazel-out/
|
|
15662
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_const_collection.mjs
|
|
15663
15663
|
var NG_I18N_CLOSURE_MODE = "ngI18nClosureMode";
|
|
15664
15664
|
var TRANSLATION_VAR_PREFIX = "i18n_";
|
|
15665
15665
|
var I18N_ICU_MAPPING_PREFIX = "I18N_EXP_";
|
|
@@ -15830,7 +15830,7 @@ function i18nGenerateClosureVar(pool, messageId, fileBasedI18nSuffix, useExterna
|
|
|
15830
15830
|
return variable(name);
|
|
15831
15831
|
}
|
|
15832
15832
|
|
|
15833
|
-
// bazel-out/
|
|
15833
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/i18n_text_extraction.mjs
|
|
15834
15834
|
function convertI18nText(job) {
|
|
15835
15835
|
var _a2, _b2, _c2;
|
|
15836
15836
|
for (const unit of job.units) {
|
|
@@ -15900,7 +15900,7 @@ function convertI18nText(job) {
|
|
|
15900
15900
|
}
|
|
15901
15901
|
}
|
|
15902
15902
|
|
|
15903
|
-
// bazel-out/
|
|
15903
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/local_refs.mjs
|
|
15904
15904
|
function liftLocalRefs(job) {
|
|
15905
15905
|
for (const unit of job.units) {
|
|
15906
15906
|
for (const op of unit.create) {
|
|
@@ -15930,7 +15930,7 @@ function serializeLocalRefs(refs) {
|
|
|
15930
15930
|
return literalArr(constRefs);
|
|
15931
15931
|
}
|
|
15932
15932
|
|
|
15933
|
-
// bazel-out/
|
|
15933
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/namespace.mjs
|
|
15934
15934
|
function emitNamespaceChanges(job) {
|
|
15935
15935
|
for (const unit of job.units) {
|
|
15936
15936
|
let activeNamespace = Namespace.HTML;
|
|
@@ -15946,7 +15946,7 @@ function emitNamespaceChanges(job) {
|
|
|
15946
15946
|
}
|
|
15947
15947
|
}
|
|
15948
15948
|
|
|
15949
|
-
// bazel-out/
|
|
15949
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/parse_extracted_styles.mjs
|
|
15950
15950
|
function parse(value) {
|
|
15951
15951
|
const styles = [];
|
|
15952
15952
|
let i = 0;
|
|
@@ -16040,7 +16040,7 @@ function parseExtractedStyles(job) {
|
|
|
16040
16040
|
}
|
|
16041
16041
|
}
|
|
16042
16042
|
|
|
16043
|
-
// bazel-out/
|
|
16043
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/naming.mjs
|
|
16044
16044
|
function nameFunctionsAndVariables(job) {
|
|
16045
16045
|
addNamesToView(job.root, job.componentName, { index: 0 }, job.compatibility === CompatibilityMode.TemplateDefinitionBuilder);
|
|
16046
16046
|
}
|
|
@@ -16184,7 +16184,7 @@ function stripImportant(name) {
|
|
|
16184
16184
|
return name;
|
|
16185
16185
|
}
|
|
16186
16186
|
|
|
16187
|
-
// bazel-out/
|
|
16187
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/next_context_merging.mjs
|
|
16188
16188
|
function mergeNextContextExpressions(job) {
|
|
16189
16189
|
for (const unit of job.units) {
|
|
16190
16190
|
for (const op of unit.create) {
|
|
@@ -16230,7 +16230,7 @@ function mergeNextContextsInOps(ops) {
|
|
|
16230
16230
|
}
|
|
16231
16231
|
}
|
|
16232
16232
|
|
|
16233
|
-
// bazel-out/
|
|
16233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ng_container.mjs
|
|
16234
16234
|
var CONTAINER_TAG = "ng-container";
|
|
16235
16235
|
function generateNgContainerOps(job) {
|
|
16236
16236
|
for (const unit of job.units) {
|
|
@@ -16247,7 +16247,7 @@ function generateNgContainerOps(job) {
|
|
|
16247
16247
|
}
|
|
16248
16248
|
}
|
|
16249
16249
|
|
|
16250
|
-
// bazel-out/
|
|
16250
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nonbindable.mjs
|
|
16251
16251
|
function lookupElement3(elements, xref) {
|
|
16252
16252
|
const el = elements.get(xref);
|
|
16253
16253
|
if (el === void 0) {
|
|
@@ -16277,7 +16277,7 @@ function disableBindings(job) {
|
|
|
16277
16277
|
}
|
|
16278
16278
|
}
|
|
16279
16279
|
|
|
16280
|
-
// bazel-out/
|
|
16280
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/nullish_coalescing.mjs
|
|
16281
16281
|
function generateNullishCoalesceExpressions(job) {
|
|
16282
16282
|
for (const unit of job.units) {
|
|
16283
16283
|
for (const op of unit.ops()) {
|
|
@@ -16293,7 +16293,7 @@ function generateNullishCoalesceExpressions(job) {
|
|
|
16293
16293
|
}
|
|
16294
16294
|
}
|
|
16295
16295
|
|
|
16296
|
-
// bazel-out/
|
|
16296
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/ordering.mjs
|
|
16297
16297
|
function kindTest(kind) {
|
|
16298
16298
|
return (op) => op.kind === kind;
|
|
16299
16299
|
}
|
|
@@ -16383,7 +16383,7 @@ function keepLast(ops) {
|
|
|
16383
16383
|
return ops.slice(ops.length - 1);
|
|
16384
16384
|
}
|
|
16385
16385
|
|
|
16386
|
-
// bazel-out/
|
|
16386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/phase_remove_content_selectors.mjs
|
|
16387
16387
|
function removeContentSelectors(job) {
|
|
16388
16388
|
for (const unit of job.units) {
|
|
16389
16389
|
const elements = createOpXrefMap(unit);
|
|
@@ -16410,7 +16410,7 @@ function lookupInXrefMap(map, xref) {
|
|
|
16410
16410
|
return el;
|
|
16411
16411
|
}
|
|
16412
16412
|
|
|
16413
|
-
// bazel-out/
|
|
16413
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_creation.mjs
|
|
16414
16414
|
function createPipes(job) {
|
|
16415
16415
|
for (const unit of job.units) {
|
|
16416
16416
|
processPipeBindingsInView(unit);
|
|
@@ -16458,7 +16458,7 @@ function addPipeToCreationBlock(unit, afterTargetXref, binding) {
|
|
|
16458
16458
|
throw new Error(`AssertionError: unable to find insertion point for pipe ${binding.name}`);
|
|
16459
16459
|
}
|
|
16460
16460
|
|
|
16461
|
-
// bazel-out/
|
|
16461
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pipe_variadic.mjs
|
|
16462
16462
|
function createVariadicPipes(job) {
|
|
16463
16463
|
for (const unit of job.units) {
|
|
16464
16464
|
for (const op of unit.update) {
|
|
@@ -16475,7 +16475,7 @@ function createVariadicPipes(job) {
|
|
|
16475
16475
|
}
|
|
16476
16476
|
}
|
|
16477
16477
|
|
|
16478
|
-
// bazel-out/
|
|
16478
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/propagate_i18n_blocks.mjs
|
|
16479
16479
|
function propagateI18nBlocks(job) {
|
|
16480
16480
|
propagateI18nBlocksToTemplates(job.root, 0);
|
|
16481
16481
|
}
|
|
@@ -16529,7 +16529,7 @@ function wrapTemplateWithI18n(unit, parentI18n) {
|
|
|
16529
16529
|
}
|
|
16530
16530
|
}
|
|
16531
16531
|
|
|
16532
|
-
// bazel-out/
|
|
16532
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_function_extraction.mjs
|
|
16533
16533
|
function extractPureFunctions(job) {
|
|
16534
16534
|
for (const view of job.units) {
|
|
16535
16535
|
for (const op of view.ops()) {
|
|
@@ -16571,7 +16571,7 @@ var PureFunctionConstant = class extends GenericKeyFn {
|
|
|
16571
16571
|
}
|
|
16572
16572
|
};
|
|
16573
16573
|
|
|
16574
|
-
// bazel-out/
|
|
16574
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/pure_literal_structures.mjs
|
|
16575
16575
|
function generatePureLiteralStructures(job) {
|
|
16576
16576
|
for (const unit of job.units) {
|
|
16577
16577
|
for (const op of unit.update) {
|
|
@@ -16618,7 +16618,7 @@ function transformLiteralMap(expr) {
|
|
|
16618
16618
|
return new PureFunctionExpr(literalMap(derivedEntries), nonConstantArgs);
|
|
16619
16619
|
}
|
|
16620
16620
|
|
|
16621
|
-
// bazel-out/
|
|
16621
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/instruction.mjs
|
|
16622
16622
|
function element(slot, tag, constIndex, localRefIndex, sourceSpan) {
|
|
16623
16623
|
return elementOrContainerBase(Identifiers.element, slot, tag, constIndex, localRefIndex, sourceSpan);
|
|
16624
16624
|
}
|
|
@@ -17141,7 +17141,7 @@ function callVariadicInstruction(config, baseArgs, interpolationArgs, extraArgs,
|
|
|
17141
17141
|
return createStatementOp(callVariadicInstructionExpr(config, baseArgs, interpolationArgs, extraArgs, sourceSpan).toStmt());
|
|
17142
17142
|
}
|
|
17143
17143
|
|
|
17144
|
-
// bazel-out/
|
|
17144
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/reify.mjs
|
|
17145
17145
|
var GLOBAL_TARGET_RESOLVERS = /* @__PURE__ */ new Map([
|
|
17146
17146
|
["window", Identifiers.resolveWindow],
|
|
17147
17147
|
["document", Identifiers.resolveDocument],
|
|
@@ -17497,7 +17497,7 @@ function reifyListenerHandler(unit, name, handlerOps, consumesDollarEvent) {
|
|
|
17497
17497
|
return fn(params, handlerStmts, void 0, void 0, name);
|
|
17498
17498
|
}
|
|
17499
17499
|
|
|
17500
|
-
// bazel-out/
|
|
17500
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_empty_bindings.mjs
|
|
17501
17501
|
function removeEmptyBindings(job) {
|
|
17502
17502
|
for (const unit of job.units) {
|
|
17503
17503
|
for (const op of unit.update) {
|
|
@@ -17518,7 +17518,7 @@ function removeEmptyBindings(job) {
|
|
|
17518
17518
|
}
|
|
17519
17519
|
}
|
|
17520
17520
|
|
|
17521
|
-
// bazel-out/
|
|
17521
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_i18n_contexts.mjs
|
|
17522
17522
|
function removeI18nContexts(job) {
|
|
17523
17523
|
for (const unit of job.units) {
|
|
17524
17524
|
for (const op of unit.create) {
|
|
@@ -17534,7 +17534,7 @@ function removeI18nContexts(job) {
|
|
|
17534
17534
|
}
|
|
17535
17535
|
}
|
|
17536
17536
|
|
|
17537
|
-
// bazel-out/
|
|
17537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/remove_unused_i18n_attrs.mjs
|
|
17538
17538
|
function removeUnusedI18nAttributesOps(job) {
|
|
17539
17539
|
for (const unit of job.units) {
|
|
17540
17540
|
const ownersWithI18nExpressions = /* @__PURE__ */ new Set();
|
|
@@ -17556,7 +17556,7 @@ function removeUnusedI18nAttributesOps(job) {
|
|
|
17556
17556
|
}
|
|
17557
17557
|
}
|
|
17558
17558
|
|
|
17559
|
-
// bazel-out/
|
|
17559
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_contexts.mjs
|
|
17560
17560
|
function resolveContexts(job) {
|
|
17561
17561
|
for (const unit of job.units) {
|
|
17562
17562
|
processLexicalScope(unit, unit.create);
|
|
@@ -17598,7 +17598,7 @@ function processLexicalScope(view, ops) {
|
|
|
17598
17598
|
}
|
|
17599
17599
|
}
|
|
17600
17600
|
|
|
17601
|
-
// bazel-out/
|
|
17601
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_dollar_event.mjs
|
|
17602
17602
|
function resolveDollarEvent(job) {
|
|
17603
17603
|
for (const unit of job.units) {
|
|
17604
17604
|
transformDollarEvent(unit.create);
|
|
@@ -17621,7 +17621,7 @@ function transformDollarEvent(ops) {
|
|
|
17621
17621
|
}
|
|
17622
17622
|
}
|
|
17623
17623
|
|
|
17624
|
-
// bazel-out/
|
|
17624
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_element_placeholders.mjs
|
|
17625
17625
|
function resolveI18nElementPlaceholders(job) {
|
|
17626
17626
|
const i18nContexts = /* @__PURE__ */ new Map();
|
|
17627
17627
|
const elements = /* @__PURE__ */ new Map();
|
|
@@ -17800,7 +17800,7 @@ function addParam(params, placeholder, value, subTemplateIndex, flags) {
|
|
|
17800
17800
|
params.set(placeholder, values);
|
|
17801
17801
|
}
|
|
17802
17802
|
|
|
17803
|
-
// bazel-out/
|
|
17803
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_i18n_expression_placeholders.mjs
|
|
17804
17804
|
function resolveI18nExpressionPlaceholders(job) {
|
|
17805
17805
|
var _a2;
|
|
17806
17806
|
const subTemplateIndices = /* @__PURE__ */ new Map();
|
|
@@ -17853,7 +17853,7 @@ function updatePlaceholder(op, value, i18nContexts, icuPlaceholders) {
|
|
|
17853
17853
|
}
|
|
17854
17854
|
}
|
|
17855
17855
|
|
|
17856
|
-
// bazel-out/
|
|
17856
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_names.mjs
|
|
17857
17857
|
function resolveNames(job) {
|
|
17858
17858
|
for (const unit of job.units) {
|
|
17859
17859
|
processLexicalScope2(unit, unit.create, null);
|
|
@@ -17918,7 +17918,7 @@ function processLexicalScope2(unit, ops, savedView) {
|
|
|
17918
17918
|
}
|
|
17919
17919
|
}
|
|
17920
17920
|
|
|
17921
|
-
// bazel-out/
|
|
17921
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/resolve_sanitizers.mjs
|
|
17922
17922
|
var sanitizerFns = /* @__PURE__ */ new Map([
|
|
17923
17923
|
[SecurityContext.HTML, Identifiers.sanitizeHtml],
|
|
17924
17924
|
[SecurityContext.RESOURCE_URL, Identifiers.sanitizeResourceUrl],
|
|
@@ -17988,7 +17988,7 @@ function getOnlySecurityContext(securityContext) {
|
|
|
17988
17988
|
return securityContext;
|
|
17989
17989
|
}
|
|
17990
17990
|
|
|
17991
|
-
// bazel-out/
|
|
17991
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/transform_two_way_binding_set.mjs
|
|
17992
17992
|
function transformTwoWayBindingSet(job) {
|
|
17993
17993
|
for (const unit of job.units) {
|
|
17994
17994
|
for (const op of unit.create) {
|
|
@@ -18011,7 +18011,7 @@ function transformTwoWayBindingSet(job) {
|
|
|
18011
18011
|
}
|
|
18012
18012
|
}
|
|
18013
18013
|
|
|
18014
|
-
// bazel-out/
|
|
18014
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/save_restore_view.mjs
|
|
18015
18015
|
function saveAndRestoreView(job) {
|
|
18016
18016
|
for (const unit of job.units) {
|
|
18017
18017
|
unit.create.prepend([
|
|
@@ -18056,7 +18056,7 @@ function addSaveRestoreViewOperationToListener(unit, op) {
|
|
|
18056
18056
|
}
|
|
18057
18057
|
}
|
|
18058
18058
|
|
|
18059
|
-
// bazel-out/
|
|
18059
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/slot_allocation.mjs
|
|
18060
18060
|
function allocateSlots(job) {
|
|
18061
18061
|
const slotMap = /* @__PURE__ */ new Map();
|
|
18062
18062
|
for (const unit of job.units) {
|
|
@@ -18081,7 +18081,7 @@ function allocateSlots(job) {
|
|
|
18081
18081
|
}
|
|
18082
18082
|
}
|
|
18083
18083
|
|
|
18084
|
-
// bazel-out/
|
|
18084
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/style_binding_specialization.mjs
|
|
18085
18085
|
function specializeStyleBindings(job) {
|
|
18086
18086
|
for (const unit of job.units) {
|
|
18087
18087
|
for (const op of unit.update) {
|
|
@@ -18111,7 +18111,7 @@ function specializeStyleBindings(job) {
|
|
|
18111
18111
|
}
|
|
18112
18112
|
}
|
|
18113
18113
|
|
|
18114
|
-
// bazel-out/
|
|
18114
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/temporary_variables.mjs
|
|
18115
18115
|
function generateTemporaryVariables(job) {
|
|
18116
18116
|
for (const unit of job.units) {
|
|
18117
18117
|
unit.create.prepend(generateTemporaries(unit.create));
|
|
@@ -18169,7 +18169,7 @@ function assignName(names, expr) {
|
|
|
18169
18169
|
expr.name = name;
|
|
18170
18170
|
}
|
|
18171
18171
|
|
|
18172
|
-
// bazel-out/
|
|
18172
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_generation.mjs
|
|
18173
18173
|
function generateTrackFns(job) {
|
|
18174
18174
|
for (const unit of job.units) {
|
|
18175
18175
|
for (const op of unit.create) {
|
|
@@ -18202,7 +18202,7 @@ function generateTrackFns(job) {
|
|
|
18202
18202
|
}
|
|
18203
18203
|
}
|
|
18204
18204
|
|
|
18205
|
-
// bazel-out/
|
|
18205
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_fn_optimization.mjs
|
|
18206
18206
|
function optimizeTrackFns(job) {
|
|
18207
18207
|
for (const unit of job.units) {
|
|
18208
18208
|
for (const op of unit.create) {
|
|
@@ -18252,7 +18252,7 @@ function isTrackByFunctionCall(rootView, expr) {
|
|
|
18252
18252
|
return true;
|
|
18253
18253
|
}
|
|
18254
18254
|
|
|
18255
|
-
// bazel-out/
|
|
18255
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/track_variables.mjs
|
|
18256
18256
|
function generateTrackVariables(job) {
|
|
18257
18257
|
for (const unit of job.units) {
|
|
18258
18258
|
for (const op of unit.create) {
|
|
@@ -18273,7 +18273,7 @@ function generateTrackVariables(job) {
|
|
|
18273
18273
|
}
|
|
18274
18274
|
}
|
|
18275
18275
|
|
|
18276
|
-
// bazel-out/
|
|
18276
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/var_counting.mjs
|
|
18277
18277
|
function countVariables(job) {
|
|
18278
18278
|
for (const unit of job.units) {
|
|
18279
18279
|
let varCount = 0;
|
|
@@ -18383,7 +18383,7 @@ function isSingletonInterpolation(expr) {
|
|
|
18383
18383
|
return true;
|
|
18384
18384
|
}
|
|
18385
18385
|
|
|
18386
|
-
// bazel-out/
|
|
18386
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/variable_optimization.mjs
|
|
18387
18387
|
function optimizeVariables(job) {
|
|
18388
18388
|
for (const unit of job.units) {
|
|
18389
18389
|
inlineAlwaysInlineVariables(unit.create);
|
|
@@ -18632,7 +18632,7 @@ function allowConservativeInlining(decl, target) {
|
|
|
18632
18632
|
}
|
|
18633
18633
|
}
|
|
18634
18634
|
|
|
18635
|
-
// bazel-out/
|
|
18635
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/phases/wrap_icus.mjs
|
|
18636
18636
|
function wrapI18nIcus(job) {
|
|
18637
18637
|
for (const unit of job.units) {
|
|
18638
18638
|
let currentI18nOp = null;
|
|
@@ -18662,7 +18662,7 @@ function wrapI18nIcus(job) {
|
|
|
18662
18662
|
}
|
|
18663
18663
|
}
|
|
18664
18664
|
|
|
18665
|
-
// bazel-out/
|
|
18665
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/emit.mjs
|
|
18666
18666
|
var phases = [
|
|
18667
18667
|
{ kind: CompilationJobKind.Tmpl, fn: removeContentSelectors },
|
|
18668
18668
|
{ kind: CompilationJobKind.Host, fn: parseHostStyleProperties },
|
|
@@ -18816,7 +18816,7 @@ function emitHostBindingFunction(job) {
|
|
|
18816
18816
|
);
|
|
18817
18817
|
}
|
|
18818
18818
|
|
|
18819
|
-
// bazel-out/
|
|
18819
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template/pipeline/src/ingest.mjs
|
|
18820
18820
|
var compatibilityMode = CompatibilityMode.TemplateDefinitionBuilder;
|
|
18821
18821
|
var domSchema = new DomElementSchemaRegistry();
|
|
18822
18822
|
var NG_TEMPLATE_TAG_NAME = "ng-template";
|
|
@@ -19568,7 +19568,7 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
19568
19568
|
return null;
|
|
19569
19569
|
}
|
|
19570
19570
|
|
|
19571
|
-
// bazel-out/
|
|
19571
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/query_generation.mjs
|
|
19572
19572
|
function renderFlagCheckIfStmt(flags, statements) {
|
|
19573
19573
|
return ifStmt(variable(RENDER_FLAGS).bitwiseAnd(literal(flags), null, false), statements);
|
|
19574
19574
|
}
|
|
@@ -19688,7 +19688,7 @@ function createContentQueriesFunction(queries, constantPool, name) {
|
|
|
19688
19688
|
], INFERRED_TYPE, null, contentQueriesFnName);
|
|
19689
19689
|
}
|
|
19690
19690
|
|
|
19691
|
-
// bazel-out/
|
|
19691
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_parser.mjs
|
|
19692
19692
|
var HtmlParser = class extends Parser2 {
|
|
19693
19693
|
constructor() {
|
|
19694
19694
|
super(getHtmlTagDefinition);
|
|
@@ -19698,7 +19698,7 @@ var HtmlParser = class extends Parser2 {
|
|
|
19698
19698
|
}
|
|
19699
19699
|
};
|
|
19700
19700
|
|
|
19701
|
-
// bazel-out/
|
|
19701
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/html_whitespaces.mjs
|
|
19702
19702
|
var PRESERVE_WS_ATTR_NAME = "ngPreserveWhitespaces";
|
|
19703
19703
|
var SKIP_WS_TRIM_TAGS = /* @__PURE__ */ new Set(["pre", "template", "textarea", "script", "style"]);
|
|
19704
19704
|
var WS_CHARS = " \f\n\r \v\u1680\u180E\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF";
|
|
@@ -19767,7 +19767,7 @@ function visitAllWithSiblings(visitor, nodes) {
|
|
|
19767
19767
|
return result;
|
|
19768
19768
|
}
|
|
19769
19769
|
|
|
19770
|
-
// bazel-out/
|
|
19770
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/binding_parser.mjs
|
|
19771
19771
|
var PROPERTY_PARTS_SEPARATOR = ".";
|
|
19772
19772
|
var ATTRIBUTE_PREFIX = "attr";
|
|
19773
19773
|
var CLASS_PREFIX = "class";
|
|
@@ -20121,7 +20121,7 @@ function moveParseSourceSpan(sourceSpan, absoluteSpan) {
|
|
|
20121
20121
|
return new ParseSourceSpan(sourceSpan.start.moveBy(startDiff), sourceSpan.end.moveBy(endDiff), sourceSpan.fullStart.moveBy(startDiff), sourceSpan.details);
|
|
20122
20122
|
}
|
|
20123
20123
|
|
|
20124
|
-
// bazel-out/
|
|
20124
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/style_url_resolver.mjs
|
|
20125
20125
|
function isStyleUrlResolvable(url) {
|
|
20126
20126
|
if (url == null || url.length === 0 || url[0] == "/")
|
|
20127
20127
|
return false;
|
|
@@ -20130,7 +20130,7 @@ function isStyleUrlResolvable(url) {
|
|
|
20130
20130
|
}
|
|
20131
20131
|
var URL_WITH_SCHEMA_REGEXP = /^([^:/?#]+):/;
|
|
20132
20132
|
|
|
20133
|
-
// bazel-out/
|
|
20133
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/template_parser/template_preparser.mjs
|
|
20134
20134
|
var NG_CONTENT_SELECT_ATTR = "select";
|
|
20135
20135
|
var LINK_ELEMENT = "link";
|
|
20136
20136
|
var LINK_STYLE_REL_ATTR = "rel";
|
|
@@ -20200,7 +20200,7 @@ function normalizeNgContentSelect(selectAttr) {
|
|
|
20200
20200
|
return selectAttr;
|
|
20201
20201
|
}
|
|
20202
20202
|
|
|
20203
|
-
// bazel-out/
|
|
20203
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_control_flow.mjs
|
|
20204
20204
|
var FOR_LOOP_EXPRESSION_PATTERN = /^\s*([0-9A-Za-z_$]*)\s+of\s+([\S\s]*)/;
|
|
20205
20205
|
var FOR_LOOP_TRACK_PATTERN = /^track\s+([\S\s]*)/;
|
|
20206
20206
|
var CONDITIONAL_ALIAS_PATTERN = /^(as\s)+(.*)/;
|
|
@@ -20523,7 +20523,7 @@ function stripOptionalParentheses(param, errors) {
|
|
|
20523
20523
|
return expression.slice(start, end);
|
|
20524
20524
|
}
|
|
20525
20525
|
|
|
20526
|
-
// bazel-out/
|
|
20526
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_triggers.mjs
|
|
20527
20527
|
var TIME_PATTERN = /^\d+\.?\d*(ms|s)?$/;
|
|
20528
20528
|
var SEPARATOR_PATTERN = /^\s$/;
|
|
20529
20529
|
var COMMA_DELIMITED_SYNTAX = /* @__PURE__ */ new Map([
|
|
@@ -20787,7 +20787,7 @@ function parseDeferredTime(value) {
|
|
|
20787
20787
|
return parseFloat(time) * (units === "s" ? 1e3 : 1);
|
|
20788
20788
|
}
|
|
20789
20789
|
|
|
20790
|
-
// bazel-out/
|
|
20790
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_deferred_blocks.mjs
|
|
20791
20791
|
var PREFETCH_WHEN_PATTERN = /^prefetch\s+when\s/;
|
|
20792
20792
|
var PREFETCH_ON_PATTERN = /^prefetch\s+on\s/;
|
|
20793
20793
|
var MINIMUM_PARAMETER_PATTERN = /^minimum\s/;
|
|
@@ -20922,7 +20922,7 @@ function parsePrimaryTriggers(params, bindingParser, errors, placeholder) {
|
|
|
20922
20922
|
return { triggers, prefetchTriggers };
|
|
20923
20923
|
}
|
|
20924
20924
|
|
|
20925
|
-
// bazel-out/
|
|
20925
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/r3_template_transform.mjs
|
|
20926
20926
|
var BIND_NAME_REGEXP = /^(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.*)$/;
|
|
20927
20927
|
var KW_BIND_IDX = 1;
|
|
20928
20928
|
var KW_LET_IDX = 2;
|
|
@@ -21389,7 +21389,7 @@ function textContents(node) {
|
|
|
21389
21389
|
}
|
|
21390
21390
|
}
|
|
21391
21391
|
|
|
21392
|
-
// bazel-out/
|
|
21392
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/template.mjs
|
|
21393
21393
|
var LEADING_TRIVIA_CHARS = [" ", "\n", "\r", " "];
|
|
21394
21394
|
function parseTemplate(template2, templateUrl, options = {}) {
|
|
21395
21395
|
var _a2, _b2;
|
|
@@ -21468,7 +21468,7 @@ function makeBindingParser(interpolationConfig = DEFAULT_INTERPOLATION_CONFIG, a
|
|
|
21468
21468
|
return new BindingParser(new Parser(new Lexer()), interpolationConfig, elementRegistry, [], allowInvalidAssignmentEvents);
|
|
21469
21469
|
}
|
|
21470
21470
|
|
|
21471
|
-
// bazel-out/
|
|
21471
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/compiler.mjs
|
|
21472
21472
|
var COMPONENT_VARIABLE = "%COMP%";
|
|
21473
21473
|
var HOST_ATTR = `_nghost-${COMPONENT_VARIABLE}`;
|
|
21474
21474
|
var CONTENT_ATTR = `_ngcontent-${COMPONENT_VARIABLE}`;
|
|
@@ -21835,7 +21835,7 @@ function createHostDirectivesMappingArray(mapping) {
|
|
|
21835
21835
|
return elements.length > 0 ? literalArr(elements) : null;
|
|
21836
21836
|
}
|
|
21837
21837
|
|
|
21838
|
-
// bazel-out/
|
|
21838
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/view/t2_binder.mjs
|
|
21839
21839
|
var R3TargetBinder = class {
|
|
21840
21840
|
constructor(directiveMatcher) {
|
|
21841
21841
|
this.directiveMatcher = directiveMatcher;
|
|
@@ -22482,11 +22482,11 @@ function extractScopedNodeEntities(rootScope) {
|
|
|
22482
22482
|
return templateEntities;
|
|
22483
22483
|
}
|
|
22484
22484
|
|
|
22485
|
-
// bazel-out/
|
|
22485
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/resource_loader.mjs
|
|
22486
22486
|
var ResourceLoader = class {
|
|
22487
22487
|
};
|
|
22488
22488
|
|
|
22489
|
-
// bazel-out/
|
|
22489
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/jit_compiler_facade.mjs
|
|
22490
22490
|
var CompilerFacadeImpl = class {
|
|
22491
22491
|
constructor(jitEvaluator = new JitEvaluator()) {
|
|
22492
22492
|
this.jitEvaluator = jitEvaluator;
|
|
@@ -23052,17 +23052,17 @@ function publishFacade(global) {
|
|
|
23052
23052
|
ng.\u0275compilerFacade = new CompilerFacadeImpl();
|
|
23053
23053
|
}
|
|
23054
23054
|
|
|
23055
|
-
// bazel-out/
|
|
23056
|
-
var VERSION2 = new Version("18.1.0-next.
|
|
23055
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
23056
|
+
var VERSION2 = new Version("18.1.0-next.2");
|
|
23057
23057
|
|
|
23058
|
-
// bazel-out/
|
|
23058
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
23059
23059
|
var _VisitorMode;
|
|
23060
23060
|
(function(_VisitorMode2) {
|
|
23061
23061
|
_VisitorMode2[_VisitorMode2["Extract"] = 0] = "Extract";
|
|
23062
23062
|
_VisitorMode2[_VisitorMode2["Merge"] = 1] = "Merge";
|
|
23063
23063
|
})(_VisitorMode || (_VisitorMode = {}));
|
|
23064
23064
|
|
|
23065
|
-
// bazel-out/
|
|
23065
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/ml_parser/xml_tags.mjs
|
|
23066
23066
|
var XmlTagDefinition = class {
|
|
23067
23067
|
constructor() {
|
|
23068
23068
|
this.closedByParent = false;
|
|
@@ -23084,7 +23084,7 @@ var XmlTagDefinition = class {
|
|
|
23084
23084
|
};
|
|
23085
23085
|
var _TAG_DEFINITION = new XmlTagDefinition();
|
|
23086
23086
|
|
|
23087
|
-
// bazel-out/
|
|
23087
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/render3/partial/api.mjs
|
|
23088
23088
|
var FactoryTarget2;
|
|
23089
23089
|
(function(FactoryTarget3) {
|
|
23090
23090
|
FactoryTarget3[FactoryTarget3["Directive"] = 0] = "Directive";
|
|
@@ -23094,10 +23094,10 @@ var FactoryTarget2;
|
|
|
23094
23094
|
FactoryTarget3[FactoryTarget3["NgModule"] = 4] = "NgModule";
|
|
23095
23095
|
})(FactoryTarget2 || (FactoryTarget2 = {}));
|
|
23096
23096
|
|
|
23097
|
-
// bazel-out/
|
|
23097
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/compiler.mjs
|
|
23098
23098
|
publishFacade(_global);
|
|
23099
23099
|
|
|
23100
|
-
// bazel-out/
|
|
23100
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/identifier-lookup.mjs
|
|
23101
23101
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
23102
23102
|
function lookupIdentifiersInSourceFile(sourceFile, names) {
|
|
23103
23103
|
const results = /* @__PURE__ */ new Set();
|
|
@@ -23111,7 +23111,7 @@ function lookupIdentifiersInSourceFile(sourceFile, names) {
|
|
|
23111
23111
|
return results;
|
|
23112
23112
|
}
|
|
23113
23113
|
|
|
23114
|
-
// bazel-out/
|
|
23114
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/types.mjs
|
|
23115
23115
|
var ngtemplate = "ng-template";
|
|
23116
23116
|
var boundngifelse = "[ngIfElse]";
|
|
23117
23117
|
var boundngifthenelse = "[ngIfThenElse]";
|
|
@@ -23439,7 +23439,7 @@ var TemplateCollector = class extends RecursiveVisitor {
|
|
|
23439
23439
|
}
|
|
23440
23440
|
};
|
|
23441
23441
|
|
|
23442
|
-
// bazel-out/
|
|
23442
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/util.mjs
|
|
23443
23443
|
var import_path2 = require("path");
|
|
23444
23444
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
23445
23445
|
var startMarkerRegex = new RegExp(startMarker, "gm");
|
|
@@ -23959,7 +23959,7 @@ function forEachClass(sourceFile, callback) {
|
|
|
23959
23959
|
});
|
|
23960
23960
|
}
|
|
23961
23961
|
|
|
23962
|
-
// bazel-out/
|
|
23962
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/cases.mjs
|
|
23963
23963
|
var boundcase = "[ngSwitchCase]";
|
|
23964
23964
|
var switchcase = "*ngSwitchCase";
|
|
23965
23965
|
var nakedcase = "ngSwitchCase";
|
|
@@ -24031,7 +24031,7 @@ function migrateNgSwitchDefault(etm, tmpl, offset) {
|
|
|
24031
24031
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
24032
24032
|
}
|
|
24033
24033
|
|
|
24034
|
-
// bazel-out/
|
|
24034
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/fors.mjs
|
|
24035
24035
|
var ngfor = "*ngFor";
|
|
24036
24036
|
var nakedngfor2 = "ngFor";
|
|
24037
24037
|
var fors = [ngfor, nakedngfor2];
|
|
@@ -24210,7 +24210,7 @@ function getNgForParts(expression) {
|
|
|
24210
24210
|
return parts;
|
|
24211
24211
|
}
|
|
24212
24212
|
|
|
24213
|
-
// bazel-out/
|
|
24213
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/ifs.mjs
|
|
24214
24214
|
var ngif = "*ngIf";
|
|
24215
24215
|
var boundngif = "[ngIf]";
|
|
24216
24216
|
var nakedngif = "ngIf";
|
|
@@ -24359,7 +24359,7 @@ function buildIfThenBlock(etm, tmpl, condition, thenPlaceholder, offset) {
|
|
|
24359
24359
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
24360
24360
|
}
|
|
24361
24361
|
|
|
24362
|
-
// bazel-out/
|
|
24362
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/switches.mjs
|
|
24363
24363
|
var ngswitch = "[ngSwitch]";
|
|
24364
24364
|
var switches = [ngswitch];
|
|
24365
24365
|
function migrateSwitch(template2) {
|
|
@@ -24425,7 +24425,7 @@ function migrateNgSwitch(etm, tmpl, offset) {
|
|
|
24425
24425
|
return { tmpl: updatedTmpl, offsets: { pre, post } };
|
|
24426
24426
|
}
|
|
24427
24427
|
|
|
24428
|
-
// bazel-out/
|
|
24428
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/migration.mjs
|
|
24429
24429
|
function migrateTemplate(template2, templateType, node, file, format = true, analyzedFiles) {
|
|
24430
24430
|
let errors = [];
|
|
24431
24431
|
let migrated = template2;
|
|
@@ -24476,7 +24476,7 @@ function migrateTemplate(template2, templateType, node, file, format = true, ana
|
|
|
24476
24476
|
return { migrated, errors };
|
|
24477
24477
|
}
|
|
24478
24478
|
|
|
24479
|
-
// bazel-out/
|
|
24479
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/ng-generate/control-flow-migration/index.mjs
|
|
24480
24480
|
function control_flow_migration_default(options) {
|
|
24481
24481
|
return (tree, context) => __async(this, null, function* () {
|
|
24482
24482
|
const basePath = process.cwd();
|