phoityne-vscode-0.0.7.0: app/Phoityne/IO/GUI/VSCode/TH/VariableJSON.hs
{-# LANGUAGE TemplateHaskell #-}
module Phoityne.IO.GUI.VSCode.TH.VariableJSON where
import Data.Aeson.TH
import Phoityne.Utility
-- |
-- A Variable is a name/value pair.
-- If the value is structured (has children), a handle is provided to retrieve the children with the VariablesRequest.
--
data Variable =
Variable {
nameVariable :: String -- The variable's name
, typeVariable :: String -- he variable's type.
, valueVariable :: String -- The variable's value. For structured objects this can be a multi line text, e.g. for a function the body of a function.
, variablesReferenceVariable :: Int -- If variablesReference is > 0, the variable is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.
} deriving (Show, Read, Eq)
$(deriveJSON defaultOptions { fieldLabelModifier = rdrop (length "Variable") } ''Variable)