feat(tvix/eval): Implement OpResolveWith instruction
Change-Id: I4d2a69f28a6b6199b3ff48ef81135e7da9fe1c3b Reviewed-on: https://cl.tvl.fyi/c/depot/+/6222 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
parent
911fb96eca
commit
59f50dc81a
3 changed files with 24 additions and 1 deletions
|
|
@ -28,6 +28,9 @@ pub enum Error {
|
|||
|
||||
// Unknown variable in statically known scope.
|
||||
UnknownStaticVariable(rnix::types::Ident),
|
||||
|
||||
// Unknown variable in dynamic scope (with, rec, ...).
|
||||
UnknownDynamicVariable(String),
|
||||
}
|
||||
|
||||
impl Display for Error {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue