Skip to content

Add a way to call overridden methods #190

@echebbi

Description

@echebbi

Motivation

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.

Proposed Solution

Provide a super keyword similar to Java's one.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions