Revert replacing "NUMBER" to "INVOCATION_COUNT" and replace "TIME" to "INVOCATION_COUNT"
This commit is contained in:
@@ -15,5 +15,5 @@ class TestSample() {
|
||||
}
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: testVar, testFun, testTop
|
||||
@@ -4,5 +4,5 @@ fun anyfun() {
|
||||
a.b.c.d.e.f.<caret>
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 0
|
||||
// INVOCATION_COUNT: 1
|
||||
// NUMBER: 0
|
||||
@@ -4,5 +4,5 @@ fun anyfun() {
|
||||
a.b.c.d.e.f.<caret>
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 0
|
||||
// INVOCATION_COUNT: 2
|
||||
// NUMBER: 0
|
||||
@@ -2,7 +2,7 @@ class Test {
|
||||
val St<caret>
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: String~(jet)
|
||||
// EXIST: IllegalStateException
|
||||
// EXIST_JAVA_ONLY: StringBuilder
|
||||
|
||||
@@ -3,7 +3,7 @@ fun testing() {}
|
||||
fun S<caret>
|
||||
|
||||
// Should complete types for receiver after explicit basic completion call
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: String
|
||||
// EXIST_JAVA_ONLY: StringBuffer
|
||||
// EXIST: Set
|
||||
|
||||
@@ -2,7 +2,7 @@ class Test {
|
||||
val St<caret>
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: String~(jet)
|
||||
// EXIST: IllegalStateException
|
||||
// EXIST: StringBuilder
|
||||
|
||||
@@ -12,7 +12,7 @@ class StrMore {
|
||||
class StrAbsent
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: String~(jet)
|
||||
// EXIST: StrSome
|
||||
// EXIST: StrMore
|
||||
|
||||
@@ -7,4 +7,4 @@ class Test {
|
||||
}
|
||||
|
||||
// EXIST: util
|
||||
// INVOCATION_COUNT: 1
|
||||
// NUMBER: 1
|
||||
|
||||
@@ -2,4 +2,4 @@ package kttesting<caret>.util
|
||||
|
||||
// Test that there won't be package with completion fake suffix
|
||||
|
||||
// INVOCATION_COUNT: 0
|
||||
// NUMBER: 0
|
||||
@@ -4,7 +4,7 @@ class SomeClass {
|
||||
fun some(a : S<caret>)
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: SomeClass, SomeInternal
|
||||
// EXIST: String~(jet)
|
||||
// EXIST: IllegalStateException
|
||||
|
||||
@@ -4,7 +4,7 @@ class SomeClass {
|
||||
fun some(a : S<caret>)
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: SomeClass, SomeInternal
|
||||
// EXIST: String~(jet)
|
||||
// EXIST: IllegalStateException
|
||||
|
||||
@@ -7,6 +7,6 @@ fun firstFun() {
|
||||
Testin<caret>
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: Testing
|
||||
// INVOCATION_COUNT: 1
|
||||
// NUMBER: 1
|
||||
@@ -4,5 +4,5 @@ fun test() {
|
||||
val a : Named<caret>
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// ABSENT: NamedObject
|
||||
|
||||
@@ -4,6 +4,6 @@ fun firstFun() {
|
||||
val a = In<caret>
|
||||
}
|
||||
|
||||
// TIME: 0
|
||||
// INVOCATION_COUNT: 0
|
||||
// EXIST: Int~(jet)
|
||||
// ABSENT: Int~(jet.runtime.SharedVar)
|
||||
@@ -21,4 +21,4 @@ fun testMy() {
|
||||
}
|
||||
|
||||
// EXIST: testOther
|
||||
// INVOCATION_COUNT: 3
|
||||
// NUMBER: 3
|
||||
@@ -2,7 +2,7 @@ fun main(args: Array<String>) {
|
||||
Array<caret>
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// WITH_ORDER: 1
|
||||
// EXIST: Array~(jet)
|
||||
// EXIST_JAVA_ONLY: Array~(java.sql)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fun some(a: Double<caret>) {
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// WITH_ORDER: 1
|
||||
// EXIST: Double~(jet)
|
||||
// EXIST_JAVA_ONLY: Double~(java.lang)
|
||||
|
||||
@@ -9,7 +9,7 @@ fun test() {
|
||||
Some().<caret>
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: testPublic, testPackage
|
||||
// ABSENT: testPrivate, testProtected
|
||||
|
||||
|
||||
@@ -9,5 +9,5 @@ fun test() {
|
||||
Some().<caret>
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: testPublic, testProtected, testPrivate, testPackage
|
||||
@@ -11,6 +11,6 @@ class SomeSubclass : Some() {
|
||||
}
|
||||
}
|
||||
|
||||
// TIME: 1
|
||||
// INVOCATION_COUNT: 1
|
||||
// EXIST: testPublic, testProtected, testPackage
|
||||
// ABSENT: testPrivate
|
||||
@@ -11,5 +11,5 @@ class SomeSubclass : Some() {
|
||||
}
|
||||
}
|
||||
|
||||
// TIME: 2
|
||||
// INVOCATION_COUNT: 2
|
||||
// EXIST: testPublic, testProtected, testPackage, testPrivate
|
||||
|
||||
Reference in New Issue
Block a user