fix(tvix/eval): emit correct count in OpAttrPath

Not sure how exactly this snuck in, but it caused some subtle
breakages in deeply nested attribute sets.

Change-Id: I8049ce912405d3750031f79cc8d86ff1c3c02c2b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6208
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-08-14 14:15:26 +03:00 committed by tazjin
parent 8d45fbadea
commit 43658a5b90
4 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1 @@
{ a = { b = { c = { d = { e = { f = { g = "deep!"; }; }; }; }; }; }; }

View file

@ -0,0 +1 @@
{ a.b.c.d.e.f.g = "deep!"; }