view graal/com.oracle.truffle.sl.test/tests/HelloEqualsWorld.sl @ 21132:fc6fd02ecf95

Merge with f6f3f44a183051ae5ee581be7c8c6c8cbbc0d5fe
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 26 Apr 2015 20:50:30 -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;
  }
}