Closed
Description
This issue was originally filed by @seaneagan
Instead of:
action().then((_) => handleCompletion());
I want to do:
action().then(handleCompletion);
Future.then would just need to do an is check on the arity. It could be a separate e.g. then0 method, but that would not be quite as nice UX.