1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 13:51:44 +03:00

Add Import

This commit is contained in:
joshvera 2017-08-16 20:48:24 -04:00
parent 8f9b505345
commit 557d73bf96

View File

@ -240,6 +240,12 @@ data Export a = Export { exportElements :: ![a] }
instance Eq1 Export where liftEq = genericLiftEq
instance Show1 Export where liftShowsPrec = genericLiftShowsPrec
data Import a = Import { importElements :: ![a] }
deriving (Diffable, Eq, Foldable, Functor, GAlign, Generic1, Show, Traversable)
instance Eq1 Import where liftEq = genericLiftEq
instance Show1 Import where liftShowsPrec = genericLiftShowsPrec
data ArrayType a = ArrayType { arrayType :: !a }
deriving (Diffable, Eq, Foldable, Functor, GAlign, Generic1, Show, Traversable)