forked from lix-project/lix
jade
272db8af1b
This does not add missing release notes, and it doesn't do anything
about the profiles feature we would really like to have so we can have
consistent credit.
Change-Id: I72a6f7acfcff85f380be17dac76501a6f4693776
642 B
642 B
synopsis | prs | issues | credits | category | ||
---|---|---|---|---|---|---|
The `--debugger` will start more reliably in `let` expressions and function calls | 9917 | 6649 |
|
Fixes |
Previously, if you attempted to evaluate this file with the debugger:
let
a = builtins.trace "before inner break" (
builtins.break "hello"
);
b = builtins.trace "before outer break" (
builtins.break a
);
in
b
Lix would correctly enter the debugger at builtins.break a
, but if you asked
it to :continue
, it would skip over the builtins.break "hello"
expression
entirely.
Now, Lix will correctly enter the debugger at both breakpoints.