-
Notifications
You must be signed in to change notification settings - Fork 455
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
Fix issues with the arity of externals. #6881
Conversation
51d7b21
to
3d9f800
Compare
3d9f800
to
533e613
Compare
533e613
to
b6810b4
Compare
@@ -4,11 +4,11 @@ import ImportHookDefaultGen from "./ImportHookDefault.gen"; | |||
import * as ImportHookDefaultGen$1 from "./ImportHookDefault.gen"; | |||
|
|||
function make(prim) { | |||
return ImportHookDefaultGen$1.make; | |||
return ImportHookDefaultGen$1.make(prim); |
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 change in the output looks incorrect to me.
Before it returned the make function, now it applies it and returns the result.
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.
Or was it broken before?
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.
It was broken before.
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.
Ah yes, I missed this in the review of the previous PR. 🙈
b6810b4
to
9ad29cd
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.
Thanks for the fix! 🎉
No description provided.