huge refactoring, remove getNewCommentRange

This commit is contained in:
Peng Lyu
2018-04-19 11:49:45 -07:00
parent 8730f9688f
commit 55198cb554
10 changed files with 163 additions and 217 deletions

View File

@@ -832,8 +832,7 @@ export interface ExtHostProgressShape {
}
export interface ExtHostCommentsShape {
$provideComments(handle: number, document: UriComponents): TPromise<modes.CommentThread[]>;
$provideNewCommentRange(handle: number, document: UriComponents): TPromise<modes.NewCommentAction[]>;
$provideComments(handle: number, document: UriComponents): TPromise<modes.CommentInfo>;
$provideAllComments(handle: number): TPromise<modes.CommentThread[]>;
}