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
28 lines
642 B
Markdown
28 lines
642 B
Markdown
---
|
|
synopsis: The `--debugger` will start more reliably in `let` expressions and function calls
|
|
prs: 9917
|
|
issues: 6649
|
|
credits: [9999years, horrors]
|
|
category: Fixes
|
|
---
|
|
|
|
Previously, if you attempted to evaluate this file with the debugger:
|
|
|
|
```nix
|
|
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.
|