ast: implement postorder ast traversal

This commit is contained in:
2025-04-14 09:44:37 +01:00
parent ae5e438207
commit fd91bb71c0
3 changed files with 99 additions and 14 deletions

View File

@@ -2,8 +2,7 @@
#define _AST_ITERATE_H_
extern void ast_node_iterator_enqueue_node(
struct ivy_ast_node_iterator *it,
struct ivy_ast_node *parent,
struct ivy_ast_node_iterator *it, struct ivy_ast_node *parent,
struct ivy_ast_node *node);
#endif
#endif