-
Notifications
You must be signed in to change notification settings - Fork 49
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
Add Cyclomatic Complexity implementation for Java #786
Conversation
CC @dburriss, since he's interested in Java support |
727c782
to
5600c46
Compare
Codecov Report
@@ Coverage Diff @@
## master #786 +/- ##
==========================================
- Coverage 39.76% 39.69% -0.07%
==========================================
Files 51 51
Lines 6810 6827 +17
Branches 972 975 +3
==========================================
+ Hits 2708 2710 +2
- Misses 3446 3453 +7
- Partials 656 664 +8
Continue to review full report at Codecov.
|
5600c46
to
0722e37
Compare
Nice good to see. |
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.
LGTM. Thank you.
Unrelated to this change, but in looking to the code for js, I think we (I ??) missed to add operators like |
Yep, right, we forgot them. Could you please open an issue in order to remember them? Thank you @calixteman! :) |
This PR adds the Cyclomatic Complexity metrics implementation for the Java language. Two unit tests are added to verify the correct computation of the measures. Thanks in advance for the review.