Skip to content

Commit

Permalink
fix: clarify ContinuedEvent.allThreadsContinued (#514)
Browse files Browse the repository at this point in the history
Fixes #513
  • Loading branch information
connor4312 authored Nov 12, 2024
1 parent 155d2bb commit 7743416
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ sectionid: changelog

* 1.70.x
* Clarify how `StackTraceArguments.format` applies
* Clarify the default behavior of `ContinuedEvent.allThreadsContinued`

* 1.69.x
* Clarify the flow diagram to start a debug session
Expand Down
4 changes: 2 additions & 2 deletions debugAdapterProtocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
},
"allThreadsContinued": {
"type": "boolean",
"description": "If `allThreadsContinued` is true, a debug adapter can announce that all threads have continued."
"description": "If omitted or set to `true`, this event signals to the client that all threads have been resumed. The value `false` indicates that not all threads were resumed."
}
},
"required": [ "threadId" ]
Expand Down Expand Up @@ -1673,7 +1673,7 @@
"properties": {
"allThreadsContinued": {
"type": "boolean",
"description": "The value true (or a missing property) signals to the client that all threads have been resumed. The value false indicates that not all threads were resumed."
"description": "If omitted or set to `true`, this response signals to the client that all threads have been resumed. The value `false` indicates that not all threads were resumed."
}
}
}
Expand Down

0 comments on commit 7743416

Please sign in to comment.