The process of adding new compiler macros to the current Parenscript to support Javascript 2.0 is very easy.  See the example later in the email.  However, the tricky design issue is how to disallow Javascript 2.0
generation when you only want ECMAScript 2 syntax.  As the compiler
becomes more sophisticated, this option flag may have more
ramifications (because of semantic analysis).  I do not foresee any grave problems, however, and am in favor of adding support for Javascript 2 so long as it can be disabled.<br><br><br><div><span class="gmail_quote">On 6/24/07, 
<b class="gmail_sendername">John Pallister</b> <<a href="mailto:john@synchromesh.com">john@synchromesh.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
... <br></blockquote><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">The point is, ECMAScript 4 has a variety of new features (optional static
<br>typing, classes, interfaces, packages, generators, list comprehensions etc. -<br>there's a nice overview at [3]) which aren't currently supported by ParenScript.<br>Given that the adoption of ECMAScript 4/JavaScript 2 is a case of when rather
<br>than if [4], it would be great if any overhaul of ParenScript could be done with<br>an eye to incorporating some or all of these features in the near future<br>(hopefully by other interested parties such as myself).</blockquote>
<div><br>While a adoption of new technology is inevitable, it is not instantaneous.  For most people, it will be a few years before they can fully embrace the new version of Javascript.<br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
The "add a compiler" POV vs. the "keep it simple" perspective echoes the two<br>sides of the JavaScript 2 debate. Since these new language features will be<br>added (and I'm already using them in ActionScript 3), it would be great if they
<br>could be added to ParenScript without causing too much inconvenience to those<br>who like it the way it is now.<br><br>I would like to help out with this task; I might have some time to spend on it<br>later in the year.
</blockquote><div><br>I will provide some instruction for those who want to modify the behavior of the Parenscript compiler in a basic way.  Here is an example of how to add a macro `(js-literal string)' for including Javascript literals directly in
Parenscript.  It should elucidate the process of basic modification of the Parenscript compiler:<br>
<br>
;;; Define the AST node<br>
(defjsclass js-literal-statement (statement)
<br>
  ((text :accessor js-literal-text :initarg :text))<br>
  (:documentation "An opaque Javascript literal"))<br>
<br>
;;; Define the macro to include such a kludge in your code<br>
(define-js-compiler-macro js-literal (js-string)
<br>
  (make-instance 'js-literal-statement<br>
      :text js-string))<br>
<br>
;;; Define the translation function for compiling to javascript<br>
(defmethod js-to-strings ((statement js-literal-statement) start-pos)<br>

  (declare (ignore start-pos)<br>
           (inline lisp-special-char-to-js))<br>
  (list (js-literal-text statement)))<br>
<br>
If I'm not mistaken, you can now include Javascript with the Parenscript form (js-literal "...").  so
(js-literal "class Greeter { var saying = 'hello, world'; }") emits
"class Greater ..." in the Javascript source output.<br>
 </div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Cheers,<br><br>John :^P</blockquote><div><br>Red <br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
[3] <a href="http://developer.mozilla.org/presentations/xtech2006/javascript/">http://developer.mozilla.org/presentations/xtech2006/javascript/</a><br>[4] <a href="http://www.mozilla.org/projects/tamarin/">http://www.mozilla.org/projects/tamarin/
</a><br></blockquote></div>