mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Updating DAP schema (#785)
This commit is contained in:
parent
5f18549e34
commit
f10f95a2a3
2 changed files with 14 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
upstream: https://github.com/Microsoft/vscode-debugadapter-node/raw/master/debugProtocol.json
|
||||
revision: 3e31dadc438602f7f36c22f2adea152516ab7ba7
|
||||
checksum: a32ba0936fcebf57bfb11abb20b4a41d
|
||||
downloaded: 2018-07-18 00:35:00 (UTC)
|
||||
revision: 1b9a3e83656ebb88f4560bb6d700f9ac64b697ba
|
||||
checksum: 55a768cf61fe0c05c8af6c680b56154a
|
||||
downloaded: 2018-09-06 14:00:00 (UTC)
|
||||
|
|
|
|||
|
|
@ -784,6 +784,10 @@
|
|||
"type": "object",
|
||||
"description": "Arguments for 'disconnect' request.",
|
||||
"properties": {
|
||||
"restart": {
|
||||
"type": "boolean",
|
||||
"description": "A value of true indicates that this 'disconnect' request is part of a restart sequence."
|
||||
},
|
||||
"terminateDebuggee": {
|
||||
"type": "boolean",
|
||||
"description": "Indicates whether the debuggee should be terminated when the debugger is disconnected.\nIf unspecified, the debug adapter is free to do whatever it thinks is best.\nA client can only rely on this attribute being properly honored if a debug adapter returns true for the 'supportTerminateDebuggee' capability."
|
||||
|
|
@ -815,7 +819,13 @@
|
|||
},
|
||||
"TerminateArguments": {
|
||||
"type": "object",
|
||||
"description": "Arguments for 'terminate' request."
|
||||
"description": "Arguments for 'terminate' request.",
|
||||
"properties": {
|
||||
"restart": {
|
||||
"type": "boolean",
|
||||
"description": "A value of true indicates that this 'terminate' request is part of a restart sequence."
|
||||
}
|
||||
}
|
||||
},
|
||||
"TerminateResponse": {
|
||||
"allOf": [ { "$ref": "#/definitions/Response" }, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue