Add log for registering workspace comment provider

This commit is contained in:
Rachel Macfarlane
2018-10-29 15:15:53 -07:00
parent 70b2d7b0ca
commit 36dc10c9f7
4 changed files with 17 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ export interface MainThreadCommandsShape extends IDisposable {
export interface MainThreadCommentsShape extends IDisposable {
$registerDocumentCommentProvider(handle: number): void;
$unregisterDocumentCommentProvider(handle: number): void;
$registerWorkspaceCommentProvider(handle: number): void;
$registerWorkspaceCommentProvider(handle: number, extensionId: string): void;
$unregisterWorkspaceCommentProvider(handle: number): void;
$onDidCommentThreadsChange(handle: number, event: modes.CommentThreadChangedEvent): void;
}