super-user-spark-0.4.0.0: src/SuperUserSpark/PreCompiler/Types.hs
{-# LANGUAGE DeriveGeneric #-}
module SuperUserSpark.PreCompiler.Types where
import Import
newtype PreCompileError =
PreCompileError String
deriving (Show, Eq, Generic)
instance Validity PreCompileError
type Precompiler = WriterT [PreCompileError] Identity