1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/doc/manual/rl-next/enter-debugger-more-reliably-in-let-and-calls.md
2024-02-05 13:13:26 -08:00

596 B

synopsis prs issues
The `--debugger` will start more reliably in `let` expressions and function calls 9917 6649

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

Nix 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, Nix will correctly enter the debugger at both breakpoints.