feat(tvix/eval): enrich errors with VM's frame stack information

When emitting an error at runtime, the VM will now use the new
`NativeError` and `BytecodeError` error kinds (which just wrap inner
errors) to create a set of diagnostics to emit.

The primary diagnostic is emitted last, with `error` type (so it will
be coloured red in terminals), the other ones will be emitted with
`note` type, highlighting the causal chain.

Example:
https://gist.github.com/tazjin/25feba7d211702453c9ebd5f8fd378e4

This is currently quite verbose, and we can cut down on this further,
but the purpose of this commit is to surface more information first of
all before worrying about the exact display.

Change-Id: I058104a178c37031c0db6b4b3e4f4170cf76087d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8266
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2023-03-12 18:06:11 +03:00 committed by clbot
parent b78ae941a4
commit ea80e0d3f8
4 changed files with 243 additions and 130 deletions

View file

@ -1339,7 +1339,8 @@ fn compile_src_builtin(
file.clone(),
weak.upgrade().unwrap(),
&mut crate::observer::NoOpObserver {},
)?;
)
.map_err(|e| ErrorKind::NativeError(Box::new(e)))?;
if !result.errors.is_empty() {
return Err(ErrorKind::ImportCompilerError {