| 1377 | FLSlot_SetValue(FLMutableArray_Set(a, index), val); |
| 1378 | } |
| 1379 | static inline void FLMutableArray_SetArray(FLMutableArray a, uint32_t index, FLArray val) { |
| 1380 | FLSlot_SetValue(FLMutableArray_Set(a, index), (FLValue)val); |
| 1381 | } |
| 1382 | static inline void FLMutableArray_SetDict(FLMutableArray a, uint32_t index, FLDict val) { |
| 1383 | FLSlot_SetValue(FLMutableArray_Set(a, index), (FLValue)val); |
| 1384 | } |
nothing calls this directly
no test coverage detected