default -> companion: replace all mentions of default and default object
This commit is contained in:
@@ -5,12 +5,12 @@ import b.B //class
|
||||
import b.foo //function
|
||||
import b.ext //extension function
|
||||
import b.value //property
|
||||
import b.C.Default.<!CANNOT_BE_IMPORTED!>bar<!> //function from default object
|
||||
import b.C.Default.<!CANNOT_BE_IMPORTED!>cValue<!> //property from default object
|
||||
import b.C.Companion.<!CANNOT_BE_IMPORTED!>bar<!> //function from companion object
|
||||
import b.C.Companion.<!CANNOT_BE_IMPORTED!>cValue<!> //property from companion object
|
||||
import b.<!CANNOT_IMPORT_FROM_ELEMENT!>constant<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>fff<!> //function from val
|
||||
import b.<!CANNOT_IMPORT_FROM_ELEMENT!>constant<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>dValue<!> //property from val
|
||||
import b.constant
|
||||
import b.E.Default.<!CANNOT_BE_IMPORTED!>f<!> //val from default object
|
||||
import b.E.Companion.<!CANNOT_BE_IMPORTED!>f<!> //val from companion object
|
||||
import <!UNRESOLVED_REFERENCE!>smth<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>illegal<!>
|
||||
import b.C.<!UNRESOLVED_REFERENCE!>smth<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>illegal<!>
|
||||
import b.<!CANNOT_IMPORT_FROM_ELEMENT!>bar<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>smth<!>
|
||||
@@ -42,7 +42,7 @@ fun B.ext() {}
|
||||
val value = 0
|
||||
|
||||
class C() {
|
||||
default object {
|
||||
companion object {
|
||||
fun bar() {}
|
||||
val cValue = 1
|
||||
}
|
||||
@@ -56,7 +56,7 @@ class D() {
|
||||
val constant = D()
|
||||
|
||||
class E() {
|
||||
default object {
|
||||
companion object {
|
||||
val f = F()
|
||||
}
|
||||
}
|
||||
@@ -85,14 +85,14 @@ fun foo() {
|
||||
//FILE:d.kt
|
||||
package d
|
||||
|
||||
import d.A.Default.B
|
||||
import d.A.Default.C
|
||||
import d.A.Companion.B
|
||||
import d.A.Companion.C
|
||||
|
||||
val b : B = B()
|
||||
val c : B = C
|
||||
|
||||
class A() {
|
||||
default object {
|
||||
companion object {
|
||||
open class B() {}
|
||||
object C : B() {}
|
||||
}
|
||||
|
||||
@@ -24,8 +24,8 @@ package b {
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
internal default object Default {
|
||||
private constructor Default()
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val cValue: kotlin.Int = 1
|
||||
internal final fun bar(): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
@@ -49,8 +49,8 @@ package b {
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
internal default object Default {
|
||||
private constructor Default()
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val f: b.F
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
@@ -81,8 +81,8 @@ package c {
|
||||
}
|
||||
|
||||
package d {
|
||||
internal val b: d.A.Default.B
|
||||
internal val c: d.A.Default.B
|
||||
internal val b: d.A.Companion.B
|
||||
internal val c: d.A.Companion.B
|
||||
|
||||
internal final class A {
|
||||
public constructor A()
|
||||
@@ -90,8 +90,8 @@ package d {
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
internal default object Default {
|
||||
private constructor Default()
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
@@ -103,7 +103,7 @@ package d {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal object C : d.A.Default.B {
|
||||
internal object C : d.A.Companion.B {
|
||||
private constructor C()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
@@ -30,7 +30,7 @@ class A {
|
||||
object J
|
||||
}
|
||||
|
||||
default object CO {
|
||||
companion object CO {
|
||||
object H
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ package a {
|
||||
}
|
||||
}
|
||||
|
||||
internal default object CO {
|
||||
internal companion object CO {
|
||||
private constructor CO()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user