You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/debug/common/debug.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,7 @@ export const CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED = new RawContextKey<
89
89
exportconstCONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED=newRawContextKey<boolean>('breakWhenValueIsReadSupported',false,{type: 'boolean',description: nls.localize('breakWhenValueIsReadSupported',"True when the focused breakpoint supports to break when value is read.")});
90
90
exportconstCONTEXT_TERMINATE_DEBUGGEE_SUPPORTED=newRawContextKey<boolean>('terminateDebuggeeSupported',false,{type: 'boolean',description: nls.localize('terminateDebuggeeSupported',"True when the focused session supports the terminate debuggee capability.")});
91
91
exportconstCONTEXT_SUSPEND_DEBUGGEE_SUPPORTED=newRawContextKey<boolean>('suspendDebuggeeSupported',false,{type: 'boolean',description: nls.localize('suspendDebuggeeSupported',"True when the focused session supports the suspend debuggee capability.")});
92
+
exportconstCONTEXT_TERMINATE_THREADS_SUPPORTED=newRawContextKey<boolean>('terminateThreadsSupported',false,{type: 'boolean',description: nls.localize('terminateThreadsSupported',"True when the focused session supports the terminate threads capability.")});
92
93
exportconstCONTEXT_VARIABLE_EVALUATE_NAME_PRESENT=newRawContextKey<boolean>('variableEvaluateNamePresent',false,{type: 'boolean',description: nls.localize('variableEvaluateNamePresent',"True when the focused variable has an 'evalauteName' field set.")});
93
94
exportconstCONTEXT_VARIABLE_IS_READONLY=newRawContextKey<boolean>('variableIsReadonly',false,{type: 'boolean',description: nls.localize('variableIsReadonly',"True when the focused variable is read-only.")});
94
95
exportconstCONTEXT_VARIABLE_VALUE=newRawContextKey<boolean>('variableValue',false,{type: 'string',description: nls.localize('variableValue',"Value of the variable, present for debug visualization clauses.")});
0 commit comments