File tree Expand file tree Collapse file tree
src/vs/workbench/services/extensions/worker Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import { ExtHostExtensionService } from 'vs/workbench/api/worker/extHostExtensio
2121import { ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation' ;
2222import { ILogService } from 'vs/platform/log/common/log' ;
2323import { ExtHostLogService } from 'vs/workbench/api/worker/extHostLogService' ;
24+ import { IExtHostTunnelService } from 'vs/workbench/api/common/extHostTunnelService' ;
2425
2526// register singleton services
2627registerSingleton ( ILogService , ExtHostLogService ) ;
@@ -52,6 +53,5 @@ function NotImplementedProxy<T>(name: ServiceIdentifier<T>): { new(): T } {
5253registerSingleton ( IExtHostTerminalService , WorkerExtHostTerminalService ) ;
5354registerSingleton ( IExtHostTask , WorkerExtHostTask ) ;
5455registerSingleton ( IExtHostDebugService , WorkerExtHostDebugService ) ;
55- registerSingleton ( IExtensionStoragePaths , class extends NotImplementedProxy ( IExtensionStoragePaths ) {
56- whenReady = Promise . resolve ( ) ;
57- } ) ;
56+ registerSingleton ( IExtensionStoragePaths , class extends NotImplementedProxy ( IExtensionStoragePaths ) { whenReady = Promise . resolve ( ) ; } ) ;
57+ registerSingleton ( IExtHostTunnelService , class extends NotImplementedProxy ( IExtHostTunnelService ) { } ) ;
You can’t perform that action at this time.
0 commit comments