-
Notifications
You must be signed in to change notification settings - Fork 154
Closed
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
Refs: microsoft/vscode#104453 which requests the ability to set exception breakpoints which are caught conditionally.
I think the implementation can be straightforward from a DAP perspective, with the addition of a new switch in the ExceptionBreakpointsFilter
export interface ExceptionBreakpointsFilter {
/**
* Whether the user can set a condition for this exception.
*/
supportsCondition?: boolean;I think the logical place would be in the exceptionOptions, however it doesn't look like VS Code uses this property and it hasn't been referenced or updated in this repo was initially pushed to Github. Would this be a reason to start using it?
export interface ExceptionOptions {
/**
* An optional expression for conditional breakpoints. It may only be
* present 'supportsCondition' was given in the breakpoint filter.
*/
condition?: string;cc @isidorn
rrmistry and firelizzard18
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality