mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
17 lines
437 B
Kotlin
Vendored
17 lines
437 B
Kotlin
Vendored
/**
|
|
Some documentation
|
|
|
|
* @param a Some int
|
|
* @param b String
|
|
*/
|
|
fun testMethod(a: Int, b: String) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
<caret>testMethod(1, "value")
|
|
}
|
|
|
|
//INFO: <pre><b>public</b> <b>fun</b> testMethod(a: Int, b: String): Unit <i>defined in</i> root package <i>in file</i> OnMethodUsage.kt</pre><p>Some documentation</p>
|
|
//INFO: <dl><dt><b>Parameters:</b></dt><dd><code>a</code> - Some int</dd><dd><code>b</code> - String</dd></dl>
|