view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 19638:96cf6f7678d2

Add test case and support for nested loops for Truffle bytecode interpreters.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 28 Feb 2015 14:54:59 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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