refactor(ivy): remove need for LContainer.template (#24335)

PR Close #24335
This commit is contained in:
Kara Erickson
2018-06-06 20:43:17 -07:00
committed by Miško Hevery
parent bd02b27ee1
commit f781f741ea
3 changed files with 8 additions and 17 deletions

View File

@ -6,7 +6,6 @@
* found in the LICENSE file at https://angular.io/license
*/
import {ComponentTemplate} from './definition';
import {LContainerNode, LElementNode, LViewNode} from './node';
import {LQueries} from './query';
import {LView, TView} from './view';
@ -67,11 +66,6 @@ export interface LContainer {
*/
renderParent: LElementNode|null;
/**
* The template extracted from the location of the Container.
*/
readonly template: ComponentTemplate<any>|null;
/**
* Queries active for this container - all the views inserted to / removed from
* this container are reported to queries referenced here.