support @receiver KDoc tag; somewhat more precise tag name completion
This commit is contained in:
@@ -7,3 +7,4 @@ fun f(x: Int): Int {
|
||||
// EXIST: @param
|
||||
// EXIST: @return
|
||||
// EXIST: @suppress
|
||||
// ABSENT: @receiver
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* <caret>
|
||||
*/
|
||||
class C<T> {
|
||||
}
|
||||
|
||||
// EXIST: @param
|
||||
// EXIST: @suppress
|
||||
// EXIST: @constructor
|
||||
// EXIST: @property
|
||||
// ABSENT: @return
|
||||
// ABSENT: @receiver
|
||||
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* <caret>
|
||||
*/
|
||||
fun Int.f(): Int {
|
||||
}
|
||||
|
||||
// EXIST: @param
|
||||
// EXIST: @return
|
||||
// EXIST: @suppress
|
||||
// EXIST: @receiver
|
||||
// ABSENT: @constructor
|
||||
// ABSENT: @property
|
||||
Reference in New Issue
Block a user