| 1050 | self->closure = closure; /* owned */ |
| 1051 | self->has_kw = has_kw; |
| 1052 | return lean_io_result_mk_ok(wrap_pyobject(instance)); |
| 1053 | } |
| 1054 | |
| 1055 | LEAN_EXPORT lean_obj_res leanpy_make_callable(lean_obj_arg closure, lean_obj_arg world) { |
| 1056 | (void)world; |
| 1057 | return make_callable_obj(closure, 0); |
| 1058 | } |
nothing calls this directly
no test coverage detected