| 1115 | } |
| 1116 | |
| 1117 | void UniversalLocator::asyncFuzzyMatchTextDocumentSymbol( |
| 1118 | const LSPSymbolInformationList& list, const std::string& query, const size_t& limit, |
| 1119 | std::function<void( std::shared_ptr<LSPSymbolInfoModel> )> cb ) { |
| 1120 | mApp->getThreadPool()->run( [this, list, query, limit, cb] { |
| 1121 | cb( LSPSymbolInfoModel::create( |
| 1122 | mUISceneNode, query, fuzzyMatchTextDocumentSymbol( list, query, limit ), true ) ); |
| 1123 | } ); |
| 1124 | } |
| 1125 | |
| 1126 | std::vector<ProjectDirectoryTree::CommandInfo> UniversalLocator::getLocatorCommands() const { |
| 1127 | std::vector<ProjectDirectoryTree::CommandInfo> vec; |
nothing calls this directly
no test coverage detected