| 83 | } |
| 84 | |
| 85 | static void DeserializeDoc(std::vector<std::string> &doc, |
| 86 | const Vector<Offset<String>> *documentation) { |
| 87 | if (documentation == nullptr) return; |
| 88 | for (uoffset_t index = 0; index < documentation->size(); index++) |
| 89 | doc.push_back(documentation->Get(index)->str()); |
| 90 | } |
| 91 | |
| 92 | static CheckedError NoError() { return CheckedError(false); } |
| 93 |
no test coverage detected