view graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 18208:abe9758da9d9

Truffle: add headers for new compilation listener files.
author Christian Humer <christian.humer@gmail.com>
date Mon, 27 Oct 2014 18:23:52 +0100
parents ff3136ecb5a7
children
line wrap: on
line source

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

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