haskell-debugger-view-0.1.0.0: src/GHC/Debugger/View/Text.hs
{-# OPTIONS_GHC -Wno-orphans #-}
module GHC.Debugger.View.Text where
import GHC.Debugger.View.Class
import qualified Data.Text as T
instance DebugView T.Text where
debugValue t = VarValue (show (T.unpack t)) False
debugFields _ = VarFields []