blob: 4107962941026848d9439596f16fb65da00a86f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module GHC.Unit.State where
import {-# SOURCE #-} GHC.Utils.Outputable
import {-# SOURCE #-} GHC.Unit.Types (IndefUnitId, UnitId)
data UnitState
data UnitDatabase unit
emptyUnitState :: UnitState
mkIndefUnitId :: UnitState -> UnitId -> IndefUnitId
pprUnitIdForUser :: UnitState -> UnitId -> SDoc
updateIndefUnitId :: UnitState -> IndefUnitId -> IndefUnitId
|