about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-inherit-string-ident.nix (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-09-22 r/4958 fix(tvix/eval): support string identifiers in inheritsVincent Ambo1-0/+7
This updates rnix-parser to a version where inherits provide an iterator over `ast::Attr` instead of `ast::Ident`, which mirrors the behaviour of Nix (inherits can have (statically known) strings as their identifiers). This actually required some fairly significant code reshuffling in the compiler, as there was an implicit assumption in many places that we would have an `ast::Ident` node available when dealing with variable access (which is then explicitly only not true in this case). Change-Id: I12f1e786c0030c85107b1aa409bd49adb5465546 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6747 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>