refactor(scheduler): replace try catch with callWithErrorHandling (#264)
This commit is contained in:
parent
70a142c203
commit
312907c9d8
@ -1,4 +1,4 @@
|
|||||||
import { handleError, ErrorCodes } from './errorHandling'
|
import { ErrorCodes, callWithErrorHandling } from './errorHandling'
|
||||||
import { isArray } from '@vue/shared'
|
import { isArray } from '@vue/shared'
|
||||||
|
|
||||||
const queue: Function[] = []
|
const queue: Function[] = []
|
||||||
@ -71,11 +71,7 @@ function flushJobs(seenJobs?: JobCountMap) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
callWithErrorHandling(job, null, ErrorCodes.SCHEDULER)
|
||||||
job()
|
|
||||||
} catch (err) {
|
|
||||||
handleError(err, null, ErrorCodes.SCHEDULER)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
flushPostFlushCbs()
|
flushPostFlushCbs()
|
||||||
isFlushing = false
|
isFlushing = false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user