forked from lix-project/lix
Rebecca Turner
5cb98095ba
This keeps hint messages, source location information, and source code snippets grouped together, while making stack traces shorter (so that more stack frames can be viewed on the same terminal). Before: error: … while evaluating the attribute 'body' at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:4:3: 3| 4| body = x "x"; | ^ 5| } … from call site at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:4:10: 3| 4| body = x "x"; | ^ 5| } … while calling 'x' at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:2:7: 1| let { 2| x = arg: assert arg == "y"; 123; | ^ 3| error: assertion '(arg == "y")' failed at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:2:12: 1| let { 2| x = arg: assert arg == "y"; 123; | ^ 3| After: error: … while evaluating the attribute 'body' at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:4:3: 3| 4| body = x "x"; | ^ 5| } … from call site at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:4:10: 3| 4| body = x "x"; | ^ 5| } … while calling 'x' at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:2:7: 1| let { 2| x = arg: assert arg == "y"; 123; | ^ 3| error: assertion '(arg == "y")' failed at /Users/wiggles/nix/tests/functional/lang/eval-fail-assert.nix:2:12: 1| let { 2| x = arg: assert arg == "y"; 123; | ^ 3|
31 lines
1 KiB
Plaintext
31 lines
1 KiB
Plaintext
error:
|
|
… while calling the 'foldl'' builtin
|
|
at /pwd/lang/eval-fail-foldlStrict-strict-op-application.nix:2:1:
|
|
1| # Tests that the result of applying op is forced even if the value is never used
|
|
2| builtins.foldl'
|
|
| ^
|
|
3| (_: f: f null)
|
|
|
|
… while calling anonymous lambda
|
|
at /pwd/lang/eval-fail-foldlStrict-strict-op-application.nix:3:7:
|
|
2| builtins.foldl'
|
|
3| (_: f: f null)
|
|
| ^
|
|
4| null
|
|
|
|
… from call site
|
|
at /pwd/lang/eval-fail-foldlStrict-strict-op-application.nix:3:10:
|
|
2| builtins.foldl'
|
|
3| (_: f: f null)
|
|
| ^
|
|
4| null
|
|
|
|
… while calling anonymous lambda
|
|
at /pwd/lang/eval-fail-foldlStrict-strict-op-application.nix:5:6:
|
|
4| null
|
|
5| [ (_: throw "Not the final value, but is still forced!") (_: 23) ]
|
|
| ^
|
|
6|
|
|
|
|
error: Not the final value, but is still forced!
|