@Override protected void visitCssNode(CssNode node) {
// Remove this CssNode. Save the index because we'll need it for inserting the new nodes.
BlockNode parent = node.getParent();
int indexInParent = parent.getChildIndex(node);
parent.removeChild(indexInParent);
// If this CssNode has componentName, add a PrintNode (with '|id' directive) to print it.
ExprRootNode<?> componentNameExpr = node.getComponentNameExpr();
if (componentNameExpr != null) {
PrintNode pn =