mirror of
https://github.com/NixOS/nix.git
synced 2025-12-16 05:51:05 +01:00
Pass positions when evaluating
This includes position information in more places, making debugging
easier.
Before:
```
$ nix-instantiate --show-trace --eval tests/functional/lang/eval-fail-using-set-as-attr-name.nix
error:
… while evaluating an attribute name
at «none»:0: (source not available)
error: value is a set while a string was expected
```
After:
```
error:
… while evaluating an attribute name
at /pwd/lang/eval-fail-using-set-as-attr-name.nix:5:10:
4| in
5| attr.${key}
| ^
6|
error: value is a set while a string was expected
```
This commit is contained in:
parent
3dcb83409d
commit
0b80935c22
12 changed files with 137 additions and 14 deletions
1
tests/functional/lang/eval-fail-call-primop.nix
Normal file
1
tests/functional/lang/eval-fail-call-primop.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
builtins.length 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue