From da7e6f15214d6024200d3b589879c00ff0955692 Mon Sep 17 00:00:00 2001 From: Rodrigo Mesquita Date: Tue, 8 Sep 2026 16:34:35 +0100 Subject: [PATCH] dap: stepIn/Out/Back singleThread is a Maybe Fixes protocol conformance --- src/DAP/Types.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DAP/Types.hs b/src/DAP/Types.hs index 1053b50..b21f9b8 100644 --- a/src/DAP/Types.hs +++ b/src/DAP/Types.hs @@ -3363,7 +3363,7 @@ data StepInArguments -- Specifies the thread for which to resume execution for one step-into (of -- the given granularity). -- - , stepInArgumentsSingleThread :: Bool + , stepInArgumentsSingleThread :: Maybe Bool -- ^ -- If this flag is true, all other suspended threads are not resumed. -- @@ -3385,7 +3385,7 @@ data StepOutArguments -- Specifies the thread for which to resume execution for one step-out (of the -- given granularity). -- - , stepOutArgumentsSingleThread :: Bool + , stepOutArgumentsSingleThread :: Maybe Bool -- ^ -- If this flag is true, all other suspended threads are not resumed. -- @@ -3403,7 +3403,7 @@ data StepBackArguments -- Specifies the thread for which to resume execution for one step backwards -- (of the given granularity). -- - , stepBackArgumentsSingleThread :: Bool + , stepBackArgumentsSingleThread :: Maybe Bool -- ^ -- If this flag is true, all other suspended threads are not resumed. --