Merge pull request #59713 from spahnke/initialize-scheme

[StandaloneEditor] Initialize static field 'SCHEME'
This commit is contained in:
Peng Lyu 2018-10-01 14:03:56 -07:00 committed by GitHub
commit 735f6a7bb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -493,7 +493,7 @@ export class SimpleWorkspaceContextService implements IWorkspaceContextService {
public _serviceBrand: any;
private static SCHEME: 'inmemory';
private static SCHEME = 'inmemory';
private readonly _onDidChangeWorkspaceName: Emitter<void> = new Emitter<void>();
public readonly onDidChangeWorkspaceName: Event<void> = this._onDidChangeWorkspaceName.event;