cleanup(change_detection): rename field name

This commit is contained in:
vsavkin 2015-02-06 13:29:24 -08:00
parent 9240b09011
commit 1ec796a601
1 changed files with 2 additions and 2 deletions

View File

@ -5,11 +5,11 @@ import {ChangeDetector, CHECK_ALWAYS, CHECK_ONCE, CHECKED, DETACHED} from './int
export class AbstractChangeDetector extends ChangeDetector { export class AbstractChangeDetector extends ChangeDetector {
children:List; children:List;
parent:ChangeDetector; parent:ChangeDetector;
status:string; mode:string;
constructor() { constructor() {
this.children = []; this.children = [];
this.status = CHECK_ALWAYS; this.mode = CHECK_ALWAYS;
} }
addChild(cd:ChangeDetector) { addChild(cd:ChangeDetector) {