lang: add internal debugging interface

This commit is contained in:
2024-11-19 15:22:39 +00:00
parent 881f345bbe
commit 7c42bf7bc9
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef IVY_LANG_INTERNAL_H_
#define IVY_LANG_INTERNAL_H_
#include <ivy/misc.h>
struct ivy_lexer;
IVY_API void internal_lexer_print_symbol_tree(struct ivy_lexer *lex);
IVY_API void internal_lexer_print_keyword_dict(struct ivy_lexer *lex);
#endif