blob: b86685dab417f0ddcb1b6264e7205cd01ffa340b (
plain)
1
2
3
4
5
6
7
8
9
10
|
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, Type)]
|