buf.append( "List frames = Collections.EMPTY_LIST;\n" );
} else {
buf.append( "List frames = new ArrayList();\n" );
for ( int i = 0; i < frames.size(); i++ ) {
buf.append( "{\n" );
final StackMapFrame f = (StackMapFrame) frames.get( i );
declareLabel( buf,
labelNames,
f.label );
final String frameVar = varName + "frame" + i;