@LuaCallable(returnTypes = LuaType.TABLE, description = "Get a complete table of information about all available methods")
public Map<?, ?> getAdvancedMethodsData() {
Map<String, Object> info = Maps.newHashMap();
for (Map.Entry<String, E> e : methods.entrySet()) {
final IDescriptable m = e.getValue().getWrappedMethod();
info.put(e.getKey(), m.describe());
}
return info;
}