Mark most private static constants as private static readonly

This commit is contained in:
Matt Bierner
2017-11-20 15:18:52 -08:00
parent 6663fcdebb
commit d8e926be97
162 changed files with 363 additions and 363 deletions

View File

@@ -11,7 +11,7 @@ import { extHostNamedCustomer } from 'vs/workbench/api/electron-browser/extHostC
@extHostNamedCustomer(MainContext.MainThreadTelemetry)
export class MainThreadTelemetry implements MainThreadTelemetryShape {
private static _name = 'pluginHostTelemetry';
private static readonly _name = 'pluginHostTelemetry';
constructor(
extHostContext: IExtHostContext,