view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 13816:d006a6332db8

Make sure a compile id is assigned
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 29 Jan 2014 14:06:32 -0800
parents e34d5cca7496
children b16ec83edc73
line wrap: on
line source

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

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

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