mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
strictPropertyInitialization, #78168
This commit is contained in:
@@ -253,13 +253,13 @@ export class ExtHostCommentThread implements vscode.CommentThread {
|
||||
return this._range;
|
||||
}
|
||||
|
||||
private _label: string;
|
||||
private _label: string | undefined;
|
||||
|
||||
get label(): string {
|
||||
get label(): string | undefined {
|
||||
return this._label;
|
||||
}
|
||||
|
||||
set label(label: string) {
|
||||
set label(label: string | undefined) {
|
||||
this._label = label;
|
||||
this._onDidUpdateCommentThread.fire();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user