James Baker
James Baker
Yes, the method currently used relies on JavaLangAccess containing a `getStackTraceElement` method. The diff that integrated the StackWalker api deleted this and so this regression has existed since Java 9....
Latest commit is green but the status checks are red. Not sure why, but I assume a click of retry will do the trick.
Sigh, you were right. My bad. Anyway, it looks like it'll go green now.
it's worth noting that I've been using this for the last 18 months with no issues. Great software, love it!
Are they misaligned in a decidable way?
Hey! You can do this already if you like, for example: ``` @FreeBuilder public interface Person { Optional getFavoriteColor(); class Builder extends Person_Builder { @Override public Person build() { Person...
so the simplest case would be something like (in the builder) something like: ``` @FreeBuilder public interface Person { Optional getFavoriteColor(); class Builder extends Person_Builder { boolean isFavoriteColorSet = false;...
Hey - the W3C (or maybe the IETF) standards have a requirement of a reference implementation to prove the RFC makes sense. For something like this, I'd love to see...
This is the Gradle annotation processors approach. They would have you add the immutables annotations to your classpath (it can/should be compileOnly)
Sadly IDEA does prefix matching. See https://github.com/JetBrains/intellij-community/blob/master/java/java-impl/src/com/intellij/codeInsight/JavaProjectCodeInsightSettings.java.