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

@@ -20,7 +20,7 @@ import { IRange } from 'vs/editor/common/core/range';
export class TextEditorDecorationType implements vscode.TextEditorDecorationType {
private static _Keys = new IdGenerator('TextEditorDecorationType');
private static readonly _Keys = new IdGenerator('TextEditorDecorationType');
private _proxy: MainThreadEditorsShape;
public key: string;