We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be good to use https://crates.io/crates/proc-macro-error to improve error reporting for proc macros.
Basically we should look everywhere we panic() in our proc macros and add span info.
panic()
The text was updated successfully, but these errors were encountered:
Just wondering, how is that different from syn::Error?
syn::Error
Sorry, something went wrong.
Ah I see it mentioned in the readme further down. Nvm
#441 lays the ground work for this. Once that is merged I’ll update the rest of code gen.
This is done.
No branches or pull requests
It would be good to use https://crates.io/crates/proc-macro-error to improve error reporting for proc macros.
Basically we should look everywhere we
panic()
in our proc macros and add span info.The text was updated successfully, but these errors were encountered: