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
gomobile bind currently tries to export all exported types. There are cases like RPC and encoding where some types might be exported by the package, but should not be exported by gomobile (due to language feature support). In these cases, it would be clearer for usage to have a list of unexported types, or a compiler annotation for types, than to see random warnings in the output about unsupported types.
The text was updated successfully, but these errors were encountered:
Proposal Details
gomobile bind
currently tries to export all exported types. There are cases like RPC and encoding where some types might be exported by the package, but should not be exported by gomobile (due to language feature support). In these cases, it would be clearer for usage to have a list of unexported types, or a compiler annotation for types, than to see random warnings in the output about unsupported types.The text was updated successfully, but these errors were encountered: