fix(ivy): update master with renamings (#22268)

PR Close #22268
This commit is contained in:
Victor Berchet 2018-02-18 16:02:47 -08:00
parent 9ce495b3d8
commit a8b5465e24
2 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ describe('compiler specification', () => {
factory: function HostBindingDir_Factory() { return new HostBindingDir(); },
hostBindings: function HostBindingDir_HostBindings(
dirIndex: $number$, elIndex: $number$) {
$r3$.ɵp(elIndex, 'id', $r3$.ɵb($r3$.ɵm<HostBindingDir>(dirIndex).dirId));
$r3$.ɵp(elIndex, 'id', $r3$.ɵb($r3$.ɵld<HostBindingDir>(dirIndex).dirId));
}
});
// /NORMATIVE
@ -282,7 +282,7 @@ describe('compiler specification', () => {
factory: function HostBindingDir_Factory() { return new HostBindingDir(); },
hostBindings: function HostBindingDir_HostBindings(
dirIndex: $number$, elIndex: $number$) {
$r3$.ɵa(elIndex, 'aria-label', $r3$.ɵb($r3$.ɵm<HostBindingDir>(dirIndex).label));
$r3$.ɵa(elIndex, 'aria-label', $r3$.ɵb($r3$.ɵld<HostBindingDir>(dirIndex).label));
}
});
// /NORMATIVE

View File

@ -637,7 +637,7 @@ describe('render3 integration test', () => {
return hostBindingDir = new HostBindingDir();
},
hostBindings: function HostBindingDir_HostBindings(dirIndex: number, elIndex: number) {
elementAttribute(elIndex, 'aria-label', bind(memory<HostBindingDir>(dirIndex).label));
elementAttribute(elIndex, 'aria-label', bind(load<HostBindingDir>(dirIndex).label));
}
});
}