view graal/com.oracle.truffle.sl.test/tests/HelloEqualsWorld.sl @ 21139:a17dc2584e81

Fix time reporting in multithreaded CTW
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Tue, 28 Apr 2015 09:44:23 -0700
parents 25a18b4a5b90
children
line wrap: on
line source

function doIt(a) {
  println("Initial stack trace:");
  println(stacktrace());
  
  hello = 123;
  println("After 123 assignment:");
  println(stacktrace());
  
  helloEqualsWorld();
  println("After hello assignment:");
  println(stacktrace());
  
//  readln();
}

function main() {
  i = 0;
  while (i < 10) {
    doIt(i);
    i = i + 1;
  }
}