-
-
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
Parse errors if @see
spans multiple lines
#16005
Comments
@see
spans multiple lines
I want to work on this issue! @romani could you assign it to me? |
No assignments, just make comment "I am on it" and start working. |
i am on it. |
It is not easy issue, if you are new to project I recommend to do "good xxxxx issue" first. |
error goes away on removing
|
ok, but users have right to put " ." anywhere they want. |
@romani I've made some changes in grammer . how do i make them reflect in |
as you changed a grammar, just run compilation, and it will be updated. |
I want to share my analysis here to make things clear at some points. First, the issues still exist even if everything is on a single line, so "multiple lines" have nothing to do with the issue.
Second, No parse error if there is a space after the tag
Currently, The parser does not allow a description to appear immediately after an HTML element in For example, this should be valid:
Whereas for references or strings, there should be a space before the description:
We should update the parser to:
Current Rule:
Proposed update:
|
Everything that javadoc tool is passing through its execution as normal (no error) and it rendering in html, should be supported by checkstyle. Our parser should be even a bit more relaxed and resilient than javadoc tool, and we can not demand that checkstyle be executed only after javadoc tool is passing.
Ok.
Requirements should be done by Checks , not a parser. See explanation above. |
This makes no sense, because if we go with this approach, it is impossible to a) clearly delineate what we do and don’t support, and b) have any reasonable grammar implementation. There is a major reason why our Java grammar performs well: we only operate on what the specification provides. To accept anything outside of this means greater ambiguity, which by definition tanks performance. We already have to take a hit on performance due to the fact that Javadoc grammar is not context-free, thus compounding the issue. The faulty logic of your statement is also evident when considering that now this invalid Javadoc has to be dealt with correctly by checks, thus further complicating check implementations. But - the bottom line is that why should anyone care about checking their Javadocs if they can’t even generate them? |
My memory is also that we were always strict with Javadocs and it's grammar. This is why we always accepted bad javadocs generate exceptions. There is an open issue to make these exceptions easier to understand, not remove them. |
we have two options:
timing of such validaation execution. |
We have no control over this in any case, java or javadoc validation.
This is a fallacy, as there are many ways to handle this, and nothing needs to be absolute. As we find invalid grammar, we can eliminate it and improve our performance. “Loose” at parsing time just equates to bad performance and overcomplicated checks; this is a fact. |
Just suggest, I shared most obvious ways. Sure we can consider trade offs |
Fix is merged, discussion on strategy of how to make javadoc parsers can be continued |
I have read check documentation: https://checkstyle.org/checks/javadoc/javadocmethod.html
I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run
I have executed the cli and showed it below, as cli describes the problem better than 1,000 words
/var/tmp $ cat config.xml
/var/tmp $ cat YOUR_FILE.java
Describe what you expect in detail.
No parsing errors since the
javadoc
in JDK 23.0.1 tool does not report any parsing problems.The text was updated successfully, but these errors were encountered: