I grabbed the latest source from the git repo, but Im failing to build due to:
import com.intellij.lang.properties.PropertiesUtil;
import com.intellij.lang.properties.psi.PropertiesFile;
I've tried using Idea SDK 12.0.4, 12.1.4 and latest 13 EAP, but I dont see these classes - where are they located?
The fix for the missing method in the latest EAP 13 build seems straight forward - just use the builder:
@Nullable
private static HighlightInfo createHighlightInfo(HighlightInfoType type, TextRange textRange) {
HighlightInfo.Builder builder = HighlightInfo.newHighlightInfo( type ).range( textRange );
return builder.create();
}
but I cant find the Properties related classes.