view graal/com.oracle.truffle.sl.test/tests/CalcShell.input @ 16007:23ae0cbcb2ae

OptionProcessor needs to find the type parameter of an OptionValue field declaration
author Doug Simon <doug.simon@oracle.com>
date Tue, 03 Jun 2014 17:11:40 +0200
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