How to get the method name in a method in a sc file?

Hello,

Is it possible to get the method name inside the method definition?
For example, this.methodName.postln posts the method name:

Object {
...

    aMethod { arg ...; 
        ...
        this.methodName.postln;
        ...
    }
} 

best,