Michał Pałka

Results 74 comments of Michał Pałka

I experimented with that already quite some time ago so I might not remember the problems I had with that in detail. But in general I would expect it to...

Actually `.*` did work for some time but keeping it alive slowed me down too much when I was experimenting with other stuff so I removed support for it and...

The main purpose of `iskra-next` branch was to: 1. Distinguish between different kinds of columns which can or cannot be used in a specific context when the data type of...

> I haven't done much Scala 3 development yet, but would an opaque type that wraps a tuple be an option? I don't think opaque types would be any help...

LGTM in general. However I would hold merging that until we finish the beta release. Also we should see if/how this change influences compilation times from different projects from codegen,...

Scala 2 does look for `implicitNotFound` in parents and we decided to keep consistent with this behaviour https://github.com/lampepfl/dotty/issues/10098. The difference is that in Scala 2 the message from `implicitNotFound` does...

@lbialy the compiler's warning is quite misleading. It seems that the problem is that `error(...)` returns `Nothing` rather than `Unit`. When `.ok()` is being inlined and the conditions for the...

I needed to slightly modify the snippet to close the server so that it doesn't hang the bisecting tests. `/tmp/bisect/ArmeriaServer.scala`: ```scala //> using dep com.linecorp.armeria:armeria:1.30.1 import com.linecorp.armeria.common.HttpResponse import com.linecorp.armeria.server.Server object...

@WojciechMazur as far as I can see the issue was fixed on 10.08, which was before the cut-off of release-3.6.0, so this shouldn't need any backporting for 3.6.x. Or did...