Starting on function application typechecking

This commit is contained in:
greg 2018-02-26 21:00:36 -08:00
parent 1eaf201145
commit ef9cd04605
1 changed files with 3 additions and 4 deletions

View File

@ -124,12 +124,11 @@ impl TypeContext {
None => Err(format!("No binding found for variable: {}", name)),
}
},
&Call { ref f, ref arguments } => {
Err(format!("Function type not yet implemented"))
},
/*
TupleLiteral(Vec<Expression>),
Call {
f: Box<Expression>,
arguments: Vec<Expression>,
},
Index {
indexee: Box<Expression>,
indexers: Vec<Expression>,