view test/runtime/6929067/T.java @ 9538:e6fe35d64b71

Implemented a method to produce a compact string representation of the truffle tree which just shows the nodes and their children but no data fields.
author Christian Humer <christian.humer@gmail.com>
date Fri, 03 May 2013 15:02:56 +0200
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");
  }
}