| 1350 | } |
| 1351 | |
| 1352 | void CScriptObject::EndIteration() |
| 1353 | { |
| 1354 | if(m_nIterationCounter==-1) |
| 1355 | { |
| 1356 | //Timur[2/20/2003] |
| 1357 | // This is invalid call, fire warning. |
| 1358 | FIXME_ASSERT(0); |
| 1359 | return; |
| 1360 | } |
| 1361 | |
| 1362 | lua_settop(m_pLS,m_nIterationCounter); |
| 1363 | m_nIterationCounter=-1; |
| 1364 | } |
| 1365 | |
| 1366 | ScriptVarType CScriptObject::GetCurrentType() |
| 1367 | { |
no test coverage detected