SHow error on invalid type being used for variable declarations
parent
089d2b1584
commit
5e296dd67c
|
@ -105,6 +105,12 @@ public final class TypeChecker
|
||||||
/* TODO: Resolve type here (either built-in or class type) */
|
/* TODO: Resolve type here (either built-in or class type) */
|
||||||
Type type = getType(c, typeString);
|
Type type = getType(c, typeString);
|
||||||
|
|
||||||
|
/* Make sure type is valid */
|
||||||
|
if(!type)
|
||||||
|
{
|
||||||
|
Parser.expect("Invalid type \""~typeString~"\"");
|
||||||
|
}
|
||||||
|
|
||||||
gprintln("TYpe"~to!(string)(type));
|
gprintln("TYpe"~to!(string)(type));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue