| 719 | } |
| 720 | |
| 721 | inline Doc Doc::fromJSON(slice_NONNULL json, FLError *outError) { |
| 722 | return Doc(FLDoc_FromJSON(json, outError), false); |
| 723 | } |
| 724 | |
| 725 | inline Doc& Doc::operator=(const Doc &other) { |
| 726 | if (other._doc != _doc) { |
nothing calls this directly
no test coverage detected