<div dir="ltr">It&#39;s occurring to me, reading these recent posts, that we have two orthogonal systems of access levels.<div><br></div><div>Swift&#39;s current access system is file based; a project file decides which files comprise a module, and the terms &#39;public&#39;, &#39;internal&#39; and &#39;private&#39; determine whether a property is accessible to all, accessible only within files of the module, or accessible only within a file. (This takes on an extra dimension as files may belong to several modules).<div><br></div><div>The concept which began this discussion, and several of the proposed concepts in this discussion, ask instead for a type-based access system similar to those in other languages including Objective-C, where &#39;public&#39;, &#39;protected&#39; and &#39;private&#39; are the terms of choice and they restrict access to a type or subtypes.</div><div><br></div><div>I think it would be confusing if Swift applied &#39;public&#39; to a concept in the file-based access system and &#39;private&#39; to a concept in the type-based access system.</div><div><br></div><div>I would prefer clearer terms which actually mention the restrictions of the level. For example, &#39;inherited&#39;, not &#39;protected&#39;, in the case of properties accessible by a class and its subclasses; &#39;declaration&#39;, rather than &#39;private&#39; or &#39;scoped&#39;, to refer to properties only accessible within a given type or extension declaration.</div><div><br></div><div>Since, at the moment, a declaration can only occur within one file, I think this most-restricted level has managed to pass as a level of the file-based access system. However, if the system is ever extended, we&#39;re going to run into new syntax decisions where we have &#39;private module&#39; functions (accessible only within the given type in the same module) trying to communicate with &#39;protected file&#39; properties (accessible only with the type and its subtypes in the same file), and that might lead to conflicts, so perhaps we should decide how those might be declared now.</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Mar 15, 2016 at 11:51 PM, Jonathan Hull 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"><div style="word-wrap:break-word"><span class=""><div><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)"><pre style="white-space:pre-wrap">On Tue, Mar 15, 2016 at 2:33 PM Erica Sadun &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">erica at ericasadun.com</a>&gt; wrote:</pre><div><blockquote type="cite"><pre style="white-space:pre-wrap">And again, moving the access control modification to the end just doesn&#39;t look 
right to me or seem to enhance readability. :(</pre></blockquote></div></pre></div></span>I like Shawn’s proposal better for cases where there are custom getter/setter implementations.  We should definitely be able to do:<div><br></div><div>var foo:Int {</div><div><span style="white-space:pre-wrap">        </span>public get {…}</div><div><span style="white-space:pre-wrap">        </span>private(file) set {…}</div><div>}</div><div><br></div><div>In fact, that is what I first tried to do before learning about private(set).  But without the implementations, it just seems strange to put the scoping after the rest of the declaration (they work above because they are <i>before</i> the custom getter/setter).</div><div><br></div><div>I still like the idea of having the option to use parameter-like syntax for cases where you don’t have custom getters/setters:</div><div><br></div><div>private var foo:Int</div><div>private(file) var foo:Int</div><div>private(set: file) var foo:Int</div><div>private(get: global, set: file) var foo:Int</div><div><br></div><div><br></div><div>I guess, if we had some way to represent the standard getter/setter, that might work too.  I don’t love it, but maybe with better wording?</div><div><br></div><div>var foo:Int{</div><div><span style="white-space:pre-wrap">        </span>public get useDefault</div><div><span style="white-space:pre-wrap">        </span>private(file) set {…}</div><div>}</div><div><br></div><div>Thanks,</div><div>Jon</div><div><div class="h5"><div><div><br></div><div><br><div><blockquote type="cite"><div>On Mar 14, 2016, at 10:22 PM, Patrick Pijnappel &lt;<a href="mailto:patrickpijnappel@gmail.com" target="_blank">patrickpijnappel@gmail.com</a>&gt; wrote:</div><br><div><div dir="ltr"><div style="font-size:13px"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I like Shawn&#39;s proposal: </blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"> </blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><font face="monospace, monospace">var foo: Int { private(file) set }</font> </blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><font face="monospace, monospace"><br></font><font face="arial, helvetica, sans-serif">In fact it&#39;s probably more sensible than the current private(set) IMO.</font></blockquote></div><div style="font-size:13px"><font face="monospace, monospace"><br></font></div><div style="font-size:13px"><font face="arial, helvetica, sans-serif">For example, we already use</font></div><div style="font-size:13px"><span style="font-family:arial,helvetica,sans-serif"><br></span></div><div style="font-size:13px"><font face="monospace, monospace">var foo: Int { mutating get { ... } }<br></font></div><div style="font-size:13px"><span style="font-family:arial,helvetica,sans-serif"><br></span></div><div style="font-size:13px"><span style="font-family:arial,helvetica,sans-serif">and not</span><br></div><div style="font-size:13px"><span style="font-family:arial,helvetica,sans-serif"><br></span></div><div style="font-size:13px"><font face="monospace, monospace">mutating(get) var foo: Int { get { ... } }<br></font></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Mar 15, 2016 at 4:13 PM, Patrick Pijnappel <span dir="ltr">&lt;<a href="mailto:patrickpijnappel@gmail.com" target="_blank">patrickpijnappel@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div style="font-size:13px">I like Shawn&#39;s proposal:</div><div style="font-size:13px"><br></div><div style="font-size:13px"><font face="monospace, monospace">var foo: Int { private(file) set }</font></div><div style="font-size:13px"><font face="monospace, monospace"><br></font></div><div style="font-size:13px"><font face="arial, helvetica, sans-serif">In fact it&#39;s probably more sensible than the current private(set) IMO.</font></div><div style="font-size:13px"><font face="monospace, monospace"><br></font></div><div style="font-size:13px"><br></div><div style="font-size:13px">While I like <font face="monospace, monospace">private(get: file, set: module)</font> idea, I think it just gets too inconsistent with <span style="font-family:monospace,monospace">private(set: public)</span><font face="arial, helvetica, sans-serif"> and</font><span style="font-family:monospace,monospace"> </span><span style="font-family:monospace,monospace">private(set: private)</span><font face="arial, helvetica, sans-serif"> (?!)</font></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div>On Tue, Mar 15, 2016 at 3:39 PM, Jonathan Hull 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></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div><div style="word-wrap:break-word"><span><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)"><i>On Mar 14, 2016, at 8:36 PM, Patrick Pijnappel via swift-evolution &lt;<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">swift-evolution at swift.org</a>&gt; wrote:</i></pre></span><blockquote type="cite"><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)">The only question is (as Sean mentioned) how this combines with the syntax
for setter access level, e.g. the current private(set). Options:
- Unnamed 2nd argument, giving private(file), private(file, set),
private(set).
- Named 2nd argument, giving e.g. private(file), private(file, accessor:
set), private(accessor: set). Less ambiguity but longer.
- Not using multiple arguments, but that&#39;d probably break consistency with
the other unification efforts going on to make everything look like
function calls.</pre></blockquote><div>What about the following 3 forms?</div><div><br></div><div>private(file) //both setter and getter have file scope</div><div>private(set: file) //setter has file scope.  Equivalent to current “private(set)&quot;</div><div>private(get: module, set: file) //getter has module scope &amp; setter has file scope</div><div><br></div><div>It is a bit weird, but we should probably also allow “public&quot; in that last form: private(get: public, set: module)</div><div><br></div><div>Thanks,</div><div>Jon</div></div><br></div></div><span>_______________________________________________<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>
<br></span></blockquote></div><br></div>
</blockquote></div><br></div></div>
</div></blockquote></div><br></div></div></div></div></div><br>_______________________________________________<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/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div>