-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Print top-level errors normally in
nix repl
" into main
- Loading branch information
Showing
6 changed files
with
120 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Errors at the top of an expression are printed normally: | ||
|
||
nix-repl> builtins.throw "Evil puppy detected!!!" | ||
error: | ||
… while calling the 'throw' builtin | ||
at «string»:1:1: | ||
1| builtins.throw "Evil puppy detected!!!" | ||
| ^ | ||
|
||
error: Evil puppy detected!!! | ||
|
||
Errors in attribute values are printed inline, to make it easier to explore | ||
values like nixpkgs where some parts of the value fail to evaluate: | ||
|
||
nix-repl> { puppy = builtins.throw "This puppy is EVIL!!!"; puppy2 = "This puppy is GOOD :)"; } | ||
{ | ||
puppy = «error: This puppy is EVIL!!!»; | ||
puppy2 = "This puppy is GOOD :)"; | ||
} | ||
|
||
Same for list values: | ||
|
||
nix-repl> [ (builtins.throw "This puppy is EVIL!!!") ("This puppy is GOOD :)") ] | ||
[ | ||
«error: This puppy is EVIL!!!» | ||
"This puppy is GOOD :)" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters