<meta charset="utf-8">I just pushed a patch (authored by Scott) to implement JS's LABEL and BREAK in PS. (Note that this patch deprecates LABELED-FOR since you can get the same effect by combining LABEL and FOR. Was anybody using LABELED-FOR?) <div>

<br></div><div>Here's an example:<div><br></div><div><div><div><div>(label scope</div><div>    (foo)</div><div>    (when (bar)</div><div>      (break scope))</div><div>    (blee))</div></div></div></div><div><br></div>

<div>=></div><div><br></div><div><div>scope: {</div><div>    foo();</div><div>    if (bar()) {</div><div>        break scope;</div><div>    };</div><div>    blee();</div><div>};</div></div><div><br></div><div><div>I was astonished to discover recently that JS has supported this ability all along in the form of labeled statements and labeled breaks. I'd always assumed that to get explicit returns from an arbitrary scope, you'd have to resort to the ugly hack of muscling TRY/CATCH to do it, thinking that this was the closest JS counterpart. (See <a href="http://news.ycombinator.com/item?id=793092" target="_blank">http://news.ycombinator.com/item?id=793092</a> for a thread in which several people believe this.) But it appears we were all wrong.</div>

<div><br></div><div>What's not clear yet is how far this can be taken. Can you use it inside a nested local function to return immediately from the top-level function? That is one thing I've wanted for a long time. </div>

<div><br></div><div>In the ideal case, LABEL/BREAK could be used as a base for implementing a proper BLOCK and RETURN-FROM in PS, something which we'd long believed to be impossible. One challenge is that in CL, RETURN-FROM can take a value, which becomes the value of BLOCK. In other words, BLOCK in CL is an expression while LABEL in JS is not. It seems, though, that most of this challenge has already been conquered with the development of implicit return in PS. The only thing you'd need to add is detecting when BLOCK is being used as an expression, declaring a gensymed variable and assigning whatever is happening inside BLOCK to that variable (much like implicit return already does with e.g. CASE), then put the variable in the expression position that BLOCK was in. It seems like this ought to work. It would also make things like this possible in PS:</div>

<div><br></div><div><div>(1+ (case foo</div><div>        (:eleven 11)</div><div>        (:twelve 12)))</div></div><div><br></div><div>Vladimir (and everybody), is the above clear? What do you think of it?</div></div></div>

<div><br></div><div>Daniel</div>