From e79be6ce07ed8c89011f759ecade070a3bd5a806 Mon Sep 17 00:00:00 2001 From: rune-scape Date: Mon, 5 Dec 2022 21:46:47 -0500 Subject: Unify String and StringName --- .../runtime/features/match_string_stringname_equivalent.gd | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd (limited to 'modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd') diff --git a/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd b/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd new file mode 100644 index 0000000000..55be021a90 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/match_string_stringname_equivalent.gd @@ -0,0 +1,14 @@ +# https://github.com/godotengine/godot/issues/60145 + +func test(): + match "abc": + &"abc": + print("String matched StringName") + _: + print("no match") + + match &"abc": + "abc": + print("StringName matched String") + _: + print("no match") -- cgit v1.2.3