Kyle D. Blocher
Results
2
issues of
Kyle D. Blocher
I'm using your code for walking a dependency hierarchy and need it for more than just expressions. The code failed when trying to generate an expression for a property auto-setter,...
The following code leveraging the sealed interface + record pattern (to make sum types) should not violate the [InterfaceWithOnlyStatics](https://errorprone.info/bugpattern/InterfaceWithOnlyStatics) rule as the interface is `sealed`: ```java public sealed interface Sum...