diff options
author | Nadrieril Feneanar | 2019-08-26 19:52:11 +0200 |
---|---|---|
committer | GitHub | 2019-08-26 19:52:11 +0200 |
commit | 2f6ae31f4682266e647d25f7554a66d543bec7ac (patch) | |
tree | 700aa667954dff91599420f75aa55d606c7b04dd /dhall/src/error | |
parent | 38a82c53ef45e802cf5816a8afcbf36a69c91174 (diff) | |
parent | 829fff5bd3e2115c0a16d40a4dc266747d622b08 (diff) |
Merge pull request #105 from Nadrieril/keep-type-info
Store type information everywhere in `Value`
Diffstat (limited to '')
-rw-r--r-- | dhall/src/error/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dhall/src/error/mod.rs b/dhall/src/error/mod.rs index 13a9d7e..2ddaf3d 100644 --- a/dhall/src/error/mod.rs +++ b/dhall/src/error/mod.rs @@ -54,7 +54,6 @@ pub(crate) enum TypeMessage { NotAFunction(Value), TypeMismatch(Value, Value, Value), AnnotMismatch(Value, Value), - Untyped, InvalidListElement(usize, Value, Value), InvalidListType(Value), InvalidOptionalType(Value), |