Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/DAP/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
--
Expand All @@ -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.
--
Expand All @@ -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.
--
Expand Down
Loading