| 68 | } |
| 69 | |
| 70 | std::string get_function_name(argument const& fn) { |
| 71 | detail::function_object * f = get_function_object(fn); |
| 72 | if (!f) { |
| 73 | return ""; |
| 74 | } |
| 75 | return f->name; |
| 76 | } |
| 77 | |
| 78 | object get_function_overloads(argument const& fn) { |
| 79 | lua_State * L = fn.interpreter(); |
nothing calls this directly
no test coverage detected