| 155 | static MutableDict newDict() {return MutableDict(FLMutableDict_New(), false);} |
| 156 | |
| 157 | MutableDict() :Dict() { } |
| 158 | MutableDict(FLMutableDict d) :Dict((FLDict)d) {FLMutableDict_Retain(*this);} |
| 159 | MutableDict(const MutableDict &d) :Dict((FLDict)d) {FLMutableDict_Retain(*this);} |
| 160 | MutableDict(MutableDict &&d) noexcept :Dict((FLDict)d) {d._val = nullptr;} |
nothing calls this directly
no test coverage detected