mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #80085 from vnen/gdscript-pattern-guards
GDScript: Implement pattern guards for match statement
This commit is contained in:
commit
813cd1dfc8
15 changed files with 163 additions and 1 deletions
|
@ -949,6 +949,7 @@ public:
|
|||
Vector<PatternNode *> patterns;
|
||||
SuiteNode *block = nullptr;
|
||||
bool has_wildcard = false;
|
||||
SuiteNode *guard_body = nullptr;
|
||||
|
||||
MatchBranchNode() {
|
||||
type = MATCH_BRANCH;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue