Replace all dollar signs in class name with . (temporary workaround)

This commit is contained in:
Yan Zhulanow
2015-05-20 16:20:40 +03:00
parent b9a9f783e9
commit 7a2f3bf1ea
@@ -64,7 +64,7 @@ public abstract class KotlinAnnotationProvider {
ANNOTATED_CLASS, ANNOTATED_FIELD, ANNOTATED_METHOD -> {
val annotationName = expandAnnotation(lineParts[1])
val classFqName = expandClassName(lineParts[2])
val classFqName = expandClassName(lineParts[2]).replace('$', '.')
val elementName = if (lineParts.size() == 4) lineParts[3] else null
val set = annotatedKotlinElements.getOrPut(annotationName) { hashSetOf() }