Allow type hints on functions and vars

This commit is contained in:
2020-11-18 15:52:30 -07:00
parent ff389ecf25
commit bb97388247
4 changed files with 59 additions and 7 deletions

View File

@@ -127,4 +127,8 @@ class BasicTestCase extends Test {
seasonsGreetings += "ho ";
}));
}
function testTypedDefvar() {
Assert.equals(8, BasicTestCase.myInt);
}
}