thread id is still updatable

This commit is contained in:
Peng Lyu
2019-05-21 14:56:43 -07:00
parent fd9b74985f
commit b8c1a34885

View File

@@ -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!;
}