view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 14540:f659d019d3ab

Merged
author Christian Wirth <christian.wirth@oracle.com>
date Fri, 14 Mar 2014 15:29:17 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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