1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Merge pull request #99887 from JackErb/gdscript-parser-error-fix

Improve misleading `Unexpected "x" in class body.` GDScript parser error
This commit is contained in:
Thaddeus Crews
2024-12-10 14:15:50 -06:00
5 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
# GH-96792
var error
error = true
func test():
pass

View File

@@ -0,0 +1,2 @@
GDTEST_PARSER_ERROR
Unexpected identifier "error" in class body.