Fix wrong deserialization order

For case when property and function have the same name or
extension and non-extension member have the same name
This commit is contained in:
Pavel V. Talanov
2014-11-14 15:18:58 +03:00
parent e8aee5cddf
commit 40addaed13
8 changed files with 141 additions and 35 deletions
@@ -0,0 +1,18 @@
//ALLOW_AST_ACCESS
package test
val a = 0
val c = 0
fun a() = 0
fun b() = 0
fun c() = 0
class A {
val a = 0
val c = 0
fun a() = 0
fun b() = 0
fun c() = 0
}