phoityne-vscode-0.0.1.0: app/Phoityne/IO/GUI/VSCode/TH/StepOutArgumentsJSON.hs
{-# LANGUAGE TemplateHaskell #-}
module Phoityne.IO.GUI.VSCode.TH.StepOutArgumentsJSON where
import Data.Aeson.TH
import Phoityne.Utility
-- |
-- Arguments for "stepOut" request.
--
data StepOutArguments =
StepOutArguments {
threadIdStepOutArguments :: Int -- Continue execution for this thread.
} deriving (Show, Read, Eq)
$(deriveJSON defaultOptions { fieldLabelModifier = rdrop (length "StepOutArguments") } ''StepOutArguments)