Emilis Panovas
Emilis Panovas
I tried @sonots patch too, but reconnect was causing really bizarre behaviour (on highly concurrent servers). Instead, I simplified the patch to simple connection close and rely on DB pool...
I need help to finish this PR. `testCanEqualIncompatibleCaseObjects` fails because `ScTypeElement.type()` method results in failure for `case object` types. I'm not sure how else I can convert it to `ScType`....
> Hi @disordered. Thanks for the PR. We discussed it today and you are absolutely right, that we are missing the multiversal equality at the moment. I have not completely...
It doesn't address the case where type narrowing occurs (couldn't figure out how to detect type narrowing): ```scala for y :: ys
> Please see this part of our [guidelines](https://github.com/JetBrains/intellij-scala/blob/1c021da910b7621d45193a3a587770a07964b80c/CONTRIBUTING.md#some-guidelines-for-code-commits-and-pull-requests) > > > Every commit message should reference the YouTrack issue number in format #SCL-XXXXX > > Place primary issue number in...
Alright, all comments should be addressed now (including first commit messaging). I restructured test inheritance a bit. Also, changed the check logic for `withFilter` requirement as I realized that bulk...
> Have you tried with this approach: > > ```scala > test("gen filter") { > val filteredGen = for { > _ _ = println("Regenerating") > first second third }...
As John said, I am probably misusing the ZIO test generators. I'm not using them for property based testing - I thought this would be an easy way to generate...
> I think the performance issues you are experiencing come from using `filter`, not from generators in general. You can imagine that it takes more work to find a valid...
> @disordered what if I write it like this? Should it be regenerating `first` or not? > > ```scala > test("gen filter doesn't backtrack") { > val filteredGen = for...