| 1387 | FLSlot_SetNull(FLMutableArray_Append(a)); |
| 1388 | } |
| 1389 | static inline void FLMutableArray_AppendBool(FLMutableArray a, bool val) { |
| 1390 | FLSlot_SetBool(FLMutableArray_Append(a), val); |
| 1391 | } |
| 1392 | static inline void FLMutableArray_AppendInt(FLMutableArray a, int64_t val) { |
| 1393 | FLSlot_SetInt(FLMutableArray_Append(a), val); |
| 1394 | } |
nothing calls this directly
no test coverage detected