//
// f0 -> ( ExpansionUnit() )*
//
public void visit(Expansion n) {
if ( !errorReported && !topLevel && n.f0.size() > 1 ) {
ExpansionUnitTypeCounter v = new ExpansionUnitTypeCounter();
n.accept(v);
if ( v.getNumNormals() > 1 ) {
Errors.softErr("In " + curProd + "()--only single " +
"nonterminals may appear below the top level.");
errorReported = true;
}
}