/////////////////////////////////////////////////////////////////////
| 204 | |
| 205 | ////////////////////////////////////////////////////////////////////////// |
| 206 | void CScriptTable::SetAtAny(int nIndex, const ScriptAnyValue& any) |
| 207 | { |
| 208 | CHECK_STACK(L); |
| 209 | PushRef(); |
| 210 | m_pSS->PushAny(any); |
| 211 | lua_rawseti(L, -2, nIndex); |
| 212 | lua_pop(L, 1); // Pop table. |
| 213 | } |
| 214 | |
| 215 | ////////////////////////////////////////////////////////////////////////// |
| 216 | bool CScriptTable::GetAtAny(int nIndex, ScriptAnyValue& any) |
no test coverage detected