type_def variables and methods are not parsed in ast_transformation, and kind-of generated in c_generator, but access and whatnot not supported yet

This commit is contained in:
Nathan Braswell
2016-01-21 12:54:21 -05:00
parent c943d591e0
commit d43f36f1d9
4 changed files with 68 additions and 25 deletions

View File

@@ -39,6 +39,8 @@ fun main(): int {
/*for (var j = 0; j < 10; j++;)*/
/*simple_print(j)*/
var an_obj: Something
/*an_obj.member = 20*/
/*simple_print(an_obj.member)*/
return 0
}