view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18573:3566e1edb3b4

removed static references to HotSpotGraalRuntime
author Doug Simon <doug.simon@oracle.com>
date Thu, 27 Nov 2014 11:51:17 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

function foo() {}
function bar() {}

function main() {  
  foo();
  if (1 < 2) {
    bar();
    return 1;
  }
}