fix(ivy): export elementContainerStart/End instructions (#27053)

PR Close #27053
This commit is contained in:
JoostK
2018-11-12 00:46:02 +01:00
committed by Misko Hevery
parent b07bd30b70
commit 60800da6c1
4 changed files with 12 additions and 8 deletions

View File

@ -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();
}
}
`;