replace draft properties with labels in CommentThread and Comment

This commit is contained in:
Peng Lyu
2019-03-06 14:29:02 -08:00
parent 905248fa6e
commit ce1cb8a9fc
7 changed files with 71 additions and 8 deletions

View File

@@ -127,6 +127,7 @@ export interface MainThreadCommentsShape extends IDisposable {
$updateCommentThreadCommands(handle: number, commentThreadHandle: number, acceptInputCommands: modes.Command[]): void;
$updateCommentThreadCollapsibleState(handle: number, commentThreadHandle: number, collapseState: modes.CommentThreadCollapsibleState): void;
$updateCommentThreadRange(handle: number, commentThreadHandle: number, range: IRange): void;
$updateCommentThreadLabel(handle: number, commentThreadHandle: number, label: string): void;
$registerDocumentCommentProvider(handle: number, features: CommentProviderFeatures): void;
$unregisterDocumentCommentProvider(handle: number): void;
$registerWorkspaceCommentProvider(handle: number, extensionId: ExtensionIdentifier): void;