Skip to content

Optional renaming of methods according to Scala naming conventions #5

Open
@kornilova203

Description

@kornilova203

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    bindgenBinding generator

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions