chore(tazjin/presentations): last minute changes to tvix-eval talk

Change-Id: I788a17f846b35f5635ed7a9ec0d3249b05653d44
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9273
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2023-09-07 15:02:03 +03:00 committed by clbot
parent e163656edd
commit 0f4eb908ec
2 changed files with 7 additions and 7 deletions

View file

@ -1,12 +1,12 @@
struct Env {
Value * values[0];
// ... some more fields
// ... some struct fields ...
Value* values[0];
};
// ....
if (env->type == Env::HasWithExpr) {
Value * v = allocValue();
evalAttrs(*env->up, (Expr *) env->values[0], *v, noPos, "<borked>");
// ...
evalAttrs(*env->up, (Expr *) env->values[0], *v, noPos, "<borked>");
// ^^^^^^^^^^^^^^^^^^^^^^^
}