From a0f54cb95e3a0250df8ed6e6a54720c487034d97 Mon Sep 17 00:00:00 2001 From: George Marques Date: Wed, 15 Jul 2020 22:02:44 -0300 Subject: Wrap up GDScript 2.0 base implementation --- modules/gdscript/gdscript_parser.h | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) (limited to 'modules/gdscript/gdscript_parser.h') diff --git a/modules/gdscript/gdscript_parser.h b/modules/gdscript/gdscript_parser.h index 4c695d62f7..a741ae0cc7 100644 --- a/modules/gdscript/gdscript_parser.h +++ b/modules/gdscript/gdscript_parser.h @@ -42,12 +42,13 @@ #include "core/ustring.h" #include "core/variant.h" #include "core/vector.h" +#include "gdscript_cache.h" #include "gdscript_functions.h" #include "gdscript_tokenizer.h" -#include "gdscript_warning.h" #ifdef DEBUG_ENABLED #include "core/string_builder.h" +#include "gdscript_warning.h" #endif // DEBUG_ENABLED class GDScriptParser { @@ -124,6 +125,7 @@ public: StringName native_type; StringName enum_type; // Enum name or the value name in an enum. Ref