diff options
author | Vincent Ambo <mail@tazj.in> | 2022-09-11T12·00+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-11T12·26+0000 |
commit | 677d4e6881f4d97b4b491fc7277bd49efba4a693 (patch) | |
tree | 6481f95b7ed19099e8eb9d154430aa215a06d900 /tvix/eval/src/compiler/scope.rs | |
parent | 675bd36ea52feaed945e2fb39aff79c16d575468 (diff) |
fix(tvix/eval): reduce scope depth in scope module r/4813
Change-Id: If32f9e4c9212f20a39baa15d479ff1387c17570d Reviewed-on: https://cl.tvl.fyi/c/depot/+/6500 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/compiler/scope.rs')
-rw-r--r-- | tvix/eval/src/compiler/scope.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/eval/src/compiler/scope.rs b/tvix/eval/src/compiler/scope.rs index e69922a33013..1909a8dc8a76 100644 --- a/tvix/eval/src/compiler/scope.rs +++ b/tvix/eval/src/compiler/scope.rs @@ -310,6 +310,8 @@ impl Scope { } } + self.scope_depth -= 1; + (pops, unused_spans) } } |