Skip to content
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

fix: don't use color codes for pattern match code action #21120

Merged
merged 1 commit into from
Jul 11, 2024

Conversation

kasiaMarek
Copy link
Collaborator

extends Message(PatternMatchExhaustivityID) {
def kind = MessageKind.PatternMatchExhaustivity

private val hasMore = uncoveredCases.lengthCompare(6) > 0
val uncovered = uncoveredCases.take(6).mkString(", ")
val uncovered = uncoveredCases.take(6).map(SpaceEngine.display(_)).mkString(", ")
private val casesWithoutColor = uncoveredCases.map(SpaceEngine.display(_, withoutColors = true))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrap this call to display with ctx.withoutColors instead of the withoutColors param

@kasiaMarek kasiaMarek marked this pull request as ready for review July 10, 2024 11:47
Copy link
Contributor

@tgodzik tgodzik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! Anyone against merging it in the current state?

@dwijnand dwijnand merged commit 25ad99c into scala:main Jul 11, 2024
24 checks passed
WojciechMazur added a commit that referenced this pull request Aug 27, 2024
…o 3.5.2 (#21450)

Backports #21120 to the 3.5.2 branch.

PR submitted by the release tooling.
[skip ci]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bug: Insert Missing Cases For Type Union
3 participants