-
Notifications
You must be signed in to change notification settings - Fork 1
/
js-to-paren.asd
57 lines (49 loc) · 1.94 KB
/
js-to-paren.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;;; This was originally the system definition file for the jwacs
;;; project, then suave's js-on-cl.
(in-package :asdf)
(defpackage :jwacs-system)
;;;; ======= Compilation configuration =============================================================
(defparameter jwacs-system::*muffle-conflicts* nil
"When T, yacc warnings about Shift/Reduce and Reduce/Reduce conflicts will be muffled.
When NIL, all such conflicts will be reported.
When non-NIL, non-T, a single summary warning will be reported when conflicts exist.
This value should be set to NIL or non-T during grammar
development/debugging (so that we find out about the conflicts), but T
at all other times (so that SBCL won't drop into the debugger when
we're trying to load parse-javascript.lisp).")
;;;; ======= System definition =====================================================================
(defsystem js-to-paren
:author "James Wright, Red Daly, Alan Ruttenberg"
:licence "MIT License <http://www.opensource.org/licenses/mit-license.php>"
:serial t
:components ((:module "external"
:components
((:file "yacc")))
(:module
"src"
:serial t
:components
((:file "package")
(:file "general-utilities")
(:file "conditions")
(:file "lexer-macros")
(:file "lex-javascript")
(:file "js-source-model")
(:file "parse-javascript-yacc")
(:file "parse-javascript")
(:file "pretty-print")
(:file "source-transformations")
(:file "shift-decls-transformation")
(:file "ugly-print")
; (:file "static-analysis")
; (:file "type-analysis")
; (:file "explicitize-transformation")
; (:file "shadow-values-transformation")
; (:file "cps-transformation")
; (:file "loop-transformation")
; (:file "trampoline-transformation")
; (:file "runtime-transformation")
; (:file "compiler")
(:file "js-to-parenscript"))))
; #+(or sbcl lispworks) (:file "main"))
:depends-on (cl-ppcre parenscript))