<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="">On Mar 5, 2017, at 4:21 AM, Joanna Carter via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><div><blockquote type="cite" class=""><br class=""><div class=""><div class="">I have to say, I really *hate* "Swift style". It wouldn't be so bad if I could change the indentation rules in Xcode.<br class=""><br class="">For over 25 years, I have written code with curly braces always on their own line, opening ones aligned with the start of the preceding line.<br class=""><br class="">As for switch..case statement indenting, the default supplied by code completion is laid ou thus :<br class=""><br class=""> &nbsp;&nbsp;&nbsp;switch value {<br class=""> &nbsp;&nbsp;&nbsp;case pattern:<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;code<br class=""> &nbsp;&nbsp;&nbsp;default:<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;code<br class=""> &nbsp;&nbsp;&nbsp;}<br class=""><br class="">Whereas, for Objective-C, code completion gives us :<br class=""><br class=""> &nbsp;&nbsp;&nbsp;switch (value) {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case pattern:<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;code<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br class=""><br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;default:<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br class=""> &nbsp;&nbsp;&nbsp;}<br class=""></div></div></blockquote><div><br class=""></div><div>I can understand how you might find this unnerving, but it is important to understand that Swift and Objective-C/C have different semantics when it comes to case labels: &nbsp;in Swift, a case label *is* a scope, and *is* part of the switch statement. &nbsp;In Objective-C, a case label is just a label, like any other goto label: it is not a scope and is not necessarily a direct child of the switch statement.</div><div><br class=""></div><div>C and Objective-C’s behavior is what leads to obscure but important things like Duff’s device (<a href="https://en.wikipedia.org/wiki/Duff's_device" class="">https://en.wikipedia.org/wiki/Duff's_device</a>). &nbsp;</div><div><br class=""></div><div>In contrast, Swift fixes the scoping, fallthrough, and other related problems all in one fell swoop, and ensures that cases are directly nested under the switch (unlike in C, where they can be nested under other statements within the switch). &nbsp;Because the case/default labels are *part of* the switch in Swift, it makes sense for them to be indented at the same level.</div><div><br class=""></div><div>While I can respect that you aesthetically have a preference for the Objective-C way of doing things, the rationale for this behavior change wasn’t arbitrary and wasn’t due to "LLVM style". &nbsp;It is an important reflection of the core semantics of the language model.</div><div><br class=""></div><div>Finally, conservation of horizontal whitespace is important for comprehension of code, particularly w.r.t. readability and maintenance. &nbsp;This is why statements like guard exist: to reduce nesting and indentation, directing the attention of someone reading and maintaining code to the important parts.</div><div><br class=""></div><div>-Chris</div><div><br class=""></div><div><br class=""></div></div></body></html>