
7 Mar
2012
7 Mar
'12
2:25 a.m.
On 7 March 2012 06:14, Bardur Arantsson
We get the output
function (param0_0){var var_1 = true;return var_1;}(3);
But this is invalid syntax in JavaScript, and should really be
(function (param0_0){var var_1 = true;return var_1;})(3);
Right, that's one of the ones I picked up in HJavascript. Didn't realise (or remember) it was present in HJScript, supposing that it had its own pretty printer. Other stuff like this is present in the HJavascript GADT.