Files
nix/tests/functional
Rebecca Turner 0b80935c22 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
```
2023-12-07 10:27:21 -08:00
..
2023-12-07 10:27:21 -08:00
2023-11-15 19:21:17 +01:00
2023-10-06 09:05:56 -04:00
2023-11-20 17:25:40 +01:00
2023-10-06 09:05:56 -04:00
2023-11-29 19:49:07 -05:00
2023-11-03 11:03:58 +01:00
2023-10-17 09:39:59 +05:30