From 2cf02f302fd39e75af557737be61b891bebabc30 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Sun, 28 Oct 2018 01:31:17 +0200 Subject: Fix C# parsing the full name of base types Previously it would fail if the type name included its namespace. --- modules/mono/editor/csharp_project.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/mono/editor/csharp_project.cpp') diff --git a/modules/mono/editor/csharp_project.cpp b/modules/mono/editor/csharp_project.cpp index 03db765c2e..ab96356d6d 100644 --- a/modules/mono/editor/csharp_project.cpp +++ b/modules/mono/editor/csharp_project.cpp @@ -167,6 +167,7 @@ Error generate_scripts_metadata(const String &p_project_path, const String &p_ou ScriptClassParser scp; Error err = scp.parse_file(project_file); if (err != OK) { + ERR_PRINTS("Parse error: " + scp.get_error()); ERR_EXPLAIN("Failed to determine namespace and class for script: " + project_file); ERR_FAIL_V(err); } -- cgit v1.2.3