-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Add support for diff3-style merge #16135
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
@katemihalikova, |
@@ -429,6 +429,7 @@ namespace ts { | |||
case CharacterCodes.slash: | |||
// starts of normal trivia | |||
case CharacterCodes.lessThan: | |||
case CharacterCodes.bar: |
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 actually called pipe
pretty much everywhere
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.
@alfaproject can you open a separate issue or PR for this? This PR doesn't change the CharacterCodes
enum.
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.
Please don't open a PR - we already consistently use bar
and Bar
throughout the codebase.
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.
From further discussion with @DanielRosenwasser, it would change the public API since SyntaxKind
would also need to change. So I think we should just live with bar
.
@sandersn can you please review this change |
Thanks @katemihalikova ! |
Fixes #16129