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