Voytek Pituła
Voytek Pituła
For the record, I found the following recent work about records for scala/dotty: https://www.youtube.com/watch?v=ntrSagXL200 http://www.csc.kth.se/~phaller/doc/karlsson-haller18-scala.pdf It would be nice to have it in Dotty.
I found a serious regression when tried to use the snapshot in my codebase. I added handling and a test case for it, but please let me know if that's...
Personally I wouldn't make it more complicated than it has to be. Fundamentally we need to 1. collect all subtypes of the enum type - already covered 2. make sure...
Hey @lloydmeta, I just finished migrating my codebase, and this is the last blocker for me. Do you think it could be merged and released anytime soon?
Sure, but what would be the outline of the filtering logic? For me it seems that there is no inherent limitation to what members are being traversed, as long as...
So you're considering scenarios where the user defines an enum subtype inside the enum object but doesn't expect it to be picked up by the macro? From a variance perspective,...
Oh yes, that's almost exactly the scenario I have in my codebase and it works well. When I was referring to subtype relationship, I meant relation to the type passed...
I share your preference and agree that the absence of a good reason is enough not to support a particular case. That said, I think this specific situation is tricky...
> You could just define each option and positional parameter as required. Definitely, but it introduces places for mistakes. For worlds without nulls (e.g. Scala or null-prohibited Java), the information...
Sure, that's fine with me. There is a solution available in the user space (the transformer) hence no need to have it on the library level. Maybe more voices from...