From ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d Mon Sep 17 00:00:00 2001 From: nass1pro Date: Sun, 14 Jun 2020 09:51:22 +0200 Subject: Change t_ret in ast.h --- include/ast.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/ast.h b/include/ast.h index 8127930..2f3a11d 100644 --- a/include/ast.h +++ b/include/ast.h @@ -58,7 +58,7 @@ typedef struct s_line { struct s_ast *left; struct s_ast *right; - t_sep sep; + e_token_tag sep; } t_line; /* @@ -109,8 +109,8 @@ typedef struct s_ast typedef struct s_ret { - t_bool failed; - t_ast *as; + t_token *unexpected; + t_ast *ast; t_ftlst *rest; } t_ret; -- cgit