}
ExternalProcessResult buildAllResult =
GoToolManager.getDefault().runBuildTool(goEnv, monitor, sourceRootDir, goBuildCmdLine);
GoBuildOutputProcessor buildOutput = new GoBuildOutputProcessor() {
@Override
protected void handleParseError(CommonException ce) {
LangCore.logError(ce.getMessage(), ce.getCause());
}
};
buildOutput.parseOutput(buildAllResult);
addErrorMarkers(buildOutput.getBuildErrors(), sourceRootDir);
return null;
}