mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 08:06:04 +00:00
Mark a few more fields as readonly
This commit is contained in:
parent
51b55e8021
commit
f5b5966c94
1 changed files with 4 additions and 4 deletions
|
@ -185,10 +185,10 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
|
|||
private requestQueue: RequestItem[];
|
||||
private pendingResponses: number;
|
||||
private callbacks: CallbackMap;
|
||||
private _onProjectLanguageServiceStateChanged = new EventEmitter<Proto.ProjectLanguageServiceStateEventBody>();
|
||||
private _onDidBeginInstallTypings = new EventEmitter<Proto.BeginInstallTypesEventBody>();
|
||||
private _onDidEndInstallTypings = new EventEmitter<Proto.EndInstallTypesEventBody>();
|
||||
private _onTypesInstallerInitializationFailed = new EventEmitter<Proto.TypesInstallerInitializationFailedEventBody>();
|
||||
private readonly _onProjectLanguageServiceStateChanged = new EventEmitter<Proto.ProjectLanguageServiceStateEventBody>();
|
||||
private readonly _onDidBeginInstallTypings = new EventEmitter<Proto.BeginInstallTypesEventBody>();
|
||||
private readonly _onDidEndInstallTypings = new EventEmitter<Proto.EndInstallTypesEventBody>();
|
||||
private readonly _onTypesInstallerInitializationFailed = new EventEmitter<Proto.TypesInstallerInitializationFailedEventBody>();
|
||||
|
||||
private _apiVersion: API;
|
||||
private telemetryReporter: TelemetryReporter;
|
||||
|
|
Loading…
Reference in a new issue