diff options
Diffstat (limited to 'tvix/eval/src/compiler/scope.rs')
-rw-r--r-- | tvix/eval/src/compiler/scope.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler/scope.rs b/tvix/eval/src/compiler/scope.rs index 29947ea4a208..8a90a3d9dc2a 100644 --- a/tvix/eval/src/compiler/scope.rs +++ b/tvix/eval/src/compiler/scope.rs @@ -165,7 +165,6 @@ impl Scope { pub fn inherit(&self) -> Self { Self { poisoned_tokens: self.poisoned_tokens.clone(), - scope_depth: self.scope_depth, ..Default::default() } } |