checkLine(result, 53, "Inlined: Yes", Color.GREEN);
}
private Map<Integer, LineAnnotation> buildAnnotations(CompilerName compiler, String[] logLines, String[] bytecodeLines)
{
TagProcessor tp = new TagProcessor();
tp.setCompiler(compiler);
int count = 0;
Tag tag = null;
for (String line : logLines)
{
line = line.replace("<", S_OPEN_ANGLE);
line = line.replace(">", S_CLOSE_ANGLE);
tag = tp.processLine(line);
if (count++ < logLines.length - 1)
{
assertNull(tag);
}