Fix parameter info presentation with regard to DeprecatedSinceKotlin
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
@Suppress("DEPRECATED_SINCE_KOTLIN_OUTSIDE_KOTLIN_SUBPACKAGE")
|
||||
@Deprecated("")
|
||||
@DeprecatedSinceKotlin(warningSince = "1.0")
|
||||
fun f(x: Int) {}
|
||||
|
||||
fun d(x: Int) {
|
||||
f(<caret>1)
|
||||
}
|
||||
/*
|
||||
Text: (<highlight>x: Int</highlight>), Disabled: false, Strikeout: true, Green: true
|
||||
*/
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
@Suppress("DEPRECATED_SINCE_KOTLIN_OUTSIDE_KOTLIN_SUBPACKAGE")
|
||||
@Deprecated("")
|
||||
@DeprecatedSinceKotlin(warningSince = "1.9")
|
||||
fun f(x: Int) {}
|
||||
|
||||
fun d(x: Int) {
|
||||
f(<caret>1)
|
||||
}
|
||||
/*
|
||||
Text: (<highlight>x: Int</highlight>), Disabled: false, Strikeout: false, Green: true
|
||||
*/
|
||||
Reference in New Issue
Block a user