private MainMaxsLocal() {
super();
}
private void run() throws IOException {
final ClassReader classReader = new ClassReader(
ForMaxLocals.class.getName());
final MethodMap methodMap = new MethodMap();
final Set<String> syntheticFieldSet = new TreeSet<String>();
final ClassVisitorForStorable classVisitorForStorable = new ClassVisitorForStorable();
classVisitorForStorable.setMethodMap(methodMap, syntheticFieldSet);
// must not skip code to compute max locals
classReader.accept(classVisitorForStorable, /* ClassReader.SKIP_CODE | */
ClassReader.SKIP_DEBUG | ClassReader.SKIP_FRAMES);
final Set<Entry<MethodMapKey, Integer>> entrySet = methodMap.entrySet();
for (Entry<MethodMapKey, Integer> entry : entrySet) {
final MethodMapKey key = entry.getKey();
System.out.println("maxs local " + key.getMethodName() + " "// NOPMD