supercall
supercall is a term used in object-oriented programming, particularly in languages that support inheritance, to refer to the act of calling a method of a parent class from within a child class. This is a fundamental mechanism that allows a child class to extend or modify the behavior of a method defined in its superclass (parent class). When a child class overrides a method from its parent, it can still execute the original implementation of that method by using supercall.
The specific syntax for invoking a superclass method varies depending on the programming language. For instance,