commit 65ba9fee4f8cd4e963f1eb976286ff71ff882787
parent 16bb1fb16ac3024c2b67ba4917053ba50e41c469
Author: Armin Weigl <tb46305@gmail.com>
Date: Mon, 27 Jun 2022 19:04:21 +0200
eval_result: drop unused EVAL_NEED_CONTEXT
Signed-off-by: Armin Weigl <tb46305@gmail.com>
Diffstat:
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/include/eval.h b/include/eval.h
@@ -9,11 +9,6 @@ enum eval_result {
// Evaluation succeeded.
EVAL_OK,
- // Insufficient context, such as references to unknown types or
- // objects. Defer this expression until later and re-try when more of
- // the type & object graph are populated.
- EVAL_NEED_CONTEXT,
-
// This expression cannot be evaluated at compile time (user error).
EVAL_INVALID,
};