From b8c1a34885abda380f56fe564dc5ea797dad48cb Mon Sep 17 00:00:00 2001 From: Peng Lyu Date: Tue, 21 May 2019 14:56:43 -0700 Subject: [PATCH] thread id is still updatable --- src/vs/workbench/api/common/extHostComments.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vs/workbench/api/common/extHostComments.ts b/src/vs/workbench/api/common/extHostComments.ts index 5411bbc9f77..de6aa82e298 100644 --- a/src/vs/workbench/api/common/extHostComments.ts +++ b/src/vs/workbench/api/common/extHostComments.ts @@ -451,6 +451,10 @@ export class ExtHostCommentThread implements vscode.CommentThread { readonly handle = ExtHostCommentThread._handlePool++; public commentHandle: number = 0; + set threadId(id: string) { + this._id = id; + } + get threadId(): string { return this._id!; }