mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 01:36:15 +02:00
46 lines
848 B
Markdown
46 lines
848 B
Markdown
|
synopsis: Source locations are printed more consistently in errors
|
||
|
issues: #561
|
||
|
prs: #9555
|
||
|
description: {
|
||
|
|
||
|
Source location information is now included in error messages more
|
||
|
consistently. Given this code:
|
||
|
|
||
|
```nix
|
||
|
let
|
||
|
attr = {foo = "bar";};
|
||
|
key = {};
|
||
|
in
|
||
|
attr.${key}
|
||
|
```
|
||
|
|
||
|
Previously, Nix would show this unhelpful message when attempting to evaluate
|
||
|
it:
|
||
|
|
||
|
```
|
||
|
error:
|
||
|
… while evaluating an attribute name
|
||
|
|
||
|
at «none»:0: (source not available)
|
||
|
|
||
|
error: value is a set while a string was expected
|
||
|
```
|
||
|
|
||
|
Now, the error message displays where the problematic value was found:
|
||
|
|
||
|
```
|
||
|
error:
|
||
|
… while evaluating an attribute name
|
||
|
|
||
|
at bad.nix:4:11:
|
||
|
|
||
|
3| key = {};
|
||
|
4| in attr.${key}
|
||
|
| ^
|
||
|
5|
|
||
|
|
||
|
error: value is a set while a string was expected
|
||
|
```
|
||
|
|
||
|
}
|