mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 16:56:17 +02:00
cb7fbd4d83
Adds the failing value to `value is <TYPE> while a <TYPE> is expected` error messages.
779 B
779 B
synopsis | issues | prs |
---|---|---|
Source locations are printed more consistently in errors | 561 | 9555 |
Source location information is now included in error messages more consistently. Given this code:
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