Get rid of determineExpressionType

This commit is contained in:
dcodeIO
2017-12-23 17:49:06 +01:00
parent ca9c79185b
commit d7c069b692
5 changed files with 292 additions and 100 deletions

View File

@ -16,3 +16,27 @@ function locals(): void {
let aF = F;
}
locals();
function reti(): i32 {
return 0;
}
let ri = reti();
ri;
function retI(): i64 {
return 0;
}
let rI = retI();
rI;
function retf(): f32 {
return 0;
}
let rf = retf();
rf;
function refF(): f64 {
return 0;
}
let rF = refF();
rF;