(RealStatePtr L, int funcidx, int top)
| 118 | |
| 119 | #if GEN_CODE_MINIMIZE |
| 120 | [MonoPInvokeCallback(typeof(LuaDLL.CSharpWrapperCaller))] |
| 121 | internal static int CSharpWrapperCallerImpl(RealStatePtr L, int funcidx, int top) |
| 122 | { |
| 123 | try |
| 124 | { |
| 125 | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| 126 | return translator.CallCSharpWrapper(L, funcidx, top); |
| 127 | } |
| 128 | catch (Exception e) |
| 129 | { |
| 130 | return LuaAPI.luaL_error(L, "c# exception:" + e); |
| 131 | } |
| 132 | } |
| 133 | #endif |
| 134 | |
| 135 | #if GEN_CODE_MINIMIZE |
nothing calls this directly
no test coverage detected