application.getMethodContent(globals.myMethod)

I like to be able to retrieve the content of a method. This would be perfect for using eval() in extended ways.
It’s even possible then to dynamicly build methods from existing Servoy methods!
Something like:

if(thisValue == thatValue) {
    var vMethod = application.getMethodContent(globals.myMethod)
    vMethod += '\n\n' + application.getMethodContent(globals.myOtherMethod)
    eval(vMethod)
}