code review; add test for brackets around subject name in tag

This commit is contained in:
Dmitry Jemerov
2015-01-21 17:23:24 +01:00
parent 659c54d7e6
commit 609914fb4a
4 changed files with 24 additions and 2 deletions
@@ -0,0 +1,15 @@
/**
Some documentation
* @param[a] Some int
* @param[b] String
*/
fun testMethod(a: Int, b: String) {
}
fun test() {
<caret>testMethod(1, "value")
}
// INFO: <b>internal</b> <b>fun</b> testMethod(a: Int, b: String): Unit<br/><p>Some documentation<br/><br/><dl><dt><b>Parameters:</b></dt><dd><code>a</code> - Some int</dd><dd><code>b</code> - String</dd></dl></p>