view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18531:cdb9c605051a

removed some static accesses to HotSpotGraalRuntime from some tests
author Doug Simon <doug.simon@oracle.com>
date Wed, 26 Nov 2014 13:57:50 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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