<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Dec 3, 2017 at 8:26 PM, Chris Lattner 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Dec 3, 2017, at 11:03 AM, Magnus Ahltorp &lt;<a href="mailto:map@kth.se">map@kth.se</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; 4 Dec. 2017 02:40 Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; That’s a good principle.  However, a dynamic member lookup is just a member lookup.  By that principle, it should look like a member lookup :-)<br>
&gt;&gt;<br>
&gt;&gt; Further, I incorporated some of the conversation with Matthew into the proposal, showing how adding even a single sigil to dynamic member lookup to distinguish it is problematic:<br>
&gt;&gt; <a href="https://gist.github.com/lattner/b016e1cf86c43732c8d82f90e5ae5438#increasing-visibility-of-dynamic-member-lookups" rel="noreferrer" target="_blank">https://gist.github.com/<wbr>lattner/<wbr>b016e1cf86c43732c8d82f90e5ae54<wbr>38#increasing-visibility-of-<wbr>dynamic-member-lookups</a><br>
&gt;&gt;<br>
&gt;&gt; Further, adding something like .dynamic would completely undermind the proposal.  You can already write:<br>
&gt;&gt;<br>
&gt;&gt;      x.get(“foo”).get(“bar”)<br>
&gt;&gt;<br>
&gt;&gt; having to write:<br>
&gt;&gt;<br>
&gt;&gt;      x.dynamic.foo.dynamic.bar<br>
&gt;&gt;<br>
&gt;&gt; has no point.<br>
&gt;<br>
&gt; This example shows what many on this list don&#39;t believe: that any Swift method or member access can fail. If the return value of this &quot;get&quot; method is an IUO, or not an Optional at all, and doesn&#39;t throw, then the expression would have to fail hard if &quot;foo&quot; didn&#39;t resolve to something meaningful.<br>
&gt;<br>
&gt; The most common argument against this proposal is that someone could make an API using Dynamic Member Lookup that could fail even though it is not apparent to the caller. But, as we see in the example, this is just as possible today.<br>
<br>
</span>Correct.  The argument also fails to recognize that (when bridging to a dynamic language):<br>
<br>
        x+y<br>
<br>
Is a completely dynamic method call which can fail (or return IUO), as is:<br>
<br>
        x[i]<br>
<br>
And that this is true with no changes to Swift.  The claim that such a thing is counter to the design of Swift is completely perplexing to me.<br></blockquote><div><br></div><div>I think the argument basically is &quot;let&#39;s not add another footgun&quot; (because the design of Swift , for example regarding null handling, is to have less footguns than other languages). The fact that there are footguns in swift isn&#39;t an argument for adding new ones.<br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
-Chris<br>
<div class="HOEnZb"><div class="h5"><br>
______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</div></div></blockquote></div><br></div></div>