Update test data for highlighter tests on deprecations.

This commit is contained in:
Ilya Ryzhenkov
2015-04-20 17:45:58 +03:00
parent 879b6a0a3f
commit 79388d0dbf
13 changed files with 53 additions and 53 deletions
@@ -1,13 +1,13 @@
fun test() {
<warning descr="'MyClass.Companion' is deprecated. Use A instead">MyClass</warning>.test
<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyClass' is deprecated. Use A instead">MyClass</warning>.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyClass' is deprecated. Use A instead">test</warning>
MyClass()
val a: MyClass? = null
val b: MyTrait? = null
<warning descr="'MyTrait.Companion' is deprecated. Use A instead">MyTrait</warning>.test
MyTrait.<warning descr="'MyTrait.Companion' is deprecated. Use A instead">Companion</warning>
<warning descr="'MyTrait.Companion' is deprecated. Use A instead">MyTrait</warning>
MyClass.<warning descr="'MyClass.Companion' is deprecated. Use A instead">Companion</warning>
MyClass.<warning descr="'MyClass.Companion' is deprecated. Use A instead">Companion</warning>.test
<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyTrait' is deprecated. Use A instead">MyTrait</warning>.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyTrait' is deprecated. Use A instead">test</warning>
MyTrait.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyTrait' is deprecated. Use A instead">Companion</warning>
<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyTrait' is deprecated. Use A instead">MyTrait</warning>
MyClass.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyClass' is deprecated. Use A instead">Companion</warning>
MyClass.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyClass' is deprecated. Use A instead">Companion</warning>.<warning descr="[DEPRECATED_SYMBOL_WITH_MESSAGE] 'companion object of MyClass' is deprecated. Use A instead">test</warning>
a == b
}