From 31423d1ce9d902b988c9b38f996718c7095d4315 Mon Sep 17 00:00:00 2001 From: katherine Date: Mon, 27 May 2019 16:29:08 -0700 Subject: implement hash parsing generation --- src/analyse.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/analyse.h') diff --git a/src/analyse.h b/src/analyse.h index 19f1b96..77594c2 100644 --- a/src/analyse.h +++ b/src/analyse.h @@ -18,6 +18,8 @@ struct analyse_tree_s { }; struct analyse_result_s { + bool uses_array; + bool uses_hash; bool uses_bool; bool uses_string; bool uses_id; @@ -30,6 +32,7 @@ struct analyse_result_s { bool uses_float; bool uses_double; bool uses_doublel; + bool hash_types[PARSE_TYPE_ARRAY_BOOL]; struct analyse_tree_s deftype_tree; struct analyse_tree_s var_tree; }; -- cgit v1.2.3