| 591 | } |
| 592 | |
| 593 | static LSPTextEdit parseTextEdit( const json& result ) { |
| 594 | LSPTextEdit edit; |
| 595 | edit.text = result.at( "newText" ).get<std::string>(); |
| 596 | edit.range = parseRange( result.at( MEMBER_RANGE ) ); |
| 597 | return edit; |
| 598 | } |
| 599 | |
| 600 | static std::vector<LSPTextEdit> parseTextEditArray( const json& result ) { |
| 601 | std::vector<LSPTextEdit> ret; |
no test coverage detected