1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #56427 from zaevi/3.x_csharp_file-scoped_namespace

This commit is contained in:
Rémi Verschelde
2022-01-03 16:53:47 +01:00
committed by GitHub

View File

@@ -483,6 +483,9 @@ Error ScriptClassParser::_parse_namespace_name(String &r_name, int &r_curly_stac
} else if (tk == TK_CURLY_BRACKET_OPEN) {
r_curly_stack++;
return OK;
} else if (tk == TK_SYMBOL && String(value) == ";") {
// for file-scoped namespace declaration
return OK;
} else {
error_str = "Unexpected token: " + get_token_name(tk);
error = true;