Line Marking: Fix search of overriding methods in platform modules
#KT-19212 Fixed
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
interface <lineMarker>I</lineMarker> {
|
||||
suspend fun <lineMarker descr="<html><body>Is implemented in <br> KJs<br> KJvm</body></html>">foo</lineMarker>(s: String)
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// !CHECK_HIGHLIGHTING
|
||||
|
||||
class KJs : I {
|
||||
suspend override fun foo(s: String) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// !CHECK_HIGHLIGHTING
|
||||
|
||||
class KJvm : I {
|
||||
suspend override fun foo(s: String) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user