| 132 | } |
| 133 | |
| 134 | void CScriptObject::PushBack(int nVal) |
| 135 | { |
| 136 | _GUARD_STACK(m_pLS); |
| 137 | if (!_GET_THIS()) |
| 138 | return; |
| 139 | int nLastPos=lua_getn(m_pLS,-1); |
| 140 | SetAt(nLastPos+1,nVal); |
| 141 | } |
| 142 | |
| 143 | void CScriptObject::PushBack(float fVal) |
| 144 | { |
no test coverage detected