diff options
author | William Carroll <wpcarro@gmail.com> | 2022-09-05T18·41-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-09-15T16·48+0000 |
commit | 85b3f17007825b023d549d8e926322797e08ce6d (patch) | |
tree | a979ba95000ac2495868a89d78baa4c1d81bb33e /tvix/eval/src/errors.rs | |
parent | 05958703410d37f874c4705cabbbba2082c555f7 (diff) |
feat(tvix/eval): Support builtins.head r/4862
TL;DR: - support `builtins.head` - define `ErrorKind::IndexOutOfBounds` and canonical error code - support basic unit tests Change-Id: I859107ffb4e220cba1be8c2ac41d1913dcca37ff Reviewed-on: https://cl.tvl.fyi/c/depot/+/6544 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/errors.rs')
-rw-r--r-- | tvix/eval/src/errors.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs index 086cc9d9052c..a84c931d0a4e 100644 --- a/tvix/eval/src/errors.rs +++ b/tvix/eval/src/errors.rs @@ -25,6 +25,11 @@ pub enum ErrorKind { name: String, }, + // Attempted to index into a list beyond its boundaries. + IndexOutOfBounds { + index: usize, + }, + TypeError { expected: &'static str, actual: &'static str, @@ -123,6 +128,10 @@ impl Error { name ), + ErrorKind::IndexOutOfBounds { index } => { + format!("list index '{}' is out of bounds", index) + } + ErrorKind::TypeError { expected, actual } => format!( "expected value of type '{}', but found a '{}'", expected, actual @@ -208,6 +217,7 @@ to a missing value in the attribute set(s) included via `with`."#, ErrorKind::DuplicateAttrsKey { .. } => "E016", ErrorKind::ThunkForce(_) => "E017", ErrorKind::NotCoercibleToString { .. } => "E018", + ErrorKind::IndexOutOfBounds { .. } => "E019", ErrorKind::NotImplemented(_) => "E999", } } |