1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix extends parsing breaking if it has the cursor

This commit is contained in:
Francois Belair
2021-10-01 11:19:24 -04:00
parent fe2f24c47c
commit 3754759e26

View File

@@ -3618,6 +3618,7 @@ void GDScriptParser::_parse_extends(ClassNode *p_class) {
p_class->extends_class.push_back(identifier);
} break;
case GDScriptTokenizer::TK_CURSOR:
case GDScriptTokenizer::TK_PERIOD:
break;