diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-16T20·43+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-01T17·41+0000 |
commit | 813fb9847095bad5af6ca6472b9a53b2f911d870 (patch) | |
tree | 728f1b7bca7d2f60701d317df5c0bd2cac0af5dc /tvix/eval/src/vm.rs | |
parent | a00e4730a5ec824a8452152de72458230f72e61a (diff) |
refactor(tvix/eval): Upgrade to latest rnix-parser r/4567
Since the latest published version of rnix-parser on crates.io, the crate has undergone major changes which are only available in the git repository at the moment. This commit updates the compiler to this newer version of rnix. Most notably, the entire AST provided by rnix is now wrapped in the AST type system. As a result of this traversal is much nicer in many places, especially for things like nested attribute selection. There are a handful of smaller features missing for full feature parity with the previous version, especially handling of path literals, but PRs for these already exist in rnix-parser. Change-Id: Icde6d393067976549492b7d89c4cc49e5e575fc7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6231 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/vm.rs')
-rw-r--r-- | tvix/eval/src/vm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/vm.rs b/tvix/eval/src/vm.rs index e088d22776db..cf70fda30747 100644 --- a/tvix/eval/src/vm.rs +++ b/tvix/eval/src/vm.rs @@ -83,7 +83,7 @@ impl VM { } fn pop(&mut self) -> Value { - self.stack.pop().expect("TODO") + self.stack.pop().expect("runtime stack empty") } fn push(&mut self, value: Value) { |