From 39e960daa67d3cebb033f0490e570dbbcd9dffa0 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 1 Sep 2022 15:52:48 +0300 Subject: chore(tvix/eval): add codemap dependency This will be used to track source spans when emitting bytecode. The codemap is a data structure which tracks *all* the source files visited by an evaluation, and makes it possible to represent locations across all of the files using a simple span (i.e. pair of offsets). When reporting errors, this even contains enough information to reconstruct the rnix AST to create fancier reporting in certain cases if desired. Change-Id: I4ae98620b9b150fb5a389bd7f1e12670e3192c62 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6374 Tested-by: BuildkiteCI Reviewed-by: sterni --- tvix/eval/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'tvix/eval/Cargo.toml') diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index dc5d10c8e8..5dac971498 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -12,6 +12,7 @@ dirs = "4.0.0" path-clean = "0.1" tabwriter = { version = "1.2", optional = true } rowan = "*" # pinned by rnix +codemap = "0.1.3" # rnix has not been released in a while (as of 2022-08-22), we will # use it from git. -- cgit 1.4.1