<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">On Dec 1, 2017, at 5:50 PM, Matthew Johnson &lt;<a href="mailto:matthew@anandabits.com" class="">matthew@anandabits.com</a>&gt; wrote:<br class=""><div><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div 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 class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">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></div></div></div></blockquote><div><br class=""></div><div>This isn’t the way I see it. &nbsp;You’re right that we want to reduce AnyObject dispatch wherever possible: types are good after all. &nbsp;Swift on Linux doesn’t even have AnyObject dispatch, so you can tell that it is a means to an end, not a feature that we think is great for Swift on its own merits.</div><div><br class=""></div><div>What is that end? &nbsp;It is interoperability with truly dynamic values, which do occur in Objective-C, where pervasive casting would harm code clarity and usability. &nbsp;The desire to fix AnyObject you are seeing are related to two different issues: 1) The design of AnyObject dispatch itself is problematic in some ways, and 2) many values in ObjC APIs were typed as id simply because there was no way to describe a more specific type given Objective-C’s original type system (which has been improved). &nbsp;However, given the presence of actually polymorphic values being used by some APIs, I don’t imagine it going away entirely.</div><div><br class=""></div><div><br class=""></div><div>In the case of other dynamic languages, the situation is even more severe. &nbsp;Some dynamic languages have progressive type systems available, but not all do. &nbsp;Those which do have to deal with the fact that the base languages were not designed for typing systems, which is far more severe a problem than Objective-C’s situation. &nbsp;</div><div><br class=""></div><div>If you haven’t already, I encourage you to read the mypy docs (<a href="http://mypy.readthedocs.io/en/stable/index.html" class="">http://mypy.readthedocs.io/en/stable/index.html</a>) to understand how the type system they’re trying to build on top of Python works. &nbsp;They have to contend with things like:</div><div><br class=""></div><div>- the single array subscript operator taking both scalars and ranges, and returning different type results depending on their input (Python has no overloading)</div><div>- pervasive use of duck typing, e.g.&nbsp;int&nbsp;is duck type compatible with&nbsp;float&nbsp;and&nbsp;complex (duck typing is for many non-primitive types as well)</div><div>- pervasive use of variance</div><div>- APIs creep to “just work” when passed all sorts of weird values, meaning that their API contract is extremely loose.</div><div>- Python supports *dynamically computed base classes* and lots of other crazy things.</div><div>- and more..</div><div><br class=""></div><div>Mypy also only supports a subset of Python - it doesn’t support properties with setters as one example, and its generic and class system is only partially implemented. &nbsp;The only way to use it in practice is to use their ability to silence warnings, it is not an acceptable basis for a sound type system that we could depend on in Swift.</div><div><br class=""></div><div><br class=""></div><div>For all those reasons, we really do need something like AnyObject dispatch if we care about working with dynamically typed languages. &nbsp;The design I’m suggesting carefully cordons this off into its own struct type, so it doesn’t infect the rest of the type system, and is non-invasive in the compiler.</div><div><br class=""></div><div><br class=""></div><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div 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 class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">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.</div></div></div></div></blockquote><div><br class=""></div><div>I’ve revised the proposal to require this.</div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><div class="">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></div></div></div></blockquote><div><br class=""></div><div>I don’t understand this. &nbsp;The proposal is fully type safe, and this approach is completely precedented by AnyObject. &nbsp;Swift’s type system supports many ways to express fallibility, and keeping those decisions orthogonal to this proposal is the right thing to do, because it allows the author of the type to decide what model makes sense for them.</div><div><br class=""></div><div>In any case, I hear loud and clear that there is concern about possible abuse of this proposal, so I added a section in the alternatives section to discuss further ways to reduce possibility for abuse:</div><div><a href="https://gist.github.com/lattner/b016e1cf86c43732c8d82f90e5ae5438#reducing-potential-abuse" class="">https://gist.github.com/lattner/b016e1cf86c43732c8d82f90e5ae5438#reducing-potential-abuse</a></div><div><br class=""></div><div>More suggestions are welcome.</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div 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 class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">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></div></div></div></blockquote><div><br class=""></div><div>Yes, I agree, it is important to get aligned on this.</div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div 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 class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">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></div></div></blockquote>…</div><div><blockquote type="cite" class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;"><div class=""><div class="">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></div></blockquote><div class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;"><div class=""><div class=""><br class=""></div></div></div></div><div>I think you over-estimate how awesome Python (and other language APIs) are going to be, even with these two proposals. &nbsp;Keep in mind that Python has the GIL for example, the naming conventions and design patterns are completely different, etc. &nbsp;Even with both of these proposals, there will be high incentive for building pure Swift APIs to replace things over time. &nbsp;The situation is similar to C interop with Swift: it is incredibly important that it exist, but people aren’t exactly aiming to use UnsafePointer for everything :-). &nbsp;It is possible someone would do so, but people do all sorts of bad things locally in their codebase. &nbsp;We cannot prevent that.</div><div><br class=""></div><div>In fact, I would argue that making Python interoperability *too good* is the bigger risk we have. &nbsp;If there is no reason for people to move off of using those APIs, they will continue to do so forever. &nbsp;That isn’t a transition path, that’s a merger of communities.</div><div><br class=""></div><blockquote type="cite" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><div class="">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></div></blockquote><div><br class=""></div>Thanks, I addressed this in the alternative section.</div><div><br class=""></div><div>-Chris</div><div><br class=""></div><br class=""></body></html>