| 1445 | FLSlot_SetValue(FLMutableDict_Set(d, key), val); |
| 1446 | } |
| 1447 | static inline void FLMutableDict_SetArray(FLMutableDict d, FLString key, FLArray val) { |
| 1448 | FLSlot_SetValue(FLMutableDict_Set(d, key), (FLValue)val); |
| 1449 | } |
| 1450 | static inline void FLMutableDict_SetDict(FLMutableDict d, FLString key, FLDict val) { |
| 1451 | FLSlot_SetValue(FLMutableDict_Set(d, key), (FLValue)val); |
| 1452 | } |
nothing calls this directly
no test coverage detected