You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Default parameters could not be mutated in the method declaration due to the cause of compile errors. However, since the semantic model was introduced, we could mutate method invocations that make use of default parameters.
Describe the solution you'd like
I'd like to see a mutator that mutates method invocations that use default parameters.
Is your feature request related to a problem? Please describe.
Default parameters could not be mutated in the method declaration due to the cause of compile errors. However, since the semantic model was introduced, we could mutate method invocations that make use of default parameters.
Describe the solution you'd like
I'd like to see a mutator that mutates method invocations that use default parameters.
Additional context
An example:
When the method is called like this:
myMethodWithDefaultParameter();
I'd expect a mutation like:
myMehodWithDefaultParameter("");
The text was updated successfully, but these errors were encountered: