1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 16:33:03 +03:00

Correct the type of TestEvaluating.

This commit is contained in:
Rob Rix 2018-04-25 12:34:08 -04:00
parent 8ba011ea8d
commit 4be5418b92

View File

@ -68,7 +68,13 @@ readFilePair paths = let paths' = fmap file paths in
readFileVerbatim :: FilePath -> IO Verbatim readFileVerbatim :: FilePath -> IO Verbatim
readFileVerbatim = fmap verbatim . B.readFile readFileVerbatim = fmap verbatim . B.readFile
type TestEvaluating term = Evaluating Precise term (Value Precise) type TestEvaluating term
= Erroring (AddressError Precise (Value Precise))
( Erroring (EvalError (Value Precise))
( Erroring (ResolutionError (Value Precise))
( Erroring (Unspecialized (Value Precise))
( Erroring (ValueError Precise (Value Precise))
( Evaluating Precise term (Value Precise))))))
ns n = Just . Latest . Just . injValue . Namespace n ns n = Just . Latest . Just . injValue . Namespace n
addr = Address . Precise addr = Address . Precise