-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9555 from 9999years/positions-in-errors
Pass positions when evaluating
- Loading branch information
Showing
12 changed files
with
135 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
synopsis: Source locations are printed more consistently in errors | ||
issues: #561 | ||
prs: #9555 | ||
description: { | ||
|
||
Source location information is now included in error messages more | ||
consistently. Given this code: | ||
|
||
```nix | ||
let | ||
attr = {foo = "bar";}; | ||
key = {}; | ||
in | ||
attr.${key} | ||
``` | ||
|
||
Previously, Nix would show this unhelpful message when attempting to evaluate | ||
it: | ||
|
||
``` | ||
error: | ||
… while evaluating an attribute name | ||
error: value is a set while a string was expected | ||
``` | ||
|
||
Now, the error message displays where the problematic value was found: | ||
|
||
``` | ||
error: | ||
… while evaluating an attribute name | ||
at bad.nix:4:11: | ||
3| key = {}; | ||
4| in attr.${key} | ||
| ^ | ||
5| | ||
error: value is a set while a string was expected | ||
``` | ||
|
||
} |
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,20 @@ | ||
error: | ||
… while evaluating the attribute 'puppy."${key}"' | ||
|
||
at /pwd/lang/eval-fail-attr-name-type.nix:3:5: | ||
|
||
2| attrs = { | ||
3| puppy.doggy = {}; | ||
| ^ | ||
4| }; | ||
|
||
… while evaluating an attribute name | ||
|
||
at /pwd/lang/eval-fail-attr-name-type.nix:7:17: | ||
|
||
6| in | ||
7| attrs.puppy.${key} | ||
| ^ | ||
8| | ||
|
||
error: value is an integer while a string was expected |
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,7 @@ | ||
let | ||
attrs = { | ||
puppy.doggy = {}; | ||
}; | ||
key = 1; | ||
in | ||
attrs.puppy.${key} |
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,12 @@ | ||
error: | ||
… while calling the 'length' builtin | ||
|
||
at /pwd/lang/eval-fail-call-primop.nix:1:1: | ||
|
||
1| builtins.length 1 | ||
| ^ | ||
2| | ||
|
||
… while evaluating the first argument passed to builtins.length | ||
|
||
error: value is an integer while a list was expected |
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 @@ | ||
builtins.length 1 |
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,18 @@ | ||
error: | ||
… in the argument of the not operator | ||
|
||
at /pwd/lang/eval-fail-not-throws.nix:1:4: | ||
|
||
1| ! (throw "uh oh!") | ||
| ^ | ||
2| | ||
|
||
… while calling the 'throw' builtin | ||
|
||
at /pwd/lang/eval-fail-not-throws.nix:1:4: | ||
|
||
1| ! (throw "uh oh!") | ||
| ^ | ||
2| | ||
|
||
error: uh oh! |
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 @@ | ||
! (throw "uh oh!") |
11 changes: 11 additions & 0 deletions
11
tests/functional/lang/eval-fail-using-set-as-attr-name.err.exp
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,11 @@ | ||
error: | ||
… while evaluating an attribute name | ||
|
||
at /pwd/lang/eval-fail-using-set-as-attr-name.nix:5:10: | ||
|
||
4| in | ||
5| attr.${key} | ||
| ^ | ||
6| | ||
|
||
error: value is a set while a string was expected |
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,5 @@ | ||
let | ||
attr = {foo = "bar";}; | ||
key = {}; | ||
in | ||
attr.${key} |