forked from lix-project/lix
eldritch horrors
b667b4cded
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
409 B
409 B
synopsis | prs |
---|---|
`inherit (x) ...` evaluates `x` only once | 9847 |
inherit (x) a b ...
now evaluates the expression x
only once for all inherited attributes rather than once for each inherited attribute.
This does not usually have a measurable impact, but side-effects (such as builtins.trace
) would be duplicated and expensive expressions (such as derivations) could cause a measurable slowdown.