summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript.cpp
diff options
context:
space:
mode:
authorrune-scape <allie.smith.epic@gmail.com>2024-04-12 16:13:25 -0700
committerrune-scape <allie.smith.epic@gmail.com>2024-04-18 14:05:58 -0700
commit6b88c86cec1f38934730beca613ee29df5643f6a (patch)
tree654403c3ab21a0544f36a9a3fd3c6b03081113e2 /modules/gdscript/gdscript.cpp
parent029aadef563fb69cf49aa9795b62f27171f8c3f4 (diff)
downloadredot-engine-6b88c86cec1f38934730beca613ee29df5643f6a.tar.gz
GDScript: invalidate GDScriptParserRef when reloading
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r--modules/gdscript/gdscript.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp
index 8e74de4242..921ed0b416 100644
--- a/modules/gdscript/gdscript.cpp
+++ b/modules/gdscript/gdscript.cpp
@@ -739,10 +739,18 @@ Error GDScript::reload(bool p_keep_state) {
if (source_path.is_empty()) {
source_path = get_path();
}
- Ref<GDScript> cached_script = GDScriptCache::get_cached_script(source_path);
- if (!source_path.is_empty() && cached_script.is_null()) {
- MutexLock lock(GDScriptCache::singleton->mutex);
- GDScriptCache::singleton->shallow_gdscript_cache[source_path] = Ref<GDScript>(this);
+ if (!source_path.is_empty()) {
+ if (GDScriptCache::get_cached_script(source_path).is_null()) {
+ MutexLock lock(GDScriptCache::singleton->mutex);
+ GDScriptCache::singleton->shallow_gdscript_cache[source_path] = Ref<GDScript>(this);
+ }
+ if (GDScriptCache::has_parser(source_path)) {
+ Error err = OK;
+ Ref<GDScriptParserRef> parser_ref = GDScriptCache::get_parser(source_path, GDScriptParserRef::EMPTY, err);
+ if (parser_ref.is_valid() && parser_ref->get_source_hash() != source.hash()) {
+ GDScriptCache::remove_parser(source_path);
+ }
+ }
}
}