perf(ivy): avoid native node retrieval from LView (#33511)

PR Close #33511
This commit is contained in:
Pawel Kozlowski 2019-10-31 16:23:21 +01:00 committed by atscott
parent df1bef31a4
commit 083d48e072
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ import {FLAGS, HEADER_OFFSET, InitPhaseState, LView, LViewFlags, RENDERER, TVIEW
import {assertNodeType} from '../node_assert';
import {appendChild, removeView} from '../node_manipulation';
import {getBindingIndex, getCheckNoChangesMode, getIsParent, getLView, getPreviousOrParentTNode, setIsNotParent, setPreviousOrParentTNode} from '../state';
import {getNativeByTNode, load} from '../util/view_utils';
import {load} from '../util/view_utils';
import {addToViewTree, createDirectivesInstances, createLContainer, createTNode, createTView, getOrCreateTNode, resolveDirectives, saveResolvedLocalsInData} from './shared';
@ -185,7 +185,7 @@ function containerInternal(
const lContainer = lView[adjustedIndex] = createLContainer(comment, lView, comment, tNode);
appendChild(comment, tNode, lView);
attachPatchData(getNativeByTNode(tNode, lView), lView);
attachPatchData(comment, lView);
// Containers are added to the current view tree instead of their embedded views
// because views can be removed and re-inserted.