<div dir="ltr">On Fri, Mar 31, 2017 at 12:33 PM, John McCall via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word">Hello Swift community,<br><br>The review of &quot;SE-0155: Normalize Enum Case Representation&quot; begins now and runs through the Monday after next, April 10th. The proposal is available here:<div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0155-normalize-enum-case-representation.md" target="_blank">https://github.com/apple/<wbr>swift-evolution/blob/master/<wbr>proposals/0155-normalize-enum-<wbr>case-representation.md</a></div><div><br></div><div>This is the second review of this proposal.  A previous version of this proposal was returned for revision based on some significant concerns from the community.  Because this is a continuation of an existing proposal, the core team is still willing to consider it, despite the fact that the review period will end after the formal end of Phase 2.<br><div><br></div><div>Reviews are an important part of the Swift evolution process. All reviews should be sent to the swift-evolution mailing list at</div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a></div><div>or, if you would like to keep your feedback private, directly to the review manager. When replying, please try to keep the proposal link at the top of the message:</div><div><br><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>Proposal link: <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0155-normalize-enum-case-representation.md" target="_blank">https://github.com/<wbr>apple/swift-evolution/blob/<wbr>master/proposals/0155-<wbr>normalize-enum-case-<wbr>representation.md</a></div><div><br></div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>Reply text</div><div><br><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>Other replies</div><div><br></div><div><b>What goes into a review?</b><br><br>The goal of the review process is to improve the proposal under review through constructive criticism and, eventually, determine the direction of Swift. When writing your review, here are some questions you might want to answer in your review:<br><br><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>• What is your evaluation of the proposal?<br></div></div></div></div></blockquote><div><br></div><div>The general direction is, of course, correct. However, I continue to be concerned about the details of pattern matching. I will detail those below.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div></div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>• Is the problem being addressed significant enough to warrant a change to Swift?<br></div></div></div></div></blockquote><div><br></div><div>Yes</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div></div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>• Does this proposal fit well with the feel and direction of Swift?<br></div></div></div></div></blockquote><div><br></div><div>The &quot;Pattern consistency&quot; section does not align well with the feel and direction of Swift. Specifically, it does not explore some of the difficulties that arise from the proposed rules, adopts some of the same shortcomings that required revision for SE-0111, and deviates from some of the anticipated fixes for those shortcomings outlined in the core team&#39;s &quot;update and commentary&quot; to SE-0111.</div><div><br></div><div>It is not the case that the design proposed is &quot;a consequence of no longer relying on tuple patterns,&quot; in that it is not the inevitable result that falls out of that decision. I will detail the alternative design that requires the fewest deviations or special rules, and breaks the least code extant today, later on. First, the shortcomings:</div><div><br></div><div><div>1.</div><div>The proposed rules for pattern matching are a source-breaking change, and are *not* the most minimal such change given the abandoning of tuples (see alternative below). However, the proposal does not engage with the core team&#39;s Swift 4 criteria for source-breaking changes with respect to the proposed &quot;stricter rules&quot; for pattern matching. There is no text at all about why specifically having the compiler encourage local _variable_ names to match argument labels resolves an active harm that outweighs the goal of preserving the greatest possible source compatibility.</div><div><br></div><div>OTOH, the proposal does outline a major use case for a local variable name that does not match the argument label: `param` vs `parameter`. Widely-respected style guides in various languages encourage unabbreviated and descriptive API names but much more concise local variable names. This is a legitimate and good practice being actively discouraged by the sugared rules.</div><div><br></div><div>This would be merely annoying and not harmful if we could guarantee that it only means the API user will have to use longer local names, but the natural impulse on the part of thoughtful API authors would be to limit the expressiveness of their labels to help out their users.</div><div><br></div><div>This puts API authors in an impossible bind: they need to choose labels that are not too short lest it collide frequently with existing local variable names (`x` and `y` would be suboptimal, for example, but there are good reasons why an associated value might have arguments labeled `x` and `y`), but they also need to choose labels that are not too verbose. The safest bet in this case would be not to label at all, but then they lose the communicative aspect of argument labels (see point 2 below).</div></div><div><br></div><div>2.</div><div>In the &quot;update and commentary&quot; revising SE-0111, it was acknowledged that &quot;cosmetic&quot; labels have a significant use case. Thus, the rules were changed to allow `(_ foo: Int, _ bar: Int) -&gt; ()` to communicate to the reader of code that the first argument serves some purpose &quot;foo&quot; without forcing that name to be part of the API, pending further revisions.<br></div><div><br></div><div>Because enum cases are currently tuples, labels can be dropped freely, and therefore these labels are effectively &quot;optional&quot; parts of the API that can be seen by the user but, at their discretion, not used. That fulfills the use case of &quot;cosmetic&quot; labels. In this revised proposal, by requiring the argument label to be actually _written_ somewhere by the API user, it puts a dent into the legitimate use case of &quot;cosmetic&quot; labels.</div><div><br></div><div>That is to say, an API author who wishes to communicate something about a parameter by using a label must now also consider if that label is also appropriate as a variable name and must forgo its use if the label is not so appropriate. This is a very different decision-making process and it is being applied retroactively to previously designed APIs whose labels would have been (hopefully thoughtfully) chosen under very different circumstances.</div><div><br></div><div>3.</div><div>The first part of the proposal aligns enum case syntax with functions. Functions often taken prepositions as argument labels, and indeed previous SE proposals have extended the rules to allow most words. However, `case foo(index: Int, in: T)` would have a disastrous label, as `in` would be a very annoying variable name whose use would be actively encouraged by the proposed sugared pattern matching rules.</div><div><br></div><div>The proposed rules for the sugared pattern would also require (well, greatly encourage) unique labels for each argument. This again is inconsistent with the naming conventions encouraged by the first part of the proposal aligning enum case syntax with functions, which have no such restrictions. If a user names something `case foo(point: T, point: T)`, then the matching rules would actively encourage an invalid redefinition of a variable named `point`.</div><div><br></div><div>(On the other hand, the API author does not have the luxury of naming the same case `foo(from point: T, to point: T)`, and even if they did, prepositions can make lousy local variable names--see first paragraph.)</div><div><br></div><div>4.</div><div>The proposal does not explore what happens when the proposed prohibition on &quot;mixing and matching&quot; the proposed sugared and unsugared pattern matching runs up against associated values that have a mix of labeled and unlabeled parameters, and pattern matching user cases where the user does not wish to bind all of the arguments.</div><div><br></div><div>Given `case foo(a: Int, String, b: Int, String)`, the only sensible interpretation of the rules for sugared syntax would allow the user to choose any name for some but not all of the labels. If the user wishes to bind only `b`, however, he or she will need to navigate a puzzling set of rules that are not spelled out in the proposal:</div><div><br></div><div>```</div><div>case foo(a: _, _, b: let b, _)</div><div>// this is definitely allowed</div><div><br></div><div>case foo(a: _, _, b: let myVar, _)</div><div>// this is also definitely allowed</div><div><br></div><div>// but...</div><div><div>case foo(_, _, b: let myVar, _)</div><div>// is this allowed, or must the user explicitly state and not bind `a`?</div></div><div><br></div><div>// ...and with respect to the sugared version...</div><div>case foo(_, _, let b, _)</div><div>// is this allowed, or must the user explicitly state and not bind `a`?</div><div>```</div><div><br></div><div>5.</div><div>In the &quot;update and commentary&quot; revising SE-0111, the core team outlined a preferred path to restoring the full use of argument labels for functions without giving them type system significance. They gave a non-sugared form and a sugared form, both of which have met with approval from the community.</div><div><br></div><div>Briefly, the non-sugared form allows compound names to be used in variable names: `<span style="color:rgb(0,0,0);white-space:pre-wrap">func foo(opToUse op(lhs:rhs:) : (Int, Int) -&gt; Int)`. </span>The first part of this proposal is consistent in that it removes the type system significance of argument labels from the associated values of enum cases, and considers them as part of the enum case name. It also stands to reason that, if a user were to match a case _without_ trying to bind any variables, the same syntax would have be used if the base name is ambiguous: `case elet(locals:body:): break`.</div><div><br></div><div>However, the proposal makes no provision for using that same compound name in pattern matching. There appears to be no particular reason for its isolated omission here, as `case elet(locals:body:)(let a, let b): return a * b` is readable and presents no syntactic difficulties. (Moreover, it is consistent with the syntax permitted in this proposal for initializing a variable: `let foo = Expr.elet(locals:body:)([], anExpr)`.)</div><div><br></div><div>--- </div><div><br></div><div>In light of these shortcomings, I would argue that the following alternative scheme is the most intuitive and consistent for pattern matching given the general agreement that enum case representation should be &quot;normalized&quot;:</div><div><br></div><div>Given:</div><div><br></div><div>```</div><div>enum S {</div><div>  case foo(bar: Int, baz: Int)</div><div>  case foo(boo: String)</div><div>  case bar(boo: String)</div><div>}</div><div>```</div><div><br></div><div>a. As in functions after SE-0111, enum cases can be identified unambiguously, regardless of whether one is initializing a variable or matching a case, by their compound name, e.g. `bar(boo:)`. Where a case can be unambiguously identified with only the base name, that is an alternative spelling, e.g. `bar`. Where a case cannot be identified uniquely with the base name, then it is an error to try to use the base name alone: `case foo: break // error: unambiguous`.</div><div><br></div><div>b. As in functions after SE-0111, arguments can be passed in either a sugared form or an unsugared form, and they can be bound in a pattern matching statement in the same way. That is, `case foo(bar: let a, baz: let b): break` and `case foo(bar:baz:)(let a, let b): break` are equivalent.</div><div><br></div><div>c. As in functions, one cannot supply different or incorrect argument labels. That is, `case foo(baz: let a, bar: let b)` and `case foo(baz:bar:)(let a, let b)` are both forbidden. _This recovers the vast majority of the additional syntactic safety that is outlined in the revised proposal, but without the use of any special rules for pattern matching._</div><div><br></div><div>d. By composing rules (a) and (b), `case bar(let a)` is allowed as it is today, preserving source compatibility. However `case foo(let b, let c)` is not allowed, and _not_ because different local variable names are chosen, but because the enum has two cases named foo.</div><div><br></div><div>I believe that this alternative preserves achieves the goals of normalizing enum case representation, simplifying the rules around pattern matching and adding safety to pattern matching by preventing reordering/mismatching of labels that were sometimes permitted with tuples, and preserving almost all source compatibility, without the use of ad-hoc rules.</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div></div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>• If you have used other languages or libraries with a similar feature, how do you feel that this proposal compares to those?<br></div></div></div></div></blockquote><div><br></div><div>N/A</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div><div><div></div><div><span class="gmail-m_-1499090096552945119Apple-tab-span" style="white-space:pre-wrap">        </span>• How much effort did you put into your review? A glance, a quick reading, or an in-depth study?<br></div></div></div></div></blockquote><div><br></div><div>In-depth study</div><div><br></div></div><br></div></div>