summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/match_with_pattern_guards.gd
blob: 48a9349bf88ed0f3a73bc35e98f69ff1019838f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var global := 0

func test():
	var a = 0
	var b = 1

	match a:
		0 when b == 0:
			print("does not run" if true else "")
		0 when b == 1:
			print("guards work")
		_:
			print("does not run")

	match a:
		var a_bind when b == 0:
			prints("a is", a_bind, "and b is 0")
		var a_bind when b == 1:
			prints("a is", a_bind, "and b is 1")
		_:
			print("does not run")

	match a:
		var a_bind when a_bind < 0:
			print("a is less than zero")
		var a_bind when a_bind == 0:
			print("a is equal to zero")
		_:
			print("a is more than zero")

	match [1, 2, 3]:
		[1, 2, var element] when element == 0:
			print("does not run")
		[1, 2, var element] when element == 3:
			print("3rd element is 3")

	match a:
		_ when b == 0:
			print("does not run")
		_ when b == 1:
			print("works with wildcard too.")
		_:
			print("does not run")

	match a:
		0, 1 when b == 0:
			print("does not run")
		0, 1 when b == 1:
			print("guard with multiple patterns")
		_:
			print("does not run")

	match a:
		0 when b == 0:
			print("does not run")
		0:
			print("regular pattern after guard mismatch")

	match a:
		1 when side_effect():
			print("should not run the side effect call")
		0 when side_effect():
			print("will run the side effect call, but not this")
		_:
			Utils.check(global == 1)
			print("side effect only ran once")

func side_effect():
	print("side effect")
	global += 1
	return false