blob: 3922a21d8461cb9f27115fc91959a7686c0e4eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(ns lux
(:require [lux.base :as &]
[lux.compiler :as &compiler]
:reload-all))
(comment
;; TODO: Finish type system.
;; TODO: Re-implement compiler in language.
;; TODO: Adding metadata to global vars.
;; TODO: Add column & line numbers for syntactic elements.
;; TODO: Add text-dispenser to regulate column & line numbering.
;; TODO: Add source-file information to .class files for easier debugging.
;; TODO: Finish implementing class & interface definition
;; TODO: All optimizations
;; TODO:
;; Finish total-locals
(time (&compiler/compile-all (&/|list "lux")))
(time (&compiler/compile-all (&/|list "lux" "test2")))
;; jar cvf test2.jar *.class test2 && java -cp "test2.jar" test2
;; cd output && jar cvf test2.jar * && java -cp "test2.jar" test2 && cd ..
)
|