diff --git a/src/include/token.h b/src/include/token.h deleted file mode 100644 index b6307ff..0000000 --- a/src/include/token.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef TOKEN_H -#define TOKEN_H - -#include - -typedef enum { - TOKEN_TYPE_CALL, - TOKEN_TYPE_NUMBER, - TOKEN_TYPE_MAX = TOKEN_TYPE_NUMBER, -} TokenType; - -// Token. -typedef struct { - TokenType type; // The type of the Token. - size_t valn; // The length of val. - char* val; // The text of the Token. - size_t len; // Length of the text of the Token. -} Token; - -Token* token_init(TokenType type, char* val, size_t valn); -void token_destroy(Token* token); - -// Prints out a representation of the Token. -void token_print(Token* token); - -// Prints out a representation of the Token, with the specified indent level. -void token_print_i(Token* token, int ilevel); - -// Prints out a representation of the TokenType. -void tokentype_print(TokenType t); - -// Prints out a representation of the TokenType, with the specified indent -// level. -void tokentype_print_i(TokenType t, int ilevel); - -// Prints a token's type. That's it. -void tokentype_print_raw(TokenType t); - -#endif diff --git a/src/token.c b/src/token.c deleted file mode 100644 index 0b1e413..0000000 --- a/src/token.c +++ /dev/null @@ -1,62 +0,0 @@ -#include - -#include "include/token.h" -#include "include/dstr.h" -#include "include/util.h" - -static char* tokentype_names[] = { - [TOKEN_TYPE_CALL] = "CALL", - [TOKEN_TYPE_NUMBER] = "NUMBER", -}; - -Token* token_init(TokenType type, char* val, size_t valn) { - Token* t = malloc(sizeof(Token)); - - t->type = type; - t->valn = valn; - t->val = val; - - return t; -} - -void token_destroy(Token* t) { - free(t->val); - free(t); -} - -void token_print(Token* token) { token_print_i(token, 0); } - -void token_print_i(Token *token, int ilvl) { - INDENT_BEGIN(ilvl); - - INDENT_TITLE("Token", token); - INDENT_FIELD_NONL_START("type") - tokentype_print_raw(token->type); - INDENT_FIELD_NONL_END - INDENT_FIELD("valn", "%ld", token->valn); - INDENT_FIELD_NL("val", "\"%s\"", token->val); -} - -void tokentype_print_raw(TokenType t) { - if (t > TOKEN_TYPE_MAX) { - printf("Unknown (%d)", t); - log_dbgf("%d is not a valid TokenType (max: %d)", t, TOKEN_TYPE_MAX); - return; - } - - printf("%s", tokentype_names[t]); -} - -void tokentype_print(TokenType t) { tokentype_print_i(t, 0); } - -void tokentype_print_i(TokenType t, int i) { - INDENT_BEGIN(i); - - if (t > TOKEN_TYPE_MAX) { - INDENT_FIELD("val", "Unknown (%d)", t); - log_dbgf("%d is not a valid TokenType (max: %d)", t, TOKEN_TYPE_MAX); - return; - } - - INDENT_FIELD("val", "%s", tokentype_names[t]); -}