We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Make an identifier string pool per-file to handle naming clashes. Give user fields and enums their function, field, and type identifiers. Then:
_tab: flatbufferz.Table
This will allow removing _s from field names (like _tab) and temporaries. It will also allow consistently naming the first self: Self parameter.
_
_tab
self: Self
The text was updated successfully, but these errors were encountered:
partially addressed in 0a7d9d4
this solution still appends underscores to getters. i was able to prevent a collision between the 'People' namespace and the 'Foo.People()' getter which resulted from https://github.com/travisstaloch/flatbufferz/blob/main/examples/test.fbs.
i know its not ideal to change the getter from 'People()' to 'People_()'. i would rather modify the namespace.
i'll leave this open until i can modify the namespace in a follow up.
Sorry, something went wrong.
No branches or pull requests
Make an identifier string pool per-file to handle naming clashes. Give user fields and enums their function, field, and type identifiers. Then:
_tab: flatbufferz.Table
) their identifiersThis will allow removing
_
s from field names (like_tab
) and temporaries. It will also allow consistently naming the firstself: Self
parameter.The text was updated successfully, but these errors were encountered: