Revert "refactor(core): Change abstract get to readonly (#19226)"

This reverts commit 3aa3d5c548.
This commit is contained in:
Victor Berchet
2017-09-28 13:36:56 -07:00
parent 6a9ce67714
commit 14e8e88022
13 changed files with 73 additions and 73 deletions

View File

@ -36,7 +36,7 @@ export abstract class TemplateRef<C> {
*
*/
// TODO(i): rename to anchor or location
readonly elementRef: ElementRef;
abstract get elementRef(): ElementRef;
abstract createEmbeddedView(context: C): EmbeddedViewRef<C>;
}