| 626 | } |
| 627 | |
| 628 | void CScriptObject::SetNullAt(int nIdx) |
| 629 | { |
| 630 | _GUARD_STACK(m_pLS); |
| 631 | if (!_GET_THIS()) |
| 632 | return; |
| 633 | |
| 634 | lua_pushnil(m_pLS); |
| 635 | lua_rawseti(m_pLS, - 2, nIdx); |
| 636 | } |
| 637 | |
| 638 | int CScriptObject::Count() |
| 639 | { |
no test coverage detected