@@ -34,7 +34,7 @@ import {IStorageService, StorageScope} from 'vs/platform/storage/common/storage'
3434import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService' ;
3535import wbeditorcommon = require( 'vs/workbench/common/editor' ) ;
3636import debug = require( 'vs/workbench/parts/debug/common/debug' ) ;
37- import session = require ( 'vs/workbench/parts/debug/electron-browser/rawDebugSession' ) ;
37+ import { RawDebugSession } from 'vs/workbench/parts/debug/electron-browser/rawDebugSession' ;
3838import model = require( 'vs/workbench/parts/debug/common/debugModel' ) ;
3939import { DebugStringEditorInput } from 'vs/workbench/parts/debug/browser/debugEditorInputs' ;
4040import viewmodel = require( 'vs/workbench/parts/debug/common/debugViewModel' ) ;
@@ -67,7 +67,7 @@ export class DebugService implements debug.IDebugService {
6767
6868 private _state : debug . State ;
6969 private _onDidChangeState : Emitter < debug . State > ;
70- private session : session . RawDebugSession ;
70+ private session : RawDebugSession ;
7171 private model : model . Model ;
7272 private viewModel : viewmodel . ViewModel ;
7373 private configurationManager : ConfigurationManager ;
@@ -621,7 +621,7 @@ export class DebugService implements debug.IDebugService {
621621 this . customTelemetryService = new TelemetryService ( { appender } , this . configurationService ) ;
622622 }
623623
624- this . session = this . instantiationService . createInstance ( session . RawDebugSession , configuration . debugServer , this . configurationManager . adapter , this . customTelemetryService ) ;
624+ this . session = this . instantiationService . createInstance ( RawDebugSession , configuration . debugServer , this . configurationManager . adapter , this . customTelemetryService ) ;
625625 this . registerSessionListeners ( ) ;
626626
627627 return this . session . initialize ( {
0 commit comments