Add semicolon stripping command: odin strip-semicolon, has the same parameters as odin check

This commit is contained in:
gingerBill
2021-08-31 22:20:36 +01:00
parent 1fff96e088
commit b176af2742
3 changed files with 145 additions and 11 deletions
+1
View File
@@ -102,6 +102,7 @@ struct AstFile {
Tokenizer tokenizer;
Array<Token> tokens;
isize curr_token_index;
isize prev_token_index;
Token curr_token;
Token prev_token; // previous non-comment
Token package_token;