##// END OF EJS Templates
Apply some new changes to libqsp
Apply some new changes to libqsp

File last commit:

r61:544aa655 default
r61:544aa655 default
Show More
class.lisp
16 lines | 789 B | text/x-common-lisp | CommonLispLexer
(in-package txt2web)
(defclass compiler ()
((body :accessor body :initform #.(load-src "extras/body.html"))
(css :accessor css :initform (list #.(load-src "extras/default.css")))
(ast :accessor ast :initform nil)
(js :accessor js :initform (reverse
(list
'#.(read-progn-from-string (load-src "src/main.ps"))
'#.(read-progn-from-string (load-src "src/api.ps"))
'#.(read-progn-from-string (load-src "src/intrinsics.ps")))))
(parse :accessor parse-only :initarg :parse)
(compile :accessor compile-only :initarg :compile)
(target :accessor target :initarg :target)
(beautify :accessor beautify :initarg :beautify)))