cleanup(change_detection): rename field name
This commit is contained in:
parent
9240b09011
commit
1ec796a601
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue