Fix type to make it compile

This commit is contained in:
greg 2019-02-15 21:11:50 -08:00
parent d969d573fa
commit e38ae1c3f1
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ use crate::builtin::PrefixOp;
pub type TypeName = Rc<String>;
pub struct TypeContext<'a> {
variable_map: ScopeStack<'a, Rc<String>, ()>,
variable_map: ScopeStack<'a, Rc<String>, Type>,
//evar_count: u32
}