Skip to content

Commit 2ce00b4

Browse files
committed
attrsets: always lazy
1 parent 4cf9750 commit 2ce00b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,9 @@ impl Context<'_> {
616616
} else {
617617
"nixAttrsScope"
618618
};
619-
self.translate_let(sctx, ars.recursive(), &ars, LetBody::ExtractScope, scope)?;
619+
// NOTE: force lazyness by now because of fixpoint patterns,
620+
// which make it harder to decide what to use...
621+
self.translate_let(sctx, true, &ars, LetBody::ExtractScope, scope)?;
620622
}
621623

622624
Pt::BinOp(bo) => {

0 commit comments

Comments
 (0)