diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-08-01 22:00:26 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-08-01 22:08:12 +0300 |
commit | ee973f5b90befdb5c0914bc01f62262bee672ee0 (patch) | |
tree | ddfa4cc6da42a1e3dd8c47de0fa7b9d5d3647cf0 /modules/gdscript/register_types.cpp | |
parent | ec9302ceccb75f44038db3695d2f9e7c82cfe951 (diff) | |
download | redot-engine-ee973f5b90befdb5c0914bc01f62262bee672ee0.tar.gz |
[GDScript] Add static HashMap cleanup.
Diffstat (limited to 'modules/gdscript/register_types.cpp')
-rw-r--r-- | modules/gdscript/register_types.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdscript/register_types.cpp b/modules/gdscript/register_types.cpp index 23c7f97b5a..c554cbac05 100644 --- a/modules/gdscript/register_types.cpp +++ b/modules/gdscript/register_types.cpp @@ -35,6 +35,7 @@ #include "core/os/dir_access.h" #include "core/os/file_access.h" #include "gdscript.h" +#include "gdscript_analyzer.h" #include "gdscript_cache.h" #include "gdscript_tokenizer.h" @@ -148,4 +149,7 @@ void unregister_gdscript_types() { EditorTranslationParser::get_singleton()->remove_parser(gdscript_translation_parser_plugin, EditorTranslationParser::STANDARD); gdscript_translation_parser_plugin.unref(); #endif // TOOLS_ENABLED + + GDScriptParser::cleanup(); + GDScriptAnalyzer::cleanup(); } |