view graal/com.oracle.truffle.sl.test/tests/DefineFunction.sl @ 15814:066ed90d15a7

[inlining] another renaming to avoid misleading type suggestion (1 of 2)
author Miguel Garcia <miguel.m.garcia@oracle.com>
date Tue, 20 May 2014 15:45:07 +0200
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();
}