view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 18453:e3376d3e3160

DelayedFrameMapBuilder: remove TrackedVirtualStackSlot.transform().
author Josef Eisl <josef.eisl@jku.at>
date Mon, 17 Nov 2014 19:32:55 +0100
parents b16ec83edc73
children
line wrap: on
line source

function foo() {
  println(test(40, 2));
}

function main() {
  defineFunction("function test(a, b) { return a + b; }");
  foo();

  defineFunction("function test(a, b) { return a - b; }");
  foo();
}