diff options
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/js/procedure')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux index 0efdedd4c..641eb9e02 100644 --- a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux @@ -286,19 +286,6 @@ Nullary (frac//to-int "(new Date()).getTime()")) -## [[Box]] -(def: (box//new initJS) - Unary - (format "[" initJS "]")) - -(def: (box//read boxJS) - Unary - (format "(" boxJS ")[0]")) - -(def: (box//write [valueJS boxJS]) - Binary - (void (format (box//read boxJS) " = " valueJS))) - ## [Bundles] (def: lux-procs Bundle @@ -376,14 +363,6 @@ (install "exit" (unary io//exit)) (install "current-time" (nullary io//current-time))))) -(def: box-procs - Bundle - (<| (prefix "box") - (|> (dict.new text.Hash<Text>) - (install "new" (unary box//new)) - (install "read" (unary box//read)) - (install "write" (binary box//write))))) - (def: #export procedures Bundle (<| (prefix "lux") @@ -393,5 +372,4 @@ (dict.merge frac-procs) (dict.merge text-procs) (dict.merge io-procs) - (dict.merge box-procs) ))) |