semantics: fix missing rec in let semantics

This commit is contained in:
regnat 2017-04-25 08:22:53 +02:00
parent 4ecb8f3711
commit b4d0e36856

View File

@ -26,7 +26,7 @@ figure~\pref{fig:semantics:nix-light:patterns}
}{}
\dstepa{let rec \xone = \eone; $\cdots{}$; \xn = \en; in \e/}{%
\parbox[t]{10cm}{%
(let $r$ = \{ $x'_1$ = \eone; \} $\orthplus \cdots \orthplus$ \{ $x'_n$ = \en \}; in e)
(let rec $r$ = \{ $x'_1$ = \eone; \} $\orthplus \cdots \orthplus$ \{ $x'_n$ = \en \}; in e)
[ \\ \assign{\xone}{r.x'_1}; \ldots{}; \assign{\xn}{r.x'_n} \\ ]
}
}{}