Update comment range

This commit is contained in:
Peng Lyu
2019-03-01 10:06:37 -08:00
parent 804373ac4d
commit 15d782f4a4
5 changed files with 47 additions and 1 deletions

View File

@@ -295,6 +295,11 @@ export class ExtHostCommentThread implements vscode.CommentThread {
return this._resource;
}
set range(range: vscode.Range) {
this._range = range;
this._proxy.$updateCommentThreadRange(this._commentControlHandle, this.handle, extHostTypeConverter.Range.from(this._range));
}
get range(): vscode.Range {
return this._range;
}