-
-
Notifications
You must be signed in to change notification settings - Fork 814
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
fix[lang]: fix panic in call cycle detection #4200
fix[lang]: fix panic in call cycle detection #4200
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4200 +/- ##
===========================================
- Coverage 91.36% 46.14% -45.23%
===========================================
Files 109 109
Lines 15614 15617 +3
Branches 3436 3437 +1
===========================================
- Hits 14266 7206 -7060
- Misses 919 7856 +6937
- Partials 429 555 +126 ☔ View full report in Codecov by Sentry. |
if g == root: | ||
message = " -> ".join([f.name for f in path]) | ||
if g in path: | ||
extended_path = path + [g] |
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.
nice, very clean!
What I did
How I did it
How to verify it
Commit Message