You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/ql/test/kotlin/library-tests/comments/comments.expected
+25-3Lines changed: 25 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,13 @@ comments
7
7
| comments.kt:28:5:30:6 | /*\n A block comment\n */ | /*\n A block comment\n */ |
8
8
| comments.kt:35:5:35:34 | /** Medium is in the middle */ | /** Medium is in the middle */ |
9
9
| comments.kt:37:5:37:23 | /** This is high */ | /** This is high */ |
10
-
| comments.kt:42:5:44:6 | /**\n * A variable.\n */ | /**\n * A variable.\n */ |
10
+
| comments.kt:42:5:44:7 | /**\n * A variable.\n */ | /**\n * A variable.\n */ |
11
11
| comments.kt:48:1:50:3 | /**\n * A type alias comment\n */ | /**\n * A type alias comment\n */ |
12
12
| comments.kt:54:5:56:7 | /**\n * An init block comment\n */ | /**\n * An init block comment\n */ |
13
+
| comments.kt:61:5:63:7 | /**\n * A prop comment\n */ | /**\n * A prop comment\n */ |
14
+
| comments.kt:65:9:67:11 | /**\n * An accessor comment\n */ | /**\n * An accessor comment\n */ |
15
+
| comments.kt:71:9:73:11 | /**\n * An anonymous function comment\n */ | /**\n * An anonymous function comment\n */ |
16
+
| comments.kt:79:9:81:11 | /**\n * A local function comment\n */ | /**\n * A local function comment\n */ |
13
17
commentOwners
14
18
| comments.kt:4:1:11:3 | /**\n * A group of *members*.\n *\n * This class has no useful logic; it's just a documentation example.\n *\n * @property name the name of this group.\n * @constructor Creates an empty group.\n */ | comments.kt:12:1:31:1 | Group |
15
19
| comments.kt:4:1:11:3 | /**\n * A group of *members*.\n *\n * This class has no useful logic; it's just a documentation example.\n *\n * @property name the name of this group.\n * @constructor Creates an empty group.\n */ | comments.kt:12:1:31:1 | Group |
@@ -19,9 +23,19 @@ commentOwners
19
23
| comments.kt:19:5:22:7 | /**\n * Adds a [member] to this group.\n * @return the new size of the group.\n */ | comments.kt:23:5:26:5 | add |
20
24
| comments.kt:35:5:35:34 | /** Medium is in the middle */ | comments.kt:36:5:36:14 | Medium |
21
25
| comments.kt:37:5:37:23 | /** This is high */ | comments.kt:38:5:38:11 | High |
22
-
| comments.kt:42:5:44:6 | /**\n * A variable.\n */ | comments.kt:45:5:45:13 | int a |
26
+
| comments.kt:42:5:44:7 | /**\n * A variable.\n */ | comments.kt:45:5:45:13 | int a |
23
27
| comments.kt:48:1:50:3 | /**\n * A type alias comment\n */ | comments.kt:51:1:51:24 | MyType |
| comments.kt:71:9:73:11 | /**\n * An anonymous function comment\n */ | comments.kt:70:5:76:10 | getL |
32
+
| comments.kt:71:9:73:11 | /**\n * An anonymous function comment\n */ | comments.kt:70:5:76:10 | l |
33
+
| comments.kt:71:9:73:11 | /**\n * An anonymous function comment\n */ | comments.kt:70:5:76:10 | l |
34
+
| comments.kt:79:9:81:11 | /**\n * A local function comment\n */ | comments.kt:82:9:82:24 | localFn |
35
+
commentNoOwners
36
+
| comments.kt:1:1:1:25 | /** Kdoc with no owner */ |
37
+
| comments.kt:24:9:24:25 | // A line comment |
38
+
| comments.kt:28:5:30:6 | /*\n A block comment\n */ |
25
39
commentSections
26
40
| comments.kt:1:1:1:25 | /** Kdoc with no owner */ | Kdoc with no owner |
27
41
| comments.kt:4:1:11:3 | /**\n * A group of *members*.\n *\n * This class has no useful logic; it's just a documentation example.\n *\n * @property name the name of this group.\n * @constructor Creates an empty group.\n */ | A group of *members*.\n\nThis class has no useful logic; it's just a documentation example.\n\n |
@@ -31,14 +45,22 @@ commentSections
31
45
| comments.kt:19:5:22:7 | /**\n * Adds a [member] to this group.\n * @return the new size of the group.\n */ | Adds a [member] to this group.\n |
32
46
| comments.kt:35:5:35:34 | /** Medium is in the middle */ | Medium is in the middle |
33
47
| comments.kt:37:5:37:23 | /** This is high */ | This is high |
34
-
| comments.kt:42:5:44:6 | /**\n * A variable.\n */ | A variable. |
48
+
| comments.kt:42:5:44:7 | /**\n * A variable.\n */ | A variable. |
35
49
| comments.kt:48:1:50:3 | /**\n * A type alias comment\n */ | A type alias comment |
36
50
| comments.kt:54:5:56:7 | /**\n * An init block comment\n */ | An init block comment |
51
+
| comments.kt:61:5:63:7 | /**\n * A prop comment\n */ | A prop comment |
52
+
| comments.kt:65:9:67:11 | /**\n * An accessor comment\n */ | An accessor comment |
53
+
| comments.kt:71:9:73:11 | /**\n * An anonymous function comment\n */ | An anonymous function comment |
54
+
| comments.kt:79:9:81:11 | /**\n * A local function comment\n */ | A local function comment |
37
55
commentSectionContents
38
56
| A group of *members*.\n\nThis class has no useful logic; it's just a documentation example.\n\n | A group of *members*.\n\nThis class has no useful logic; it's just a documentation example.\n\n |
57
+
| A local function comment | A local function comment |
58
+
| A prop comment | A prop comment |
39
59
| A type alias comment | A type alias comment |
40
60
| A variable. | A variable. |
41
61
| Adds a [member] to this group.\n | Adds a [member] to this group.\n |
62
+
| An accessor comment | An accessor comment |
63
+
| An anonymous function comment | An anonymous function comment |
42
64
| An init block comment | An init block comment |
43
65
| Creates an empty group. | Creates an empty group. |
0 commit comments