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