EA-36473 Wrap method for JetLightClass with invalid fq name

This commit is contained in:
Nikolay Krasko
2012-09-11 21:25:38 +04:00
parent 9a645dca3e
commit b6e2381861
13 changed files with 309 additions and 33 deletions
@@ -0,0 +1,7 @@
fun test() {
class Test() {
fun <caret>internalFun() {
}
}
}
@@ -0,0 +1,5 @@
val a = object {
fun <caret>testing() {
}
}
@@ -0,0 +1,6 @@
class Test {
class object {
fun <caret>testing() {
}
}
}
@@ -0,0 +1,3 @@
object SomeObject {
fun <caret>testingInObjectNew() = 12
}
@@ -0,0 +1,4 @@
trait Some {
fun <caret>some() {
}
}
@@ -0,0 +1,3 @@
trait Some {
fun <caret>some()
}
@@ -0,0 +1,2 @@
fun <caret>test() {
}