for(Comment comm : comments)
{
String text = comm.getData();
// Sabemos que text es posible que contenga un ${} indicando que el comentario
// fue cacheado, "descacheamos" aqu�.
text = itsNatDoc.resolveCachedNodes(text,false); // La verdad es que el resolveEntities da igual en este caso
code.append(" commMap[\"" + (FAKE_COMMENT_ID_VALUE + i) + "\"] = " + JSRenderImpl.toTransportableStringLiteral(text,clientDoc.getBrowser()) + ";\n");
i++;
}
if (!fakeCommentList.isEmpty())