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:
Pavel V. Talanov
2015-03-06 12:51:59 +03:00
parent 28ed30bcb3
commit 59f192ef90
794 changed files with 1120 additions and 1109 deletions
@@ -32,6 +32,6 @@ class C1 [anno("constructor")] () {
anno("nested class")
class C2
anno("class object")
class object {}
anno("default object")
default object {}
}
@@ -16,7 +16,7 @@ test.anno(x = "top level class": kotlin.String) internal final class C1 {
public constructor C2()
}
test.anno(x = "class object": kotlin.String) internal class object Default {
test.anno(x = "default object": kotlin.String) internal default object Default {
private constructor Default()
}
}