1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 00:12:29 +03:00

Stub in a module for generic lifted pretty-printing.

This commit is contained in:
Rob Rix 2017-08-23 11:41:14 -04:00
parent e1669b66c1
commit e75c99772c
2 changed files with 7 additions and 0 deletions

View File

@ -21,6 +21,7 @@ library
, Data.Error , Data.Error
, Data.Functor.Both , Data.Functor.Both
, Data.Functor.Classes.Eq.Generic , Data.Functor.Classes.Eq.Generic
, Data.Functor.Classes.Pretty.Generic
, Data.Functor.Classes.Show.Generic , Data.Functor.Classes.Show.Generic
, Data.Functor.Listable , Data.Functor.Listable
, Data.Mergeable , Data.Mergeable

View File

@ -0,0 +1,6 @@
{-# LANGUAGE TypeOperators #-}
module Data.Functor.Classes.Pretty.Generic
( Pretty1(..)
) where
import Data.Text.Prettyprint.Doc