view test/runtime/6929067/T.java @ 4328:60c48d99c28b

Loop : consistant naming (local->direct), print loop exits when printing loop structure, fix for loop exits : one loop exit may also exit outter loops Added cardinalty for NodeBitMaps Added exits detection tests to NestedLoopTest
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 26 Jan 2012 12:17:11 +0100
parents 3b3d12e645e7
children
line wrap: on
line source

public class T
{
  public static boolean foo(boolean bar)
  {
    return bar;
  }

  public static void printIt()
  {
    System.out.println("Hello");
  }
}