-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add attribute crate
to proc-macro wasm-bindgen-test
#3593
Add attribute crate
to proc-macro wasm-bindgen-test
#3593
Conversation
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.
I think the current failure is because wasm-bindgen-test-macro
isn't defining the full feature set it requires from syn
? But LGTM otherwise.
Gonna review it as soon as CI passes.
4ae9cdd
to
e8650f6
Compare
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.
Apologies, I forgot: could you also add an entry in the changelog?
LGTM otherwise.
This attribute allow to specify a path where `wasm-bindgen-test` can be accessed. Closes rustwasm#3588
e8650f6
to
5bea714
Compare
Thanks! |
Also rework how the attributes of the proc-macro are parsed using
syn
(it was simpler to handle an attribute that has a value).Closes #3588