native
native copied to clipboard
Dart packages related to FFI and native assets bundling.
- Thanks for your contribution! Please replace this text with a description of what this PR is changing or adding and why, list any relevant issues, and review the contribution...
We should see if we can generate the proguard rules. We don't want to generate everything though (whole Java / Android API). So we need to integrate into the Dart...
Now that we're parsing Kotlin's metadata, we could start adding more and more specific support for Kotlin features. This is an umbrella issue for all these features. Feel free to...
Kotlin's top level functions get desugared into static methods in `${FileName}Kt` classes.
https://kotlinlang.org/docs/extensions.html
I wonder if it would make sense for all APIs that return JReferences to add an `arena` optional named argument: ```dart map.put('Hello'.toJString()..deletedIn(arena), helloExample); ``` would become ```dart map.put('Hello'.toJString(arena: arena), helloExample);...