view graal/com.oracle.truffle.sl.test/tests/CalcShell.input @ 18639:56f806632622

fixed bugs in support for arbitrary types in SubstitutionGuard constructors Contributed-by: Igor Veresov <igor.veresov@oracle.com>
author Doug Simon <doug.simon@oracle.com>
date Sat, 06 Dec 2014 01:14:03 +0100
parents b16ec83edc73
children
line wrap: on
line source

i
80
c
return cur + i;
r
c
if (i <= 2) { return 1; } else { return prev + cur; }
r
i
100
r
c
if (i == 0) { return 1; } else { return cur * i; }
r
x