Mass test data update: find usages doesn't contain column anymore

This commit is contained in:
Nikolay Krasko
2015-12-23 15:14:33 +03:00
parent b6f3bf9869
commit a71d1c24ff
216 changed files with 822 additions and 816 deletions
@@ -1,18 +1,18 @@
Class/object property type (2: 15) var next: A? = A()
Function return types (15: 20) fun getNext(): A? {
Function return types (36: 16) fun Any.toA(): A? {
Local variable declaration (11: 17) val aa: A = a
Nested class/object (1: 31) public class X(bar: String? = A.BAR): A() {
Nested class/object (3: 26) val myBar: String? = A.BAR
Nested class/object (6: 9) A.BAR = ""
Nested class/object (7: 9) A.foos()
New instance creation (2: 20) var next: A? = A()
New instance creation (32: 18) fun X.bar(a: A = A()) {
Parameter type (10: 16) fun foo(a: A) {
Parameter type (32: 14) fun X.bar(a: A = A()) {
Super type qualifier (20: 15) super<A>.foo()
Supertype (1: 39) public class X(bar: String? = A.BAR): A() {
Supertype (23: 23) companion object: A() {
Supertype (28: 11) object O: A() {
Target type of 'is' operation (37: 24) return if (this is A) this as A else null
Usage in cast target type (37: 35) return if (this is A) this as A else null
Class/object property type 2 var next: A? = A()
Function return types 15 fun getNext(): A? {
Function return types 36 fun Any.toA(): A? {
Local variable declaration 11 val aa: A = a
Nested class/object 1 public class X(bar: String? = A.BAR): A() {
Nested class/object 3 val myBar: String? = A.BAR
Nested class/object 6 A.BAR = ""
Nested class/object 7 A.foos()
New instance creation 2 var next: A? = A()
New instance creation 32 fun X.bar(a: A = A()) {
Parameter type 10 fun foo(a: A) {
Parameter type 32 fun X.bar(a: A = A()) {
Super type qualifier 20 super<A>.foo()
Supertype 1 public class X(bar: String? = A.BAR): A() {
Supertype 23 companion object: A() {
Supertype 28 object O: A() {
Target type of 'is' operation 37 return if (this is A) this as A else null
Usage in cast target type 37 return if (this is A) this as A else null
@@ -1,3 +1,3 @@
Unclassified usage (2: 22) public interface T: A
Unclassified usage (4: 13) val a = object: A() {}
Unclassified usage (7: 17) val b = object: T {}
Unclassified usage 2 public interface T: A
Unclassified usage 4 val a = object: A() {}
Unclassified usage 7 val b = object: T {}
@@ -1,4 +1,4 @@
Unclassified usage (1: 19) public open class X: A()
Unclassified usage (3: 18) public interface T: A
Unclassified usage (5: 19) public open class Y: X()
Unclassified usage (7: 14) public class Z: Y(), T
Unclassified usage 1 public open class X: A()
Unclassified usage 3 public interface T: A
Unclassified usage 5 public open class Y: X()
Unclassified usage 7 public class Z: Y(), T
@@ -1,4 +1,4 @@
Unclassified usage (2: 23) public open class X: A()
Unclassified usage (4: 22) public interface T: A
Unclassified usage (7: 27) public open class Y: X()
Unclassified usage (9: 22) public class Z: Y(), T
Unclassified usage 2 public open class X: A()
Unclassified usage 4 public interface T: A
Unclassified usage 7 public open class Y: X()
Unclassified usage 9 public class Z: Y(), T
@@ -1,3 +1,3 @@
Unclassified usage (2: 22) public interface T: A
Unclassified usage (4: 19) public object O1: A()
Unclassified usage (7: 23) public object O2: T
Unclassified usage 2 public interface T: A
Unclassified usage 4 public object O1: A()
Unclassified usage 7 public object O2: T
@@ -1,4 +1,4 @@
Unclassified usage (2: 23) public open class X: A()
Unclassified usage (4: 22) public interface T: A
Unclassified usage (7: 27) public open class Y: X()
Unclassified usage (9: 22) public class Z: Y(), T
Unclassified usage 2 public open class X: A()
Unclassified usage 4 public interface T: A
Unclassified usage 7 public open class Y: X()
Unclassified usage 9 public class Z: Y(), T
@@ -1,3 +1,3 @@
Unclassified usage (2: 22) public interface T: A
Unclassified usage (4: 19) public object O1: A()
Unclassified usage (7: 23) public object O2: T
Unclassified usage 2 public interface T: A
Unclassified usage 4 public object O1: A()
Unclassified usage 7 public object O2: T
@@ -1,3 +1,3 @@
Unclassified usage (1: 18) public interface T: A
Unclassified usage (3: 15) public object O1: A()
Unclassified usage (5: 15) public object O2: T
Unclassified usage 1 public interface T: A
Unclassified usage 3 public object O1: A()
Unclassified usage 5 public object O2: T
@@ -1,4 +1,4 @@
Value read (1: 33) public class X(bar: String? = A.BAR): A() {
Value read (3: 28) val myBar: String? = A.BAR
Value write (12: 12) aa.bar = ""
Value write (6: 11) A.BAR = ""
Value read 1 public class X(bar: String? = A.BAR): A() {
Value read 3 val myBar: String? = A.BAR
Value write 12 aa.bar = ""
Value write 6 A.BAR = ""
@@ -1,7 +1,7 @@
Function call (20: 18) super<A>.foo()
Function call (7: 11) A.foos()
New instance creation (2: 20) var next: A? = A()
New instance creation (32: 18) fun X.bar(a: A = A()) {
Supertype (1: 39) public class X(bar: String? = A.BAR): A() {
Supertype (23: 23) companion object: A() {
Supertype (28: 11) object O: A() {
Function call 20 super<A>.foo()
Function call 7 A.foos()
New instance creation 2 var next: A? = A()
New instance creation 32 fun X.bar(a: A = A()) {
Supertype 1 public class X(bar: String? = A.BAR): A() {
Supertype 23 companion object: A() {
Supertype 28 object O: A() {
@@ -1,18 +1,18 @@
Class/object property type (2: 15) var next: A? = A()
Function return types (15: 20) fun getNext(): A? {
Function return types (36: 16) fun Any.toA(): A? {
Local variable declaration (11: 17) val aa: A = a
Nested class/object (1: 31) public class X(bar: String? = A.BAR): A() {
Nested class/object (3: 26) val myBar: String? = A.BAR
Nested class/object (6: 9) A.BAR = ""
Nested class/object (7: 9) A.foos()
New instance creation (2: 20) var next: A? = A()
New instance creation (32: 18) fun X.bar(a: A = A()) {
Parameter type (10: 16) fun foo(a: A) {
Parameter type (32: 14) fun X.bar(a: A = A()) {
Super type qualifier (20: 15) super<A>.foo()
Supertype (1: 39) public class X(bar: String? = A.BAR): A() {
Supertype (23: 23) companion object: A() {
Supertype (28: 11) object O: A() {
Target type of 'is' operation (37: 24) return if (this is A) this as A else null
Usage in cast target type (37: 35) return if (this is A) this as A else null
Class/object property type 2 var next: A? = A()
Function return types 15 fun getNext(): A? {
Function return types 36 fun Any.toA(): A? {
Local variable declaration 11 val aa: A = a
Nested class/object 1 public class X(bar: String? = A.BAR): A() {
Nested class/object 3 val myBar: String? = A.BAR
Nested class/object 6 A.BAR = ""
Nested class/object 7 A.foos()
New instance creation 2 var next: A? = A()
New instance creation 32 fun X.bar(a: A = A()) {
Parameter type 10 fun foo(a: A) {
Parameter type 32 fun X.bar(a: A = A()) {
Super type qualifier 20 super<A>.foo()
Supertype 1 public class X(bar: String? = A.BAR): A() {
Supertype 23 companion object: A() {
Supertype 28 object O: A() {
Target type of 'is' operation 37 return if (this is A) this as A else null
Usage in cast target type 37 return if (this is A) this as A else null
@@ -1 +1 @@
Unclassified usage (3: 18) public interface T: A
Unclassified usage 3 public interface T: A
@@ -1,15 +1,15 @@
Class/object property type (3: 25) var next: Outer.A? = (this@KOuter as Outer).A()
Function return types (15: 30) fun getNext(): Outer.A? {
Function return types (29: 22) fun Any.toA(): Outer.A? {
Local variable declaration (11: 27) val aa: Outer.A = a
New instance creation (25: 39) fun KOuter.X.bar(a: Outer.A = Outer().A()) {
New instance creation (2: 64) public inner class X(bar: String? = (this@KOuter as Outer).A().bar): Outer.A() {
New instance creation (3: 53) var next: Outer.A? = (this@KOuter as Outer).A()
New instance creation (4: 53) val myBar: String? = (this@KOuter as Outer).A().bar
New instance creation (7: 36) (this@KOuter as Outer).A().bar = ""
Parameter type (10: 26) fun foo(a: Outer.A) {
Parameter type (25: 27) fun KOuter.X.bar(a: Outer.A = Outer().A()) {
Super type qualifier (20: 25) super<Outer.A>.foo()
Supertype (2: 80) public inner class X(bar: String? = (this@KOuter as Outer).A().bar): Outer.A() {
Target type of 'is' operation (30: 30) return if (this is Outer.A) this as Outer.A else null
Usage in cast target type (30: 47) return if (this is Outer.A) this as Outer.A else null
Class/object property type 3 var next: Outer.A? = (this@KOuter as Outer).A()
Function return types 15 fun getNext(): Outer.A? {
Function return types 29 fun Any.toA(): Outer.A? {
Local variable declaration 11 val aa: Outer.A = a
New instance creation 2 public inner class X(bar: String? = (this@KOuter as Outer).A().bar): Outer.A() {
New instance creation 25 fun KOuter.X.bar(a: Outer.A = Outer().A()) {
New instance creation 3 var next: Outer.A? = (this@KOuter as Outer).A()
New instance creation 4 val myBar: String? = (this@KOuter as Outer).A().bar
New instance creation 7 (this@KOuter as Outer).A().bar = ""
Parameter type 10 fun foo(a: Outer.A) {
Parameter type 25 fun KOuter.X.bar(a: Outer.A = Outer().A()) {
Super type qualifier 20 super<Outer.A>.foo()
Supertype 2 public inner class X(bar: String? = (this@KOuter as Outer).A().bar): Outer.A() {
Target type of 'is' operation 30 return if (this is Outer.A) this as Outer.A else null
Usage in cast target type 30 return if (this is Outer.A) this as Outer.A else null
@@ -1,3 +1,3 @@
Unclassified usage (2: 16) open class X: A
Unclassified usage (4: 13) val a = object: A
Unclassified usage (7: 17) val b = object: X()
Unclassified usage 2 open class X: A
Unclassified usage 4 val a = object: A
Unclassified usage 7 val b = object: X()
@@ -1,3 +1,3 @@
Unclassified usage (1: 19) public open class X: A
Unclassified usage (5: 19) public open class Y: X()
Unclassified usage (7: 14) public class Z: Y(), T
Unclassified usage 1 public open class X: A
Unclassified usage 5 public open class Y: X()
Unclassified usage 7 public class Z: Y(), T
@@ -1,3 +1,3 @@
Unclassified usage (2: 23) public open class X: A
Unclassified usage (7: 27) public open class Y: X()
Unclassified usage (9: 22) public class Z: Y(), T
Unclassified usage 2 public open class X: A
Unclassified usage 7 public open class Y: X()
Unclassified usage 9 public class Z: Y(), T
@@ -1,3 +1,3 @@
Unclassified usage (2: 23) public open class T: A
Unclassified usage (4: 19) public object O1: A()
Unclassified usage (7: 23) public object O2: T()
Unclassified usage 2 public open class T: A
Unclassified usage 4 public object O1: A()
Unclassified usage 7 public object O2: T()
@@ -1,3 +1,3 @@
Unclassified usage (2: 16) open class X: A
Unclassified usage (7: 27) public open class Y: X()
Unclassified usage (9: 22) public class Z: T
Unclassified usage 2 open class X: A
Unclassified usage 7 public open class Y: X()
Unclassified usage 9 public class Z: T
@@ -1,3 +1,3 @@
Unclassified usage (2: 16) open class T: A
Unclassified usage (4: 12) object O1: A
Unclassified usage (7: 16) object O2: T()
Unclassified usage 2 open class T: A
Unclassified usage 4 object O1: A
Unclassified usage 7 object O2: T()
@@ -1,2 +1,2 @@
Unclassified usage (4: 15) interface T: A
Unclassified usage (7: 26) public interface Y: X
Unclassified usage 4 interface T: A
Unclassified usage 7 public interface Y: X
@@ -1,3 +1,3 @@
Unclassified usage (1: 19) public open class T: A
Unclassified usage (3: 15) public object O1: A()
Unclassified usage (5: 15) public object O2: T()
Unclassified usage 1 public open class T: A
Unclassified usage 3 public object O1: A()
Unclassified usage 5 public object O2: T()
@@ -1,18 +1,18 @@
Class/object property type (2: 21) var next: Outer.A? = Outer.A()
Function return types (15: 26) fun getNext(): Outer.A? {
Function return types (36: 22) fun Any.toA(): Outer.A? {
Local variable declaration (11: 23) val aa: Outer.A = a
Nested class/object (1: 37) public class X(bar: String? = Outer.A.BAR): Outer.A() {
Nested class/object (3: 32) val myBar: String? = Outer.A.BAR
Nested class/object (6: 15) Outer.A.BAR = ""
Nested class/object (7: 15) Outer.A.foos()
New instance creation (2: 32) var next: Outer.A? = Outer.A()
New instance creation (32: 30) fun X.bar(a: Outer.A = Outer.A()) {
Parameter type (10: 22) fun foo(a: Outer.A) {
Parameter type (32: 20) fun X.bar(a: Outer.A = Outer.A()) {
Super type qualifier (20: 21) super<Outer.A>.foo()
Supertype (1: 51) public class X(bar: String? = Outer.A.BAR): Outer.A() {
Supertype (23: 29) companion object: Outer.A() {
Supertype (28: 17) object O: Outer.A() {
Target type of 'is' operation (37: 30) return if (this is Outer.A) this as Outer.A else null
Usage in cast target type (37: 47) return if (this is Outer.A) this as Outer.A else null
Class/object property type 2 var next: Outer.A? = Outer.A()
Function return types 15 fun getNext(): Outer.A? {
Function return types 36 fun Any.toA(): Outer.A? {
Local variable declaration 11 val aa: Outer.A = a
Nested class/object 1 public class X(bar: String? = Outer.A.BAR): Outer.A() {
Nested class/object 3 val myBar: String? = Outer.A.BAR
Nested class/object 6 Outer.A.BAR = ""
Nested class/object 7 Outer.A.foos()
New instance creation 2 var next: Outer.A? = Outer.A()
New instance creation 32 fun X.bar(a: Outer.A = Outer.A()) {
Parameter type 10 fun foo(a: Outer.A) {
Parameter type 32 fun X.bar(a: Outer.A = Outer.A()) {
Super type qualifier 20 super<Outer.A>.foo()
Supertype 1 public class X(bar: String? = Outer.A.BAR): Outer.A() {
Supertype 23 companion object: Outer.A() {
Supertype 28 object O: Outer.A() {
Target type of 'is' operation 37 return if (this is Outer.A) this as Outer.A else null
Usage in cast target type 37 return if (this is Outer.A) this as Outer.A else null