Hi Wout,<br><br>Oops, I thought I had stripped all of the app-specific code out of that function, but I hadn't. Here's another try:<br><br>(defun blep (ss x y)<br>  (when foo?<br>    (let ((pair (bar)))<br>      (unless (null pair)<br>

        (destructuring-bind (a b) pair<br>          (unless (or (null a) (null b))<br>            (let ((val (baz a b)))<br>              (unless (null val)<br>                (when (blah val)<br>                  (unless (blee)<br>

                    t))))))))))<br><br>(The point is that this is the skeleton of an actual function from our program. It's been macroexpanded in a few places and had the names changed.)<br><br>To answer your questions: (1) your PS version is prior to Vladimir's work on implicit RETURN, which is why your generated code is so different from what I posted; (2) yes, there is a PS version of DESTRUCTURING-BIND. It's not the full CL version, though. If you discover you want something it doesn't do yet, post to this list. A lot of what's missing will be fairly easy to add. (And while you're at it, check out PS's LOOP as well. It too doesn't do everything that CL's does, but it does a surprising amount.)<br>

<br>Daniel<br><br><br><div class="gmail_quote">On Fri, Dec 4, 2009 at 7:44 AM, Wout Perquin <span dir="ltr"><<a href="mailto:wout.perquin@skynet.be">wout.perquin@skynet.be</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;">

<div class="im">On Thu, 2009-12-03 at 17:10 -0800, Red Daly wrote:<br>
> On Thu, Dec 3, 2009 at 1:41 PM, Daniel Gackle <<a href="mailto:danielgackle@gmail.com">danielgackle@gmail.com</a>> wrote:<br>
> > I've now had a chance to systematically look at how our code fares under<br>
> > PS's implicit return. Thanks to Scott for being the guinea pig for the rest<br>
> > of us. I like it! I do have a few questions/issues. I'll send them in<br>
> > separate emails, I guess.<br>
> ><br>
> > PS now tries to insert a default "return null;" statement in functions that<br>
> > would formerly have returned nothing, i.e. whose return values would have<br>
> > been undefined. I am not convinced that this buys us much. We've always<br>
> > treated NULL and UNDEFINED as conveying the same information when returning<br>
> > from a function. I recognize not everyone would share this interpretation.<br>
> ><br>
> > The trouble with explicit "return null" is that you end up with things like<br>
> > the following example taken from our code (stripped-down for brevity):<br>
> ><br>
> > (defun blep (ss x y)<br>
> >       (when foo?<br>
> >         (awhen (bar)<br>
> >           (destructuring-bind (c r) it<br>
> >             (when (!null c r)<br>
> >               (awhen (baz)<br>
> >                 (when (blah it)<br>
> >                   (unless (blee)<br>
> >                     t))))))))<br>
> ><br>
> > =><br>
> ><br>
</div>I try to follow this conversation, but above (defun blep [...]) on my<br>
system returns :<br>
<div class="im">"function blep(ss, x, y) {<br>
    if (foowhat) {<br>
</div>        awhen(bar(), destructuringBind(c(r), it, bangnull(c, r) ? awhen(baz(), blah(it) ? (!blee() ? true : null) : null) : null));<br>
    };<br>
};" ; I used (ps:ps ...)<br>
I assume that is because I either run the wrong Parenscript version or<br>
there are macros involved that I don't have.<br>
ps, it got my attention because of destructering-bind, is that a macro<br>
in the latest Parenscript release ?<br>
Thanks, Wout<br>
<div><div></div><div class="h5">><br>
> > function blep(ss, x, y) {<br>
> >     if (foowhat) {<br>
> >         var it = bar();<br>
> >         if (it != null && it !== false) {<br>
> >             var c = it[0];<br>
> >             var r = it[1];<br>
> >             if (c != null && r != null) {<br>
> >                 var it27537 = baz();<br>
> >                 if (it27537 != null && it27537 !== false) {<br>
> >                     if (blah(it27537)) {<br>
> >                         if (!blee()) {<br>
> >                             return true;<br>
> >                         } else {<br>
> >                             return null;<br>
> >                         };<br>
> >                     } else {<br>
> >                         return null;<br>
> >                     };<br>
> >                 } else {<br>
> >                     return null;<br>
> >                 };<br>
> >             } else {<br>
> >                 return null;<br>
> >             };<br>
> >         } else {<br>
> >             return null;<br>
> >         };<br>
> >     } else {<br>
> >         return null;<br>
> >     };<br>
> > };<br>
><br>
> For this specific example it's more a matter of generating reasonable<br>
> code.  There is a better way to represent this function, even when<br>
> implicitly returning null:<br>
><br>
> function blep(ss, x, y) {<br>
>     var expr = null;<br>
>     if (foowhat) {<br>
>         var it = bar();<br>
>         if (it != null && it !== false) {<br>
>             var c = it[0];<br>
>             var r = it[1];<br>
>             if (c != null && r != null) {<br>
>                 var it27537 = baz();<br>
>                 if (it27537 != null && it27537 !== false) {<br>
>                     if (blah(it27537)) {<br>
>                         if (!blee()) {<br>
>                             expr = true;<br>
>                         }<br>
>                     }<br>
>                 }<br>
>             }<br>
>         }<br>
>     }<br>
>     return expr;<br>
> };<br>
><br>
> Now if I am not mistaken, Parenscript cannot make (or fake) an<br>
> expression from any old Parenscript form.  In my mind this is a<br>
> shortcoming of Parenscript, not something we should embrace because<br>
> Javascript distinguishes between statements and expressions.  If I am<br>
> wrong, then I'd be glad to hear about it!<br>
><br>
> If we had a 100% working parenscript-form => javascript expression<br>
> implementation, then implementing implicit returning would be simpler<br>
> and this code generation.  I have not seen the implicit return code,<br>
> but this behavior may require more extensive semantic analysis than<br>
> Parenscript currently supports.<br>
><br>
> ><br>
> > I wish PS would avoid generating all those "return null"s when the only<br>
> > thing we need is the "return true".<br>
> ><br>
> > Note also that PS is not *always* returning null; there are cases where the<br>
> > old undefined behavior still exists:<br>
> ><br>
> > (ps (defun foo () (dolist (a b) (blah a))))<br>
> > =><br>
> > "function foo() {<br>
> >     for (var a = null, _js_idx27540 = 0; _js_idx27540 < b.length;<br>
> > _js_idx27540 += 1) {<br>
> >         a = b[_js_idx27540];<br>
> >         blah(a);<br>
> >     };<br>
> > };"<br>
> ><br>
> > Personally, I think this is fine and would rather see all functions behave<br>
> > this way. That is, if I put a NIL in a tail position in my code, I should<br>
> > get "return null" and otherwise no explicit return in JS. We can't factor<br>
> > the null vs. undefined distinction out of PS altogether; it's too engrained<br>
> > in JS. Anyway this issue is, to my mind, distinct from the implicit return<br>
> > feature as such.<br>
><br>
> For most cases it will not make any difference.  If it is important to<br>
> the application, you can always explicitly return ps:undefined or nil.<br>
><br>
> Red<br>
><br>
> ><br>
> > What am I missing?<br>
> ><br>
> > Daniel<br>
> ><br>
> > _______________________________________________<br>
> > parenscript-devel mailing list<br>
> > <a href="mailto:parenscript-devel@common-lisp.net">parenscript-devel@common-lisp.net</a><br>
> > <a href="http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel" target="_blank">http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel</a><br>
> ><br>
> ><br>
><br>
> _______________________________________________<br>
> parenscript-devel mailing list<br>
> <a href="mailto:parenscript-devel@common-lisp.net">parenscript-devel@common-lisp.net</a><br>
> <a href="http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel" target="_blank">http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel</a><br>
<br>
<br>
_______________________________________________<br>
parenscript-devel mailing list<br>
<a href="mailto:parenscript-devel@common-lisp.net">parenscript-devel@common-lisp.net</a><br>
<a href="http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel" target="_blank">http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel</a><br>
</div></div></blockquote></div><br>