diff options
author | George Marques <george@gmarqu.es> | 2023-02-06 14:52:13 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2023-02-06 14:52:13 -0300 |
commit | ed5ddab7e54c121726116e36604b062dc172a2d0 (patch) | |
tree | 6cd9ea9b505b73ff4711cdb0ed24eda3923b154a /modules/gdscript/tests/scripts/analyzer/errors | |
parent | eee343210dd3eaf5fb149ca7a86371154032e47e (diff) |
GDScript: Fix inheritance check of @onready for inner classes
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/errors')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.gd | 7 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.out | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.gd b/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.gd new file mode 100644 index 0000000000..1639bbbd52 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.gd @@ -0,0 +1,7 @@ +extends Node + +class Inner extends RefCounted: + @onready var nope = 0 + +func test(): + print("Cannot use @onready without a Node base") diff --git a/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.out b/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.out new file mode 100644 index 0000000000..8088d28329 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/errors/onready_within_non_node_inner_class.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +"@onready" can only be used in classes that inherit "Node". |