}
private void visit_attributes(ModuleVisitor v) {
for (ESeq exp = (ESeq) attributes; exp != ERT.NIL; exp = exp.tail()) {
ETuple one = (ETuple) exp.head();
v.visitAttribute((EAtom) one.elm(1), one.elm(2));
}
}
private void visit_exports(ModuleVisitor v) {
for (ESeq exp = (ESeq) exports; exp != ERT.NIL; exp = exp.tail()) {