-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
more informative error msg for undeclared field (A(badfield: 1) and a.badfield = expr)
#17777
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
timotheecour
merged 4 commits into
nim-lang:devel
from
timotheecour:pr_field_object_error
May 16, 2021
Merged
more informative error msg for undeclared field (A(badfield: 1) and a.badfield = expr)
#17777
timotheecour
merged 4 commits into
nim-lang:devel
from
timotheecour:pr_field_object_error
May 16, 2021
Conversation
This file contains hidden or 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
Collaborator
|
The work on improving the error messages is appreciated. |
Member
|
where is the test? |
57ad12d to
300a6b4
Compare
2 tasks
300a6b4 to
751c5c5
Compare
Member
Author
done, PTAL |
Member
Author
751c5c5 to
c057db3
Compare
c057db3 to
4e1f171
Compare
4e1f171 to
cc7946c
Compare
ringabout
approved these changes
May 16, 2021
timotheecour
added a commit
to timotheecour/Nim
that referenced
this pull request
Jun 14, 2021
timotheecour
added a commit
to timotheecour/Nim
that referenced
this pull request
Jun 14, 2021
timotheecour
added a commit
to timotheecour/Nim
that referenced
this pull request
Jun 14, 2021
Araq
pushed a commit
that referenced
this pull request
Jun 14, 2021
PMunch
pushed a commit
to PMunch/Nim
that referenced
this pull request
Mar 28, 2022
… `a.badfield = expr`) (nim-lang#17777)
PMunch
pushed a commit
to PMunch/Nim
that referenced
this pull request
Mar 28, 2022
…enerics (nim-lang#18259) * followup nim-lang#17777: declaredloc field error msgs now work with generics * fix tests * cleanup
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
followup #17745, #9766
before PR:
case1: t12184.nim(28, 12) Error: undeclared field: 'x2' for type t12184.A [type declared in t12184.nim(22, 6)]
case2: t12184.nim(31, 20) Error: undeclared field: 'y'
case3: t12184.nim(35, 8) Error: attempting to call undeclared routine: 'x2='
after PR:
case1: t12184.nim(28, 12) Error: undeclared field: 'x2' for type t12184.A [type declared in t12184.nim(22, 6)]
case2: t12184.nim(31, 20) Error: undeclared field: 'y' for type t12184.A [type declared in t12184.nim(22, 6)]
case3: t12184.nim(35, 8) Error: undeclared field: 'x2' for type t12184.A [type declared in t12184.nim(22, 6)]
(in more complex cases it may not be obvious where the underlying object is declared)
future work