view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 17141:2d01369ee234

Add unit test
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 17 Sep 2014 09:06:40 -0700
parents ff3136ecb5a7
children
line wrap: on
line source

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

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