Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

fix(task): fix closure compatibility issue with ZoneDelegate._updateT… #878

Merged
merged 1 commit into from
Aug 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1123,16 +1123,16 @@ const Zone: ZoneType = (function(global: any) {

_updateTaskCount(type: TaskType, count: number) {
const counts = this._taskCounts;
const prev = (counts as any)[type];
const next = (counts as any)[type] = prev + count;
const prev = counts[type];
const next = counts[type] = prev + count;
if (next < 0) {
throw new Error('More tasks executed then were scheduled.');
}
if (prev == 0 || next == 0) {
const isEmpty: HasTaskState = {
microTask: counts.microTask > 0,
macroTask: counts.macroTask > 0,
eventTask: counts.eventTask > 0,
microTask: counts['microTask'] > 0,
macroTask: counts['macroTask'] > 0,
eventTask: counts['eventTask'] > 0,
change: type
};
this.hasTask(this.zone, isEmpty);
Expand Down