From c05e61509b59c6d64491e27b8238c77be26b1a0f Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 16 Apr 2018 22:57:38 -0700 Subject: [PATCH 1/2] add support for hit counts --- src/client/debugger/mainV2.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/debugger/mainV2.ts b/src/client/debugger/mainV2.ts index 2d8855e7354b..65f78dffa2aa 100644 --- a/src/client/debugger/mainV2.ts +++ b/src/client/debugger/mainV2.ts @@ -67,6 +67,7 @@ export class PythonDebugger extends DebugSession { body.supportsEvaluateForHovers = true; body.supportsModulesRequest = true; body.supportsValueFormattingOptions = true; + body.supportsHitConditionalBreakpoints = true; body.supportsSetExpression = true; body.exceptionBreakpointFilters = [ { From c61599b4d21e57fcb2163abee199441f1afa0bb5 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 16 Apr 2018 22:58:32 -0700 Subject: [PATCH 2/2] :memo: news entry --- news/3 Code Health/1409.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/3 Code Health/1409.md diff --git a/news/3 Code Health/1409.md b/news/3 Code Health/1409.md new file mode 100644 index 000000000000..24e5dd3195ec --- /dev/null +++ b/news/3 Code Health/1409.md @@ -0,0 +1 @@ +Add support for [hit count breakpoints](https://code.visualstudio.com/docs/editor/debugging#_advanced-breakpoint-topics) in the experimental debugger.