1
1
mirror of https://github.com/github/semantic.git synced 2025-01-02 04:10:29 +03:00

Define ArbitraryTerm in Term.Arbitrary.

This commit is contained in:
Rob Rix 2016-06-01 09:14:06 -04:00
parent 3ada142796
commit 6206f8ae93

View File

@ -1 +1,7 @@
module Term.Arbitrary where
import Prologue
import Term
newtype ArbitraryTerm leaf annotation = ArbitraryTerm { unArbitraryTerm :: TermF leaf annotation (ArbitraryTerm leaf annotation) }
deriving (Show, Eq, Generic)