1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Wrap up GDScript 2.0 base implementation

This commit is contained in:
George Marques
2020-07-15 22:02:44 -03:00
parent aa09b4f85d
commit a0f54cb95e
13 changed files with 590 additions and 333 deletions

View File

@@ -84,7 +84,7 @@ class GDScriptCache {
static void remove_script(const String &p_path);
public:
static Ref<GDScriptParserRef> get_parser(const String &p_path, GDScriptParserRef::Status status, Error &r_error);
static Ref<GDScriptParserRef> get_parser(const String &p_path, GDScriptParserRef::Status status, Error &r_error, const String &p_owner = String());
static String get_source_code(const String &p_path);
static Ref<GDScript> get_shallow_script(const String &p_path, const String &p_owner = String());
static Ref<GDScript> get_full_script(const String &p_path, Error &r_error, const String &p_owner = String());