No types, no fucking types. Just bugs

This commit is contained in:
2025-01-07 22:22:05 +01:00
parent 1f134595de
commit 2a56ea9be2
6 changed files with 68 additions and 49 deletions

4
ast.h
View File

@@ -598,8 +598,6 @@ typedef struct AstError {
} AstError;
Ast astParse(const char* source, uint32_t len);
AstNodeIndex astNodeListAppend(AstNodeList*, AstNodeItem);
void astTokenListAppend(AstTokenList* list, TokenizerTag tag, AstIndex start);
void astDeinit(Ast*);
#endif