11 lines
209 B
Haskell
11 lines
209 B
Haskell
module Ubc.Parse.Syntax.Scope.FileScope
|
|
( FileScope(..)
|
|
)
|
|
where
|
|
|
|
import Data.Map (Map)
|
|
import Ubc.Parse.Syntax.Data.Struct (Struct)
|
|
|
|
data FileScope = FileScope
|
|
{ structs :: Map String Struct
|
|
}
|