not auto-shortening on variable functions
Status: Beta
Brought to you by:
danda
a simple example :
stdin :
var test = function (test){
var test2 = 'test';
test += '-'+test2;
return test;
}
stdout :
var test = (function (test) {var test2 = "test";test += "-" + test2;return test;});
run perfect if stdin :
function test (test){
var test2 = 'test';
test += '-'+test2;
return test;
}
stdout :
function test(b) {var a = "test";b += "-" + a;return b;}
sorry I'm not a hard C coder :)
best regard