diff options
author | Qyriad <qyriad@qyriad.me> | 2024-06-24 17:26:21 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-07-04 17:43:03 -0600 |
commit | 4c7165be86e32cce4ca7eca59bd0ec2130bbb360 (patch) | |
tree | 9c43030bdb545d54687cd31ea62c4bcb7a84ad17 /justfile | |
parent | 14bf54bd393f1b48ba519d104abd53434fc18e75 (diff) |
distinguish between throws & errors during throw
Turns errors like this:
let
throwMsg = a: throw (a + " invalid bar");
in throwMsg "bullshit"
error:
… from call site
at «string»:3:4:
2| throwMsg = a: throw (a + " invalid bar");
3| in throwMsg "bullshit"
| ^
… while calling 'throwMsg'
at «string»:2:14:
1| let
2| throwMsg = a: throw (a + " invalid bar");
| ^
3| in throwMsg "bullshit"
… while calling the 'throw' builtin
at «string»:2:17:
1| let
2| throwMsg = a: throw (a + " invalid bar");
| ^
3| in throwMsg "bullshit"
error: bullshit invalid bar
into errors like this:
let
throwMsg = a: throw (a + " invalid bar");
in throwMsg "bullshit"
error:
… from call site
at «string»:3:4:
2| throwMsg = a: throw (a + " invalid bar");
3| in throwMsg "bullshit"
| ^
… while calling 'throwMsg'
at «string»:2:14:
1| let
2| throwMsg = a: throw (a + " invalid bar");
| ^
3| in throwMsg "bullshit"
… caused by explicit throw
at «string»:2:17:
1| let
2| throwMsg = a: throw (a + " invalid bar");
| ^
3| in throwMsg "bullshit"
error: bullshit invalid bar
Change-Id: I593688928ece20f97999d1bf03b2b46d9ac338cb
Diffstat (limited to 'justfile')
0 files changed, 0 insertions, 0 deletions