fix(ivy): export elementContainerStart/End instructions (#27053)
PR Close #27053
This commit is contained in:
@ -244,12 +244,12 @@ describe('compiler compliance', () => {
|
||||
…
|
||||
template: function MyComponent_Template(rf, ctx) {
|
||||
if (rf & 1) {
|
||||
i0.ɵEC(0);
|
||||
i0.ɵelementContainerStart(0);
|
||||
i0.ɵelementStart(1, "span");
|
||||
i0.ɵtext(2, "in a ");
|
||||
i0.ɵelementEnd();
|
||||
i0.ɵtext(3, "container");
|
||||
i0.ɵeC();
|
||||
i0.ɵelementContainerEnd();
|
||||
}
|
||||
}
|
||||
`;
|
||||
@ -281,8 +281,8 @@ describe('compiler compliance', () => {
|
||||
…
|
||||
template: function MyComponent_Template(rf, ctx) {
|
||||
if (rf & 1) {
|
||||
i0.ɵEC(0);
|
||||
i0.ɵeC();
|
||||
i0.ɵelementContainerStart(0);
|
||||
i0.ɵelementContainerEnd();
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
Reference in New Issue
Block a user