1 {-# LANGUAGE UndecidableInstances #-}
2 {-# OPTIONS_GHC -fno-warn-orphans #-}
3 {-# OPTIONS_GHC -fconstraint-solver-iterations=5 #-}
4 -- | Symantic for '()'.
5 module Language.Symantic.Lib.Unit where
7 import qualified Data.Function as Fun
10 import Data.Type.Equality ((:~:)(Refl))
11 import Prelude hiding ((&&), not, (||))
13 import Language.Symantic.Parsing
14 import Language.Symantic.Parsing.Grammar as Gram
15 import Language.Symantic.Typing
16 import Language.Symantic.Compiling
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
45 ( Read_TypeNameR Type_Name cs rs
47 ) => Read_TypeNameR Type_Name cs (Proxy () ': rs) where
48 read_typenameR _cs (Type_Name "()") k = k (ty @())
49 read_typenameR _rs raw k = read_typenameR (Proxy @rs) raw k
50 instance Show_Const cs => Show_Const (Proxy () ': cs) where
51 show_const ConstZ{} = "()"
52 show_const (ConstS c) = show_const c
56 , Proj_Consts cs (Consts_imported_by ())
57 ) => Proj_ConC cs (Proxy ()) where
58 proj_conC _ (TyConst q :$ TyConst c)
59 | Just Refl <- eq_skind (kind_of_const c) SKiType
60 , Just Refl <- proj_const c (Proxy @())
62 _ | Just Refl <- proj_const q (Proxy @Bounded) -> Just Con
63 | Just Refl <- proj_const q (Proxy @Enum) -> Just Con
64 | Just Refl <- proj_const q (Proxy @Eq) -> Just Con
65 | Just Refl <- proj_const q (Proxy @Monoid) -> Just Con
66 | Just Refl <- proj_const q (Proxy @Ord) -> Just Con
67 | Just Refl <- proj_const q (Proxy @Show) -> Just Con
69 proj_conC _c _q = Nothing
70 data instance TokenT meta (ts::[*]) (Proxy ())
72 deriving instance Eq_Token meta ts => Eq (TokenT meta ts (Proxy ()))
73 deriving instance Show_Token meta ts => Show (TokenT meta ts (Proxy ()))
75 ( Inj_Const (Consts_of_Ifaces is) ()
76 ) => CompileI is (Proxy ()) where
79 Token_Term_Unit -> k (ty @()) $ TermO $ Fun.const unit
81 -- Inj_Token meta ts () =>
82 TokenizeT meta ts (Proxy ())
83 instance -- Gram_Term_AtomsT
87 , Inj_Token meta ts ()
88 ) => Gram_Term_AtomsT meta ts (Proxy ()) g where
92 (\meta -> ProTok $ inj_etoken meta $ Token_Term_Unit)