mirror of
https://github.com/NixOS/nix
synced 2025-07-08 02:43:54 +02:00
use the same bindings print for ExprAttrs and ExprLet
this also has the effect of sorting let bindings lexicographically rather than by symbol creation order as was previously done, giving a better canonicalization in the process.
This commit is contained in:
parent
1f542adb3e
commit
6c08fba533
3 changed files with 12 additions and 13 deletions
|
@ -1 +1 @@
|
|||
(let c = { }; b = 2; in { a = 1; inherit b ; d = (c).d; e = (c).e; f = 3; })
|
||||
(let b = 2; c = { }; in { a = 1; inherit b ; d = (c).d; e = (c).e; f = 3; })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue