MethodFn method(String name)

Source

MethodFn method(String name) {
  if (this._methods.containsKey(name)) {
    return this._methods[name];
  } else {
    return this.reflectionCapabilities.method(name);
  }
}