refactor(core): Removed readonly getters and changed to readonly (#19225)

variables
This commit is contained in:
tinayuangao
2017-09-29 00:36:29 +08:00
committed by Victor Berchet
parent 3aa3d5c548
commit 2b84b86fc0
14 changed files with 64 additions and 46 deletions

View File

@ -114,13 +114,14 @@ export class AnimationRendererFactory implements RendererFactory2 {
}
export class BaseAnimationRenderer implements Renderer2 {
readonly data: {[key: string]: any};
constructor(
protected namespaceId: string, public delegate: Renderer2, public engine: AnimationEngine) {
this.destroyNode = this.delegate.destroyNode ? (n) => delegate.destroyNode !(n) : null;
this.data = delegate.data;
}
get data() { return this.delegate.data; }
destroyNode: ((n: any) => void)|null;
destroy(): void {