godot/modules/gdscript/tests/scripts/parser
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 GDScript: Implement pattern guards for match statement 2023-09-27 11:25:25 -03:00
warnings GDScript: Reorganize and unify warnings 2023-04-28 18:25:11 +03:00
.editorconfig GDScript: Allow mixed indentation on blank lines 2023-08-17 10:54:43 +03:00