diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-08 09:51:51 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-10 03:18:32 -0600 |
commit | bf19eebb9b905c1366fa96ae9b1b9f06aa1fe672 (patch) | |
tree | 1f67a7e6c3f8834f94394b3feed532e84bf82a31 /tests/functional | |
parent | 1cf0fa06332712e41e132dd8fce1198c89351e6e (diff) |
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.
(cherry picked from commit 6c08fba533ef31cad2bdc03ba72ecf58dc8ee5a0)
Change-Id: Ia887f629305645bb8a165fbbc0d32e620912595a
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/lang/parse-okay-inherits.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/lang/parse-okay-inherits.exp b/tests/functional/lang/parse-okay-inherits.exp index 050b54afd..722101ceb 100644 --- a/tests/functional/lang/parse-okay-inherits.exp +++ b/tests/functional/lang/parse-okay-inherits.exp @@ -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; }) |