<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Oh let it die, let it die. Any time I use fallthrough I find myself re-factoring to stop using it.&nbsp;</div><div class=""><br class=""></div><div class=""><b class="">True fact</b>: On all of <a href="http://gist.github.com" class="">gist.github.com</a>, there are only 22 gist results for "fallthrough language:swift".</div><div class="">Half of those are people just testing out the feature. Most of the remaining ones are just complex cases:</div><div class=""><i class="">case .Enum1, .Enum2:</i></div><div class="">expressed as&nbsp;</div><div class=""><i class="">case .Enum1: fallthrough</i></div><div class=""><i class="">case .Enum2:</i></div><div class=""><br class=""></div><div class="">And then there's streza: &nbsp;<a href="https://gist.github.com/stevestreza/2557dc5ec9e7c694d7ea" class="">https://gist.github.com/stevestreza/2557dc5ec9e7c694d7ea</a> &nbsp; I'm pretty sure that ponies were harmed in the production of whatever that last bit is.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 4, 2015, at 3:05 PM, <a href="mailto:jalkut@red-sweater.com" class="">jalkut@red-sweater.com</a> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">In the spirit of some other proposals that remove C or C++ style artifacts, what do folks think about the possibility of removing the "fallthrough" keyword from the language?<br class=""><br class="">My understanding is this keyword is only used for the archaic seeming purpose of perpetuating C-style fallthrough from one switch statement to the subsequent one. The documentation hedges the use of this keyword in forbidding terms that make it clear its use is not encouraged. The presence of the keyword, while an improvement over C’s implicit fallthrough, is a mark of inelegance on an otherwise well-designed, opinionated implementation of swtich statements.<br class=""><br class="">The ugliness of fallthrough’s C-style behavior even demands a caveat in the documentation:<br class=""><br class="">"The fallthrough keyword does not check the case conditions for the switch case that it causes execution to fall into. The fallthrough keyword simply causes code execution to move directly to the statements inside the next case (or default case) block, as in C’s standard switch statement behavior."<br class=""><br class="">To my mind, the caveat explains just what is wrong with fallthrough, both in C or Swift: coded that is clearly labeled with deliberate conditions can nonetheless be reached.<br class=""><br class="">I quipped about this on Twitter, and the most common pushback I got seemed to be from people who either did not know about Swift’s support for comma-separated case statements, or harbored an aesthetic preference for clustering such cases together with fallthrough statements.<br class=""><br class="">In my opinion, unless somebody can think of a strong defense for supporting intentional fallthrough in Swift, removing the keyword would be a move in the direction of minimizing the language’s complexity while also discouraging poor coding style in switch statements.<br class=""><br class="">Thoughts?<br class=""><br class="">Daniel<br class=""><br class="">_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></div></blockquote></div><br class=""></body></html>