<span class="Apple-style-span" style="border-collapse: collapse; "><div class="im" style="color: rgb(80, 0, 80); ">< Could you please post an explicit example of why you need symbols that do not get translated according to normal symbol translation rules? ><br>

<br></div>Sure. We have a formula language that gets parsed on the JS side. It works as you might expect. Expressions like "a+b" get parsed to '(+ a b). Or rather, they used to. Now we use '(:+ a b) because the symbol '+ gets translated to "plus". (Worse, the symbol '- is translated to the empty string, since by the JS-identifier-translation rules a hyphen is mapped to nothing.) Actually, I think I posted about this before.<br>

<br>We don't want to use strings for these operators because (a) they're not strings like any other, they're exactly what you'd want symbols for; (b) strings are much less convenient to work with; and (c) it would break our ability to use the same code on the Lisp side.<br>

<br>Dan</span><br><br><div class="gmail_quote">On Sun, Jul 26, 2009 at 5:48 PM, Red Daly <span dir="ltr"><<a href="mailto:reddaly@gmail.com">reddaly@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<br><br><div class="gmail_quote"><div class="im">On Sun, Jul 26, 2009 at 2:25 PM, Daniel Gackle <span dir="ltr"><<a href="mailto:danielgackle@gmail.com" target="_blank">danielgackle@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">

As I've posted here before, we depend on having a facility in PS for symbols that do *not* get translated to the JS identifier rules. </blockquote></div><div><br>Could you please post an explicit example of why you need symbols that do not get translated according to normal symbol translation rules?  I am in a different boat where my current libraries all expect keywords to translate with hypenated-to-camelcase rules.  e.g.<br>


<br>(methcall :to-upper-case object)<br><br>Forms like that are all over my code (see <a href="http://common-lisp.net/project/suave/" target="_blank">http://common-lisp.net/project/suave/</a> for a list of Parenscript projects).  I do not use a quoted symbol in the current package because I require that the symbols be translated without a package prefix, since they keywords correspond to Javascript-native identifiers.  This is my use case.  What is yours?<br>


 </div><div class="im"><blockquote class="gmail_quote" style="border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex">The current compromise in PS -- treat keywords differently from non-keyword symbols -- seems like a reasonable tradeoff. If the inconsistency of keywords in slot-value is an issue, I'd rather see slot-value itself modified to preserve the difference between keywords and other symbols. (That would produce syntax errors in the case of keywords with hyphens in them, but there's a fix ready at hand, namely use a non-keyword symbol.)</blockquote>


</div><div><br>I believe something like (slot-value object :key-with-hyphens) would properly translate to object['key-with-hyphens'], so there should not be any syntax errors for slot-value forms.  For identifiers named by hyphenated keywords, you are correct.<br>


</div><div class="im"><blockquote class="gmail_quote" style="border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex"><br>

<br>The last time this subject came up, I promised to try replacing all of our symbols like '+ with keywords like :+ and see how it turned out. I meant to report back about this, but I don't think I did. We made the change, and it works fine. This allowed us to run against the latest PS. Unless I'm missing something, it looks like the proposed patch will break that.<br>




<br>The fundamental issue here is that the symbols in CL correspond to both identifiers and strings in JS. That means either we go with a one-to-many mapping (translating symbols to JS in more than one way) or translate all PS symbols to conform to the identifier rules. The latter is simpler but deprives PS of some expressiveness that we rely on. If we're going to have two different kinds of symbols in PS, the keyword/non-keyword distinction seems like the obvious choice, since that's CL's way of having two different kinds of symbols.<br>




</blockquote></div><div><br>The fundamental issue is there is no ideal translation of a Parenscript symbol into a Javascript equivalent; we are dealing with a language mismatch.  One solution is to translate symbols not to strings but to some other form that is more useful.  The symbol :to-upper-case, for example, could be translated into:<br>


<br>intern('toUpperCase', 'to-upper-case', 'keyword');<br><br>function intern(jsstring, lispName, package) {<br>   if (lookup symbol in table)<br>      return looked up symbol;<br>   else<br>      return new PSSymbol(jsstring, lispName, package);<br>


}<br><br><br>function PSSymbol(jsstring, lispName, package) {<br>  this.jsstring = jsstring;<br>  this.lispName = lispName;<br>  this.package = package;<br>  storeSymbol(this); <br>  this.toString = function() { return this.jsstring; }<br>


  return this;  <br>}<br><br>This avoids the one-to-many headache and preserves consistency of how to reference symbols (the toString() method is used to serialize a value for slot store, e.g. (slot-value object (intern 'toUpperCase' ...)) == (slot-value object 'toUpperCase')).  Unfortunately this makes Parenscript more complex on the runtime end.<br>


<br><br>If we do not adopt this fancy, semantically superior translation scheme, I think we should stick to a consistent translator across all packages.<br><br><br>Best,<br><font color="#888888">Red</font></div><div><div class="h5">

<blockquote class="gmail_quote" style="border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex"><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex">

<div><div><br></div></div>_______________________________________________<br>
parenscript-devel mailing list<br>
<a href="mailto:parenscript-devel@common-lisp.net" target="_blank">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></blockquote></div><br>
<br>_______________________________________________<br>
parenscript-devel mailing list<br>
<a href="mailto:parenscript-devel@common-lisp.net" target="_blank">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></blockquote></div></div></div><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></blockquote></div><br>