Update DAP protocol to 1.41.0
Update the script to include the DAP version in the file headers. Remove http file caching. Was never used.
This commit is contained in:
@@ -14,6 +14,8 @@
|
||||
|
||||
// Generated with protocol_gen.go -- do not edit this file.
|
||||
// go run scripts/protocol_gen/protocol_gen.go
|
||||
//
|
||||
// DAP version 1.41.0
|
||||
|
||||
#include "dap/protocol.h"
|
||||
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
|
||||
// Generated with protocol_gen.go -- do not edit this file.
|
||||
// go run scripts/protocol_gen/protocol_gen.go
|
||||
//
|
||||
// DAP version 1.41.0
|
||||
|
||||
#include "dap/protocol.h"
|
||||
|
||||
@@ -157,6 +159,7 @@ NextRequest::NextRequest() = default;
|
||||
NextRequest::~NextRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(NextRequest,
|
||||
"next",
|
||||
DAP_FIELD(granularity, "granularity"),
|
||||
DAP_FIELD(threadId, "threadId"));
|
||||
|
||||
PauseRequest::PauseRequest() = default;
|
||||
@@ -242,6 +245,12 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(SetFunctionBreakpointsRequest,
|
||||
"setFunctionBreakpoints",
|
||||
DAP_FIELD(breakpoints, "breakpoints"));
|
||||
|
||||
SetInstructionBreakpointsRequest::SetInstructionBreakpointsRequest() = default;
|
||||
SetInstructionBreakpointsRequest::~SetInstructionBreakpointsRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetInstructionBreakpointsRequest,
|
||||
"setInstructionBreakpoints",
|
||||
DAP_FIELD(breakpoints, "breakpoints"));
|
||||
|
||||
SetVariableRequest::SetVariableRequest() = default;
|
||||
SetVariableRequest::~SetVariableRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetVariableRequest,
|
||||
@@ -272,12 +281,14 @@ StepBackRequest::StepBackRequest() = default;
|
||||
StepBackRequest::~StepBackRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(StepBackRequest,
|
||||
"stepBack",
|
||||
DAP_FIELD(granularity, "granularity"),
|
||||
DAP_FIELD(threadId, "threadId"));
|
||||
|
||||
StepInRequest::StepInRequest() = default;
|
||||
StepInRequest::~StepInRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(StepInRequest,
|
||||
"stepIn",
|
||||
DAP_FIELD(granularity, "granularity"),
|
||||
DAP_FIELD(targetId, "targetId"),
|
||||
DAP_FIELD(threadId, "threadId"));
|
||||
|
||||
@@ -291,6 +302,7 @@ StepOutRequest::StepOutRequest() = default;
|
||||
StepOutRequest::~StepOutRequest() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(StepOutRequest,
|
||||
"stepOut",
|
||||
DAP_FIELD(granularity, "granularity"),
|
||||
DAP_FIELD(threadId, "threadId"));
|
||||
|
||||
TerminateRequest::TerminateRequest() = default;
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
|
||||
// Generated with protocol_gen.go -- do not edit this file.
|
||||
// go run scripts/protocol_gen/protocol_gen.go
|
||||
//
|
||||
// DAP version 1.41.0
|
||||
|
||||
#include "dap/protocol.h"
|
||||
|
||||
@@ -134,6 +136,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
|
||||
DAP_FIELD(supportsGotoTargetsRequest, "supportsGotoTargetsRequest"),
|
||||
DAP_FIELD(supportsHitConditionalBreakpoints,
|
||||
"supportsHitConditionalBreakpoints"),
|
||||
DAP_FIELD(supportsInstructionBreakpoints, "supportsInstructionBreakpoints"),
|
||||
DAP_FIELD(supportsLoadedSourcesRequest, "supportsLoadedSourcesRequest"),
|
||||
DAP_FIELD(supportsLogPoints, "supportsLogPoints"),
|
||||
DAP_FIELD(supportsModulesRequest, "supportsModulesRequest"),
|
||||
@@ -144,6 +147,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
|
||||
DAP_FIELD(supportsSetVariable, "supportsSetVariable"),
|
||||
DAP_FIELD(supportsStepBack, "supportsStepBack"),
|
||||
DAP_FIELD(supportsStepInTargetsRequest, "supportsStepInTargetsRequest"),
|
||||
DAP_FIELD(supportsSteppingGranularity, "supportsSteppingGranularity"),
|
||||
DAP_FIELD(supportsTerminateRequest, "supportsTerminateRequest"),
|
||||
DAP_FIELD(supportsTerminateThreadsRequest,
|
||||
"supportsTerminateThreadsRequest"),
|
||||
@@ -240,6 +244,14 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(SetFunctionBreakpointsResponse,
|
||||
"",
|
||||
DAP_FIELD(breakpoints, "breakpoints"));
|
||||
|
||||
SetInstructionBreakpointsResponse::SetInstructionBreakpointsResponse() =
|
||||
default;
|
||||
SetInstructionBreakpointsResponse::~SetInstructionBreakpointsResponse() =
|
||||
default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetInstructionBreakpointsResponse,
|
||||
"",
|
||||
DAP_FIELD(breakpoints, "breakpoints"));
|
||||
|
||||
SetVariableResponse::SetVariableResponse() = default;
|
||||
SetVariableResponse::~SetVariableResponse() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetVariableResponse,
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
|
||||
// Generated with protocol_gen.go -- do not edit this file.
|
||||
// go run scripts/protocol_gen/protocol_gen.go
|
||||
//
|
||||
// DAP version 1.41.0
|
||||
|
||||
#include "dap/protocol.h"
|
||||
|
||||
@@ -51,8 +53,11 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(Breakpoint,
|
||||
DAP_FIELD(endColumn, "endColumn"),
|
||||
DAP_FIELD(endLine, "endLine"),
|
||||
DAP_FIELD(id, "id"),
|
||||
DAP_FIELD(instructionReference,
|
||||
"instructionReference"),
|
||||
DAP_FIELD(line, "line"),
|
||||
DAP_FIELD(message, "message"),
|
||||
DAP_FIELD(offset, "offset"),
|
||||
DAP_FIELD(source, "source"),
|
||||
DAP_FIELD(verified, "verified"));
|
||||
|
||||
@@ -112,6 +117,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
|
||||
DAP_FIELD(supportsGotoTargetsRequest, "supportsGotoTargetsRequest"),
|
||||
DAP_FIELD(supportsHitConditionalBreakpoints,
|
||||
"supportsHitConditionalBreakpoints"),
|
||||
DAP_FIELD(supportsInstructionBreakpoints, "supportsInstructionBreakpoints"),
|
||||
DAP_FIELD(supportsLoadedSourcesRequest, "supportsLoadedSourcesRequest"),
|
||||
DAP_FIELD(supportsLogPoints, "supportsLogPoints"),
|
||||
DAP_FIELD(supportsModulesRequest, "supportsModulesRequest"),
|
||||
@@ -122,6 +128,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
|
||||
DAP_FIELD(supportsSetVariable, "supportsSetVariable"),
|
||||
DAP_FIELD(supportsStepBack, "supportsStepBack"),
|
||||
DAP_FIELD(supportsStepInTargetsRequest, "supportsStepInTargetsRequest"),
|
||||
DAP_FIELD(supportsSteppingGranularity, "supportsSteppingGranularity"),
|
||||
DAP_FIELD(supportsTerminateRequest, "supportsTerminateRequest"),
|
||||
DAP_FIELD(supportsTerminateThreadsRequest,
|
||||
"supportsTerminateThreadsRequest"),
|
||||
@@ -230,6 +237,10 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(Module,
|
||||
DAP_FIELD(symbolStatus, "symbolStatus"),
|
||||
DAP_FIELD(version, "version"));
|
||||
|
||||
SteppingGranularity::SteppingGranularity() = default;
|
||||
SteppingGranularity::~SteppingGranularity() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(SteppingGranularity, "");
|
||||
|
||||
Scope::Scope() = default;
|
||||
Scope::~Scope() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(Scope,
|
||||
@@ -288,6 +299,16 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(FunctionBreakpoint,
|
||||
DAP_FIELD(hitCondition, "hitCondition"),
|
||||
DAP_FIELD(name, "name"));
|
||||
|
||||
InstructionBreakpoint::InstructionBreakpoint() = default;
|
||||
InstructionBreakpoint::~InstructionBreakpoint() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(InstructionBreakpoint,
|
||||
"",
|
||||
DAP_FIELD(condition, "condition"),
|
||||
DAP_FIELD(hitCondition, "hitCondition"),
|
||||
DAP_FIELD(instructionReference,
|
||||
"instructionReference"),
|
||||
DAP_FIELD(offset, "offset"));
|
||||
|
||||
StackFrame::StackFrame() = default;
|
||||
StackFrame::~StackFrame() = default;
|
||||
DAP_IMPLEMENT_STRUCT_TYPEINFO(StackFrame,
|
||||
|
||||
Reference in New Issue
Block a user