<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Oh, it looks like Alexey beat me to a similar solution, but split the thread (at least in Mail.app):</div><div class=""><br class=""></div><blockquote type="cite" class="">On Mon, Feb 15, 2016 at 2:07 PM Alexey Demedetskiy via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""></blockquote><blockquote type="cite" class="">Hi<br class=""><br class="">I would like to suggest you to extend your proposal.<br class=""><br class="">In my practice, overriding super functions can have several semantics.<br class="">1) Replace - simple case for abstract classes which implementation do nothing, or throw an exceptions.<br class="">2) After super - things like viewDidLoad and viewWillAppear, setUp etc. All cases where super expect to be called before child code.<br class="">3) Before super - opposite to 2.<br class="">4) Override - no rules about order, but super call must be done.&nbsp;<br class=""><br class="">So code can look like:&nbsp;<br class=""><br class="">override(after) func viewDidLoad() {<br class="">&nbsp; &nbsp;// super.viewDidLoad() &lt;— no need to call super at first line.<br class="">&nbsp; &nbsp;// child code<br class="">}<br class=""><br class="">override(before) func tearDown() {<br class="">&nbsp; &nbsp;// clean code<br class="">&nbsp; &nbsp;// super… inserted by compiler<br class="">}<br class=""><br class="">override(instead) func loadView() {<br class="">&nbsp; &nbsp;// super.loadView() &lt;— marked as an error with appropriate fix-up to remove instead modifier<br class="">}<br class=""><br class="">override func refillHealthBar() {<br class="">&nbsp; // absent call to super will cause an error with fix-up to add (instead) modifier<br class="">}<br class=""><br class="">I am not sure about exposing this in a public interface and limit child override options.<br class=""><br class=""><div class="">But in general - what is your thoughts about this approach to problem that you mention?</div></blockquote><br class=""><div><blockquote type="cite" class=""><div class="">On 15 Feb 2016, at 22:52, Haravikk via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">This is an interesting idea, and fits well with the theme of preventing mistakes in Swift, but I think that the proposed solution isn’t flexible enough, as there are cases for inheritance patterns where extending doesn’t actually make sense, so having to specify an exception every time could quickly become annoying.</div><div class=""><br class=""></div><div class="">I think the better solution is to instead allow super-classes to specify whether or not their method must be called when overridden/extended. For example:</div><div class=""><br class=""></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>class View {</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>@super(required) func viewDidLoad() { … }</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>}</font></div><div class=""><font face="Monaco" class=""><br class=""></font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>class Button : View {</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>override func viewDidLoad() { … }</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>}</font></div><div class=""><font face="Monaco" class=""><br class=""></font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>class Widget : View {</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>override func viewDidLoad() {</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                        </span>super.viewDidLoad()</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                        </span>…</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">                </span>}</font></div><div class=""><font face="Monaco" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>}</font></div><div class=""><br class=""></div><div class="">In this extension of your example Button will cause an error because it overrides viewDidLoad() but fails to call the parent’s method as required by the @super attribute. However, Widget compiles successfully because it follows the requirement.</div><div class=""><br class=""></div><div class="">So the options for @super would be:</div><div class=""><br class=""></div><div class=""><ul class="MailOutline"><li class=""><b class="">required: </b>child-class&nbsp;must call parent implementation of this method.</li><li class=""><b class="">optional:</b>&nbsp;default behaviour, child can choose whether to call the parent’s method.</li><li class=""><b class="">denied:</b>&nbsp;child may not call parent’s method (useful if it makes assumptions that a child-class may not follow), but can still extend/override.</li></ul><div class=""><br class=""></div></div><div class="">I think this would be a more flexible solution to the problem, and put the decision in the hands of those writing classes designed for inheritance. I’m not 100% sure of whether to rename override to extend, I like extend better personally, but it probably doesn’t matter overall.</div><br class=""><div class=""><blockquote type="cite" class=""><div class="">On 15 Feb 2016, at 20:57, Florian Liefers via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class="">Hi!<br class=""><br class="">I would like to suggest to replace the override keyword for functions by something like extend and replace or to add an annotation like @SuppressSuperCall (don’t know a good name for it).<br class="">The reason for this is, that it might happen, that one forgets to call the super’s implementation in an overridden function or if one reads the code it might not be obvious why the super’s implementation is not called:<br class=""><br class="">class View {<br class=""> &nbsp;&nbsp;func viewDidLoad() {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// does something<br class=""> &nbsp;&nbsp;}<br class="">}<br class=""><br class="">class Button: View {<br class=""> &nbsp;override func viewDidLoad() {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;super.viewDidLoad() &nbsp;&nbsp;// &lt;— this might be forgotten<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// do something other<br class=""> &nbsp;&nbsp;}<br class="">}<br class=""><br class="">The compiler will accept if one overrides a superclass’s function but does not call the superclass’s implementation which is often ok. The developer should clearly state that he doesn’t want to call the superclass’s implementation, otherwise the compiler should throw an error.<br class=""><br class="">// Example for extending a function<br class="">class Button: View {<br class=""> &nbsp;extend func viewDidLoad() {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;super.viewDidLoad()<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// do something<br class=""> &nbsp;&nbsp;}<br class=""><br class=""> &nbsp;extend func viewDidAppear() {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// do something<br class=""> &nbsp;&nbsp;} // &lt;— the compiler should throw an error here.<br class="">}<br class=""><br class="">// Example for replacing a function<br class="">class Geometry {<br class=""> &nbsp;&nbsp;func volume() -&gt; Double {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return 0;<br class=""> &nbsp;&nbsp;}<br class="">}<br class=""><br class="">class Cube: Geometry {<br class=""> &nbsp;&nbsp;var length: Double = 0.0<br class=""> &nbsp;&nbsp;replace func volume() -&gt; Double {<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;let v = length * length * length<br class=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return v<br class=""> &nbsp;&nbsp;}<br class="">}<br class=""><br class="">Cheers,<br class="">Florian<br class="">_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class=""></div></blockquote></div><br class=""></div>_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>