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