DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / features / subscript_self.gd
12345678
# https://github.com/godotengine/godot/issues/43221 extends Node func test(): name = "Node" print(self["name"]) self["name"] = "Changed" print(name)