}
}
private static void addErrorToContext(Module module, String error, CompileContext context) {
ErlangCompilerError compilerError = ErlangCompilerError.create(PathUtil.getParentPath(module.getModuleFilePath()), error);
if (compilerError == null) {
context.addMessage(CompilerMessageCategory.ERROR, error, null, -1, -1);
return;
}
context.addMessage(compilerError.getCategory(), compilerError.getErrorMessage(), compilerError.getUrl(), compilerError.getLine(), -1);
}