[FIR] Make FirAnnotationCall resolvable

This commit is contained in:
Dmitriy Novozhilov
2020-07-21 13:23:27 +03:00
committed by Mikhail Glukhikh
parent ffd30566be
commit 614291b2cc
4 changed files with 24 additions and 2 deletions
@@ -83,7 +83,7 @@ object FirTreeBuilder : AbstractFirTreeBuilder() {
val typeProjectionWithVariance = element("TypeProjectionWithVariance", TypeRef, typeProjection)
val argumentList = element("ArgumentList", Expression)
val call = element("Call", Expression, statement) // TODO: may smth like `CallWithArguments` or `ElementWithArguments`?
val annotationCall = element("AnnotationCall", Expression, expression, call)
val annotationCall = element("AnnotationCall", Expression, expression, call, resolvable)
val comparisonExpression = element("ComparisonExpression", Expression, expression)
val typeOperatorCall = element("TypeOperatorCall", Expression, expression, call)
val assignmentOperatorStatement = element("AssignmentOperatorStatement", Expression, statement)