ExprBoolean cont = CastBoolean.toExprBoolean(tag.getAttribute("condition").getValue());
Label endIf = new Label();
ExpressionUtil.visitLine(bc, tag.getStart());
cont.writeOut(bc,Expression.MODE_VALUE);
adapter.ifZCmp(Opcodes.IFEQ, endIf);
return endIf;
}
private static void writeOutElseIfEnd(GeneratorAdapter adapter, Label endIf, Label end) {