fix KT-8648 Exception from incremental compilation

#KT-8648 Fixed
This commit is contained in:
Michael Nedzelsky
2015-07-29 13:55:39 +03:00
parent 00eaec766d
commit e9d7bbf493
8 changed files with 52 additions and 30 deletions
@@ -47,13 +47,13 @@ message JvmType {
}
message JvmMethodSignature {
required int32 name = 1 [(name_id_in_table) = true];
required int32 name = 1 [(string_id_in_table) = true];
required JvmType return_type = 2;
repeated JvmType parameter_type = 3;
}
message JvmFieldSignature {
required int32 name = 1 [(name_id_in_table) = true];
required int32 name = 1 [(string_id_in_table) = true];
required JvmType type = 2;
// True iff this field is a backing field for a companion object and is really present as a static