purescript-0.15.15: src/Language/PureScript/Comments.hs
{-# LANGUAGE TemplateHaskell #-}
-- |
-- Defines the types of source code comments
--
module Language.PureScript.Comments where
import Prelude
import Codec.Serialise (Serialise)
import Control.DeepSeq (NFData)
import Data.Text (Text)
import GHC.Generics (Generic)
import Data.Aeson.TH (Options(..), SumEncoding(..), defaultOptions, deriveJSON)
data Comment
= LineComment Text
| BlockComment Text
deriving (Show, Eq, Ord, Generic)
instance NFData Comment
instance Serialise Comment
$(deriveJSON (defaultOptions { sumEncoding = ObjectWithSingleField }) ''Comment)