<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=""><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 1, 2017, at 12:23 AM, Chris Lattner &lt;<a href="mailto:clattner@nondot.org" class="">clattner@nondot.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class=""><blockquote type="cite" class="">On Nov 30, 2017, at 6:15 AM, Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" class="">matthew@anandabits.com</a>&gt; wrote:<br class=""><blockquote type="cite" class=""><br class="">I think better interoperability with Python (and other OO languages in widespread use) is a good goal, and I agree that the implementation of the feature described is straight-forward and not terribly invasive in the compiler.<br class=""><br class="">However, I do not think this proposal is going in the right direction for Swift. I have objections on several different grounds.<br class=""></blockquote><br class="">+1 to everything Doug says here. &nbsp;He articulates the concerns I tried to voice in an earlier thread more clearly and more thoroughly. &nbsp;<br class=""></blockquote><br class="">Doug’s email was pretty confusing, so I’ll try to clear up some of the misconceptions here. &nbsp;I also updated the proposal with a new section at the end, please check it out.<br class=""></div></div></blockquote><div><br class=""></div><div>Thank you for your latest reply and the latest reply to Doug. &nbsp;I can only speak for myself, but it helped me to better understand the motivation you have for the proposal. &nbsp;I really do appreciate your view and the motivation behind it.</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class=""><blockquote type="cite" class="">This design introduces a significant hole in the type system which is contrary to the spirit of Swift.<br class=""></blockquote><br class="">There is no “hole” in the type system. &nbsp;The proposal is fully type safe. <br class=""><br class="">Further, the addition is absolutely in the spirit of Swift, because it is directly analogous to an existing feature: AnyObject lookup. &nbsp;The difference between it and AnyObject lookup is that AnyObject lookup is:<br class=""><br class="">a) specific to Objective-C interop<br class="">b) type unsafe<br class="">c) massively invasive on the rest of the compiler.<br class=""><br class="">We’ve made many attempts to narrow the scope of AnyObject lookup, but it is difficult to do so given backwards compatibility constraints and the limited nature of Objective-C metadata.<br class=""></div></div></blockquote><div><br class=""></div><div>I may have spoken incorrectly but I do still believe it is contrary to what I (and apparently many others) feel is the spirit of Swift. &nbsp;</div><div><br class=""></div><div>As I understand it, AnyObject lookup was a necessity during the historical development of Swift. &nbsp;The attempts to narrow its scope have merit regardless of how far they can go. &nbsp;They indicate that perhaps it is a feature we would remove if that were possible. &nbsp;I would love to see that happen someday (although I know it is unlikely), or at least see it be made explicit at the call site. &nbsp;I suspect if this feature did not exist and it was proposed today it would be met with at least as much resistance as your proposals have.</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class=""><blockquote type="cite" class=""> It doesn’t just make dynamic language interop easy, it also changes the semantics of any type which conforms to DynamicMemberLookupProtocol. &nbsp;That is not something that is locally visible when looking at a piece of code. &nbsp;Worse, it does so in a way that trivial mistakes such as a typo can turn into runtime errors. &nbsp;Worst of all, as Doug points out it is possible to use retroactive conformance to change the semantics of vast quantities of widely used types in one fell swoop.<br class=""></blockquote><br class="">This is a feature, like many others, which can be misused. &nbsp;This has not been the metric we have used to judge what should go into Swift. &nbsp;I can elaborate if my response to Doug wasn’t clear.<br class=""></div></div></blockquote><div><br class=""></div><div>The primary problem I have is that misuse is too easy and too subtle. &nbsp;It is at least as easy to misuse as other features in Swift which have been carefully designed to be obvious at usage sites. &nbsp;</div><div><br class=""></div><div>I was happy to see that you are willing to consider Xiaodi’s suggestion to require conformance to be stated as part of the original type declaration. &nbsp;That would be a significant improvement to the proposal IMO. &nbsp;I <i class="">strongly</i>&nbsp;urge you to reconsider the decision of that dynamic members must be made available with no indication at usage sites. &nbsp;An indication of dynamic lookup at usage sites aligns very well (IMO) with the rest of Swift (AnyObject lookup aside) by calling attention to code that requires extra care to get right.</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class=""><blockquote type="cite" class="">One additional concern that I don’t believe has been mentioned is that of evolution. &nbsp;When a library is imported from a dynamic language and the library makes breaking changes Swift code written using this feature will break without notice until a runtime error occurs. &nbsp;Is that acceptable? &nbsp;That may be what users of dynamic languages are accustomed to but can we do better in Swift? &nbsp;If we can make the process of upgrading dependencies less a less harrowing experience perhaps that could be a major selling point in moving them to Swift. &nbsp;But we won’t accomplish that with this design.<br class=""></blockquote><br class="">How would you this to work with *any* interoperability approach? &nbsp;Dynamic languages are in fact dynamic, and need the ability to do dynamic lookups somehow. &nbsp;Those dynamic lookups will all have the problem you observe.<br class=""></div></div></blockquote><div><br class=""></div><div>I’ll mostly let Doug continue the discussion of the approach he is suggesting. &nbsp;It looks to me like that is an approach that might help in this area. &nbsp;For example, if a symbol is removed it may be possible to produce a compiler error in at least some cases. &nbsp;I don’t think Doug’s suggestion precludes full dynamism but would offer a much better experience in at least some cases. &nbsp;Perhaps it would even be enough to call into question whether full dynamism is really necessary or not (as Doug seems to think). &nbsp;We won’t know for sure without exploring this further.</div><div><br class=""></div><div>I understand that you believe the direction he has advocated is not realistic. &nbsp;Perhaps, but I do appreciate that the conversation is happening before a final decision is made. &nbsp;I support further exploration of this at least as long as Doug believes it is a good idea to do so.</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class=""><blockquote type="cite" class="">Interop with dynamic languages is a worthy goal, but we should do it in a way that has no potential impact on code that does not need the feature. &nbsp;A semantic variant of “don’t pay for what you don’t use” should apply here. &nbsp;If we add this feature everyone will pay for it every time they read unfamiliar Swift code. &nbsp;They will have to contend with the potential for conformances to this protocol, even on standard library types. &nbsp;That feels like a pretty high cost to me, especially for programmers who aren’t using the dynamic language interop features themselves.<br class=""></blockquote><br class="">You seem to fear that people will pervasively adopt this and use it for weird things. &nbsp;While that is possible, that would be simply one way to misuse Swift. &nbsp;What makes it more likely for someone to do this than to use unsafe features incorrectly, providing an apparently type safe API that actually isn’t?<br class=""></div></div></blockquote><div><br class=""></div><div>It’s not the <i class="">potential</i> that I fear. &nbsp;As mentioned above, it is that the presence or absence of this potential in a given piece of code is too hard to detect, especially for a reader who is unfamiliar with the code in question. &nbsp;It is pretty clear that I am not the only Swift developer with significant concerns about this.</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class=""><blockquote type="cite" class="">Further, a consistent theme has been the desire to avoid things like compiler flags that could fragment the community. &nbsp;I fear this feature has the potential to do that, especially if it is really successful at attracting people from the dynamic language community. &nbsp;<br class=""></blockquote><br class="">I really fail to see how this concern relates here. &nbsp;This has nothing to do with compiler flags. &nbsp;This has the potential to expand the community, not fragment it.<br class=""></div></div></blockquote><div><br class=""></div><div>One of the stated aims of this proposal is to bring many new programmers into the Swift community. &nbsp;That is a wonderful goal! &nbsp;</div><div><br class=""></div><div>Of course that may include programmers with a different set of technical values than are currently predominant in the Swift community. &nbsp;If we make it really easy to use Swift as a highly dynamic language we may soon see a large sub-community form that uses Swift in this way. &nbsp;Regardless of how you would feel about this I think it’s an important possible outcome to consider.</div><div><br class=""></div><div>Your followup to Doug helped to clarify that many programmers in the data science and ML spaces you are hoping to bring into the Swift community are actually frustrated with having to use Python. &nbsp;That is really interesting and should influence the design. &nbsp;Perhaps these people would appreciate having dynamic member lookup be apparent at usage sites. &nbsp;Have you asked them? &nbsp;</div><div><br class=""></div><div>You mentioned that many of them may prefer proper Swift APIs for the libraries they use and are hoping that the issues with dynamism will incentive them to create these in time. &nbsp;Perhaps requiring some kind of call-site annotation would increase this incentive without being significant enough to disincentive using these libraries in Swift.</div><div><br class=""></div><div>Changing the proposal to restrict conformance to the initial type declaration and requiring usage site annotation of some kind for dynamic member lookup would address my most significant concerns about your proposal. &nbsp;I hope you will reconsider these points of design. &nbsp;I don’t think we need something heavy-handed, but something similar in weight to optional chaining or force unwrapping. &nbsp;If you modify this proposal to include such syntax perhaps it would eventually be appropriate to consider requiring the same syntax for AnyObject lookup as well (I would really like that).</div><div><br class=""></div><div>In particular, if you continue to insist on standard dot syntax for member lookup I would appreciate hearing more about why that is a sticking point for you, especially in light of your recent comment about people looking to move <i class="">away</i>&nbsp;from Python.</div><div><br class=""></div><div>I have conflicted feelings about this proposal regardless of whether the above mentioned changes are made or not. &nbsp;The value of interoperability with established libraries in other languages is significant in some domains. &nbsp;On the other hand, I question whether now is the time to introduce more dynamic features into Swift and whether this is the right first step. &nbsp;It is a feature that may have a significant impact on how some people choose to use the language. &nbsp;As others have pointed out, Swift is still lacking features that could solve many of the use cases for which dynamic features like this could be used (or abused). &nbsp;</div><div><br class=""></div><div>Both perspectives have merit and I really don’t know which path would lead to a better outcome. &nbsp;In any case, I would like to see this proposal strengthened so that should it be introduced the benefits are maximized and the costs are minimized. &nbsp;With all due respect, I don’t think there has been enough consideration given to the costs that may be incurred should the proposal be accepted as written.</div><div><br class=""></div><div>Matthew</div><br class=""><blockquote type="cite" class=""><div class=""><div class=""><br class="">-Chris<br class=""><br class=""></div></div></blockquote></div><br class=""></body></html>