// Replace this MsgNode with the replacement nodes.
BlockNode parent = node.getParent();
int indexInParent = parent.getChildIndex(node);
parent.removeChild(indexInParent);
parent.addChildren(indexInParent, currMsgReplacementNodes);
currMsgReplacementNodes = null;
}
@Override protected void visitMsgHtmlTagNode(MsgHtmlTagNode node) {