strictPropertyInitialization, #78168

This commit is contained in:
Rachel Macfarlane
2019-08-05 09:05:11 -07:00
parent 6981de9dee
commit 8efcc47e18
7 changed files with 22 additions and 23 deletions

View File

@@ -64,9 +64,9 @@ export function startup(configuration: IssueReporterConfiguration) {
}
export class IssueReporter extends Disposable {
private environmentService: IEnvironmentService;
private telemetryService: ITelemetryService;
private logService: ILogService;
private environmentService!: IEnvironmentService;
private telemetryService!: ITelemetryService;
private logService!: ILogService;
private readonly issueReporterModel: IssueReporterModel;
private numberOfSearchResultsDisplayed = 0;
private receivedSystemInfo = false;
@@ -74,7 +74,7 @@ export class IssueReporter extends Disposable {
private shouldQueueSearch = false;
private hasBeenSubmitted = false;
private readonly previewButton: Button;
private readonly previewButton!: Button;
constructor(configuration: IssueReporterConfiguration) {
super();