-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Issue #43: Javadoc should be detected above block comment #16586
Conversation
Github, generate report |
src/test/java/com/puppycrawl/tools/checkstyle/api/FileContentsTest.java
Outdated
Show resolved
Hide resolved
Github, generate report |
@mahfouz72 if we have two “Javadocs” above a method, how does this work out? |
@nrmancuso The closer to the method is the Javadoc to check. Lines 27 to 45 in dc6d7f1
|
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.
Good stuff :)
@rnveach please take a look |
You certainly found an old issue to look at. |
I was thinking the same 😂 i don’t think I’ve dealt with anything less than four digits before. |
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.
FileContents.getJavadocBefore and this is used by 8 checks, so each one is affected by this bug
Can you provide us a list so it can be put in the first issue of the post.
...uppycrawl/tools/checkstyle/checks/javadoc/javadocmethod/InputJavadocMethodAboveComments.java
Show resolved
Hide resolved
...uppycrawl/tools/checkstyle/checks/javadoc/javadocmethod/InputJavadocMethodAboveComments.java
Show resolved
Hide resolved
while (lineNo > 0 && (lineIsBlank(lineNo) || lineIsComment(lineNo))) { | ||
// skip blank lines and comments | ||
while (lineNo > 0 && (lineIsBlank(lineNo) || lineIsComment(lineNo) | ||
|| lineInsideBlockComment(lineNo + 1))) { |
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.
Not near a computer, but I am curious why this one is the only one which is +1. Would this method call work if lineNo
was 0? Is this something we need to be concerned about?
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.
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 used the clangComments collection and the lineNos in this collection is shifted by 1 from the file text. That's why I added 1.
Is this a bug in our code? I believe some places still have issues with 0 versus 1 in our code.
yeah, I selected the Javadoc issues and sorted them by total comments this was the second one. By doing a quick search now, this is the oldest issue in the repo :) |
UnusedImports |
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.
item:
* @return {@code true} if the line is inside a block comment (excluding Javadoc comments) | ||
* , {@code false} otherwise | ||
*/ | ||
public boolean lineInsideBlockComment(int lineNo) { |
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.
please make it private.
We should not grow our API contract to users.
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.
done
/** | ||
* A Javadoc comment. | ||
*/ | ||
//@ A JML Annotation | ||
public int foo() { // violation, '@return tag should be present and have description.' |
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.
from user perspective it is not clear what is considered as javadoc comment. may be //@ A JML Annotation
?
/**
* A Javadoc comment.
* @return result
*/
//@ A JML Annotation
public int foo() throws Exception { // violation, '@throw tag should be present and have description.'
let update to this to give more hints that return is found, so javadoc is second comment from method signature.
same for all others.
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.
done
lets add one javadoc above comment to Input of each of this check. as they are affected. please use https://github.com/checkstyle/checkstyle/blob/master/.github/workflows/README.md#diff-report-by-configuration-at-test-configs-repository to trigger diff report for Example1 for each check. |
The report is already there for all Javadoc checks |
4d241af
to
14135e2
Compare
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.
Last
...uppycrawl/tools/checkstyle/checks/javadoc/javadocmethod/InputJavadocMethodAboveComments.java
Outdated
Show resolved
Hide resolved
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.
Thanks a lot !!!
closes #43
Diff Regression config: https://gist.githubusercontent.com/mohitsatr/f5a524a06294d907c84b9fc5b68661dc/raw/604872961df92db35e66c26218dc74c61bb10097/config.xml