<div dir="ltr"><div><br></div><div>&quot;Try&quot; does the same, but I do not know anyone who prefers to repeat the same keyword several times.</div><div><br></div><div>return try func0(try func1(), try func2())<br></div><div><br></div><div>I do not think there&#39;s any value in knowing how many interim steps also need &quot;await&quot; ... In practice, you have to wait for everyone anyway.<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">Em seg, 28 de ago de 2017 às 17:09, Adam Kemp via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; escreveu:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><div>I decided to split this out to its own thread because it seems orthogonal to other issues being discussed.</div><div><br></div><div>When I read this line from the proposal:</div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px">await decodeImage(dataResource.get(), imageResource.get())</blockquote><div><br></div>It’s not clear to me where the asynchronous call is. There are three function calls on that line. Which ones might actually suspend? You can’t tell by looking at it because there’s only one await keyword (the answer is all 3).<div><br></div><div><div>I’m not a fan of the ambiguity of applying the await keyword to an entire statement. I know some people think this is a good thing, but to me it’s just obfuscating important information.</div><div><br></div><div>Further, if you’re going beyond a single expression then why you would stop at the statement level? Why not make it apply to the whole block or even a whole function? Why require the keyword at all? It doesn’t appear to be adding any value if it doesn’t specify exactly where the suspension point is. “Somewhere on this line” can get rather vague.</div><div><br></div><div>async/await can be a huge win for clarity, but it also comes with the downside of having to think a bit more about what can happen at these suspension points. I feel like it should be a goal to make it very clear where those suspension points are so that we can more easily reason about them. That’s why I prefer restricting it to apply to a single expression. It’s very clear where the function gets suspended, which means it’s clearer where you need to be concerned about things possibly happening in between your code. Consider this, for example:</div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px">await decodeImage(loadWebResource(self.webProfilePath), loadWebResource(self.imagePath))</blockquote><div><br></div>If webProfilePath and imagePath are vars then they could change in between those two calls. If you can’t see that these calls are suspending then you might not know to cache them up-front to ensure consistency:<div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div>let webProfilePath = self.webProfilePath</div><div>let imagePath = self.imagePath</div></blockquote><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px">await decodeImage(await loadWebResource(webProfilePath), await loadWebResource(imagePath))</blockquote><br></div><div>I think a general guideline we should use when considering how this feature should work is to ask whether it makes bugs more likely or less likely. The goal should be to reduce bugs while simplifying code. If we simplify the code to the point where we’re making some bugs too subtle then we may be doing more harm than good.</div></div>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>