implementation of super() method
implement super() method that is supposed to be used in init() constructor.
it's also necessary to check if super() is called with proper arguments expected by its super class.
instead of an implementation of super() method, the following description is enabled.
A = class { __init__(arg1, arg2) = {} } B = class(A) { __init__(arg1) = {|arg1, 20| } }
implement super() method that is supposed to be used in init() constructor.
it's also necessary to check if super() is called with proper arguments expected by its super class.