Dale King
Dale King
> You can temporarily add this: > > ```kotlin > public infix fun BlockingAnsweringScope.callsCatching(block: BlockingCallDefinitionScope.(CallArgs) -> T) { > calls { runCatching { block(it) } } > } > ```...
Should figure out similar idea for verification, though will have to be different
Looks like it is fixed, but I have not been able to fully test it due to the switch to Source.
Just discovered the parameterized new which will cover the particular use case I have. But would still be nice to have.
> These will probably be `havingKeys()` and `havingValues()` based on Makes sense. I care about the functionality, not the name.
Doesn't seem to fix anything for me
In my case it is text coming from a swagger spec and whoever wrote it was following the old 2 spaces after a period convention. Regarding the notion of preserving...
I verified the proposed change does fix it for file comments, but does not work for general comments in code. Here are some unit tests (added to LineWrappingTest). The second...
Fixing it for within functions will be a much bigger job. Right now a CodeBlock has no idea that what you are adding is a comment after it is added....
> Fixing it for within functions will be a much bigger job. Right now a CodeBlock has no idea that what you are adding is a comment after it is...