Cary Robbins
Cary Robbins
Note that I had this same issue with [Amethyst](https://github.com/amethyst/amethyst); however, the problem has been fixed in master. Maybe there could be some coordination to figure out what causes this issue.
@fthomas FWIW, I recently added `@newsubtype` macro support, which gets us unboxed primitives - https://github.com/estatico/scala-newtype/pull/14 I plan on cutting a release including this feature in the near future. If folks...
I'm just surprised that it's defaulting the prod flag to true in my case. I'd think by default, if it didn't support flags, it would just default everything to false....
Bump, mostly curious about the answer to this question - > Can a single hsdev server be used for scanning multiple projects? Or do you need to spawn a separate...
Let's consider the following project - https://github.com/Simspace/servant-websockets There are five packages in the directories `core`, `client`, `server`, `examples`, and `test`. If I have my IDE spin up an hsdev server,...
Maybe we could add an `--exports` flag to the `symbol` command that includes these?
One thing we might want to take into consideration is the potential for nullable values in the Java FFI. I'm not entirely sure how that could look, but maybe there's...
I would think that the direct interop could probably work for fields, getters, setters, functional interfaces, etc. automatically when the names (and/or types) aren't ambiguous. However, `new` might be an...
@bradrn I also considered TypeApplications for this. Modelled it in Haskell and seems to work well if you reverse the order of the New type args - ```haskell class New...
Sounds good. Once you get there, let me know and I may be able to help contribute to get this working as I'd use it quite often.