/** Some documentation * @param[a] Some int * @param[b] String */ fun testMethod(a: Int, b: String) { } fun test() { testMethod(1, "value") } //INFO: internal fun testMethod(a: Int, b: String): Unit defined in root package

Some documentation //INFO:

Parameters:
a - Some int
b - String
//INFO: