commit c250027607e5bbe02cd0aa5bf974c101d9d9c419
parent 03eb5c1228ea9f5997fc19f7075a90cca1d29820
Author: Erik Oosting <crazazy@tilde.cafe>
Date: Mon, 18 Dec 2023 19:22:54 +0100
tightened types exports
Diffstat:
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/haskell/app/Types.hs b/haskell/app/Types.hs
@@ -1,7 +1,16 @@
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeFamilies #-}
-module Types where
+module Types (
+ AExp (..),
+ GlobalAExp (..),
+ CExp (..),
+ Funcall (..),
+ AExpF (..),
+ GlobalAExpF (..),
+ CExpF (..),
+ FuncallF (..),
+) where
import Data.Functor.Foldable.TH
import GHC.Generics