refactor(ivy): rename getComponentViewByIndex to getComponentLViewByIndex (#33074)

PR Close #33074
This commit is contained in:
Miško Hevery
2019-10-09 16:10:14 -07:00
committed by Kara Erickson
parent 7f7dc7c294
commit f1ffd57105
6 changed files with 18 additions and 18 deletions

View File

@ -129,7 +129,7 @@ export function load<T>(view: LView | TData, index: number): T {
return view[index + HEADER_OFFSET];
}
export function getComponentViewByIndex(nodeIndex: number, hostView: LView): LView {
export function getComponentLViewByIndex(nodeIndex: number, hostView: LView): LView {
// Could be an LView or an LContainer. If LContainer, unwrap to find LView.
ngDevMode && assertDataInRange(hostView, nodeIndex);
const slotValue = hostView[nodeIndex];