Liam Rougoor
Liam Rougoor
An update: I copied the solution and the faulty project to a new solution. When I run my implementation on the copy, it all works. So I assume the exception...
Hi! I was just browsing through issues, and would like to put my hands on this.
Perhaps a similar feature could be to switch if-else statements or block content. For example: ``` if (condition) { doA(); } else { doB(); } ``` could be mutated to:...
You're right, bad example 😅 How about `else if` statements that you switch around (similar to switching your cases): ``` if (conditionA) { doA(); } else if (conditionB) { doB();...
I'll work on it 👍
Thanks for your reply @dupdob. I'm pretty new to the stryker.net codebase, so if you remember the reference to your explanation, please do share. I'd love to learn more! I've...
After some consideration, we _are_ going to add the `return default` within the `BlockMutator`. The `BlockMutator` can know when it causes a compile error due to a missing return statement,...
@dupdob I know, I want to change so that the default return _is_ added by the block mutator, so we can make it transparent to the user.
@AshleighAdams I've been looking into it a little, it seems that if you run the action on Windows instead of Linux, this error/issue does not occur (just like how it...
Hi @causa-prima ! I'm taking a look at the PR again, but it seems there are still some unresolved comments and questions. I'll check if they are still relevant and...