diff options
Diffstat (limited to 'tvix/eval/src')
-rw-r--r-- | tvix/eval/src/compiler/scope.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tvix/eval/src/compiler/scope.rs b/tvix/eval/src/compiler/scope.rs index 874c6168c1c7..a7791b750af0 100644 --- a/tvix/eval/src/compiler/scope.rs +++ b/tvix/eval/src/compiler/scope.rs @@ -130,10 +130,6 @@ pub struct LocalIdx(usize); /// Represents a scope known during compilation, which can be resolved /// directly to stack indices. -/// -/// TODO(tazjin): `with`-stack -/// TODO(tazjin): flag "specials" (e.g. note depth if builtins are -/// overridden) #[derive(Debug, Default)] pub struct Scope { pub locals: Vec<Local>, |