diff options
Diffstat (limited to 'tvix/eval/src/compiler')
-rw-r--r-- | tvix/eval/src/compiler/import.rs | 12 | ||||
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tvix/eval/src/compiler/import.rs b/tvix/eval/src/compiler/import.rs index 59e3d92e8127..94a6602e9df6 100644 --- a/tvix/eval/src/compiler/import.rs +++ b/tvix/eval/src/compiler/import.rs @@ -25,7 +25,10 @@ async fn import_impl( mut args: Vec<Value>, ) -> Result<Value, ErrorKind> { // TODO(sterni): canon_path()? - let mut path = coerce_value_to_path(&co, args.pop().unwrap()).await?; + let mut path = match coerce_value_to_path(&co, args.pop().unwrap()).await? { + Err(cek) => return Ok(Value::Catchable(cek)), + Ok(path) => path, + }; if path.is_dir() { path.push("default.nix"); @@ -36,11 +39,8 @@ async fn import_impl( } // TODO(tazjin): make this return a string directly instead - let contents = generators::request_read_to_string(&co, path.clone()) - .await - .to_str()? - .as_str() - .to_string(); + let contents: Value = generators::request_read_to_string(&co, path.clone()).await; + let contents = contents.to_str()?.as_str().to_string(); let parsed = rnix::ast::Root::parse(&contents); let errors = parsed.errors(); diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index 5c2825507f1e..cfd50bec5790 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -396,11 +396,11 @@ impl Compiler<'_> { } else if raw_path.starts_with('<') { // TODO: decide what to do with findFile if raw_path.len() == 2 { - return self.emit_error( - node, - ErrorKind::CatchableErrorKind(CatchableErrorKind::NixPathResolution( + return self.emit_constant( + Value::Catchable(CatchableErrorKind::NixPathResolution( "Empty <> path not allowed".into(), )), + node, ); } let path = &raw_path[1..(raw_path.len() - 1)]; |