feat: 添加vscode编辑器
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { createDecorator } from '../../instantiation/common/instantiation.js';
|
||||
export const IProgressService = createDecorator('progressService');
|
||||
export const emptyProgressRunner = Object.freeze({
|
||||
total() { },
|
||||
worked() { },
|
||||
done() { }
|
||||
});
|
||||
export class Progress {
|
||||
constructor(callback) {
|
||||
this.callback = callback;
|
||||
}
|
||||
report(item) {
|
||||
this._value = item;
|
||||
this.callback(this._value);
|
||||
}
|
||||
}
|
||||
Progress.None = Object.freeze({ report() { } });
|
||||
export const IEditorProgressService = createDecorator('editorProgressService');
|
||||
Reference in New Issue
Block a user