From da32ac1632acd0472862493f7090f125e0c563eb Mon Sep 17 00:00:00 2001 From: Rodrigo Mesquita Date: Wed, 20 May 2026 10:37:02 +0100 Subject: [PATCH] dap: exceptionOptions should allow a list Makes SetExceptionBreakpointArguments.exceptionOptions conform to DAP correctly Fixes #36 --- 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 de9dc69..00cc5a1 100644 --- a/src/DAP/Types.hs +++ b/src/DAP/Types.hs @@ -3172,7 +3172,7 @@ data SetExceptionBreakpointsArguments -- corresponding capability `supportsExceptionFilterOptions` is true. The -- `filter` and `filterOptions` sets are additive. -- - , setExceptionBreakpointsArgumentsExceptionOptions :: Maybe ExceptionOptions + , setExceptionBreakpointsArgumentsExceptionOptions :: Maybe [ExceptionOptions] -- ^ -- Configuration options for selected exceptions. -- The attribute is only honored by a debug adapter if the corresponding