[FIR] Fix all usages of annotations due to new FirAnnotation hierarchy
This commit is contained in:
committed by
teamcityserver
parent
2e7564a21e
commit
5769d42248
+4
-2
@@ -706,10 +706,12 @@ class FirVisualizer(private val firFile: FirFile) : BaseRenderer() {
|
||||
}
|
||||
}
|
||||
|
||||
override fun visitAnnotation(annotation: FirAnnotation, data: StringBuilder) {
|
||||
visitConstructor(annotation, data)
|
||||
override fun visitAnnotationCall(annotationCall: FirAnnotationCall, data: StringBuilder) {
|
||||
visitConstructor(annotationCall, data)
|
||||
}
|
||||
|
||||
override fun visitAnnotation(annotation: FirAnnotation, data: StringBuilder) {}
|
||||
|
||||
override fun visitDelegatedConstructorCall(delegatedConstructorCall: FirDelegatedConstructorCall, data: StringBuilder) {
|
||||
val coneClassType = delegatedConstructorCall.constructedTypeRef.coneTypeSafe<ConeClassLikeType>()
|
||||
if (coneClassType != null) {
|
||||
|
||||
Reference in New Issue
Block a user