Object.zGetMethods
zGetMethods() -> list
Description
Return a list of all methods for this object.
class MyClass {
    fun myMethod {
        ...
    }
    fun myOtherMethod {
        ...
    }
}
$object = MyClass()
$object.zGetMethods()
//= ['myMethod', 'myOtherMethod']