aboutsummaryrefslogtreecommitdiffstats
path: root/src/backend/print.h
diff options
context:
space:
mode:
authorGalin Simeonov <gts@volconst.com>2021-06-01 18:21:02 +0300
committerGalin Simeonov <gts@volconst.com>2021-07-15 18:03:43 +0300
commit85b23fbee717f047af5a89eac6f4dba8e7812524 (patch)
treedc88ef3f4cb826f4f3a3c9e12c67562878460aa5 /src/backend/print.h
parent255a49ba5a41b3854dbdfebdec75fb6229450507 (diff)
downloadMEGATRON-85b23fbee717f047af5a89eac6f4dba8e7812524.tar.gz
restructuring
Diffstat (limited to 'src/backend/print.h')
-rw-r--r--src/backend/print.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/backend/print.h b/src/backend/print.h
deleted file mode 100644
index 54d47ce..0000000
--- a/src/backend/print.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef PRINT_H
-#define PRINT_H PRINT_H
-#include <stdio.h>
-#include <lexer.h>
-#include <parser.h>
-#include <queue.h>
-
-
-void print_keyword_enum(enum Keyword code);
-void print_token(struct token *token);
-void print_tokens(struct Queue *tokens);
-
-void print_ast_enum(enum AST_Type type);
-void print_ast(struct AST *tree);
-void print_ast_state(struct AST_State* tree);
-void print_ast_event(struct AST_Event* tree);
-void print_ast_states(struct AST_States* tree);
-void print_ast_events(struct AST_Events* tree);
-void print_ast_transition(struct AST_Transition* tree);
-void print_ast_command(struct AST_Command* tree);
-void print_ast_pipeline(struct AST_Pipeline* tree);
-void print_ast_machine(struct AST_Machine* tree);
-void print_ast_transitions(struct AST_Transitions* tree);
-
-void print_error(struct Error *error);
-void print_errors(struct Translation_Data *translation_data);
-#endif