Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0-beta-2
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
Should support this
switch (foo) {
// use a regex to match
case /a|b/:
...
// use a value
case "hello":
...
// use a list of values
case ['d', 'e']:
...
// use a type
case SomeType:
...
}
fixed