fix(ivy): create LViewData from blueprint (#25587)

PR Close #25587
This commit is contained in:
Kara Erickson
2018-08-21 00:03:21 -07:00
committed by Matias Niemelä
parent f33dbf42fd
commit d5b70e0c66
24 changed files with 153 additions and 118 deletions

View File

@ -253,6 +253,12 @@ export interface TView {
*/
readonly id: number;
/**
* This is a blueprint used to generate LViewData instances for this TView. Copying this
* blueprint is faster than creating a new LViewData from scratch.
*/
blueprint: LViewData;
/**
* The template function used to refresh the view of dynamically created views
* and components. Will be null for inline views.