Skip to content

Commit 91d150f

Browse files
9c106f4 refactor(core): introduce domProperty instruction (#60608)
1 parent 9849255 commit 91d150f

20 files changed

Lines changed: 38 additions & 38 deletions

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Fri Mar 28 18:51:23 UTC 2025
2-
cbd6ec8c6a3c632089cc8668d621aa597627af16
1+
Mon Mar 31 13:23:06 UTC 2025
2+
9c106f440146199eaaab9e28cc4e3ffe006e6e91
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15099,13 +15099,13 @@ var ComponentDecoratorHandler = class {
1509915099
}
1510015100
}
1510115101
const binder = createTargetBinder(dependencies);
15102-
const pipes = extractPipes(dependencies);
1510315102
let allDependencies = dependencies;
1510415103
let deferBlockBinder = binder;
1510515104
if (explicitlyDeferredDependencies.length > 0) {
1510615105
allDependencies = [...explicitlyDeferredDependencies, ...dependencies];
1510715106
deferBlockBinder = createTargetBinder(allDependencies);
1510815107
}
15108+
const pipes = extractPipes(allDependencies);
1510915109
const bound = binder.bind({ template: metadata.template.nodes });
1511015110
const deferBlocks = /* @__PURE__ */ new Map();
1511115111
for (const deferBlock of bound.getDeferBlocks()) {
@@ -15136,10 +15136,10 @@ var ComponentDecoratorHandler = class {
1513615136
}
1513715137
const wholeTemplateUsed = new Set(eagerlyUsed);
1513815138
for (const bound2 of deferBlocks.values()) {
15139-
for (const dir of bound2.getEagerlyUsedDirectives()) {
15139+
for (const dir of bound2.getUsedDirectives()) {
1514015140
wholeTemplateUsed.add(dir.ref.node);
1514115141
}
15142-
for (const name of bound2.getEagerlyUsedPipes()) {
15142+
for (const name of bound2.getUsedPipes()) {
1514315143
if (!pipes.has(name)) {
1514415144
continue;
1514515145
}
@@ -16147,4 +16147,4 @@ export {
1614716147
* Use of this source code is governed by an MIT-style license that can be
1614816148
* found in the LICENSE file at https://angular.dev/license
1614916149
*/
16150-
//# sourceMappingURL=chunk-GEBFUMBV.js.map
16150+
//# sourceMappingURL=chunk-7JWI7TMD.js.map
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/chunk-NIVE5PXL.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)