-
Notifications
You must be signed in to change notification settings - Fork 39
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
Introduce SourceCode#unwrapMethodInvocation
utility method
#561
Introduce SourceCode#unwrapMethodInvocation
utility method
#561
Conversation
if (sourceCode == null || startPosition == Position.NOPOS || endPosition == Position.NOPOS) { | ||
return unwrapMethodInvocationDroppingWhitespaceAndComments(tree, state); | ||
} |
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.
Here and below: not sure how to test the "source code absent" case, so Pitest will complain about those.
Mutation testing report by Pitest. Review any surviving mutants by inspecting the line comments under Files changed. |
c731b57
to
5ae92ab
Compare
Mutation testing report by Pitest. Review any surviving mutants by inspecting the line comments under Files changed. |
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.
Love the testing setup 🚀 !
Suggested commit message:
I'll rebase #560 on top of this PR to use the new method. Another upcoming PR will also use it.