static DynamicCallable methodAsDynamicCallable(O object, S method) {
  ret new DynamicCallable {
    O _dyn(O[] args) {
      ret call(object, method, args);
    }
  };
}