You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 20, 2024. It is now read-only.
Hello !
Testing the C++ generated by skew I noticed that the generated enums are all empty, adding some debugging to console I can see that at parse time the enum variables has content but at emit time the variables content is empty, I'm still trying to find why this happen.
The Skew compiler is an optimizing compiler and anything that's internal to your code is fair game for optimization. If you need to ensure that something is present because external code depends on it, just add the @export annotation to it and the optimizer won't touch it. That should make sure it appears in the output, even in release mode. Does that work?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello !
Testing the C++ generated by skew I noticed that the generated enums are all empty, adding some debugging to console I can see that at parse time the enum variables has content but at emit time the variables content is empty, I'm still trying to find why this happen.
Cheers !
The text was updated successfully, but these errors were encountered: