-
Notifications
You must be signed in to change notification settings - Fork 456
Move the generate comments function down after all the merges #2245
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
Conversation
|
Thanks for the PR! This section of the codebase is owned by @saschanaz - if they write a comment saying "LGTM" then it will be merged. |
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.
This way we can't override comments, but we probably won't ever do that. LGTM thus.
| * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream) | ||
| */ | ||
| interface CompressionStream extends GenericTransformStream { | ||
| /** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */ |
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.
Wow, what useless comments... Who is providing these?
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.
MDN, they are from MDN
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.
It's a shame we are wasting parsing time and memory on these comments that just restate the annotation 😞
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.
But some comments are useful
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.
Some are absolutely, I am just lamenting comments that are just:
interface Foo {
// The **`bar`** read-only property of the Foo interface returns a string
readonly bar: string;
}|
LGTM. Yeah some comments are basically not anything more than placeholders, but we don't have a great way to filter them without adding some magic, which I don't want to. 😔 |
|
Merging because @saschanaz is a code-owner of all the changes - thanks! |
This way all the interfaces have comments, even overwritten ones.