(RealStatePtr L, CSharpWrapper func)
| 1426 | } |
| 1427 | |
| 1428 | internal void PushCSharpWrapper(RealStatePtr L, CSharpWrapper func) |
| 1429 | { |
| 1430 | if (func == null) |
| 1431 | { |
| 1432 | LuaAPI.lua_pushnil(L); |
| 1433 | } |
| 1434 | else |
| 1435 | { |
| 1436 | LuaAPI.xlua_push_csharp_wrapper(L, csharpWrapperSize); |
| 1437 | ensureCSharpWrapperCapacity(csharpWrapperSize + 1); |
| 1438 | csharpWrapper[csharpWrapperSize++] = func; |
| 1439 | } |
| 1440 | } |
| 1441 | #endif |
| 1442 | |
| 1443 | internal object[] popValues(RealStatePtr L,int oldTop) |
no test coverage detected