11 lines
241 B
Haskell
11 lines
241 B
Haskell
module Data.String.Ubc.Parse.Scope
|
|
( Scope(..)
|
|
)
|
|
where
|
|
|
|
import Data.String.Ubc.Parse.FileScope (FileScope)
|
|
import Data.String.Ubc.Parse.StructScope (StructScope)
|
|
|
|
data Scope =
|
|
ScopeFile FileScope
|
|
| ScopeStruct StructScope
|