type of a declaration should be Void, not Unit

I think this makes sense

Also kill some compiler warnings
This commit is contained in:
greg 2018-02-22 03:25:05 -08:00
parent f46f593c44
commit 9346bb9581
1 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ impl TypeContext {
},
_ => return Err(format!("other formats not done"))
}
Ok(Unit)
Ok(Void)
}
fn type_infer(&mut self, expr: &parsing::Expression) -> TypeResult<Type> {
use self::parsing::Expression;
@ -81,7 +81,7 @@ impl TypeContext {
}
}
fn type_from_anno(&mut self, anno: &parsing::TypeName) -> TypeResult<Type> {
use self::parsing::{TypeName, TypeSingletonName};
use self::parsing::TypeSingletonName;
use self::parsing::TypeName::*;
use self::Type::*; use self::TConst::*;
Ok(match anno {
@ -98,7 +98,7 @@ impl TypeContext {
})
}
fn unify(&mut self, t1: Type, t2: Type) -> TypeResult<Type> {
use self::Type::*; use self::TConst::*;
use self::Type::*;// use self::TConst::*;
match (t1, t2) {
(Const(ref a), Const(ref b)) if a == b => Ok(Const(a.clone())),
(a, b) => Err(format!("Types {:?} and {:?} don't unify", a, b))