-
-
Notifications
You must be signed in to change notification settings - Fork 670
Update binaryen #2461
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
Update binaryen #2461
Conversation
/** Name of the memory instance, if exported. */ | ||
export const Memory = "memory"; | ||
/** Name of the table instance, if exported. */ | ||
export const Table = "table"; |
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.
What consideration were there to make these uppercase? I think in all other places we are just using lowercase names.
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 don't have a strict preference. But I think we should normalize everything to CamelCase-style all enums / namespaced constants similar to UnaryOp.Eqz32
and others
Uh oh!
There was an error while loading. Please reload this page.