view graal/com.oracle.truffle.sl.test/tests/Inlining.sl @ 18781:941761f6b736

Truffle-DSL: fixed thrown exception messages should provide more contextual information. (reported by Benoit Daloze)
author Christian Humer <christian.humer@gmail.com>
date Mon, 05 Jan 2015 20:23:22 +0100
parents 2caa107f51ce
children
line wrap: on
line source


function a() {return 42;}
function b() {return a();}
function c() {return b();}
function d() {return c();}
function e() {return c();}
function f() {return c();}
function g() {return d() + e() + f();}

function main() {
    i = 0;
    result = 0;
    while (i < 10000) {
        result = result + g();
        i = i + 1;
    }
    return result;
}