Add new stuff to package reflect; fix -vet for odin_parser

This commit is contained in:
gingerBill
2019-08-13 23:21:33 +01:00
parent 3ad20a2d2d
commit a58c29582e
2 changed files with 104 additions and 207 deletions
+1 -1
View File
@@ -1741,7 +1741,7 @@ string_to_calling_convention :: proc(s: string) -> ast.Proc_Calling_Convention {
parse_proc_tags :: proc(p: ^Parser) -> (tags: ast.Proc_Tags) {
for p.curr_tok.kind == token.Hash {
tok := expect_token(p, token.Hash);
_ = expect_token(p, token.Hash);
ident := expect_token(p, token.Ident);
switch ident.text {