separated state machine generation into an abstract class

This commit is contained in:
ParkerTenBroeck 2025-04-25 17:03:46 -04:00
parent c3532507f3
commit 9b0a9b7ad2
12 changed files with 379 additions and 286 deletions

View file

@ -11,6 +11,10 @@ public interface Future<R> {
throw new RuntimeException();
}
static <R> Future<R> ret(R r){
throw new RuntimeException();
}
final class Pending{
private static final Pending INSTANCE = new Pending();
private Pending(){}