[FIR] Make FirPropertyAccessor inherits FirCallableMemberDeclaration
This commit is contained in:
+1
-1
@@ -55,7 +55,7 @@ object FirTreeBuilder : AbstractFirTreeBuilder() {
|
||||
|
||||
val contractDescriptionOwner = element("ContractDescriptionOwner", Declaration)
|
||||
val simpleFunction = element("SimpleFunction", Declaration, function, callableMemberDeclaration, contractDescriptionOwner, typeParametersOwner)
|
||||
val propertyAccessor = element("PropertyAccessor", Declaration, function, contractDescriptionOwner, typeParametersOwner)
|
||||
val propertyAccessor = element("PropertyAccessor", Declaration, function, callableMemberDeclaration, contractDescriptionOwner, typeParametersOwner)
|
||||
val constructor = element("Constructor", Declaration, function, callableMemberDeclaration, typeParameterRefsOwner)
|
||||
val file = element("File", Declaration, annotatedDeclaration)
|
||||
|
||||
|
||||
+1
-1
@@ -318,10 +318,10 @@ object NodeConfigurator : AbstractFieldConfigurator<FirTreeBuilder>(FirTreeBuild
|
||||
|
||||
propertyAccessor.configure {
|
||||
parentArg(function, "F", propertyAccessor)
|
||||
parentArg(callableMemberDeclaration, "F", propertyAccessor)
|
||||
+symbol("FirPropertyAccessorSymbol")
|
||||
+booleanField("isGetter")
|
||||
+booleanField("isSetter")
|
||||
+status.withTransform()
|
||||
+annotations
|
||||
+typeParameters
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user