about summary refs log tree commit diff
path: root/tvix/eval/src
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-09-01T14·49+0300
committertazjin <tazjin@tvl.su>2022-09-07T20·04+0000
commitec8ff79aeef5d1e77ef1f31ed2916347c5584a67 (patch)
tree86f0f82d57a980c25fc547104ca0795d440e7e49 /tvix/eval/src
parente590b585e780f572bd30cdc4637c69f67f6c7b29 (diff)
feat(tvix/eval): track source spans for function calls r/4730
Change-Id: If1bb463026414597acd561dc2032549fdb70f986
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6397
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src')
-rw-r--r--tvix/eval/src/compiler/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs
index 0e26dbc23b..1e1e3e3605 100644
--- a/tvix/eval/src/compiler/mod.rs
+++ b/tvix/eval/src/compiler/mod.rs
@@ -911,7 +911,7 @@ impl Compiler<'_> {
         // to enter the function call straight away.
         self.compile(slot, node.argument().unwrap());
         self.compile(slot, node.lambda().unwrap());
-        self.push_op_old(OpCode::OpCall);
+        self.push_op(OpCode::OpCall, &node);
     }
 
     /// Compile an expression into a runtime thunk which should be