Use directive configuring in resolve reference tests

This commit is contained in:
Nikolay Krasko
2013-07-10 21:29:24 +04:00
parent 68bd7405ff
commit 970586bfdd
7 changed files with 35 additions and 16 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
open class Test
class SomeTest : <caret>Test()
class SomeTest : <caret>Test()
// REF: (<root>).Test
@@ -2,4 +2,6 @@ package test1.test2
class Some()
val test : <caret>test1.test2.Some = Some()
val test : <caret>test1.test2.Some = Some()
// REF: test1
+3 -1
View File
@@ -1 +1,3 @@
val c = javax.swing.SwingUtilities.<caret>invokeLater { }
val c = javax.swing.SwingUtilities.<caret>invokeLater { }
// REF: (in javax.swing.SwingUtilities).invokeLater(Runnable)
+3 -1
View File
@@ -1 +1,3 @@
val c = java.util.<caret>Comparator {(x: Int, y: Int) -> 1}
val c = java.util.<caret>Comparator {(x: Int, y: Int) -> 1}
// REF: (java.util).Comparator
@@ -1 +1,3 @@
val c = java.util.<caret>Comparator<Int> { x, y -> 1 }
val c = java.util.<caret>Comparator<Int> { x, y -> 1 }
// REF: (java.util).Comparator