isStale的判定
This commit is contained in:
parent
49a621ffe8
commit
9120e71700
|
|
@ -251,7 +251,7 @@ class Node extends Feature {
|
|||
return this.extraData[key];
|
||||
}
|
||||
isStale() {
|
||||
return !!this.isStale;
|
||||
return !!this.stale;
|
||||
}
|
||||
}
|
||||
class EntityNode extends Node {
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ class Node extends Feature_1.Feature {
|
|||
return this.extraData[key];
|
||||
}
|
||||
isStale() {
|
||||
return !!this.isStale;
|
||||
return !!this.stale;
|
||||
}
|
||||
}
|
||||
class EntityNode extends Node {
|
||||
|
|
|
|||
|
|
@ -325,7 +325,7 @@ abstract class Node<ED extends EntityDict & BaseEntityDict> extends Feature {
|
|||
}
|
||||
|
||||
isStale() {
|
||||
return !!this.isStale;
|
||||
return !!this.stale;
|
||||
}
|
||||
|
||||
abstract getParent(): Node<ED> | undefined;
|
||||
|
|
|
|||
Loading…
Reference in New Issue