frontend: move token printing code to a separate file

This commit is contained in:
2024-11-18 09:54:27 +00:00
parent 4fc1a6ade8
commit d5c86c4eea
3 changed files with 75 additions and 58 deletions

8
frontend/debug.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef DEBUG_H_
#define DEBUG_H_
struct ivy_token;
extern void print_lex_token(struct ivy_token *tok);
#endif