summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/dictionary_string_stringname_equivalent.gd
blob: 94bac1974ffd46edb8e888e703ae82103bb1a895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# https://github.com/godotengine/godot/issues/62957

func test():
	var string_dict = {}
	string_dict["abc"] = 42
	var stringname_dict = {}
	stringname_dict[&"abc"] = 24

	print("String key is TYPE_STRING: ", typeof(string_dict.keys()[0]) == TYPE_STRING)
	print("StringName key is TYPE_STRING: ", typeof(stringname_dict.keys()[0]) == TYPE_STRING)

	print("StringName gets String: ", string_dict.get(&"abc"))
	print("String gets StringName: ", stringname_dict.get("abc"))

	stringname_dict[&"abc"] = 42
	# They compare equal because StringName keys are converted to String.
	print("String Dictionary == StringName Dictionary: ", string_dict == stringname_dict)