It sounds like a great idea! A well thought out package system can gives parenscript another advantage over javascript. <br><br>Instead of loading huge js library files I guess some analysis of dependencies between functions and variables will make it possible to assemble a small js file with only the functions needed in the particular situation, right?
<br><br>If you want alpha testers or help in any way, please let me know. <br><br>I have one comment,<br>It would be a good thing if the name-mangling/code generation is implemented so it can be tweaked. Your example suggest to make functions with prefixed names on the global object, like "friendlyScript_helloWorld". But some might want to generate the code in another way, for example make a literal object called friendlyScript with "helloWorld" as one key and the code (function/lambda) as value. It would be nice if both ways and others could be supported. I don't mean you should implement both, but have a generic function or similar interface for generating the function definitions and one for generating the function calls. 
<br><br>Thanks, I'm looking forward to this.<br><br>/Henrik Hjelte<br><br><br><br><br><div><span class="gmail_quote">On 6/27/07, <b class="gmail_sendername">Red Daly</b> <<a href="mailto:reddaly@gmail.com">reddaly@gmail.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;">Dear Fellow Parenscripters,<br><br>Here I detail a proposed package system for Parenscript to ease modular development.  This is a feature intended to make up for the many hacks Javascript programmers use to write libraries.  The proposed system takes after and integrates with the Lisp package system.  Its implementation will constitute a hearty advancement of the current Parenscript compiler.
<br><br>The proposed system should introduce new concepts and should be robust enough to lay the foundation for a lot of future work in a coherent way.  Different packages can introduce new special forms--that is, modify the language at the lowest level.  With this, a "javascript2" package can introduce Parenscript forms that compile to the latest version of ECMAScript without implicating the rest of the project.  The additional semantic analysis of Parenscript programs will pave the way for cropped, minified, or obfuscated scripts.  In addition, a formal package specification will lead to asdf-installable script libraries with better deployment characteristics than current package systems for web development in other languages.
<br><br>A Parenscript package (or "script package" or simply "package," as opposed to a "Lisp package") has a few main properties: a name and list of nicknames, an primary associated Lisp package, a list of exported identifiers, and a collection of macros defined in the associated Lisp package.  We must also introduce and formalize a two other concepts: Parenscript identifiers (analog of Lisp symbols), and a compilation environment.
<br><br>A Parenscript package is defined and exists in the context of a compilation environment.  A compilation environment simply keeps track of compiler state; when any Parenscript code is compiled, a new compilation environment is created or an existing one is passed to the compiler.  The environment is modified to reflect the lexical scope as forms are processed.  Specifically, the compilation environment will consist of a stack of Parenscript identifiers (introduced by defun and defvar forms); a stack of macros and symbol macros; a list of defined script packages; and the current script package.
<br><br>An identifier in Parenscript is analogous to a Lisp symbol, but it only exists during compile time.   An identifier has a string value and associated Parenscript package.<br><br>Now I will run through a simple example to demonstrate these new developments:
<br><br>Script packages are primarily defined using a Parenscript form analogous to the Lisp defpackage:<br><br>(defpackage friendly-script<br>   (:use parenscript psos)<br>   (:export hello-world)<br>   (:lisp-package friendly)
<br>   (:documentation "Scripts for issuing greetings."))<br><br>This introduces a new package into the compilation environment.  We enter the package system after it is defined as in Lisp:<br><br>;; enter the friendly-script package
<br>; changes the current package in the compilation environment to :friendly-script<br>(in-package :friendly-script)<br><br>;; define the hello-world function, which we export<br>; adds friendly-script::hello-world to the identifier stack in the compilation env.
<br>(defun hello-world ()<br>   (alert "hello world."))<br><br>;; enter the user package<br>; changes current package in compilation environment<br>(in-package :parenscript-user)<br><br>;; call the friendly-script's hello-world function
<br>; the compiler recognizes that friendly-script::hello-world is an e<br>(friendly-script:hello-world)<br><br><br>To give you an idea, this will all compile to something like the following Javascript:<br><br><br>function friendlyScript_helloWorld() { alert("hello world."); }
<br><br>friendlyScript_helloWorld();<br><br><br>In terms of implementation, the package system will introduce a few new classes (script-package, identifier, and compilation-environment); uproot existing parsing procedures and replant them around the package system; and add a semantic analysis phase into the compilation pipeline.  I will fill in details and announce problems with the implementation as it moves forward.
<br><br>Hopefully this is an exciting prospect for the community.  The package system should empower those who want to build large programs or share Parenscript extensions/libraries.  It should also preserve the javascript-in-sexps Parenscript we know and love.
<br><br>Anyhow, I look forward to comments on this proposal.  Happy hacking!<br><span class="sg"><br>Red<br>
</span><br>_______________________________________________<br>parenscript-devel mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:parenscript-devel@common-lisp.net">parenscript-devel@common-lisp.net
</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" 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>