diff options
Diffstat (limited to 'modules/gdscript/language_server')
4 files changed, 46 insertions, 51 deletions
diff --git a/modules/gdscript/language_server/gdscript_extend_parser.cpp b/modules/gdscript/language_server/gdscript_extend_parser.cpp index e9a7bf3830..d106b3b541 100644 --- a/modules/gdscript/language_server/gdscript_extend_parser.cpp +++ b/modules/gdscript/language_server/gdscript_extend_parser.cpp @@ -39,8 +39,7 @@ void ExtendGDScriptParser::update_diagnostics() {  	diagnostics.clear();  	const List<ParserError> &errors = get_errors(); -	for (const List<ParserError>::Element *E = errors.front(); E != nullptr; E = E->next()) { -		const ParserError &error = E->get(); +	for (const ParserError &error : errors) {  		lsp::Diagnostic diagnostic;  		diagnostic.severity = lsp::DiagnosticSeverity::Error;  		diagnostic.message = error.message; @@ -61,8 +60,7 @@ void ExtendGDScriptParser::update_diagnostics() {  	}  	const List<GDScriptWarning> &warnings = get_warnings(); -	for (const List<GDScriptWarning>::Element *E = warnings.front(); E; E = E->next()) { -		const GDScriptWarning &warning = E->get(); +	for (const GDScriptWarning &warning : warnings) {  		lsp::Diagnostic diagnostic;  		diagnostic.severity = lsp::DiagnosticSeverity::Warning;  		diagnostic.message = "(" + warning.get_name() + "): " + warning.get_message(); @@ -152,9 +150,9 @@ void ExtendGDScriptParser::parse_class_symbol(const GDScriptParser::ClassNode *p  	}  	r_symbol.kind = lsp::SymbolKind::Class;  	r_symbol.deprecated = false; -	r_symbol.range.start.line = LINE_NUMBER_TO_INDEX(p_class->start_line); -	r_symbol.range.start.character = LINE_NUMBER_TO_INDEX(p_class->start_column); -	r_symbol.range.end.line = LINE_NUMBER_TO_INDEX(p_class->end_line); +	r_symbol.range.start.line = p_class->start_line; +	r_symbol.range.start.character = p_class->start_column; +	r_symbol.range.end.line = lines.size();  	r_symbol.selectionRange.start.line = r_symbol.range.start.line;  	r_symbol.detail = "class " + r_symbol.name;  	bool is_root_class = &r_symbol == &class_symbol; @@ -167,7 +165,7 @@ void ExtendGDScriptParser::parse_class_symbol(const GDScriptParser::ClassNode *p  			case ClassNode::Member::VARIABLE: {  				lsp::DocumentSymbol symbol;  				symbol.name = m.variable->identifier->name; -				symbol.kind = lsp::SymbolKind::Variable; +				symbol.kind = m.variable->property == VariableNode::PropertyStyle::PROP_NONE ? lsp::SymbolKind::Variable : lsp::SymbolKind::Property;  				symbol.deprecated = false;  				symbol.range.start.line = LINE_NUMBER_TO_INDEX(m.variable->start_line);  				symbol.range.start.character = LINE_NUMBER_TO_INDEX(m.variable->start_column); @@ -319,7 +317,7 @@ void ExtendGDScriptParser::parse_function_symbol(const GDScriptParser::FunctionN  	const String uri = get_uri();  	r_symbol.name = p_func->identifier->name; -	r_symbol.kind = lsp::SymbolKind::Function; +	r_symbol.kind = p_func->is_static ? lsp::SymbolKind::Function : lsp::SymbolKind::Method;  	r_symbol.detail = "func " + String(p_func->identifier->name) + "(";  	r_symbol.deprecated = false;  	r_symbol.range.start.line = LINE_NUMBER_TO_INDEX(p_func->start_line); @@ -467,8 +465,8 @@ String ExtendGDScriptParser::parse_documentation(int p_line, bool p_docs_down) {  	}  	String doc; -	for (List<String>::Element *E = doc_lines.front(); E; E = E->next()) { -		doc += E->get() + "\n"; +	for (const String &E : doc_lines) { +		doc += E + "\n";  	}  	return doc;  } diff --git a/modules/gdscript/language_server/gdscript_text_document.cpp b/modules/gdscript/language_server/gdscript_text_document.cpp index 55aff618aa..69ddbe5d1e 100644 --- a/modules/gdscript/language_server/gdscript_text_document.cpp +++ b/modules/gdscript/language_server/gdscript_text_document.cpp @@ -157,8 +157,7 @@ Array GDScriptTextDocument::completion(const Dictionary &p_params) {  		int i = 0;  		arr.resize(options.size()); -		for (const List<ScriptCodeCompletionOption>::Element *E = options.front(); E; E = E->next()) { -			const ScriptCodeCompletionOption &option = E->get(); +		for (const ScriptCodeCompletionOption &option : options) {  			lsp::CompletionItem item;  			item.label = option.display;  			item.data = request_data; @@ -294,8 +293,8 @@ Array GDScriptTextDocument::documentLink(const Dictionary &p_params) {  	List<lsp::DocumentLink> links;  	GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_document_links(params.textDocument.uri, links); -	for (const List<lsp::DocumentLink>::Element *E = links.front(); E; E = E->next()) { -		ret.push_back(E->get().to_json()); +	for (const lsp::DocumentLink &E : links) { +		ret.push_back(E.to_json());  	}  	return ret;  } @@ -322,8 +321,8 @@ Variant GDScriptTextDocument::hover(const Dictionary &p_params) {  		Array contents;  		List<const lsp::DocumentSymbol *> list;  		GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_related_symbols(params, list); -		for (List<const lsp::DocumentSymbol *>::Element *E = list.front(); E; E = E->next()) { -			if (const lsp::DocumentSymbol *s = E->get()) { +		for (const lsp::DocumentSymbol *&E : list) { +			if (const lsp::DocumentSymbol *s = E) {  				contents.push_back(s->render().value);  			}  		} @@ -430,8 +429,8 @@ Array GDScriptTextDocument::find_symbols(const lsp::TextDocumentPositionParams &  	} else if (GDScriptLanguageProtocol::get_singleton()->is_smart_resolve_enabled()) {  		List<const lsp::DocumentSymbol *> list;  		GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_related_symbols(p_location, list); -		for (List<const lsp::DocumentSymbol *>::Element *E = list.front(); E; E = E->next()) { -			if (const lsp::DocumentSymbol *s = E->get()) { +		for (const lsp::DocumentSymbol *&E : list) { +			if (const lsp::DocumentSymbol *s = E) {  				if (!s->uri.is_empty()) {  					lsp::Location location;  					location.uri = s->uri; diff --git a/modules/gdscript/language_server/gdscript_workspace.cpp b/modules/gdscript/language_server/gdscript_workspace.cpp index 1915c92cbf..e6c819b22f 100644 --- a/modules/gdscript/language_server/gdscript_workspace.cpp +++ b/modules/gdscript/language_server/gdscript_workspace.cpp @@ -119,8 +119,7 @@ const lsp::DocumentSymbol *GDScriptWorkspace::get_script_symbol(const String &p_  void GDScriptWorkspace::reload_all_workspace_scripts() {  	List<String> paths;  	list_script_files("res://", paths); -	for (List<String>::Element *E = paths.front(); E; E = E->next()) { -		const String &path = E->get(); +	for (const String &path : paths) {  		Error err;  		String content = FileAccess::get_file_as_string(path, &err);  		ERR_CONTINUE(err != OK); @@ -559,8 +558,8 @@ const lsp::DocumentSymbol *GDScriptWorkspace::resolve_native_symbol(const lsp::N  void GDScriptWorkspace::resolve_document_links(const String &p_uri, List<lsp::DocumentLink> &r_list) {  	if (const ExtendGDScriptParser *parser = get_parse_successed_script(get_file_path(p_uri))) {  		const List<lsp::DocumentLink> &links = parser->get_document_links(); -		for (const List<lsp::DocumentLink>::Element *E = links.front(); E; E = E->next()) { -			r_list.push_back(E->get()); +		for (const lsp::DocumentLink &E : links) { +			r_list.push_back(E);  		}  	}  } @@ -587,8 +586,7 @@ Error GDScriptWorkspace::resolve_signature(const lsp::TextDocumentPositionParams  				GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_related_symbols(text_pos, symbols);  			} -			for (List<const lsp::DocumentSymbol *>::Element *E = symbols.front(); E; E = E->next()) { -				const lsp::DocumentSymbol *symbol = E->get(); +			for (const lsp::DocumentSymbol *const &symbol : symbols) {  				if (symbol->kind == lsp::SymbolKind::Method || symbol->kind == lsp::SymbolKind::Function) {  					lsp::SignatureInformation signature_info;  					signature_info.label = symbol->detail; diff --git a/modules/gdscript/language_server/lsp.hpp b/modules/gdscript/language_server/lsp.hpp index a7dcfdb22d..0138f132ad 100644 --- a/modules/gdscript/language_server/lsp.hpp +++ b/modules/gdscript/language_server/lsp.hpp @@ -1018,32 +1018,32 @@ struct CompletionList {   * A symbol kind.   */  namespace SymbolKind { -static const int File = 0; -static const int Module = 1; -static const int Namespace = 2; -static const int Package = 3; -static const int Class = 4; -static const int Method = 5; -static const int Property = 6; -static const int Field = 7; -static const int Constructor = 8; -static const int Enum = 9; -static const int Interface = 10; -static const int Function = 11; -static const int Variable = 12; -static const int Constant = 13; -static const int String = 14; -static const int Number = 15; -static const int Boolean = 16; -static const int Array = 17; -static const int Object = 18; -static const int Key = 19; -static const int Null = 20; -static const int EnumMember = 21; -static const int Struct = 22; -static const int Event = 23; -static const int Operator = 24; -static const int TypeParameter = 25; +static const int File = 1; +static const int Module = 2; +static const int Namespace = 3; +static const int Package = 4; +static const int Class = 5; +static const int Method = 6; +static const int Property = 7; +static const int Field = 8; +static const int Constructor = 9; +static const int Enum = 10; +static const int Interface = 11; +static const int Function = 12; +static const int Variable = 13; +static const int Constant = 14; +static const int String = 15; +static const int Number = 16; +static const int Boolean = 17; +static const int Array = 18; +static const int Object = 19; +static const int Key = 20; +static const int Null = 21; +static const int EnumMember = 22; +static const int Struct = 23; +static const int Event = 24; +static const int Operator = 25; +static const int TypeParameter = 26;  }; // namespace SymbolKind  /**  |