Global variable initialization support

This commit is contained in:
gingerBill
2020-02-23 16:25:11 +00:00
parent 703404a54d
commit b13423d7f7
5 changed files with 315 additions and 146 deletions

View File

@@ -179,6 +179,10 @@ Token make_token_ident(String s) {
Token t = {Token_Ident, s};
return t;
}
Token make_token_ident(char const *s) {
Token t = {Token_Ident, make_string_c(s)};
return t;
}
struct ErrorCollector {