Package org.intellij.erlang.jps.builder

Examples of org.intellij.erlang.jps.builder.ErlangCompilerError


    }
  }

  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);
  }
View Full Code Here

TOP

Related Classes of org.intellij.erlang.jps.builder.ErlangCompilerError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.