| 193 | } |
| 194 | |
| 195 | FunctionDoc::FunctionDoc(const std::string& pybind_doc) : pybind_doc_(pybind_doc) |
| 196 | { |
| 197 | ParseFunctionName(); |
| 198 | ParseSummary(); |
| 199 | ParseArguments(); |
| 200 | ParseReturn(); |
| 201 | } |
| 202 | |
| 203 | void FunctionDoc::ParseFunctionName() |
| 204 | { |
nothing calls this directly
no outgoing calls
no test coverage detected