Replace 'class object' with 'default object' in renderers and test data
Includes changes to decompiled text Old syntax is used in builtins and project code for now
This commit is contained in:
@@ -23,7 +23,7 @@ trait T {
|
||||
fun foo()
|
||||
fun bar() {}
|
||||
|
||||
class object {
|
||||
default object {
|
||||
val baz: Int
|
||||
val boo: Int = noImpl
|
||||
|
||||
@@ -40,7 +40,7 @@ class C {
|
||||
fun foo()
|
||||
fun bar() {}
|
||||
|
||||
class object {
|
||||
default object {
|
||||
val baz: Int
|
||||
val boo: Int = noImpl
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ kotlin.js.native() internal final class C {
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
internal class object Default {
|
||||
internal default object Default {
|
||||
private constructor Default()
|
||||
internal final val baz: kotlin.Int
|
||||
internal final val boo: kotlin.Int
|
||||
@@ -50,7 +50,7 @@ kotlin.js.native() internal trait T {
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
internal class object Default {
|
||||
internal default object Default {
|
||||
private constructor Default()
|
||||
internal final val baz: kotlin.Int
|
||||
internal final val boo: kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user