mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	Add fallback argument hints for default values
This commit is contained in:
		
							parent
							
								
									4e990cd7e5
								
							
						
					
					
						commit
						7ffc246aad
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		|  | @ -778,18 +778,24 @@ static String _make_arguments_hint(const GDScriptParser::FunctionNode *p_functio | ||||||
| 					const GDScriptParser::CallNode *call = static_cast<const GDScriptParser::CallNode *>(par->initializer); | 					const GDScriptParser::CallNode *call = static_cast<const GDScriptParser::CallNode *>(par->initializer); | ||||||
| 					if (call->is_constant && call->reduced) { | 					if (call->is_constant && call->reduced) { | ||||||
| 						def_val = call->function_name.operator String() + call->reduced_value.operator String(); | 						def_val = call->function_name.operator String() + call->reduced_value.operator String(); | ||||||
|  | 					} else { | ||||||
|  | 						def_val = call->function_name.operator String() + (call->arguments.is_empty() ? "()" : "(...)"); | ||||||
| 					} | 					} | ||||||
| 				} break; | 				} break; | ||||||
| 				case GDScriptParser::Node::ARRAY: { | 				case GDScriptParser::Node::ARRAY: { | ||||||
| 					const GDScriptParser::ArrayNode *arr = static_cast<const GDScriptParser::ArrayNode *>(par->initializer); | 					const GDScriptParser::ArrayNode *arr = static_cast<const GDScriptParser::ArrayNode *>(par->initializer); | ||||||
| 					if (arr->is_constant && arr->reduced) { | 					if (arr->is_constant && arr->reduced) { | ||||||
| 						def_val = arr->reduced_value.operator String(); | 						def_val = arr->reduced_value.operator String(); | ||||||
|  | 					} else { | ||||||
|  | 						def_val = arr->elements.is_empty() ? "[]" : "[...]"; | ||||||
| 					} | 					} | ||||||
| 				} break; | 				} break; | ||||||
| 				case GDScriptParser::Node::DICTIONARY: { | 				case GDScriptParser::Node::DICTIONARY: { | ||||||
| 					const GDScriptParser::DictionaryNode *dict = static_cast<const GDScriptParser::DictionaryNode *>(par->initializer); | 					const GDScriptParser::DictionaryNode *dict = static_cast<const GDScriptParser::DictionaryNode *>(par->initializer); | ||||||
| 					if (dict->is_constant && dict->reduced) { | 					if (dict->is_constant && dict->reduced) { | ||||||
| 						def_val = dict->reduced_value.operator String(); | 						def_val = dict->reduced_value.operator String(); | ||||||
|  | 					} else { | ||||||
|  | 						def_val = dict->elements.is_empty() ? "{}" : "{...}"; | ||||||
| 					} | 					} | ||||||
| 				} break; | 				} break; | ||||||
| 				case GDScriptParser::Node::SUBSCRIPT: { | 				case GDScriptParser::Node::SUBSCRIPT: { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Aiden Storey
						Aiden Storey