We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 756bce7 commit 69c289cCopy full SHA for 69c289c
2 files changed
tests/expected/match_case.gd
@@ -10,6 +10,11 @@ func foo():
10
_:
11
pass
12
match 0:
13
+ # Warnings and comments should be preserved
14
@warning_ignore("unreachable_pattern")
15
0 when true:
16
print("true")
17
+ match 5:
18
+ # Conditional expression should be supported
19
+ 0 if true else 2:
20
+ pass
tests/input/match_case.gd
_ :
0 commit comments