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
45 lines
837 B
Markdown
45 lines
837 B
Markdown
---
|
|
synopsis: Source locations are printed more consistently in errors
|
|
issues: 561
|
|
prs: 9555
|
|
credits: [9999years, horrors]
|
|
category: Improvements
|
|
---
|
|
|
|
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
|
|
|
|
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: expected a string but found a set: { }
|
|
```
|