mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:32:44 +00:00 
			
		
		
		
	 b35293d945
			
		
	
	
		b35293d945
		
	
	
	
	
		
			
			This moves all code comprehension-related code to a new library, LibCodeComprehension. This also moves some types related to code comprehension tasks (such as autocomplete, find declaration) out of LibGUI and into LibCodeComprehension.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			548 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			548 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| endpoint LanguageClient
 | |
| {
 | |
|     auto_complete_suggestions(Vector<CodeComprehension::AutocompleteResultEntry> suggestions) =|
 | |
|     declaration_location(CodeComprehension::ProjectLocation location) =|
 | |
|     declarations_in_document(String filename, Vector<CodeComprehension::Declaration> declarations) =|
 | |
|     todo_entries_in_document(String filename, Vector<CodeComprehension::TodoEntry> todo_entries) =|
 | |
|     parameters_hint_result(Vector<String> params, int current_index) =|
 | |
|     tokens_info_result(Vector<CodeComprehension::TokenInfo> tokens_info) =|
 | |
| }
 |