diff options
author | Vincent Ambo <mail@tazj.in> | 2022-09-04T17·46+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-09T21·14+0000 |
commit | 0aeca647777d2f17e40290e76c37e993e23c64ce (patch) | |
tree | 91d6dab5b86a1061a07c7ac0930af4b99f70c19b | |
parent | e2a942e4b2ccdf2caa2970201f90edf5be926c2b (diff) |
chore(tvix/eval): clean up a stale comment r/4781
Change-Id: If1b02fe1c78398387ea98490e5b099f1ff1b4164 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6455 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
-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>, |