Renamed class

This commit is contained in:
Valentin Kipyatkov
2016-03-28 15:03:05 +03:00
parent 93e170325e
commit f4e3e33bd3
2 changed files with 2 additions and 2 deletions
@@ -27,7 +27,7 @@ import org.jetbrains.kotlin.psi.KtVisitorVoid
import org.jetbrains.kotlin.psi.psiUtil.endOffset
import org.jetbrains.kotlin.psi.psiUtil.startOffset
internal class SoftKeywordsHighlightingVisitor(private val holder: AnnotationHolder) : KtVisitorVoid() {
internal class BeforeResolveHighlightingVisitor(private val holder: AnnotationHolder) : KtVisitorVoid() {
override fun visitElement(element: PsiElement) {
val elementType = element.node.elementType
@@ -46,7 +46,7 @@ class KotlinBeforeResolveHighlightingPass(
override fun doCollectInformation(progress: ProgressIndicator) {
val annotationHolder = AnnotationHolderImpl(AnnotationSession(file))
val visitors = listOf(
SoftKeywordsHighlightingVisitor(annotationHolder),
BeforeResolveHighlightingVisitor(annotationHolder),
LabelsHighlightingVisitor(annotationHolder),
KDocHighlightingVisitor(annotationHolder)
)