virtualx-engine/modules/gdscript/tests/scripts/analyzer
George Marques 54a1414500
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.
2023-09-27 11:25:25 -03:00
..
errors GDScript: Implement pattern guards for match statement 2023-09-27 11:25:25 -03:00
features Merge pull request #81332 from dalexeev/gds-fix-update-array-literal-in-weak-context 2023-09-20 13:09:23 +02:00
warnings Check if any global script class is shadowed by a variable 2023-09-26 16:47:17 +08:00