aboutsummaryrefslogtreecommitdiff
path: root/environment.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-07-13 17:17:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-07-13 17:17:58 -0400
commit445f79cb70e72698283539b65e43fc71a47ad311 (patch)
tree9a1b0b027a1957fc0f6351e21ef53ce7ff53259a /environment.h
parent3db57b4d2e16ab25fbd07401ec7b3a738f8dae8a (diff)
Add iterator functions
Diffstat (limited to 'environment.h')
-rw-r--r--environment.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/environment.h b/environment.h
index a06f3d42..be87b857 100644
--- a/environment.h
+++ b/environment.h
@@ -28,7 +28,8 @@ typedef struct deferral_s {
typedef struct loop_ctx_s {
struct loop_ctx_s *next;
- const char *loop_name, *key_name, *value_name;
+ const char *loop_name;
+ ast_list_t *loop_vars;
deferral_t *deferred;
CORD skip_label, stop_label;
} loop_ctx_t;