From fa02225c5ae8b704408769c70bb47101042762b8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 20 Feb 2022 18:48:30 +0100 Subject: Haskell ftw --- inc/treeify.h | 99 ----------------------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 inc/treeify.h (limited to 'inc/treeify.h') diff --git a/inc/treeify.h b/inc/treeify.h deleted file mode 100644 index 1e2d3e5..0000000 --- a/inc/treeify.h +++ /dev/null @@ -1,99 +0,0 @@ -#ifndef TREEIFY_H -#define TREEIFY_H - -#include - -enum node_type { - EXPRESSION, - DECLARATION, - DEFINITION, -}; - -/** - * Expressions - */ - -// (*f* x y) -struct node_expression_identifier { - ctx_string name; // f -}; - -enum node_expression_parameter_type { - PARAM_TYPE_IDENT, - PARAM_TYPE_EXPRESSION, -}; - -// (f *x* *y* *(expr)*) -struct node_expression_parameter { - enum node_expression_parameter_type type; - union { - ctx_string name; // x or y - struct node_expression *expression; // (expr) - } data; -}; - -// (*f x y*) -struct node_expression { - struct node_expression_identifier *callee; // f - struct node_expression_parameter *parameters; // x y - size_t parameter_count; -}; - -/** - * Declarations - */ - -// *f* u32 u32 -> *u32* -struct node_declaration_callee { - ctx_string name; // f - ctx_string type; // u32 -}; - -// f *u32* *u32* -> u32 -struct node_declaration_parameter { - ctx_string type; // u32 -}; - -// *f u32 u32 -> u32* -struct node_declaration { - struct node_declaration_callee callee; // f - struct node_declaration_parameter *parameters; // u32 u32 OR NULL - size_t parameter_count; -}; - -/** - * Definitions - */ - -// *f* a b : expr -struct node_definition_callee { - ctx_string name; -}; - -// f *a* *b* : expr -struct node_definition_parameter { - ctx_string name; // u32 -}; - -// *f a b : expr* -struct node_definition { - struct node_definition_callee callee; // f - struct node_definition_parameter *parameters; // a b - size_t parameter_count; - struct node_expression expression; // expr -}; - -struct node { - enum node_type type; - struct node *prev; - struct node *next; - void *data; -}; - -struct node *tree_create(void); -void tree_destroy(struct node *tree); -void tree_add(struct ctx *ctx, enum node_type type, void *data); - -void treeify(struct ctx *ctx); - -#endif -- cgit v1.2.3