aboutsummaryrefslogtreecommitdiff
path: root/lux-r
diff options
context:
space:
mode:
authorEduardo Julian2021-08-11 02:38:59 -0400
committerEduardo Julian2021-08-11 02:38:59 -0400
commita62ce3f9c2b605e0033f4772b0f64c4525de4d86 (patch)
treeecbabe8f110d82b2e6481cf7c0532d4bd4386570 /lux-r
parent464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (diff)
Relocated maybe and lazy from data to control.
Diffstat (limited to 'lux-r')
-rw-r--r--lux-r/source/program.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-r/source/program.lux b/lux-r/source/program.lux
index 19b417b4d..245883eb4 100644
--- a/lux-r/source/program.lux
+++ b/lux-r/source/program.lux
@@ -7,13 +7,13 @@
["." monad (#+ do)]]
[control
[pipe (#+ exec> case> new>)]
+ ["." maybe]
["." try (#+ Try)]
["." exception (#+ exception:)]
["." io (#+ IO io)]
[concurrency
["." promise (#+ Promise)]]]
[data
- ["." maybe]
["." text ("#\." hash)
["%" format (#+ format)]
[encoding
@@ -261,8 +261,8 @@
<output>
... (exec
... ... ("lux io log" (..%%code <call>))
- ... (error! (..%%code <call>)))
- (error! (..%%code <call>)))]
+ ... (panic! (..%%code <call>)))
+ (panic! (..%%code <call>)))]
... org/renjin/sexp/ListVector
[(accept self {_ org/renjin/sexp/SexpVisitor}) void]
@@ -463,7 +463,7 @@
(#try.Failure error)
(exec
("lux io log" error)
- (error! error))))
+ (panic! error))))
_ ("lux io log" "@call_macro 1")
r_macro (org/renjin/sexp/FunctionCall::new macro r_inputs)
_ ("lux io log" "@call_macro 2")