Ejemplo n.º 1
0
 CallStackOperationsImpl(ICallStackVM callStackVM, DebuggerSettings debuggerSettings, CallStackDisplaySettings callStackDisplaySettings, Lazy <ReferenceNavigatorService> referenceNavigatorService, Lazy <DbgCallStackService> dbgCallStackService, Lazy <ShowCodeBreakpointSettingsService> showCodeBreakpointSettingsService, Lazy <DbgCodeBreakpointSerializerService> dbgCodeBreakpointSerializerService, Lazy <DbgCodeBreakpointsService> dbgCodeBreakpointsService, Lazy <DbgManager> dbgManager)
 {
     this.callStackVM                        = callStackVM;
     this.debuggerSettings                   = debuggerSettings;
     this.callStackDisplaySettings           = callStackDisplaySettings;
     this.referenceNavigatorService          = referenceNavigatorService;
     this.dbgCallStackService                = dbgCallStackService;
     this.showCodeBreakpointSettingsService  = showCodeBreakpointSettingsService;
     this.dbgCodeBreakpointSerializerService = dbgCodeBreakpointSerializerService;
     this.dbgCodeBreakpointsService          = dbgCodeBreakpointsService;
     this.dbgManager = dbgManager;
 }
Ejemplo n.º 2
0
 CallStackOperationsImpl(ICallStackVM callStackVM, DebuggerSettings debuggerSettings, CallStackDisplaySettings callStackDisplaySettings, IMessageBoxService messageBoxService, Lazy <ReferenceNavigatorService> referenceNavigatorService, Lazy <DbgCallStackService> dbgCallStackService, Lazy <ShowCodeBreakpointSettingsService> showCodeBreakpointSettingsService, Lazy <DbgCodeBreakpointSerializerService> dbgCodeBreakpointSerializerService, Lazy <DbgCodeBreakpointsService> dbgCodeBreakpointsService, Lazy <DbgManager> dbgManager, Lazy <DbgLanguageService> dbgLanguageService, Lazy <DbgShowNativeCodeService> dbgShowNativeCodeService)
 {
     this.callStackVM                        = callStackVM;
     this.debuggerSettings                   = debuggerSettings;
     this.callStackDisplaySettings           = callStackDisplaySettings;
     this.messageBoxService                  = messageBoxService;
     this.referenceNavigatorService          = referenceNavigatorService;
     this.dbgCallStackService                = dbgCallStackService;
     this.showCodeBreakpointSettingsService  = showCodeBreakpointSettingsService;
     this.dbgCodeBreakpointSerializerService = dbgCodeBreakpointSerializerService;
     this.dbgCodeBreakpointsService          = dbgCodeBreakpointsService;
     this.dbgManager               = dbgManager;
     this.dbgLanguageService       = dbgLanguageService;
     this.dbgShowNativeCodeService = dbgShowNativeCodeService;
 }