Open echebbi opened 4 years ago
It is sometimes useful to call overridden methods, e.g.:
class Action { public void perform() { // perform } } class DelayedAction { @Override public void perform() { sleep(delay); super.perform(); } }
That's currently impossible in ALE.
Provide a super keyword similar to Java's one.
super
Motivation
It is sometimes useful to call overridden methods, e.g.:
That's currently impossible in ALE.
Proposed Solution
Provide a
super
keyword similar to Java's one.