Handle multi-line spaces and leading asterisks more correctly

This commit is contained in:
Dmitry Neverov
2017-06-08 22:29:27 +02:00
committed by Simon Ogorodnik
parent 0453c4a7bf
commit 3f104833ba
3 changed files with 61 additions and 8 deletions
+12
View File
@@ -15,5 +15,17 @@ class A {
protected/*it's protected*/ void foo(char c) { }
/**
* Method description.
* Multi-line method description.
*
*
* @param param1 param1 description
* @param param2 param2 description
*
* @param param3 param3 description
*/
public void foo(String param1, String param2, String param3) {}
public/*it's public*/ static/*and static*/ final/*and final*/ int C = 1;
}
+12
View File
@@ -18,6 +18,18 @@ internal class A {
protected /*it's protected*/ fun foo(c: Char) {}
/**
* Method description.
* Multi-line method description.
*
*
* @param param1 param1 description
* @param param2 param2 description
*
* @param param3 param3 description
*/
fun foo(param1: String, param2: String, param3: String) {}
companion object {
/*it's public*//*and static*//*and final*/ val C = 1