render pending comment

This commit is contained in:
rebornix
2018-11-28 16:05:16 -08:00
parent 1b8f388387
commit 8d78edddaa
8 changed files with 155 additions and 41 deletions

View File

@@ -52,6 +52,16 @@ export class MainThreadDocumentCommentProvider implements modes.DocumentCommentP
return this._proxy.$deleteComment(this._handle, uri, comment);
}
async startDraft(token): Promise<void> {
return this._proxy.$startDraft(this._handle);
}
async deleteDraft(token): Promise<void> {
return this._proxy.$deleteDraft(this._handle);
}
async finishDraft(token): Promise<void> {
return this._proxy.$finishDraft(this._handle);
}
onDidChangeCommentThreads = null;
}