diff options
| author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-10-28 01:44:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-28 01:44:40 +0200 |
| commit | aeddb30fa38215acf8620238209cb53f5bddc28d (patch) | |
| tree | 4086a869b0a961da5a55e23866a6e35ad9031d74 /modules/mono/editor/csharp_project.cpp | |
| parent | 970b58148f579f741934f64af437d01b985df15d (diff) | |
| parent | 2cf02f302fd39e75af557737be61b891bebabc30 (diff) | |
Merge pull request #23336 from neikeq/dd
Fix C# parsing the full name of base types
Diffstat (limited to 'modules/mono/editor/csharp_project.cpp')
| -rw-r--r-- | modules/mono/editor/csharp_project.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); } |