-
Notifications
You must be signed in to change notification settings - Fork 134
#4134. Add new tests regarding whitespaces and interrupting lines #4135
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
base: main
Are you sure you want to change the base?
Conversation
|
@szakarias @athomas please grant me the permission to assign reviewers. |
Done |
Thanks! |
|
@szakarias @eernstg please review. Some checks failed with |
|
I'll just remain aware of this work, perhaps adding a comment now and then, but not do regular full reviews. |
Co-authored-by: Erik Ernst <eernst@google.com>
szakarias
left a comment
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 suspect the SubprocessException is just a side effect of the analyzer failing (exit code 2) due to the warnings and infos. Please try addressing those 5 reported issues first to see if it clears up the CI.
It is indeed annoying, but you will need to comment out the unreachable code after markTestSkipped to resolve the dead_code warnings.
| @reflectiveTest | ||
| class LineBasedDocCommentsTest extends Co19TestBase { | ||
| /// Check that the parser removes the three slashes and all leading | ||
| /// whitespaces |
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.
nit: replace "whitespaces" with "whitespace" in general
UPD.
The spec says "Exception: inside fenced code blocks (
```)...". Github flavored markdown also supports~~~as begin/end of code blocks. Probably it makes sense to mention it to the spec. Say "Exception: inside fenced code blocks (``` or ~~~)...".