FIR: fix FirDefaultPropertyAccessor phase to BODY_RESOLVE
This commit is contained in:
committed by
TeamCityServer
parent
39b2cd1027
commit
0cf00d0f72
+4
-2
@@ -38,7 +38,7 @@ abstract class FirDefaultPropertyAccessor(
|
||||
) : FirPropertyAccessorImpl(
|
||||
source,
|
||||
session,
|
||||
resolvePhase = FirResolvePhase.RAW_FIR,
|
||||
resolvePhase = FirResolvePhase.BODY_RESOLVE,
|
||||
origin,
|
||||
FirDeclarationAttributes(),
|
||||
propertyTypeRef,
|
||||
@@ -53,7 +53,9 @@ abstract class FirDefaultPropertyAccessor(
|
||||
annotations = mutableListOf(),
|
||||
typeParameters = mutableListOf(),
|
||||
) {
|
||||
override var resolvePhase = FirResolvePhase.BODY_RESOLVE
|
||||
override var resolvePhase
|
||||
get() = FirResolvePhase.BODY_RESOLVE
|
||||
set(_) {}
|
||||
|
||||
final override var body: FirBlock?
|
||||
get() = null
|
||||
|
||||
Reference in New Issue
Block a user