-
-
Notifications
You must be signed in to change notification settings - Fork 18
Closed
Description
Description
Currently we have support for logical cases like if else if else.. but it would be helpful to have builder extensions on the code writer to better support easily building switch cases.
// expected output
switch(someValue)
{
case "Foo":
DoFoo();
break;
case "Bar":
DoBar();
break;
default:
DoBaz();
break;
}Metadata
Metadata
Assignees
Labels
No labels