about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/eval/src/compiler/scope.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tvix/eval/src/compiler/scope.rs b/tvix/eval/src/compiler/scope.rs
index 874c6168c1..a7791b750a 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>,