| 1411 | FLSlot_SetValue(FLMutableArray_Append(a), val); |
| 1412 | } |
| 1413 | static inline void FLMutableArray_AppendArray(FLMutableArray a, FLArray val) { |
| 1414 | FLSlot_SetValue(FLMutableArray_Append(a), (FLValue)val); |
| 1415 | } |
| 1416 | static inline void FLMutableArray_AppendDict(FLMutableArray a, FLDict val) { |
| 1417 | FLSlot_SetValue(FLMutableArray_Append(a), (FLValue)val); |
| 1418 | } |
nothing calls this directly
no test coverage detected