mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-25 02:43:29 +00:00 
			
		
		
		
	
							parent
							
								
									dbb0ad3b59
								
							
						
					
					
						commit
						d04d329a1f
					
				
					 1 changed files with 9 additions and 10 deletions
				
			
		|  | @ -3574,15 +3574,6 @@ void GDScriptParser::_parse_extends(ClassNode *p_class) { | |||
| 		switch (tokenizer->get_token()) { | ||||
| 
 | ||||
| 			case GDScriptTokenizer::TK_IDENTIFIER: { | ||||
| 
 | ||||
| 				completion_type = COMPLETION_EXTENDS; | ||||
| 				completion_class = current_class; | ||||
| 				completion_function = current_function; | ||||
| 				completion_line = tokenizer->get_token_line(); | ||||
| 				completion_block = current_block; | ||||
| 				completion_ident_is_call = false; | ||||
| 				completion_found = true; | ||||
| 
 | ||||
| 				StringName identifier = tokenizer->get_token_identifier(); | ||||
| 				p_class->extends_class.push_back(identifier); | ||||
| 			} break; | ||||
|  | @ -3604,7 +3595,15 @@ void GDScriptParser::_parse_extends(ClassNode *p_class) { | |||
| 			case GDScriptTokenizer::TK_IDENTIFIER: | ||||
| 			case GDScriptTokenizer::TK_PERIOD: | ||||
| 				continue; | ||||
| 
 | ||||
| 			case GDScriptTokenizer::TK_CURSOR: | ||||
| 				completion_type = COMPLETION_EXTENDS; | ||||
| 				completion_class = current_class; | ||||
| 				completion_function = current_function; | ||||
| 				completion_line = tokenizer->get_token_line(); | ||||
| 				completion_block = current_block; | ||||
| 				completion_ident_is_call = false; | ||||
| 				completion_found = true; | ||||
| 				return; | ||||
| 			default: | ||||
| 				return; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Thakee Nathees
						Thakee Nathees