Deprecate deprecated in favor of Deprecated

This commit is contained in:
Denis Zharkov
2015-09-01 19:59:19 +03:00
parent 952d45dc8b
commit 31244edec9
444 changed files with 686 additions and 688 deletions
@@ -1,10 +1,10 @@
//ALLOW_AST_ACCESS
package test
deprecated("Class") class Class {
deprecated("Nested") class Nested
Deprecated("Class") class Class {
Deprecated("Nested") class Nested
deprecated("Inner") inner class Inner
Deprecated("Inner") inner class Inner
deprecated("companion object") companion object
Deprecated("companion object") companion object
}
@@ -1,17 +1,17 @@
package test
kotlin.deprecated(value = "Class") internal final class Class {
kotlin.Deprecated(value = "Class") internal final class Class {
/*primary*/ public constructor Class()
kotlin.deprecated(value = "companion object") public companion object Companion {
kotlin.Deprecated(value = "companion object") public companion object Companion {
/*primary*/ private constructor Companion()
}
kotlin.deprecated(value = "Inner") internal final inner class Inner {
kotlin.Deprecated(value = "Inner") internal final inner class Inner {
/*primary*/ public constructor Inner()
}
kotlin.deprecated(value = "Nested") internal final class Nested {
kotlin.Deprecated(value = "Nested") internal final class Nested {
/*primary*/ public constructor Nested()
}
}