javaclass

tests/MainTest.java

159:9bbab006f98a
2005-01-24 Paul Boddie Introduced exception table entry merging to try and preserve proper "finally" section handling. With the extra JDK 1.4 catch_type == 0 entries and the naive translation performed, multiple "finally" sections get created instead of a single section covering the entire original exception statement. This merging process attempts to identify redundant sections.
     1 public class MainTest {     2     public static void main(String[] args) {     3         for (int i = 0; i < args.length; i++) {     4             System.out.println(args[i]);     5         }     6     }     7 }     8      9 // vim: tabstop=4 expandtab shiftwidth=4