-
Notifications
You must be signed in to change notification settings - Fork 203
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
Improve error messages for the Focus
macro.
#1413
Conversation
- Correctly widen inferred singleton types for the error message. - Propagate the position information for user errors.
def getFieldSymbol(fromTypeSymbol: Symbol): Symbol = { | ||
// We need to do this to support tuples, because even though they conform as case classes in other respects, | ||
// for some reason their field names (_1, _2, etc) have a space at the end, ie `_1 `. | ||
val f: String => String = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes a silent error if we have something like
case class Foo(x: Int, `x `: Int)
since identifiers with leading/trailing spaces are not equivalent.
def errorMessage(error: FocusError): String = error match { | ||
case FocusError.NotACaseClass(fromClass, fieldName) => | ||
s"Cannot generate Lens for field '$fieldName', because '$fromClass' is not a case class" | ||
def errorReport(error: FocusError): (String, Option[Position]) = error match { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dotty macro API has better support for errors now.
As a tangent, I need to see whether we can use the -explain
flag which would be helpful to expand internal errors.
Thanks @yilinwei, it looks good to me! |
A few random changes which are (mostly) forced by compiler changes.
I think I'll change the hierarchy of the
FocusError
a little, because some of the errors are internal i.e.5xx
and some are4xx
; mixing them is quite confusing.