public DebuggerAppSettingsPage(DebuggerSettingsImpl debuggerSettingsImpl, Lazy <DbgLanguageService2> dbgLanguageService)
 {
     _global_settings        = debuggerSettingsImpl;
     this.dbgLanguageService = dbgLanguageService;
     Settings = debuggerSettingsImpl.Clone();
 }
 DebuggerAppSettingsPageProvider(DebuggerSettingsImpl debuggerSettingsImpl, Lazy <DbgLanguageService2> dbgLanguageService)
 {
     this.debuggerSettingsImpl = debuggerSettingsImpl;
     this.dbgLanguageService   = dbgLanguageService;
 }
Exemple #3
0
 HexadecimalDisplayLocalsCtxMenuCommand(Lazy <ITheDebugger> theDebugger, Lazy <ILocalsContent> localsContent, DebuggerSettingsImpl debuggerSettings)
     : base(theDebugger, localsContent)
 {
     this.debuggerSettings = debuggerSettings;
 }
Exemple #4
0
 HexadecimalDisplayThreadsCtxMenuCommand(Lazy <ITheDebugger> theDebugger, Lazy <IThreadsContent> threadsContent, DebuggerSettingsImpl debuggerSettings)
     : base(theDebugger, threadsContent)
 {
     this.debuggerSettings = debuggerSettings;
 }
Exemple #5
0
 HexadecimalDisplayModulesCtxMenuCommand(Lazy <ITheDebugger> theDebugger, Lazy <IModulesContent> modulesContent, DebuggerSettingsImpl debuggerSettings)
     : base(theDebugger, modulesContent)
 {
     this.debuggerSettings = debuggerSettings;
 }
Exemple #6
0
 HexadecimalDisplayCallStackCtxMenuCommand(Lazy <ITheDebugger> theDebugger, Lazy <ICallStackContent> callStackContent, DebuggerSettingsImpl debuggerSettings)
     : base(theDebugger, callStackContent)
 {
     this.debuggerSettings = debuggerSettings;
 }