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

Support public re-export of private module #82

Open
notdanilo opened this issue Aug 30, 2021 · 1 comment
Open

Support public re-export of private module #82

notdanilo opened this issue Aug 30, 2021 · 1 comment

Comments

@notdanilo
Copy link
Contributor

We want to support this:

mod thing;
pub use thing::*;

It currently doesn't work because the temporary FFI project uses the full path like use crate::thing::Thing;
So we need to track down where the object is being publicly exposed.

@notdanilo notdanilo linked a pull request Sep 19, 2021 that will close this issue
@notdanilo
Copy link
Contributor Author

A process to deal with relative path imports, absolute path imports and wildcard imports are implemented in #79.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: 🆕 New
Development

Successfully merging a pull request may close this issue.

1 participant