Skip to content

Commit 39612b4

Browse files
authored
Add support for hit count breakpoints (#1411)
Fixes #1409
1 parent 102d577 commit 39612b4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

news/3 Code Health/1409.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for [hit count breakpoints](https://code.visualstudio.com/docs/editor/debugging#_advanced-breakpoint-topics) in the experimental debugger.

src/client/debugger/mainV2.ts

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export class PythonDebugger extends DebugSession {
6767
body.supportsEvaluateForHovers = true;
6868
body.supportsModulesRequest = true;
6969
body.supportsValueFormattingOptions = true;
70+
body.supportsHitConditionalBreakpoints = true;
7071
body.supportsSetExpression = true;
7172
body.exceptionBreakpointFilters = [
7273
{

0 commit comments

Comments
 (0)