We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Only seems to happen in def self.blahblah style class methods.
def self.blahblah
9090
class A def self.m # @@formatted_op_names.compute_if_absent(operation_name) do # operation_name.to_s.split('_').collect(&:capitalize).join # end operation_name end end
ALSO
class A def self.m operation_name # @@formatted_op_names.compute_if_absent(operation_name) do # operation_name.to_s.split('_').collect(&:capitalize).join # end end end
class A def self.m operation_name end # @@formatted_op_names.compute_if_absent(operation_name) do # operation_name.to_s.split('_').collect(&:capitalize).join # end end
I expected the comments to stay where they were.
The text was updated successfully, but these errors were encountered:
Comments shakes fist
Sorry, something went wrong.
f26e3b5
@mikker this was a very easy bug to fix, and along with your other one, I'm gonna cut a 0.6.7 release today which includes both
You're the best, thank you!
def
class << super
No branches or pull requests
Only seems to happen in
def self.blahblah
style class methods.9090
[...] (latest, tag:v0.6.0)Input file
Rubyfmt's output
ALSO
Input file
Rubyfmt's output
This breaks because
I expected the comments to stay where they were.
The text was updated successfully, but these errors were encountered: