summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-01 15:21:25 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-01 15:21:25 -0400
commitcc7d494226f41d76208bd2a0613a26435247cc87 (patch)
tree77ba93bae293ea2e2299ab54bea5c0f58065bce0 /eval.c
parent8640ec94e95156551ce90a8fe4d96eddc6e66f88 (diff)
improved the way identifiers worked (now they use a single block array)
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 6e6195d..a131c03 100644
--- a/eval.c
+++ b/eval.c
@@ -86,6 +86,7 @@ static bool eval_expr_as_int(Expression *e, Integer *i) {
info_print(d->where, "Declaration was here.");
return false;
}
+ /* TODO: tuples */
eval_expr_as_int(&d->expr, i);
return true;