I apologize for sending the first half of this email in error earlier:<br><br><div class="gmail_quote">On Sat, Oct 31, 2009 at 8:35 PM, Red Daly <span dir="ltr"><<a href="mailto:reddaly@gmail.com">reddaly@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Parenscripters,<br><br>As far as I can tell, multiple-value function calls are a unique feature of lisp.  I would like the ability to perform multiple-value calls in Parenscript but I don't know if a sane solution exists or not.<br>


<br>Can anyone come up with a scheme for returning multiple values that translates well to Javascript?  Ideally such a scheme would not introduce much overhead for usual functions that do not use or return multiple values (though perhaps setting some sort of global MV flag might be inexpensive enough).  Functions that return multiple values should also only appear to return a single value when called by a function that expects only one return value (including native javascript functions).<br>


<br>(defun paren-mv-returner ()<br>  (return (values 1 2 3)))<br><br>=><br><br><br>
function parenMvReturner() {<br>

   /* do some magic with the values 2 and 3 */<br>
   return 1; <br>

}<br><br>// one  implementation might be<br>var mv = undefined;<br><br>function parenMvReturner() {<br>
   mv = [2, 3];<br>   return 1; <br>
}<br><br>// this scheme needs to adjust the return statement of every function so it might not be sufficient<br>// consider this other function<br><br>function parenMySingleReturner () {<br>   var x = parenMvReturner();<br>
</blockquote><div>return x;<br>}<br><br>// parenMySingleReturner() will appear to return multiple values unless it modifies the mv value itself<br><br>// correction:<br>function parenMySingleReturner () {<br>   var x = parenMvReturner();<br>
   mv = null;<br>   return x;<br>
}<br> </div></div>But it seems like this solution will fall apart for calls to native Javascript functions over which we have no control.  If we pass a multiple-value returning function as an argument to a native function, the native function will not perform the necessary mv-nulling when it returns.<br>
<br>someForeignJavascriptFunction( someMVReturningFunction)<br><br>will return whatever the someForeignJavascriptFunction should return, but it will also appear to return the other values that someMVReturningFunction set in the mv variable, since someForeignJavascriptFunction performs no cleanup.<br>
<br>Maybe this limitation can be avoided by having an mv-returning function A set a global variable "mvFunctionReturner" equal to the function A and a mv-receiver can check that mvFunctionReturner is set according to the function it called expecting multiple values.  Does this scheme miss any cases?<br>
<br>Anyway I have thought a little bit about this and I thought I would pass it off to the rest of the Parenscripters as a thought experiment.  Assume you can do a lot more semantic analysis than Parenscript currently does and transform the compiled source however you want.  But any compiled functions must still be able to be treated as normal Javascript functions and all and only functions that should return multiple values appear to return them.<br>
<br>Cheers,<br>Red<br>