Skip to content
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

Optional renaming of methods according to Scala naming conventions #5

Open
kornilova203 opened this issue May 24, 2018 · 0 comments
Open
Labels
bindgen Binding generator

Comments

@kornilova203
Copy link
Member

Currently bindgen outputs methods with the same names as in native library.
It would be good to have a way to transform names according to Scala naming conventions

// before
def my_function(arg: native.CInt): native.CInt = native.extern

// after
@name("my_function")
def myFunction(arg: native.CInt): native.CInt = native.extern
@jonas jonas added the bindgen Binding generator label Jun 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bindgen Binding generator
Projects
None yet
Development

No branches or pull requests

2 participants