1 {-# LANGUAGE UndecidableInstances #-}
2 {-# OPTIONS_GHC -fno-warn-orphans #-}
3 {-# OPTIONS_GHC -fconstraint-solver-iterations=5 #-}
4 -- | Symantic for '()'.
5 module Language.Symantic.Compiling.Unit where
7 import qualified Data.Function as Fun
10 import Data.Text (Text)
11 import Data.Type.Equality ((:~:)(Refl))
12 import Prelude hiding ((&&), not, (||))
14 import Language.Symantic.Parsing
15 import Language.Symantic.Typing
16 import Language.Symantic.Compiling.Term
17 import Language.Symantic.Interpreting
18 import Language.Symantic.Transforming.Trans
21 class Sym_Unit term where
23 default unit :: Trans t term => t term ()
24 unit = trans_lift unit
26 type instance Sym_of_Iface (Proxy ()) = Sym_Unit
27 type instance Consts_of_Iface (Proxy ()) = Proxy () ': Consts_imported_by ()
28 type instance Consts_imported_by () =
37 instance Sym_Unit HostI where
39 instance Sym_Unit TextI where
40 unit = TextI $ \_p _v -> "()"
41 instance (Sym_Unit r1, Sym_Unit r2) => Sym_Unit (DupI r1 r2) where
42 unit = unit `DupI` unit
44 instance Const_from Text cs => Const_from Text (Proxy () ': cs) where
45 const_from "()" k = k (ConstZ kind)
46 const_from s k = const_from s $ k . ConstS
47 instance Show_Const cs => Show_Const (Proxy () ': cs) where
48 show_const ConstZ{} = "()"
49 show_const (ConstS c) = show_const c
53 , Proj_Consts cs (Consts_imported_by ())
54 ) => Proj_ConC cs (Proxy ()) where
55 proj_conC _ (TyConst q :$ TyConst c)
56 | Just Refl <- eq_skind (kind_of_const c) SKiType
57 , Just Refl <- proj_const c (Proxy::Proxy ())
59 _ | Just Refl <- proj_const q (Proxy::Proxy Bounded) -> Just Con
60 | Just Refl <- proj_const q (Proxy::Proxy Enum) -> Just Con
61 | Just Refl <- proj_const q (Proxy::Proxy Eq) -> Just Con
62 | Just Refl <- proj_const q (Proxy::Proxy Monoid) -> Just Con
63 | Just Refl <- proj_const q (Proxy::Proxy Ord) -> Just Con
64 | Just Refl <- proj_const q (Proxy::Proxy Show) -> Just Con
66 proj_conC _c _q = Nothing
67 data instance TokenT meta (ts::[*]) (Proxy ())
69 deriving instance Eq_Token meta ts => Eq (TokenT meta ts (Proxy ()))
70 deriving instance Show_Token meta ts => Show (TokenT meta ts (Proxy ()))
72 ( Inj_Const (Consts_of_Ifaces is) ()
73 ) => CompileI is (Proxy ()) where
76 Token_Term_Unit -> k (ty @()) $ TermO $ Fun.const unit