| 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 | } |
| 1385 | |
| 1386 | static inline void FLMutableArray_AppendNull(FLMutableArray a) { |
| 1387 | FLSlot_SetNull(FLMutableArray_Append(a)); |
nothing calls this directly
no test coverage detected