提交 97a7e63d 编写于 作者: J Johannes Rieken

also check cancellation token in outer perform function,...

also check cancellation token in outer perform function, https://github.com/microsoft/vscode/issues/111281
上级 7b1da3a3
......@@ -68,6 +68,9 @@ class BulkEdit {
let index = 0;
for (let range of ranges) {
if (this._token.isCancellationRequested) {
break;
}
const group = this._edits.slice(index, index + range);
if (group[0] instanceof ResourceFileEdit) {
await this._performFileEdits(<ResourceFileEdit[]>group, this._undoRedoGroup, this._undoRedoSource, progress);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册