diff options
author | George Marques <george@gmarqu.es> | 2021-10-06 12:01:34 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-10-06 12:01:34 -0300 |
commit | 1f55bd190c9b3bb369164ab68876ed60dfe1ed09 (patch) | |
tree | 0763762c2a5aaa260e081571cbbcd1c639560206 /modules/gdscript/tests/scripts | |
parent | 18c912c332261ab074e34899318f745aff9921c2 (diff) |
GDScript: Allow subscript on self and object types
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd | 8 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/subscript_self.out | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd b/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd new file mode 100644 index 0000000000..f9a8b23b92 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd @@ -0,0 +1,8 @@ +# https://github.com/godotengine/godot/issues/43221 +extends Node + +func test(): + name = "Node" + print(self["name"]) + self["name"] = "Changed" + print(name) diff --git a/modules/gdscript/tests/scripts/analyzer/features/subscript_self.out b/modules/gdscript/tests/scripts/analyzer/features/subscript_self.out new file mode 100644 index 0000000000..6417f4f8da --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/subscript_self.out @@ -0,0 +1,3 @@ +GDTEST_OK +Node +Changed |