Make context the first arugment to constructors

This commit is contained in:
Matt Bierner
2020-08-27 12:49:19 -07:00
parent 9b117bbb1d
commit 08be66406f
4 changed files with 6 additions and 6 deletions

View File

@@ -50,9 +50,9 @@ export class MainThreadCustomEditors extends Disposable implements extHostProtoc
private readonly _editorProviders = new Map<string, IDisposable>();
constructor(
context: extHostProtocol.IExtHostContext,
private readonly mainThreadWebview: MainThreadWebviews,
private readonly mainThreadWebviewPanels: MainThreadWebviewPanels,
context: extHostProtocol.IExtHostContext,
@IExtensionService extensionService: IExtensionService,
@IWorkingCopyService workingCopyService: IWorkingCopyService,
@IWorkingCopyFileService workingCopyFileService: IWorkingCopyFileService,