-
Notifications
You must be signed in to change notification settings - Fork 824
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 more parameters to Func #1078
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.
LGTM!
I was wondering when someone would need more than 12 parameters. Here we are ;-). |
I'm not exactly happy about having to need them, but that's life. The linter seems to complain about formatting, I'd personally prefer the single-line macro invocations but I can understand the project not wanting exceptions for it so I'll leave that up to you guys to decide :-) |
The linter is rustfmt. Please follow its advice. We don't have any particular opinions on this topic, we let the linter decides for us ;-). |
Or, add |
bors r+ |
1078: Add more parameters to Func r=Hywan a=Jasper-Bekkers <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description We ran into the issue that we needed to pass more then the available number of parameters to wasm, so I've extended the parameter count for `Func` to have max 26 parameters now. # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Jasper-Bekkers <[email protected]>
I'll add the |
Build failed |
bors r+ |
1078: Add more parameters to Func r=Hywan a=Jasper-Bekkers <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description We ran into the issue that we needed to pass more then the available number of parameters to wasm, so I've extended the parameter count for `Func` to have max 26 parameters now. # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Jasper-Bekkers <[email protected]>
It looks like TravisCI is failing because of some network issue |
Yup, I agree. Let's see in a moment. |
bors r+ |
Already running a review |
Build succeeded
|
Thanks! |
Description
We ran into the issue that we needed to pass more then the available number of parameters to wasm, so I've extended the parameter count for
Func
to have max 26 parameters now.Review