diff options
author | Erik Oosting | 2023-12-18 19:22:54 +0100 |
---|---|---|
committer | Erik Oosting | 2023-12-18 19:22:54 +0100 |
commit | c250027607e5bbe02cd0aa5bf974c101d9d9c419 (patch) | |
tree | c148442fc73686696f919984ccf52cee4aeb8663 /haskell/app | |
parent | 03eb5c1228ea9f5997fc19f7075a90cca1d29820 (diff) |
tightened types exports
Diffstat (limited to 'haskell/app')
-rw-r--r-- | haskell/app/Types.hs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/haskell/app/Types.hs b/haskell/app/Types.hs index 8c4790f..66d4282 100644 --- 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 |