Revert "FIR IDE: Add tests for resolving from nested types references"

This reverts commit e127ea3d
This commit is contained in:
Roman Golyshev
2020-11-30 12:37:40 +03:00
parent f8b6559b6a
commit e6f380182a
11 changed files with 0 additions and 215 deletions
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
companion object
}
}
fun test(param: foo.bar.baz.AA.BB.<caret>Companion) {}
// REF: companion object of (in foo.bar.baz.AA).BB
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: foo.bar.<caret>baz.AA.BB.CC) {}
// REF: baz
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: foo.<caret>bar.baz.AA.BB.CC) {}
// REF: bar
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: <caret>foo.bar.baz.AA.BB.CC) {}
// REF: foo
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: foo.bar.baz.AA.BB.<caret>CC) {}
// REF: (in foo.bar.baz.AA.BB).CC
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
companion object
}
}
fun test(param: foo.bar.baz.AA.<caret>BB.Companion) {}
// REF: (in foo.bar.baz.AA).BB
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: foo.bar.baz.AA.<caret>BB.CC) {}
// REF: (in foo.bar.baz.AA).BB
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
companion object
}
}
fun test(param: foo.bar.baz.<caret>AA.BB.Companion) {}
// REF: (foo.bar.baz).AA
@@ -1,11 +0,0 @@
package foo.bar.baz
class AA {
class BB {
class CC
}
}
fun test(param: foo.bar.baz.<caret>AA.BB.CC) {}
// REF: (foo.bar.baz).AA