FIR Java: generate accessors only in override Kotlin case, make them non-synthetic

This commit is contained in:
Mikhail Glukhikh
2019-11-29 16:47:52 +03:00
parent 5275b4d0fc
commit a6f8859a49
4 changed files with 24 additions and 20 deletions
@@ -7,7 +7,7 @@ package org.jetbrains.kotlin.fir.symbols
interface SyntheticSymbol
interface AccessorSymbol : SyntheticSymbol {
interface AccessorSymbol {
val callableId: CallableId // it's an id of related property (synthetic or not)
val accessorId: CallableId // it's an id of accessor function
}