feat(tvix/eval): Implement inherit from outer scope in attrs

Change-Id: I97fa45059b7f2cbe96eb60bd1821e3e25832df66
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6212
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-08-14 17:33:16 +03:00 committed by tazjin
parent 3a67f91228
commit e07556493f
3 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1 @@
{ a = 1; }

View file

@ -0,0 +1,4 @@
let
a = 1;
in
{ inherit a; }