Files
lix/src/libexpr
Sergei Trofimovich 9174d884d7 lexer: add error location to lexer errors
Before the change lexter errors did not report the location:

    $ nix build -f. mc
    error: path has a trailing slash
    (use '--show-trace' to show detailed location information)

Note that it's not clear what file generates the error.

After the change location is reported:

    $ src/nix/nix --extra-experimental-features nix-command build -f ~/nm mc
    error: path has a trailing slash

           at .../pkgs/development/libraries/glib/default.nix:54:18:

               53|   };
               54|   src = /tmp/foo/;
                 |                  ^
               55|
    (use '--show-trace' to show detailed location information)

Here we see both problematic file and the string itself.
2022-03-24 08:16:14 +00:00
..
2022-03-03 11:11:16 +01:00
2022-03-07 10:09:09 +01:00
2022-01-04 20:29:17 +01:00
2019-03-14 14:11:12 +01:00
2022-03-08 23:30:18 +01:00
2022-02-21 16:37:25 +01:00
2021-11-13 20:33:34 -05:00