From 77258af83dfe93293ad854ccb401d1ce7453edfc Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 27 Oct 2020 23:33:26 +0000 Subject: Make `SimpleValue` deserializable within other types Fixes https://github.com/Nadrieril/dhall-rust/issues/184 --- dhall/src/syntax/ast/expr.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'dhall') diff --git a/dhall/src/syntax/ast/expr.rs b/dhall/src/syntax/ast/expr.rs index 9d216a7..d9badb9 100644 --- a/dhall/src/syntax/ast/expr.rs +++ b/dhall/src/syntax/ast/expr.rs @@ -7,6 +7,7 @@ use crate::semantics::Universe; use crate::syntax::visitor; use crate::syntax::*; +// TODO: `usize` was a mistake. Should use `u64`. pub type Integer = isize; pub type Natural = usize; pub type Double = NaiveDouble; -- cgit v1.2.3