module CC.Context where import CC.AST.Typed -- | Source metadata for compilation data Context = Context FilePath Builtins -- | Information about builtins supported by the enabled backend data Builtins = Builtins [(Name, TypeT)]