<div dir="ltr">+1 for what you outlined Alexey. I think maintaining the use of override as the keyword is the most understandable in the context and also is terminology usually used in various object languages. I like adding the optional qualifiers to allow (1) better diagnostics by the compiler, (2) clearer code, and (3) the opportunity for compiler generating the need coded (in a few of the situations).<br><div><br></div><div>Can something like this be used in the super classes interface definition to clarify expectations of a subclass?</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Feb 15, 2016 at 2:07 PM Alexey Demedetskiy via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi<br>
<br>
I would like to suggest you to extend your proposal.<br>
<br>
In my practice, overriding super functions can have several semantics.<br>
1) Replace - simple case for abstract classes which implementation do nothing, or throw an exceptions.<br>
2) After super - things like viewDidLoad and viewWillAppear, setUp etc. All cases where super expect to be called before child code.<br>
3) Before super - opposite to 2.<br>
4) Override - no rules about order, but super call must be done.<br>
<br>
So code can look like:<br>
<br>
override(after) func viewDidLoad() {<br>
    // super.viewDidLoad() &lt;— no need to call super at first line.<br>
    // child code<br>
}<br>
<br>
override(before) func tearDown() {<br>
    // clean code<br>
    // super… inserted by compiler<br>
}<br>
<br>
override(instead) func loadView() {<br>
    // super.loadView() &lt;— marked as an error with appropriate fix-up to remove instead modifier<br>
}<br>
<br>
override func refillHealthBar() {<br>
   // absent call to super will cause an error with fix-up to add (instead) modifier<br>
}<br>
<br>
I am not sure about exposing this in a public interface and limit child override options.<br>
<br>
But in general - what is your thoughts about this approach to problem that you mention?<br>
<br>
<br>
&gt; Hi!<br>
&gt;<br>
&gt; 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>
&gt; 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>
&gt;<br>
&gt; class View {<br>
&gt; func viewDidLoad() {<br>
&gt; // does something<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt; class Button: View {<br>
&gt; override func viewDidLoad() {<br>
&gt; super.viewDidLoad() //&lt;— this might be forgotten<br>
&gt; // do something other<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt; 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>
&gt;<br>
&gt; // Example for extending a function<br>
&gt; class Button: View {<br>
&gt; extend func viewDidLoad() {<br>
&gt; super.viewDidLoad()<br>
&gt; // do something<br>
&gt; }<br>
&gt;<br>
&gt; extend func viewDidAppear() {<br>
&gt; // do something<br>
&gt; } //&lt;— the compiler should throw an error here.<br>
&gt; }<br>
&gt;<br>
&gt; // Example for replacing a function<br>
&gt; class Geometry {<br>
&gt; func volume() -&gt;Double {<br>
&gt; return 0;<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt; class Cube: Geometry {<br>
&gt; var length: Double = 0.0<br>
&gt; replace func volume() -&gt;Double {<br>
&gt; let v = length * length * length<br>
&gt; return v<br>
&gt; }<br>
&gt; }<br>
&gt;<br>
&gt; Cheers,<br>
&gt; Florian<br>
&gt;<br>
&gt;<br>
&gt;<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>
</blockquote></div>