view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18767:7ff41ad072ef

SL: fix NodeInfo lookup for SLGraalRuntimeBuiltins.
author Christian Humer <christian.humer@gmail.com>
date Tue, 30 Dec 2014 02:21:15 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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