virtualx-engine/modules/gdscript/tests/scripts/analyzer/features/subscript_self.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
154 B
GDScript3
Raw Normal View History

# https://github.com/godotengine/godot/issues/43221
extends Node
func test():
name = "Node"
print(self["name"])
self["name"] = "Changed"
print(name)