Commits

Joe Groff committed bfd2f85b5c8
Parse 'fallthrough' statements. Create a new FallthroughStmt, which transfers control from a 'case' or 'default' block to the next 'case' or 'default' block within a switch. Implement parsing and sema for FallthroughStmt, which syntactically consists of a single 'fallthrough' keyword. Sema verifies that 'fallthrough' actually appears inside a switch statement and that there is a following case or default block to pass control to. SILGen/IRGen support forthcoming. Swift SVN r4653