aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-okay-inherit-from.exp
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-08 09:52:15 +0100
committereldritch horrors <pennae@lix.systems>2024-03-10 03:18:32 -0600
commitb667b4cded1b9d974157f27761d8648b372d27bf (patch)
treebe37e4ecd58fee0a88664db5516b877d7683a0ab /tests/functional/lang/eval-okay-inherit-from.exp
parent71e0114708d406fdc0d9ca34d4b67cb190881439 (diff)
evaluate inherit (from) exprs only once per directive
desugaring inherit-from to syntactic duplication of the source expr also duplicates side effects of the source expr (such as trace calls) and expensive computations (such as derivationStrict). (cherry picked from commit cefd0302b55b3360dbca59cfcb4bf6a750d6cdcf) Change-Id: Iff519f991adef2e51683ba2c552d37a3df7a179e
Diffstat (limited to 'tests/functional/lang/eval-okay-inherit-from.exp')
-rw-r--r--tests/functional/lang/eval-okay-inherit-from.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/lang/eval-okay-inherit-from.exp b/tests/functional/lang/eval-okay-inherit-from.exp
index 43bd0e899..024daff6b 100644
--- a/tests/functional/lang/eval-okay-inherit-from.exp
+++ b/tests/functional/lang/eval-okay-inherit-from.exp
@@ -1 +1 @@
-[ 1 2 { __overrides = { y = { d = [ ]; }; }; c = [ ]; d = 4; x = { c = [ ]; }; y = «repeated»; } ]
+[ 1 2 { __overrides = { y = { d = [ ]; }; }; c = [ ]; d = 4; x = { c = [ ]; }; y = «repeated»; } { inner = { c = 3; d = 4; }; } ]