for (Map.Entry<String, Collection<OutputLanguage>> illegalExpr :
ILLEGAL_EXPRESSIONS.entrySet()) {
compile(prefix + CharEscapers.xmlEscaper().escape(illegalExpr.getKey()) + suffix);
for (OutputLanguage outputLanguage : illegalExpr.getValue()) {
assertAlert(new IllegalExpressionError(errorPos, outputLanguage.getDisplay(),
illegalExpr.getKey()));
}
assertNoUnexpectedAlerts();
}
}