Greg Zoller
Greg Zoller
Adding my $0.02. Salat has a very useful ability for traits where it supplies a type hint in the generated JSON when serializing a class for a trait-type. So, for...
Cool! The TryMe popup wouldn't serialize non-string map keys but that's probably because it was wired to work as basically a JSON converter, i.e. there's likely a JSON parser in...
More info: * Confirmed the same error with JDK13 running against 2.56. * Confirmed the error goes away when I remove the fast-serialization dependency (which is a net change of...
I second this one! I'm soexcited by the potential of this library, and eager to put it thru its paces, but am running into the same issue on 2.12 not...
We need to take this much farther than just equality. For example ScalaJack's JSON serialization of traits: ```scala trait Pet{ name: String } case class Cat(name: String, isPurring: Boolean) extends...
This is super! Can’t wait to play with it, and I’m excited about the prospect of a dotty port. I’ve been approaching the problem from the direction of Tasty inspection,...
+1 I often have test suites that are "expensive" lots of setup, use lots of resources, etc. Therefore I'd really like what @wvandrunen said--parallel compile/testCompile but a setting that allowed...
Yes, I see it now. I wasn't aware that Console redirection can be thread safe, and it is, so that's no problem. I'll rework this PR to be a simple...
You mention Scala 2 macros. Is this partial capability also present for Scala 3 macros? So far I haven’t seen that anything picks up changes in the macro vs generated...