如何在AS的实时模板中获取kotlin方法参数

时间:2019-11-21 11:20:45

标签: android-studio templates kotlin groovy

在Java中,实时模板'logm'使用

groovyScript("
def params = _2.collect {it + ' = [\" + ' + it + ' + \"]'}.join(', ');
 return '\"' + _1 + '() called' + (params.empty  ? '' : ' with: ' + params) + '\"'", methodName(), methodParameters())

但是在kotlin中,我只能让kotlinClassName()代替methodName(),

如何获取kotlin函数的方法参数?

0 个答案:

没有答案