Sfoglia il codice sorgente

GDScript: Add static analysis error reporting in GDScriptCache::get_full_script()

ocean (they/them) 2 anni fa
parent
commit
955049670f
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4 1
      modules/gdscript/gdscript_cache.cpp

+ 4 - 1
modules/gdscript/gdscript_cache.cpp

@@ -294,8 +294,12 @@ Ref<GDScript> GDScriptCache::get_full_script(const String &p_path, Error &r_erro
 
 	if (p_update_from_disk) {
 		r_error = script->load_source_code(p_path);
+		if (r_error) {
+			return script;
+		}
 	}
 
+	r_error = script->reload(true);
 	if (r_error) {
 		return script;
 	}
@@ -303,7 +307,6 @@ Ref<GDScript> GDScriptCache::get_full_script(const String &p_path, Error &r_erro
 	singleton->full_gdscript_cache[p_path] = script;
 	singleton->shallow_gdscript_cache.erase(p_path);
 
-	script->reload(true);
 	return script;
 }