(write-string (read-whole-file (source-pathname "prelude.js")) out)
(do-source input :target
(!compile-file input out))
- (dump-global-environment out))
+ (dump-global-environment out)
+ (write-string (read-whole-file (source-pathname "sequel.js")) out))
;; Tests
(with-open-file (out "tests.js" :direction :output :if-exists :supersede)
(dolist (input (append (directory "tests.lisp")
--- /dev/null
+/* execute all script tags with type of x-common-lisp */
+window.onload = (function () {
+ var scripts = document.scripts;
+
+ for (var i = 0; i < scripts.length; ++i) {
+ var script = scripts[i];
+
+ /* TODO: what about errors? */
+ if (script.type == "text/x-common-lisp") {
+ lisp.evalString(script.text);
+ }
+ }
+});