Add support for editing comments, #58078

This commit is contained in:
Rachel Macfarlane
2018-09-17 11:22:41 -07:00
committed by GitHub
parent ec058d3dd4
commit 1d1105e96b
9 changed files with 445 additions and 108 deletions

View File

@@ -77,6 +77,9 @@ export class MainThreadComments extends Disposable implements MainThreadComments
},
replyToCommentThread: async (uri, range, thread, text, token) => {
return this._proxy.$replyToCommentThread(handle, uri, range, thread, text);
},
editComment: async (uri, comment, text, token) => {
return this._proxy.$editComment(handle, uri, comment, text);
}
}
);