ElementColorProvider for multiply PsiElement
Answered
function MyFunc(R, G, B){}
call MyFunc(10,20,30)
How implement ElementColorProvider without “LineMarker is supposed to be registered for leaf elements only” error?
Please sign in to leave a comment.
The assertion message has already all information and points to com.intellij.codeInsight.daemon.LineMarkerProvider#getLineMarkerInfo for a very detailed explanation.
You most probably try to provide implementation for non-leaf PsiElement here.