Georgi Krastev
Georgi Krastev
LoL, this is an artefact of how subtyping checks are ordered: * type variables on the left (such as `?F[X]`) are in `secondTry` * refined types on the right (such...
Hmm, master doesn't compile for me, so I don't think I will be able to do anything: ```scala [error] -- Error: /Users/georgy/work/zio/zio-grpc/e2e/src/test/scala/scalapb/zio_grpc/CommonServiceSpec.scala:14:4 [error] 14 | suite("unary request (common)")( [error] |...
Dunno, I just tried `sbt compile` - it will be easier for me to comment out this project while working 👍
I updated the description with sizes
Biggest offenders remaining (can't fix because they are static methods and binary compatibility): ``` 457K Jan 1 2010 implicits.class 371K Jan 1 2010 SemigroupalArityFunctions.class 158K Jan 1 2010 Semigroupal$.class 153K...
`case class ImportSelector(name: Name, namePos: Int, rename: Name, renamePos: Int)` - it's not a tree
> can you add tests for the new functionality? I don't quite understand the testing machinery here. How can we test backpressure?
@thesamet it's not possible to test backpressure reliably because the server just keeps sending messages. See: https://github.com/scalapb/zio-grpc/blob/5d29b6e0e55800c59ed6c48d16d5a07da96b840c/core/src/main/scalajvm/scalapb/zio_grpc/server/ZServerCallHandler.scala#L115 The check to `call.call.isReady` succeeds and is not related to `call.awaitReady`: * `def...
@thesamet wdyt about this one?
Interesting - if we think of `Map` as a `PartialFunction`, then providing a default value (or function from key to value) turns it into a total `Function` which we could...