-
Notifications
You must be signed in to change notification settings - Fork 13
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
--toplevel-only #29
Comments
That's done by the Maybe they need better documentation/help text... |
I tried |
Currently, to get such a graph, I need to modify a module with its export list removed and use |
Oh, that's odd, I don't think this should happen! Is there any chance you can give me a MWE for this? |
What does "MWE" stand for? |
So, just to confirm, with module KazuTest () where
foo = bar
where
bar = foo
flowchart TD
node_0[foo]
style node_0 stroke-dasharray: 5 5
classDef default fill-opacity:0,stroke:#777;
Oh sorry, minimal working example. If indeed you're getting different behavior than the example above, a small example that reproduces the bug. |
In this case, I got the same result: |
Sorry, my question should have been clearer maybe. You say that with |
The example which I hit upon is huge. |
First of all, thank you for creating a great tool!
I would like to have call graphs of top level functions only where all non-exports are included but local-bindings under
where
are hidden.Is such a feature technically possible?
The text was updated successfully, but these errors were encountered: