super.call
super
.NAME( EXPRESSION ...)
This form calls the extended class's version of the method named, provided the extended class contains this method. The expressions following the name are evaluated from left to right and passed in to the method as its arguments. The number and types of the arguments must match from the method's declaration. These values replace the argument names in the body of the method as if accessed from an instance of the super call, and the result of the body is the result of this expression.
ProfessorJ Beginner Language