Skip to content

Commit

Permalink
Update to 1.65.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitalita authored and ben-clayton committed Apr 10, 2024
1 parent 5857b55 commit 37c744c
Show file tree
Hide file tree
Showing 8 changed files with 157 additions and 43 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

cmake_minimum_required(VERSION 3.13)

project(cppdap VERSION 1.59.0 LANGUAGES CXX C)
project(cppdap VERSION 1.65.0 LANGUAGES CXX C)

set (CMAKE_CXX_STANDARD 11)

Expand Down
6 changes: 6 additions & 0 deletions fuzz/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"allThreadsStopped"
"allowPartial"
"always"
"appliesTo"
"areas"
"args"
"argsCanBeInterpretedByShell"
Expand All @@ -29,6 +30,7 @@
"breakMode"
"breakpoint"
"breakpointLocations"
"breakpointModes"
"breakpoints"
"bytesWritten"
"canPersist"
Expand Down Expand Up @@ -98,6 +100,7 @@
"expensive"
"expression"
"external"
"failed"
"field"
"file"
"filter"
Expand Down Expand Up @@ -138,6 +141,7 @@
"integrated"
"interface"
"internal"
"invalid"
"invalidated"
"isLocalProcess"
"isOptimized"
Expand All @@ -163,6 +167,7 @@
"message"
"method"
"mimeType"
"mode"
"module"
"moduleCount"
"moduleId"
Expand Down Expand Up @@ -190,6 +195,7 @@
"path"
"pathFormat"
"pause"
"pending"
"percentage"
"pointerSize"
"presentationHint"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/fuzz.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// Generated with protocol_gen.go -- do not edit this file.
// go run scripts/protocol_gen/protocol_gen.go
//
// DAP version 1.59.0
// DAP version 1.65.0

#ifndef dap_fuzzer_h
#define dap_fuzzer_h
Expand Down
161 changes: 126 additions & 35 deletions include/dap/protocol.h

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/protocol_events.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// Generated with protocol_gen.go -- do not edit this file.
// go run scripts/protocol_gen/protocol_gen.go
//
// DAP version 1.59.0
// DAP version 1.65.0

#include "dap/protocol.h"

Expand Down
3 changes: 2 additions & 1 deletion src/protocol_requests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// Generated with protocol_gen.go -- do not edit this file.
// go run scripts/protocol_gen/protocol_gen.go
//
// DAP version 1.59.0
// DAP version 1.65.0

#include "dap/protocol.h"

Expand Down Expand Up @@ -55,6 +55,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(ContinueRequest,
DAP_IMPLEMENT_STRUCT_TYPEINFO(DataBreakpointInfoRequest,
"dataBreakpointInfo",
DAP_FIELD(frameId, "frameId"),
DAP_FIELD(mode, "mode"),
DAP_FIELD(name, "name"),
DAP_FIELD(variablesReference,
"variablesReference"));
Expand Down
5 changes: 4 additions & 1 deletion src/protocol_response.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// Generated with protocol_gen.go -- do not edit this file.
// go run scripts/protocol_gen/protocol_gen.go
//
// DAP version 1.59.0
// DAP version 1.65.0

#include "dap/protocol.h"

Expand Down Expand Up @@ -83,6 +83,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
InitializeResponse,
"",
DAP_FIELD(additionalModuleColumns, "additionalModuleColumns"),
DAP_FIELD(breakpointModes, "breakpointModes"),
DAP_FIELD(completionTriggerCharacters, "completionTriggerCharacters"),
DAP_FIELD(exceptionBreakpointFilters, "exceptionBreakpointFilters"),
DAP_FIELD(supportSuspendDebuggee, "supportSuspendDebuggee"),
Expand Down Expand Up @@ -177,6 +178,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(SetExceptionBreakpointsResponse,
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetExpressionResponse,
"",
DAP_FIELD(indexedVariables, "indexedVariables"),
DAP_FIELD(memoryReference, "memoryReference"),
DAP_FIELD(namedVariables, "namedVariables"),
DAP_FIELD(presentationHint, "presentationHint"),
DAP_FIELD(type, "type"),
Expand All @@ -195,6 +197,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(SetInstructionBreakpointsResponse,
DAP_IMPLEMENT_STRUCT_TYPEINFO(SetVariableResponse,
"",
DAP_FIELD(indexedVariables, "indexedVariables"),
DAP_FIELD(memoryReference, "memoryReference"),
DAP_FIELD(namedVariables, "namedVariables"),
DAP_FIELD(type, "type"),
DAP_FIELD(value, "value"),
Expand Down
19 changes: 16 additions & 3 deletions src/protocol_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// Generated with protocol_gen.go -- do not edit this file.
// go run scripts/protocol_gen/protocol_gen.go
//
// DAP version 1.59.0
// DAP version 1.65.0

#include "dap/protocol.h"

Expand Down Expand Up @@ -48,6 +48,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(Breakpoint,
DAP_FIELD(line, "line"),
DAP_FIELD(message, "message"),
DAP_FIELD(offset, "offset"),
DAP_FIELD(reason, "reason"),
DAP_FIELD(source, "source"),
DAP_FIELD(verified, "verified"));

Expand All @@ -66,6 +67,13 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(ColumnDescriptor,
DAP_FIELD(type, "type"),
DAP_FIELD(width, "width"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(BreakpointMode,
"",
DAP_FIELD(appliesTo, "appliesTo"),
DAP_FIELD(description, "description"),
DAP_FIELD(label, "label"),
DAP_FIELD(mode, "mode"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(ExceptionBreakpointsFilter,
"",
DAP_FIELD(conditionDescription,
Expand All @@ -81,6 +89,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(
Capabilities,
"",
DAP_FIELD(additionalModuleColumns, "additionalModuleColumns"),
DAP_FIELD(breakpointModes, "breakpointModes"),
DAP_FIELD(completionTriggerCharacters, "completionTriggerCharacters"),
DAP_FIELD(exceptionBreakpointFilters, "exceptionBreakpointFilters"),
DAP_FIELD(supportSuspendDebuggee, "supportSuspendDebuggee"),
Expand Down Expand Up @@ -148,6 +157,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(DisassembledInstruction,
DAP_FIELD(instructionBytes, "instructionBytes"),
DAP_FIELD(line, "line"),
DAP_FIELD(location, "location"),
DAP_FIELD(presentationHint, "presentationHint"),
DAP_FIELD(symbol, "symbol"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(Message,
Expand Down Expand Up @@ -223,7 +233,8 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(SourceBreakpoint,
DAP_FIELD(condition, "condition"),
DAP_FIELD(hitCondition, "hitCondition"),
DAP_FIELD(line, "line"),
DAP_FIELD(logMessage, "logMessage"));
DAP_FIELD(logMessage, "logMessage"),
DAP_FIELD(mode, "mode"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(DataBreakpoint,
"",
Expand All @@ -245,7 +256,8 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(ExceptionOptions,
DAP_IMPLEMENT_STRUCT_TYPEINFO(ExceptionFilterOptions,
"",
DAP_FIELD(condition, "condition"),
DAP_FIELD(filterId, "filterId"));
DAP_FIELD(filterId, "filterId"),
DAP_FIELD(mode, "mode"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(FunctionBreakpoint,
"",
Expand All @@ -259,6 +271,7 @@ DAP_IMPLEMENT_STRUCT_TYPEINFO(InstructionBreakpoint,
DAP_FIELD(hitCondition, "hitCondition"),
DAP_FIELD(instructionReference,
"instructionReference"),
DAP_FIELD(mode, "mode"),
DAP_FIELD(offset, "offset"));

DAP_IMPLEMENT_STRUCT_TYPEINFO(StackFrame,
Expand Down

0 comments on commit 37c744c

Please sign in to comment.