if (_staticinit != null) {
_staticinit.compile(context);
}
Enumeration e = _types.elements();
while(e.hasMoreElements()) {
Type type = (Type)e.nextElement();
int typeid = type.getType();
if (typeid == CLASS || typeid == INTERFACE) {
code.getstatic(pool.addFieldRef(type.getTypeRef(pool),
"_members", "[Ljava/lang/Object;"));
code.pop();
}
}
context.popCode();