aboutsummaryrefslogtreecommitdiff
path: root/ast/CC/Context.hs
blob: 0a5439279afd84e794521bed93a70606359a238d (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, TypeT)]