GDScript: Implement pattern guards for match statement

Within a match statement, it is now possible to add guards in each
branch:

	var a = 0
	match a:
		0 when false: print("does not run")
		0 when true: print("but this does")

This allows more complex logic for deciding which branch to take.
This commit is contained in:
George Marques
2023-07-31 07:47:26 -03:00
parent ec62b8a3ee
commit 54a1414500
15 changed files with 163 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
func test():
match 0:
_ when a == 0:
print("a does not exist")

View File

@@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Identifier "a" not declared in the current scope.