-
Notifications
You must be signed in to change notification settings - Fork 107
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
Implement common helper functions for common formatting operations #135
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.
LGTM
|
||
"" | ||
" @public | ||
" Format lines in the current buffer via a formatter invoked by {cmd}. The |
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.
Perhaps document that {cmd}
is something you can pass to maktaba#syscall#Create()
? As it stands, I wasn't sure if this was requiring a Syscall object, and the cases above where you passed a list were bugs.
(also below.)
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.
Oh, good catch. It was a bug (but strangely wasn't caught by the tests… I'll need to investigate coverage there).
It actually does take a maktaba.Syscall… updated to clarify that and enforce.
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.
I mean, I think there's some advantage in being able to pass in anything that can be passed to syscall#Create(), since then we can pass a list in the simple case, and a Syscall object in the uncommon case?
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.
Oh yeah! Good idea, I forgot we made it that clever. And I guess it didn't fail tests because it wasn't broken. 🤦♂️
Updated to accept both.
Clarifies that the formatterhelper functions expect a maktaba.Syscall, enforces that, and fixes two formatters buildifier and rustfmt that didn't.
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.
LGTM++
Creates helper functions for the boilerplate of common operations in formatter implementations:
codefmt#formatterhelpers#Format({cmd})
andcodefmt#formatterhelpers#AttemptFakeRangeFormatting({startline}, {endline}, {cmd})
. These make conventions more obvious and help any intentional differences from the most common boilerplate version stand out more obviously.