-
Notifications
You must be signed in to change notification settings - Fork 443
[CodeGeneration] Improve identifier backticking #2813
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
[CodeGeneration] Improve identifier backticking #2813
Conversation
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.
Nice removal of some unnecessary backticks. Thank you!
CodeGeneration/Sources/SyntaxSupport/IdentifierConvertible.swift
Outdated
Show resolved
Hide resolved
a159168
to
ac8577f
Compare
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.
Looking great.
I’m waiting for swiftlang/swift#76040 to be merged, which is currently blocking CI, before running CI on this PR.
Apparently the fixes have been merged :) |
@swift-ci Please test |
Thanks for the ping, I forgot about this PR. |
Looks like the tests in the |
- tackled redundant, inconsistent, and omitted backticking of identifiers
Head branch was pushed to by a user without write access
ac8577f
to
d0558dc
Compare
My bad, I wasn't aware CodeGeneration has its own test set... |
Haha, yeah, it’s not that obvious. |
This PR is now prime for another round of ci-test after the latest commit :) |
@swift-ci Please test |
@swift-ci Please test Windows |
Currently there're a lot of redundant, inconsistent, or potentially omitted instances of identifier backticking in code generation, this PR aims to fix the issue.