diff options
author | Kevin Amado <kamadorueda@gmail.com> | 2021-11-13 20:29:31 -0500 |
---|---|---|
committer | Kevin Amado <kamadorueda@gmail.com> | 2021-11-13 20:33:34 -0500 |
commit | d0e9e184895b62d193a6eff5e332a338d3664e5b (patch) | |
tree | a4f3a9afadd11b15d68e660ac217f83e773c943d /src/libexpr/value-to-xml.hh | |
parent | bceda304982a34c65d5a1dab449cb5bc59f63b83 (diff) |
toXML: display errors position
- This change applies to builtins.toXML and inner workings
- Proof of concept:
```nix
let e = builtins.toXML e; in e
```
- Before:
```
$ nix-instantiate --eval poc.nix
error: infinite recursion encountered
```
- After:
```
$ nix-instantiate --eval poc.nix
error: infinite recursion encountered
at /data/github/kamadorueda/nix/poc.nix:1:9:
1| let e = builtins.toXML e; in e
|
```
Diffstat (limited to 'src/libexpr/value-to-xml.hh')
-rw-r--r-- | src/libexpr/value-to-xml.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/value-to-xml.hh b/src/libexpr/value-to-xml.hh index 97657327e..cc778a2cb 100644 --- a/src/libexpr/value-to-xml.hh +++ b/src/libexpr/value-to-xml.hh @@ -9,6 +9,6 @@ namespace nix { void printValueAsXML(EvalState & state, bool strict, bool location, - Value & v, std::ostream & out, PathSet & context); - + Value & v, std::ostream & out, PathSet & context, const Pos & pos); + } |