-
-
Notifications
You must be signed in to change notification settings - Fork 739
feat(ast, parser, linter, codegen, formatter)!: rename CommentKind::Block to CommentKind::SinglelineBlock
#16501
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
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
CodSpeed Performance ReportMerging #16501 will not alter performanceComparing Summary
Footnotes
|
CommentKind::Block to CommentKind::SinglelineBlock
e175945 to
8173ec5
Compare
77c20fe to
00e08ca
Compare
Merge activity
|
00e08ca to
c7db70b
Compare
8173ec5 to
9f08971
Compare
|
Graphite has gone screwy. I've rebased on latest main to fix it. Hopefully it should merge now. |
CommentKind::Block to CommentKind::SinglelineBlockCommentKind::Block to CommentKind::SinglelineBlock
|
Also I've marked this as a breaking change, as it is a change which may affect downstream crate consumers. Really it was #16479 which was the main breaking change, but it's already merged. |
CommentKind::Block to CommentKind::SinglelineBlockCommentKind::Block to CommentKind::SinglelineBlock
…Block` to `CommentKind::SinglelineBlock` (#16501) #16479 introduced a new kind called `CommentKind::MultilineBlock`, which means a block comment that has at least one line break. Therefore, `CommentKind::Block` means it is a single-line block. In this PR, rename `CommentKind::Block` to `CommentKind::SinglelineBlock` to make the kind name more descriptive.
9f08971 to
320c09f
Compare
…Block` to `CommentKind::SinglelineBlock` (#16501) #16479 introduced a new kind called `CommentKind::MultilineBlock`, which means a block comment that has at least one line break. Therefore, `CommentKind::Block` means it is a single-line block. In this PR, rename `CommentKind::Block` to `CommentKind::SinglelineBlock` to make the kind name more descriptive.
…Block` to `CommentKind::SinglelineBlock` (oxc-project#16501) oxc-project#16479 introduced a new kind called `CommentKind::MultilineBlock`, which means a block comment that has at least one line break. Therefore, `CommentKind::Block` means it is a single-line block. In this PR, rename `CommentKind::Block` to `CommentKind::SinglelineBlock` to make the kind name more descriptive.

#16479 introduced a new kind called
CommentKind::MultilineBlock, which means a block comment that has at least one line break. Therefore,CommentKind::Blockmeans it is a single-line block.In this PR, rename
CommentKind::BlocktoCommentKind::SinglelineBlockto make the kind name more descriptive.