| 640 | } |
| 641 | |
| 642 | static LSPCommand parseCommand( const json& result ) { |
| 643 | auto title = result.at( MEMBER_TITLE ).get<std::string>(); |
| 644 | auto command = result.at( MEMBER_COMMAND ).get<std::string>(); |
| 645 | const auto& args = result.at( MEMBER_ARGUMENTS ); |
| 646 | return { title, command, args }; |
| 647 | } |
| 648 | |
| 649 | static std::vector<LSPDiagnostic> parseDiagnostics( const json& result ) { |
| 650 | std::vector<LSPDiagnostic> ret; |
no test coverage detected