1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

toJSON: Add attribute path to trace

This commit is contained in:
Robert Hensing 2023-06-30 01:29:11 +02:00
parent 2d1d81114d
commit 33d58a90c2
4 changed files with 88 additions and 3 deletions

View file

@ -0,0 +1,10 @@
builtins.toJSON {
a.b = [
true
false
"it's a bird"
{
c.d = throw "hah no";
}
];
}