virtualx-engine/modules/gdscript/tests/scripts
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
..
analyzer GDScript: Implement pattern guards for match statement 2023-09-27 11:25:25 -03:00
lsp Language Server: Improve hovered symbol resolution, fix renaming bugs, implement reference lookup 2023-09-11 09:46:34 -05:00
parser GDScript: Implement pattern guards for match statement 2023-09-27 11:25:25 -03:00
runtime GDScript: Implement pattern guards for match statement 2023-09-27 11:25:25 -03:00
.gitignore Add runner for GDScript testing 2021-04-08 09:34:59 -03:00
project.godot Add runner for GDScript testing 2021-04-08 09:34:59 -03:00
utils.notest.gd GDScript: Fix subscript resolution for constant non-metatypes 2023-09-19 22:26:06 +03:00