view graal/com.oracle.truffle.sl.test/tests/Break.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 64c77f0577bb
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {
    if (i >= 942) {
      break;
    }  
    i = i + 1;  
  }
  return i;  
}