default -> companion: replace all mentions of default and default object

This commit is contained in:
Pavel V. Talanov
2015-03-16 14:56:06 +03:00
parent a0783757e8
commit 06916d98c6
1019 changed files with 2468 additions and 2469 deletions
@@ -1,19 +1,19 @@
class B {
default object <error>A</error> {
companion object <error>A</error> {
}
val <error>A</error> = this
}
class C {
default <error>object A</error> {
companion <error>object A</error> {
<error>val A</error> = this
}
}
class D {
default <error>object A</error> {
companion <error>object A</error> {
<error>val `OBJECT$`</error> = this
}
@@ -1,5 +1,5 @@
class C {
default object {
companion object {
<error>val x</error> = 1
<error>fun getX()</error> = 1
}