Add grouping annotations for class properties in GDScript

This commit is contained in:
Yuri Sizov
2022-07-03 22:30:08 +03:00
parent b4644e2835
commit f85bafaa11
8 changed files with 123 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
# Error here. `class_name` should be used *before* annotations, not after.
# Error here. `class_name` should be used *before* annotations, not after (except @tool).
@icon("res://path/to/optional/icon.svg")
class_name HelloWorld
func test():
pass
pass

View File

@@ -1,2 +1,2 @@
GDTEST_PARSER_ERROR
"class_name" should be used before annotations.
"class_name" should be used before annotations (except @tool).