Skip to content

Add Support for Switch Cases #7

@dansiegel

Description

@dansiegel

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions