| 14 | } |
| 15 | |
| 16 | LiteObject *LiteMutableArray::getObject(const int index) { |
| 17 | return (LiteObject *)array[index]; |
| 18 | } |
| 19 | |
| 20 | bool LiteMutableArray::pushObject(const LiteObject *object) { |
| 21 | unsigned int newCount = array_count + 1; |
no outgoing calls
no test coverage detected