updated docs...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-04-27 01:44:48 +03:00
parent a8958d255d
commit e8ed996aba
2 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,7 @@ var Item = object.Constructor('Item', {
__init__: function(){
// call the "super" method...
object.parentCall(this.__init__, this)
object.parentCall(this.prototype.__init__, this)
this.item_attr = 'instance attribute value'
},

View File

@ -98,6 +98,7 @@ function(obj, name, callback){
// passed explicitly.
// NOTE: this is super(..) replacement...
// NOTE: if method is root (no super method) this will return undefined.
// NOTE: for
var parent =
module.parent =
function(method, name, that){