Skip to content

Commit

Permalink
debug: introduce debug type context
Browse files Browse the repository at this point in the history
fixes #19608
  • Loading branch information
isidorn committed Feb 8, 2017
1 parent 1dc2cde commit aa2c164
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/vs/workbench/parts/debug/common/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/edi
export const VIEWLET_ID = 'workbench.view.debug';
export const REPL_ID = 'workbench.panel.repl';
export const DEBUG_SERVICE_ID = 'debugService';
export const CONTEXT_DEBUG_TYPE = new RawContextKey<string>('debugType', undefined);
export const CONTEXT_IN_DEBUG_MODE = new RawContextKey<boolean>('inDebugMode', false);
export const CONTEXT_NOT_IN_DEBUG_MODE: ContextKeyExpr = CONTEXT_IN_DEBUG_MODE.toNegated();
export const CONTEXT_IN_DEBUG_REPL = new RawContextKey<boolean>('inDebugRepl', false);
Expand Down
4 changes: 4 additions & 0 deletions src/vs/workbench/parts/debug/electron-browser/debugService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export class DebugService implements debug.IDebugService {
private toDispose: lifecycle.IDisposable[];
private toDisposeOnSessionEnd: Map<string, lifecycle.IDisposable[]>;
private inDebugMode: IContextKey<boolean>;
private debugType: IContextKey<string>;
private breakpointsToSendOnResourceSaved: Set<string>;

constructor(
Expand Down Expand Up @@ -100,6 +101,7 @@ export class DebugService implements debug.IDebugService {

this.configurationManager = this.instantiationService.createInstance(ConfigurationManager);
this.inDebugMode = debug.CONTEXT_IN_DEBUG_MODE.bindTo(contextKeyService);
this.debugType = debug.CONTEXT_DEBUG_TYPE.bindTo(contextKeyService);

this.model = new Model(this.loadBreakpoints(), this.storageService.getBoolean(DEBUG_BREAKPOINTS_ACTIVATED_KEY, StorageScope.WORKSPACE, true), this.loadFunctionBreakpoints(),
this.loadExceptionBreakpoints(), this.loadWatchExpressions());
Expand Down Expand Up @@ -713,6 +715,7 @@ export class DebugService implements debug.IDebugService {
}
this.extensionService.activateByEvent(`onDebug:${configuration.type}`).done(null, errors.onUnexpectedError);
this.inDebugMode.set(true);
this.debugType.set(configuration.type);
if (this.model.getProcesses().length > 1) {
this.viewModel.setMultiProcessView(true);
}
Expand Down Expand Up @@ -874,6 +877,7 @@ export class DebugService implements debug.IDebugService {
this.model.updateBreakpoints(data);

this.inDebugMode.reset();
this.debugType.reset();
this.viewModel.setMultiProcessView(false);

if (this.partService.isVisible(Parts.SIDEBAR_PART) && this.configurationService.getConfiguration<debug.IDebugConfiguration>('debug').openExplorerOnEnd) {
Expand Down

0 comments on commit aa2c164

Please sign in to comment.