From b6170d61e8305801961cbaf1d7b9450d9759b290 Mon Sep 17 00:00:00 2001 From: Rodrigo Mesquita Date: Fri, 28 Aug 2026 15:28:28 +0100 Subject: [PATCH] continueArgumentsSingleThread is optional Fixes ContinueArguments to follow the specification --- src/DAP/Types.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DAP/Types.hs b/src/DAP/Types.hs index 00cc5a1..1053b50 100644 --- a/src/DAP/Types.hs +++ b/src/DAP/Types.hs @@ -3325,7 +3325,7 @@ data ContinueArguments -- execution (see `supportsSingleThreadExecutionRequests`) and the argument -- `singleThread` is true, only the thread with this ID is resumed. -- - , continueArgumentsSingleThread :: Bool + , continueArgumentsSingleThread :: Maybe Bool -- ^ -- If this flag is true, execution is resumed only for the thread with given -- `threadId`.