diff options
| author | Eduardo Julian | 2018-07-22 02:52:46 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2018-07-22 02:52:46 -0400 | 
| commit | b14102eaa2a80f51f160ba293ec01928dbe683c3 (patch) | |
| tree | bf2640c4503de8c9f0a8f6b048548ef1a0bd4e83 /new-luxc/source/luxc/lang/translation/ruby/procedure | |
| parent | 9671d6064dd02dfe6c32492f5b9907b096e5bd89 (diff) | |
- Some fixes due to recent changes in stdlib.
- Removed some (now) useless modules.
Diffstat (limited to '')
| -rw-r--r-- | new-luxc/source/luxc/lang/translation/ruby/procedure.jvm.lux | 29 | 
1 files changed, 0 insertions, 29 deletions
| diff --git a/new-luxc/source/luxc/lang/translation/ruby/procedure.jvm.lux b/new-luxc/source/luxc/lang/translation/ruby/procedure.jvm.lux deleted file mode 100644 index 036a68d0c..000000000 --- a/new-luxc/source/luxc/lang/translation/ruby/procedure.jvm.lux +++ /dev/null @@ -1,29 +0,0 @@ -(.module: -  lux -  (lux (control [monad #+ do] -                ["ex" exception #+ exception:]) -       (data [maybe] -             text/format -             (coll (dictionary ["dict" unordered #+ Dict])))) -  (luxc ["&" lang] -        (lang ["ls" synthesis] -              (host [ruby #+ Ruby Expression Statement]))) -  [//] -  (/ ["/." common] -     ["/." host])) - -(exception: #export (Unknown-Procedure {message Text}) -  message) - -(def: procedures -  /common.Bundle -  (|> /common.procedures -      (dict.merge /host.procedures))) - -(def: #export (translate-procedure translate name args) -  (-> (-> ls.Synthesis (Meta Expression)) Text (List ls.Synthesis) -      (Meta Expression)) -  (<| (maybe.default (&.throw Unknown-Procedure (%t name))) -      (do maybe.Monad<Maybe> -        [proc (dict.get name procedures)] -        (wrap (proc translate args))))) | 
