comparison graal/com.oracle.truffle.sl.test/tests/ControlFlow.sl @ 13883:ff3136ecb5a7

SL: small changes
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 05 Feb 2014 03:16:21 -0800
parents
children
comparison
equal deleted inserted replaced
13870:d04be74665fb 13883:ff3136ecb5a7
1 function foo() {}
2 function bar() {}
3
4 function main() {
5 foo();
6 if (1 < 2) {
7 bar();
8 return 1;
9 }
10 }