Code: Select all
mafonctionaffichesonnom: function(){
console.log('name:'+arguments.callee.name);
},Code: Select all
self:trace(__function__);What I see ... is that I have to put
Code: Select all
mafonctionaffichesonnom: function mafonctionaffichesonnom(){
console.log('name:'+arguments.callee.name);
},Is there any mean to get the reference name directly?