Mark class_name line as safe in editor

(cherry picked from commit 1e6a52b215)
This commit is contained in:
shaderbeast 2019-08-02 20:07:54 +02:00 committed by Rémi Verschelde
parent ebece65936
commit a07d53b262
1 changed files with 1 additions and 0 deletions

View File

@ -3497,6 +3497,7 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
} break;
case GDScriptTokenizer::TK_PR_CLASS_NAME: {
_mark_line_as_safe(tokenizer->get_token_line());
if (p_class->owner) {
_set_error("'class_name' is only valid for the main class namespace.");
return;