<div dir="ltr">+1<div><br></div><div><b>Fortifies extension-based approach</b><br><div>The change fits well with Swift&#39;s style of splitting types&#39; subsystems and protocol conformances into their own extensions. This modularity is an important tool in managing complexity and assuring quality/safety (key Swift values), and the language should encourage this pattern. It&#39;ll become only more relevant if extensions within the same module will in the future be allowed to add stored properties, a change which would fit very well with this one.</div><div><br></div><div><b>Why not file split &amp; use private</b></div><div>Splitting each extension into a separate file is impractical because if properly done, the size of the individual extensions is usually quite small.</div><div><br></div><div><b>Self-documents extension API</b></div><div>It makes API per extension more self-documenting – it immediately tells you what the extension exposes to the rest of the file and what is an implementation detail.<div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 29, 2016 at 9:45 PM, Brent Royal-Gordon 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">&gt; <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0025-scoped-access-level.md" rel="noreferrer" target="_blank">https://github.com/apple/swift-evolution/blob/master/proposals/0025-scoped-access-level.md</a><br>
<br>
&gt;       • What is your evaluation of the proposal?<br>
<br>
I don&#39;t think it&#39;s a good idea.<br>
<br>
I think the source of our disagreement is expressed in this paragraph from the proposal:<br>
<br>
&gt; It forces a one class per file structure, which is very limiting. Putting related APIs and/or related implementations in the same file helps ensure consistency and reduces the time to find a particular API or implementation. This does not mean that the classes in the same file need to share otherwise hidden APIs, but there is no way to express it with the current access levels.<br>
<br>
This reflects a view that grouping APIs into files is a purely stylistic choice. You can move APIs around freely and organize them however you like. If Swift gets in the way of your preferred arrangement, Swift should be changed to allow it. The most important thing is that you be free to express yourself artistically through the medium of the file system.<br>
<br>
I believe that view is mistaken. Swift has a very opinionated view of how code should be organized into files; they are as semantically meaningful as declaration blocks.<br>
<br>
The purpose of a file is to implement one concern—essentially, one logical piece of the module&#39;s functionality with its own self-contained implementation details. A concern is not necessarily fully represented by a single type; a type may include several concerns, and several types may implement one concern. (It&#39;s not a coincidence that a file can contain several types and a type can be split across several files.) The precise boundaries of a concern are a little nebulous, especially when you build convenience APIs which don&#39;t depend on anything private, but it&#39;s usually roughly clear what they are.<br>
<br>
When you want to use `local`, that usually means you&#39;re not organizing your code the way Swift thinks you should. It&#39;s no wonder Swift seems to not be expressive enough: You&#39;re fighting the language.<br>
<br>
Now, there are two exceptions to this general rule, but I think they&#39;re both best handled in other ways.<br>
<br>
The first: Sometimes Swift will not allow you to move certain things to separate files; for instance, only one file can declare stored properties on a type, and so stored properties must either be made more visible than they should be, or several concerns must be mixed into a single file. I think this is best handled by allowing extensions to declare stored properties and other such one-file-only constructs, rather than by complicating access control.<br>
<br>
The second: Sometimes a particular concern has an especially complicated, self-contained &quot;sub-concern&quot; which has implementation details of its own. You would like to keep the sub-concerns implementation details private from the containing concern, but the sub-concern is *itself* an implementation detail of the containing concern, so you *also* want to keep the sub-concern private from other, unrelated concerns. In these cases, some sort of more nuanced access control would be better—but even then, I don&#39;t think `local` is actually a very good way to do it.<br>
<br>
There&#39;s nothing about a declaration block that makes it a natural choice for scoping declarations. `local` hides the declaration from containing and sibling declaration blocks and exposes it to nested declaration blocks. But if concerns often transcend type boundaries, surely sub-concerns do as well, so `local` will often be either too limiting or not limiting enough.<br>
<br>
To properly handle this problem, we would be better off coming up with some way to limit the scope of `internal` to only particular files which need to interface with that file&#39;s concern. `internal` would expose the API to your file&#39;s &quot;clients&quot;—by default all files in the module, but potentially narrowed down to a particular subset—while `private` would remain as something truly limited to a single file.<br>
<br>
However, that approach is rather complicated, bordering on the horror of C++ `friend` declarations. Ultimately, I just don&#39;t think it&#39;s too large of a burden to say, &quot;You have a three-level namespace, and anything that crosses files goes into `internal`; if something in `internal` is only meant to be used in a particular file, show some discipline.&quot;<br>
<br>
&gt;       • Is the problem being addressed significant enough to warrant a change to Swift?<br>
<br>
As I often say, the problem is arguably significant enough, but I don&#39;t think the solution is the right one.<br>
<br>
&gt;       • Does this proposal fit well with the feel and direction of Swift?<br>
<br>
I don&#39;t think so. Swift has strong, opinionated ideas about how code should be organized; this proposal doesn&#39;t follow that pattern.<br>
<br>
&gt;       • If you have used other languages or libraries with a similar feature, how do you feel that this proposal compares to those?<br>
<br>
I&#39;ve used languages with file-based scoping, and languages with arbitrary lexical scoping, but not languages with both.<br>
<br>
&gt;       • How much effort did you put into your review? A glance, a quick reading, or an in-depth study?<br>
<br>
In addition to reading the present proposal, I also participated fairly extensively in discussions about it and read previously-posted reviews.<br>
<span><font color="#888888"><br>
--<br>
Brent Royal-Gordon<br>
Architechies<br>
</font></span><div><div><br>
_______________________________________________<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>
</div></div></blockquote></div><br></div></div></div></div>