From 3272b5d83d2e2167eed24748557df88bd66584ee Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 5 Jan 2018 23:42:24 +0100 Subject: There's actually a chance that, correctly stringified, this will work --- node.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'node.h') diff --git a/node.h b/node.h index 81d0b26..f98257f 100644 --- a/node.h +++ b/node.h @@ -12,7 +12,8 @@ enum node_type { N_FUNC_DECL, // rtype name [params] [body] N_IF, // [cond] [body] [else-body] N_WHILE, // [cond] [body] - N_RETURN, // [value] + N_RETURN, // -- + N_RETURNV, // [value] N_NUM, // value N_VAR, // name N_BINOP, // [left] oper [right] @@ -53,4 +54,6 @@ int node_list_length(struct node *node); void node_delete_recursive(struct node *node); +const char* node_type_string(enum node_type type); +const char* oper_string(enum operator oper); void node_print(const struct node *node, FILE *f, int indent); -- cgit v1.2.3-54-g00ecf