-
Notifications
You must be signed in to change notification settings - Fork 251
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
[wit-parser] Don't trim leading/trailing whitespace from lines in doc comments #1954
base: main
Are you sure you want to change the base?
[wit-parser] Don't trim leading/trailing whitespace from lines in doc comments #1954
Conversation
@@ -4,4 +4,4 @@ Caused by: | |||
0: failed to decode world from module | |||
1: module was not valid | |||
2: failed to resolve import `a::a` | |||
3: module requires an import interface named `a` | |||
3: module requires an import interface named `a` |
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.
Could you try rebasing on main
and re-BLESS-ing tests to remove some of these changes?
Thanks for this! One thing I might recommend is to flesh out this trimming of whitespace more than what's already there. You're right that the current implementation is buggy but ideally this wouldn't pick up the whitespace from the comment itself (e.g. the leading space). The way I know I've dealt with this in the past with rustdoc is to collect the documentation block, calculating the longest longest amount of whitespace shared amongst all lines, and then drop that. That would, for example, drop the leading space here. |
Sounds good, I wasn't sure if this was an issue for the project in the first place or what behavior would be a good replacement so I wanted to keep the changes minimal to start. |
0e4b337
to
bd39d87
Compare
Sounds good, and yeah no worries! I think some git mishaps may have happened during the rebase though? |
…e minimum amount of whitespace common to all lines and strip that much, rather than going all-or-nothing.
bd39d87
to
7507a92
Compare
Yeah sorry about that, I think I rebased and pushed using |
Trimming whitespace in doc comment lines could break custom formatting when reading and/or copying docs from
.wit
files.For example, using jco to generate Typescript definitions, we want to copy the documentation directly from .wit to .d.ts. However, a doc comment like this will be altered after parsing: