aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/js/statement.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-02-20 22:37:00 -0400
committerEduardo Julian2019-02-20 22:37:00 -0400
commit064e3821221fdb22bf1a556337f2b00377a6186a (patch)
tree191429e592fb50de9b69d371f9122d94d6ca337a /new-luxc/source/luxc/lang/translation/js/statement.jvm.lux
parentd751fd495380b3a54f295b2a3ea557eee24dadf4 (diff)
Removed statement machinery (has been superseded by common statement extensions).
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/translation/js/statement.jvm.lux47
1 files changed, 0 insertions, 47 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/statement.jvm.lux b/new-luxc/source/luxc/lang/translation/js/statement.jvm.lux
deleted file mode 100644
index 21e52fe28..000000000
--- a/new-luxc/source/luxc/lang/translation/js/statement.jvm.lux
+++ /dev/null
@@ -1,47 +0,0 @@
-(.module:
- lux
- (lux (control [monad #+ do])
- [macro]
- (data text/format))
- (luxc (lang [".L" module]
- (host [js #+ JS Expression Statement])))
- [//]
- (// [".T" runtime]
- [".T" reference]
- [".T" eval]))
-
-(def: #export (translate-def name expressionT expressionJS metaV)
- (-> Text Type Expression Code (Meta Any))
- (do macro.Monad<Meta>
- [current-module macro.current-module-name
- #let [def-name [current-module name]]]
- (case (macro.get-identifier-ann (name-of #.alias) metaV)
- (#.Some real-def)
- (do @
- [[realT realA realV] (macro.find-def real-def)
- _ (moduleL.define def-name [realT metaV realV])]
- (wrap []))
-
- _
- (do @
- [_ (//.save-definition def-name expressionJS)
- expressionV (evalT.eval (referenceT.global def-name))
- _ (moduleL.define def-name [expressionT metaV expressionV])
- _ (if (macro.type? metaV)
- (case (macro.declared-tags metaV)
- #.Nil
- (wrap [])
-
- tags
- (moduleL.declare-tags tags (macro.export? metaV) (:coerce Type expressionV)))
- (wrap []))
- #let [_ (log! (format "DEF " (%name def-name)))]]
- (wrap []))
- )))
-
-(def: #export (translate-program programJS)
- (-> Expression (Meta Statement))
- (macro.fail "translate-program NOT IMPLEMENTED YET")
- ## (hostT.save (format "var " (referenceT.variable +0) " = " runtimeT.lux//program-args "();"
- ## "(" programJS ")(null);"))
- )