Class zebkit.Class.zObject | <zebkit> |
public
<Object>
$super ([superMethod], [args] )
Call super method implementation. Parameters:
Returns:
<Object>
return what super method returns Example: var A = zebkit.Class([ function a(p) { return 10 + p; } ]); var B = zebkit.Class(A, [ function a(p) { return this.$super(p) * 10; } ]); var b = new B(); b.a(10) // return 200 |
public
void
extend ([interfaces], methods )
Extend existent class instance with the given methods and interfaces For example:
Parameters:
|