Custom DAP events can be detected using https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent. This API allows an lldb python script to send events to the DAP client to allow extensions to handle these custom events.
7 lines
114 B
C
7 lines
114 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
printf("example\n"); // breakpoint 1
|
|
return 0;
|
|
}
|