-
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
Display dataflow analysis (if attached) in IR graph #183
Conversation
Codecov Report
@@ Coverage Diff @@
## main #183 +/- ##
=======================================
Coverage 92.14% 92.14%
=======================================
Files 90 90
Lines 16690 16697 +7
=======================================
+ Hits 15379 15386 +7
Misses 1311 1311
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Provided a test case. e34b98f |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Useful addition, many thanks!. Implementation looks good to me
uses_symbols, | ||
"]", | ||
) | ||
except (RuntimeError, KeyError, AttributeError) as _: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can simply skip the as _
if you're not planning to use the exception
Enhances the IR graph representation by also showing lives,uses and defines when
dataflow_analysis
is attached