diff options
| author | Eduardo Julian | 2019-05-01 20:33:42 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2019-05-01 20:33:42 -0400 | 
| commit | c923517c864dad362ef00ae78b449bb40cc27e84 (patch) | |
| tree | a758099e76424db4fc8ec8d8cc18a8a699d68d66 /new-luxc/source/luxc/lang/translation/common-lisp/expression.jvm.lux | |
| parent | 0c20f4a8362d42572edecb6ef9844b75c4c859f8 (diff) | |
The Common Lisp compiler is alive.
Diffstat (limited to '')
| -rw-r--r-- | new-luxc/source/luxc/lang/translation/common-lisp/expression.jvm.lux | 87 | 
1 files changed, 0 insertions, 87 deletions
diff --git a/new-luxc/source/luxc/lang/translation/common-lisp/expression.jvm.lux b/new-luxc/source/luxc/lang/translation/common-lisp/expression.jvm.lux deleted file mode 100644 index 437648fbb..000000000 --- a/new-luxc/source/luxc/lang/translation/common-lisp/expression.jvm.lux +++ /dev/null @@ -1,87 +0,0 @@ -(.module: -  lux -  (lux (control [monad #+ do] -                ["ex" exception #+ exception:] -                ["p" parser]) -       (data ["e" error] -             text/format) -       [macro] -       (macro ["s" syntax])) -  (luxc ["&" lang] -        (lang [".L" variable #+ Variable Register] -              [".L" extension] -              ["ls" synthesis] -              (host ["_" common-lisp #+ Expression]))) -  [//] -  (// [".T" runtime] -      [".T" primitive] -      [".T" structure] -      [".T" function] -      [".T" reference] -      [".T" case] -      [".T" procedure])) - -(template [<name>] -  [(exception: #export (<name> {message Text}) -     message)] - -  [Invalid-Function-Syntax] -  [Unrecognized-Synthesis] -  ) - -(def: #export (translate synthesis) -  (-> ls.Synthesis (Meta Expression)) -  (case synthesis -    (^code []) -    (:: macro.Monad<Meta> wrap runtimeT.unit) - -    (^template [<tag> <generator>] -      [_ (<tag> value)] -      (<generator> value)) -    ([#.Bit primitiveT.translate-bit] -     [#.Nat  primitiveT.translate-nat] -     [#.Int  primitiveT.translate-int] -     [#.Rev  primitiveT.translate-rev] -     [#.Frac primitiveT.translate-frac] -     [#.Text primitiveT.translate-text]) - -    (^code ((~ [_ (#.Nat tag)]) (~ [_ (#.Bit last?)]) (~ valueS))) -    (structureT.translate-variant translate tag last? valueS) - -    (^code [(~ singleton)]) -    (translate singleton) - -    (^code [(~+ members)]) -    (structureT.translate-tuple translate members) - -    (^ [_ (#.Form (list [_ (#.Int var)]))]) -    (referenceT.translate-variable var) - -    [_ (#.Identifier definition)] -    (referenceT.translate-definition definition) - -    (^code ("lux call" (~ functionS) (~+ argsS))) -    (functionT.translate-apply translate functionS argsS) - -    (^code ("lux function" (~ [_ (#.Nat arity)]) [(~+ environment)] (~ bodyS))) -    (case (s.run environment (p.some s.int)) -      (#e.Success environment) -      (functionT.translate-function translate environment arity bodyS) - -      _ -      (&.throw Invalid-Function-Syntax (%code synthesis))) - -    (^code ("lux let" (~ [_ (#.Nat register)]) (~ inputS) (~ exprS))) -    (caseT.translate-let translate register inputS exprS) - -    (^code ("lux case" (~ inputS) (~ pathPS))) -    (caseT.translate-case translate inputS pathPS) - -    (^code ((~ [_ (#.Text procedure)]) (~+ argsS))) -    (procedureT.translate-procedure translate procedure argsS) -    ## (do macro.Monad<Meta> -    ##   [translation (extensionL.find-translation procedure)] -    ##   (translation argsS)) - -    _ -    (&.throw Unrecognized-Synthesis (%code synthesis))))  | 
