We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In main.rs
use timers::Config; fn main() { timers::run(config); }
In lib.rs
pub fn run(config: Config) {}
graphviz shows = main -> ...main.rs.timers::run but should be ...lib.rs.run
...main.rs.timers::run
...lib.rs.run
Imports are not explicitly clear from rust AST. We have to track import statements and internally manage dependencies and modules.
The text was updated successfully, but these errors were encountered:
Support for multiple languages
Sorry, something went wrong.
use timers::Config; fn main() { timers::run(config);}
No branches or pull requests
Code
In main.rs
In lib.rs
Issue
graphviz shows = main ->
...main.rs.timers::run
but should be...lib.rs.run
Explanation
Imports are not explicitly clear from rust AST. We have to track import statements and internally manage dependencies and modules.
The text was updated successfully, but these errors were encountered: