RFR: 8341907: javac -Xlint should ignore /// on first line of source file
Pavel Rappo
prappo at openjdk.org
Wed Nov 6 23:20:42 UTC 2024
On Wed, 6 Nov 2024 21:04:24 GMT, Jonathan Gibbons <jjg at openjdk.org> wrote:
>> Please review this PR to exempt the [trick that JBang uses][] from the "dangling comment" lint introduced in JDK 23. For more information see this PR's JBS issue and its comment section.
>>
>> The fix makes sure that the warning is not issued if it relates to a leading `///` comment. For simplicity and similarity with the shebang construct, the comment should start from the first character of the file, and not a more permissive first non-whitespace character of the file.
>>
>> Since I'm not an expert in `java.compiler`, I'm unsure if my code intercepts warning in the most appropriate layer. Please double-check that.
>>
>> Skimming through the tests which I used for inspiration, `test/langtools/tools/javac/danglingDocComments`, I was unsure why they compile itself first without any `/ref=` construct. The test I introduced here does not do this; am I missing something?
>>
>> [trick that JBang uses]: https://www.jbang.dev/documentation/guide/latest/usage.html
>
> test/langtools/tools/javac/danglingDocComments/JBangExceptionTest.java line 14:
>
>> 12: // the classes need to provide the initial dangling comment, which would
>> 13: // otherwise interfere with the JTReg test comment. For similar reasons,
>> 14: // the files with test classes do __NOT__ have a copyright header.
>
> FYI, the normal guidance for source files that cannot follow standard stylistic guidance (such as files with tabs etc) is to dynamically generate the files, which is medium easy these days using text blocks. That being said, that advice does not work well in this case because the `jtreg` infrastructure for `@compile` tags does not work for generated files.
>
> In this case, I would recommend working the text string `nodynamiccopyright` into the head of the two JBang files. There are two or three possibilities.
>
> 1. Just put the word `nodynamiccopyright` at the end of the first line. Syntactically, it would be a command name, but such a command would never be executed after the `exit` statement.
> 2. Put a comment `#nodynamiccopyright` at the end of the first line.
> 3. Put a separate Java comment on the second line, using either an end-of-line comment or traditional comment. It might then be reasonably detected and taken into account by any automated scripts that ensure copyright headers are present unless that work is present.
Number 3 seems to be the cleanest. I'll try it; thanks.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/21923#discussion_r1831842921
More information about the compiler-dev
mailing list